Changeset 2922 for TI05-delivery/ows_framework/trunk
- Timestamp:
- 04/10/07 11:05:44 (12 years ago)
- Location:
- TI05-delivery/ows_framework/trunk/ows_server/ows_server
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/ows_framework/trunk/ows_server/ows_server/config/routing.py
r2915 r2922 27 27 #WCS 28 28 #map.connect(':file/status/:jobID', controller='status', action='getStatus') #not used currently 29 30 #1.1 currently at "wcs" 31 map.connect('wcs/:uri', controller='csml_wcs') # currently 1.1 29 #wcs controller for all versions: (called wcsx) 30 map.connect('wcs/:uri', controller='csml_wcsx') 31 #1.1.0 currently at "csml_wcs" controller 32 map.connect('wcs1_1_0/:uri', controller='csml_wcs') # currently 1.1 33 #1.0.0 at "wcs1_0_0" 34 map.connect('wcs1_0_0/:uri', controller='csml_wcs1_0') # 1.0 plus 35 #filestore - used for 'store' in wcs 32 36 map.connect('filestore/:file', controller='fetch', action='fetchFile') 33 34 #1.0 temporarily at "wcs1_0"35 map.connect('wcs1_0/:uri', controller='csml_wcs1_0') # 1.0 plus36 37 37 38 # following is the shell for the rest of the ndg -
TI05-delivery/ows_framework/trunk/ows_server/ows_server/templates/wcs1_0_capabilities.kid
r2920 r2922 67 67 <keyword>NONE</keyword> 68 68 </keywords> 69 < !--! <SupportedCRS py:for="crs in ds.supportedCRSs"70 py:content="crs"/> -->71 < !--!<SupportedFormat py:for="format in ds.formats"72 py:content="format"/> -->69 <SupportedCRS py:for="crs in ds.supportedCRSs" 70 py:content="crs"/> 71 <SupportedFormat py:for="format in ds.formats" 72 py:content="format"/> 73 73 </CoverageOfferingBrief> 74 74
Note: See TracChangeset
for help on using the changeset viewer.