MapOSMatic - A web interface for creating printable OpenStreetMap maps
 
 
 
 
 
 
Go to file
David Decotigny 0f7fccd868 Fixed form cleaning behavior upon error
When an error occurs while processing the form's data, cleaning up the
data can result in attempting to delete non existent keys. This patch
should make the code tolerant to the half-created form data we have to
deal with in that case.

The problem happened 5 or 6 times within the last 3 weeks.
2010-09-19 12:43:44 +02:00
scripts Add a .gitignore file in the scripts/ directory. 2010-08-07 09:34:34 +02:00
support Update the INSTALL instructions for the new rendering daemon 2010-06-20 17:48:53 +02:00
talks Skeleton for the State of the Map 2010 talk (July 2010) 2010-06-10 17:56:40 +02:00
www Fixed form cleaning behavior upon error 2010-09-19 12:43:44 +02:00
.gitignore Add settings_local.py to .gitignore 2010-08-04 17:30:20 +02:00
AUTHORS Add AUTHORS file 2009-09-05 12:19:50 +02:00
COPYING Rename LICENSE into COPYING 2009-08-31 20:58:17 +02:00
INSTALL Update the INSTALL instructions for the new rendering daemon 2010-06-20 17:48:53 +02:00
README Spelling mistake. 2009-12-19 17:07:36 +01:00

README

MapOSMatic is a web application to generate maps of cities or towns,
including index of streets, from OpenStreetMap data.

It is made of two components:

 * maposmatic, the web front-end. An application written using the
   Django framework allows to submit and visualize map rendering jobs.
   The rendering is done in the background by a daemon;

 * ocitysmap, the back-end that generates the map. It is available as a
   Python module, used both by the maposmatic daemon (above) and by a
   sample command line application.

This source tree contains maposmatic, the web front-end.

It is licensed under under GNU AGPLv3 (GNU Affero General Public
License 3.0).

Translation
===========

The .po files are stored in www/locale/<locale>/LC_MESSAGES/. To
generate or update a .po file, run: django-admin.py makemessages -l
<locale>. Then, edit the .po file manually, or using a graphical tool
such as poedit (available in the Debian/Ubuntu package of the same
name). Once done, don't forget to compile the .po file into an .mo
file using django-admin.py compilemessages.