1 |
# Copyright (C) 2008 by Intevation GmbH |
2 |
# Author(s): |
3 |
# Bernhard Reiter <[email protected]> |
4 |
# |
5 |
# This program is free software under the GPL (>=v2) |
6 |
# Read the file COPYING coming with the software for details. |
7 |
|
8 |
""" |
9 |
Installation wide configuration file. |
10 |
""" |
11 |
|
12 |
try: |
13 |
import Extensions.bboxdump |
14 |
except Exception, x: |
15 |
print x |
16 |
|
17 |
try: |
18 |
import Extensions.export_shapefile |
19 |
except Exception, x: |
20 |
print x |
21 |
|
22 |
try: |
23 |
import Extensions.gns2shp |
24 |
except Exception, x: |
25 |
print x |
26 |
|
27 |
try: |
28 |
import Extensions.importAPR |
29 |
except Exception, x: |
30 |
print x |
31 |
|
32 |
try: |
33 |
import Extensions.mouseposition |
34 |
except Exception, x: |
35 |
print x |
36 |
|
37 |
try: |
38 |
import Extensions.ogr |
39 |
except Exception, x: |
40 |
print x |
41 |
|
42 |
# no import of profiling, because it uses the non-free profiling module |
43 |
# of python which does not come with some distributions. |
44 |
|
45 |
try: |
46 |
import Extensions.svgexport |
47 |
except Exception, x: |
48 |
print x |
49 |
|
50 |
try: |
51 |
import Extensions.umn_mapserver |
52 |
except Exception, x: |
53 |
print x |
54 |
|
55 |
# disabled for 1.2.1 release because PyOGCLib is buggy |
56 |
#try: |
57 |
# import Extensions.wms |
58 |
#except Exception, x: |
59 |
# print x |
60 |
|