source: trunk/adm/website/.htaccess

Last change on this file was 190, checked in by pinsard, 12 years ago

improve Readme.rst and description visibility

  • Property svn:keywords set to Id URL
File size: 3.4 KB
Line 
1#+
2# .. _htaccess:
3#
4# =========
5# .htaccess
6# =========
7#
8# DESCRIPTION
9# ===========
10#
11# add info for a more beautifull page
12# of data directory with ftp
13#
14# Must be present in http://www.locean-ipsl.upmc.fr/~tropflux/data/
15# ie the upper level of directories where data are accessible
16#
17# SEE ALSO
18# ========
19#
20# .. index:: ! apache
21#
22# :ref:`Readme.rst`
23#
24# TODO
25# ====
26#
27# try DirectoryIndex overview.html on the main level
28#
29# add a icon on netCDF files::
30#
31#   AddIcon /icons/netcdf.gif .nc
32#
33#
34# EVOLUTIONS
35# ==========
36#
37# $Id$
38#
39# $URL$
40#
41# - fplod 20120502
42#
43#   (nb : now used by apache server)
44#
45#   * add IndexOptions DescriptionWidth=* to avoid truncation
46#     thanks to http://perishablepress.com/better-default-directory-views-with-htaccess/
47#   * remove path from description generic
48#   * add mimetype for reStructuredText files (AddType text/x-rst *.rst)
49#     and "Charset=ISO-8859-1" : the last one seems to be the good way
50#     to get rid of badly interpreted characters (diacriticals, degree sign)
51#     from Readme.rst
52#
53# - fplod 20120308
54#
55#   * creation
56#     thanks to httpd.apache.org/docs/2.0/mod/quickreference.html
57#
58#-
59
60ReadmeName Readme.rst
61
62AddType application/x-netcdf *.nc
63AddType text/x-rst *.rst
64
65IndexOptions DescriptionWidth=* Charset=ISO-8859-1
66
67AddDescription "README" Readme.rst
68# uncomment this line to check for description width
69#AddDescription "12345678911234567892123456789312345678941234567895123456789" Readme.rst
70
71AddDescription "Monthly average TropFlux latent heat flux" lhf_tropflux_1m_*.nc
72AddDescription "Monthly average TropFlux net surface longwave radiation" lwr_tropflux_1m_*.nc
73AddDescription "Monthly average TropFlux net heat flux" netflux_tropflux_1m_*.nc
74AddDescription "Monthly average TropFlux specific humidity at 2m" q2m_tropflux_1m_*.nc
75AddDescription "Monthly average TropFlux sensible heat flux" shf_tropflux_1m_*.nc
76AddDescription "Monthly average TropFlux Sea Surface Temperature" sst_tropflux_1m_*.nc
77AddDescription "Monthly average TropFlux net surface shortwave radiation" swr_tropflux_1m_*.nc
78AddDescription "Monthly average TropFlux air temperature at 2m" t2m_tropflux_1m_*.nc
79AddDescription "Monthly average TropFlux wind stress module" tau_tropflux_1m_*.nc
80AddDescription "Monthly average TropFlux zonal wind stress" taux_tropflux_1m_*.nc
81AddDescription "Monthly average TropFlux meridional wind stress" tauy_tropflux_1m_*.nc
82AddDescription "Monthly average TropFlux wind speed" ws_tropflux_1m_*.nc
83
84AddDescription "Daily average TropFlux latent heat flux" lhf_tropflux_1d_*.nc
85AddDescription "Daily average TropFlux net surface longwave radiation" lwr_tropflux_1d_*.nc
86AddDescription "Daily average TropFlux net heat flux" netflux_tropflux_1d_*.nc
87AddDescription "Daily average TropFlux specific humidity at 2m" q2m_tropflux_1d_*.nc
88AddDescription "Daily average TropFlux sensible heat flux" shf_tropflux_1d_*.nc
89AddDescription "Daily average TropFlux Sea Surface Temperature" sst_tropflux_1d_*.nc
90AddDescription "Daily average TropFlux net surface shortwave radiation" swr_tropflux_1d_*.nc
91AddDescription "Daily average TropFlux air temperature at 2m" t2m_tropflux_1d_*.nc
92AddDescription "Daily average TropFlux wind stress module" tau_tropflux_1d_*.nc
93AddDescription "Daily average TropFlux zonal wind stress" taux_tropflux_1d_*.nc
94AddDescription "Daily average TropFlux meridional wind stress" tauy_tropflux_1d_*.nc
95AddDescription "Daily average TropFlux wind speed" ws_tropflux_1d_*.nc
Note: See TracBrowser for help on using the repository browser.