Changeset 3686
- Timestamp:
- 12/08/10 06:36:57 (2 years ago)
- Location:
- sandbox/cmoullet/2010_mapfish_workshop_fhnw/source
- Files:
-
- 4 added
- 2 modified
-
_static/Firebug.png (added)
-
_static/osm.png (added)
-
_static/pylons.png (added)
-
creating_application.rst (added)
-
getting_started.rst (modified) (3 diffs)
-
mapfish.rst (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sandbox/cmoullet/2010_mapfish_workshop_fhnw/source/getting_started.rst
r3671 r3686 16 16 ------------------ 17 17 18 Download the MapFish installer located in http://www.mapfish.org/downloads/go-mapfish-framework- 1.2.py and store in ``C:\temp\mapfish\``18 Download the MapFish installer located in http://www.mapfish.org/downloads/go-mapfish-framework-2.0.py and store in ``C:\temp\mapfish\`` 19 19 20 20 Start a command line and follow this step:: 21 21 22 22 cd C:\temp\mapfish\ 23 C:\ > C:\Python25\python.exe go-mapfish-framework-2.0.py --no-site-packages env23 C:\temp\mapfish> C:\Python25\python.exe go-mapfish-framework-2.0.py --no-site-packages env 24 24 25 25 This command creates a virtual Python environment named ``env`` and installs … … 28 28 Now activate the virtual environment with:: 29 29 30 C:\ > env\Scripts\activate.bat30 C:\temp\mapfish> env\Scripts\activate.bat 31 31 32 32 You command prompt should now look like this:: … … 54 54 <http://getfirebug.com/>`_ [#]_ (Use version 1.4.5 for FireFox 3.0 [#]_). Firebug is an add-on for FireFox that allows 55 55 you to debug JavaScript in any web page. Firebug requires FireFox and cannot be 56 used with any other web browser. Installing the `JSONView 57 <https://addons.mozilla.org/en-US/firefox/addon/10869>`_ extension is also 58 recommented, it will be used for viewing JSON responses in FireFox. 56 used with any other web browser. 57 58 Installing the `JSONView <https://addons.mozilla.org/en-US/firefox/addon/10869>`_ [#]_ extension is also 59 recommended, it will be used for viewing JSON responses in FireFox. 59 60 60 61 .. [#] http://getfirebug.com/ 61 62 .. [#] https://addons.mozilla.org/en-US/firefox/addon/1843 62 63 .. [#] https://addons.mozilla.org/en-US/firefox/addon/10869 64 65 Test the FireFox extensions 66 --------------------------- 67 68 To open Firebug, click on the Firebug icon on the bottom right of Firefox. 69 70 Open the page http://www.openlayers.org/dev/examples/wms.html and have a look at the various tabs offered by Firebug: 71 72 .. image:: _static/Firebug.png 73 74 In order to test JSONView, open the URL http://www.openaddresses.org/addresses/?limit=3&attrs=street,housenumber,city&query=Gen%E8ve%20Vogt 75 76 You can also have a look at Firebug to see the JSON answer 77 -
sandbox/cmoullet/2010_mapfish_workshop_fhnw/source/mapfish.rst
r3671 r3686 10 10 11 11 getting_started 12 creating_application 12 13
