MapOSMatic - A web interface for creating printable OpenStreetMap maps
 
 
 
 
 
 
Go to file
Hartmut Holzgraefe 08c603a7d5 show all render job details in list view, too
TODO: a formated table like in the details view would
be preferred here, but currently screws up the layout

also translation entries for "Request submitted" etc.
would need to be changed to include <td> tags
2017-01-08 09:44:37 +00:00
.tx Fix language source for transifex translations 2012-12-19 09:00:03 +01:00
ci-scripts@4c472b586f Fix commit message 2013-06-20 14:20:50 +02:00
scripts Merge branch 'upstream_dev_overlay_style' 2017-01-06 10:43:33 +00:00
support use systemd instead of SysV init script 2016-04-03 12:20:24 +02:00
talks Add source and PDF files for 2013-11-13 talk on i18n in MapOSMatic 2013-11-14 20:34:58 +01:00
www show all render job details in list view, too 2017-01-08 09:44:37 +00:00
.gitignore gitignore: ignore rendered jobs in default result path 2016-11-12 14:31:02 +00:00
.gitmodules Added submodule reference for ci-scripts 2013-04-30 08:33:09 +02:00
AUTHORS Update authors file 2010-08-06 11:00:59 +02:00
COPYING Rename LICENSE into COPYING 2009-08-31 20:58:17 +02:00
INSTALL use django migrations instead of deprecated syncdb 2016-05-05 23:42:54 +02:00
INSTALL.Ubuntu.md Add quick install instruction for Ubuntu 2016-11-12 17:09:28 +00:00
README updated localization instructions and fixed manage.py execution permissions 2016-08-27 22:39:07 +02:00
manage.py updated localization instructions and fixed manage.py execution permissions 2016-08-27 22:39:07 +02: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:

  cd www/maposmatic
  ../../manage.py makemessages --no-wrap -a # for all locales

or

  cd www/maposmatic
  ../../manage.py makemessages --no-wrap -l xx_XX # for one 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:

  ../../manage.py compilemessages