Changeset 4429
- Timestamp:
- 14/11/08 10:05:28 (12 years ago)
- Location:
- cows/trunk/cows/pylons
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cows/trunk/cows/pylons/ows_controller.py
r4393 r4429 11 11 from pylons.controllers import WSGIController 12 12 from pylons.templating import render 13 from webhelpers import url_for 13 try:#pylons has changed the way ithis is imported in newer versions(0.9.7rc3) 14 from webhelpers import url_for 15 except: 16 from routes import url_for 14 17 15 18 from cows import exceptions as OWS_E -
cows/trunk/cows/pylons/wfs_controller.py
r4422 r4429 8 8 from cStringIO import StringIO 9 9 from sets import Set 10 from matplotlib.cm import get_cmap11 10 from pylons import request, response, c, config 12 11 import ConfigParser
Note: See TracChangeset
for help on using the changeset viewer.