diff options
author | Jochen Topf <jochen@topf.org> | 2014-09-21 10:42:30 +0200 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2014-09-21 10:42:30 +0200 |
commit | 64073b37f99321bffa0d3b2023f836d394123c58 (patch) | |
tree | 377b6c78142d4e7a6b1375fd43f8e60204389c57 | |
parent | cf377fa38b3edcd040f66fb5afab4b3dea9255f0 (diff) | |
parent | c2f9928767abec454efaba025ec661ffe78a099a (diff) | |
download | taginfo-64073b37f99321bffa0d3b2023f836d394123c58.tar taginfo-64073b37f99321bffa0d3b2023f836d394123c58.tar.gz |
Merge branch 'master' of git://github.com/alexandre-mbm/taginfo
-rw-r--r-- | README | 90 | ||||
-rw-r--r-- | README.md | 90 |
2 files changed, 90 insertions, 90 deletions
@@ -1,90 +0,0 @@ - -Taginfo -======= - -Brings together information about OpenStreetMap tags and makes it searchable and browsable. - -Documentation: http://wiki.openstreetmap.org/wiki/Taginfo -Live System: http://taginfo.openstreetmap.org/ - - -FILES ------ - -* sources - Import scripts -* web - Web User Interface and API -* examples - Some misc example stuff -* tagstats - C++ program to create database statistics - - -PREREQUISITES -------------- - -Uses - * Ruby (must be at least 1.9.1) - * Mongrel or Apache2 mod_passenger - * Sinatra web framework http://www.sinatrarb.com/ - * Rack Contrib Gem (for Rack::JSONP) - * JSON gem (install with gem, Debian/Ubuntu packages are too old and buggy) - * curl binary - * sqlite3 binary and ruby libs - * m4 binary - -Debian/Ubuntu packages: - curl m4 sqlite3 ruby-sqlite3 ruby-passenger libapache2-mod-passenger - -Gems: - gem install rack rack-contrib sinatra sinatra-r18n json - -There is a developer mailing list at -http://lists.openstreetmap.org/listinfo/taginfo-dev - - -DATA IMPORT ------------ - -See http://wiki.openstreetmap.org/wiki/Taginfo/Running - - -WEB USER INTERFACE ------------------- - -You need a 'data' directory in the parent directory of the directory where -this README is. It must contain the sqlite database files created in the -data import step or downloaded from http://taginfo.openstreetmap.org/download . - -To start the web user interface: -cd web -./taginfo.rb - - -JAVASCRIPT ----------- - -Taginfo uses the following Javascript libraries: -* jQuery 1.9.0 -* jQuery UI 1.9.2 -* customSelect (http://adam.co/lab/jquery/customselect/) -* tipsy (http://onehackoranother.com/projects/jquery/tipsy/) -* jQuery Cookie (https://github.com/carhartl/jquery-cookie/) -* Flexigrid (Originally from http://code.google.com/p/flexigrid/ - http://www.flexigrid.info/ , the version used and included - has some changes and bugfixes.) - -All the Javascript and CSS needed is already included. - - -THANKS ------- -Stefano Tampieri - for the Italian translation -Ilya Zverev <zverik@textual.ru> - for the Russion translation -Jocelyn Jaubert <jocelyn.jaubert@gmail.com> - for the French translation -Jacek Buczyński <jacekzlodzi@gmail.com> - for the Polish translation - - -AUTHOR ------- - -Jochen Topf <jochen@remote.org> -http://wiki.openstreetmap.org/wiki/User:Joto - diff --git a/README.md b/README.md new file mode 100644 index 0000000..88acb64 --- /dev/null +++ b/README.md @@ -0,0 +1,90 @@ +Taginfo +======= + +Brings together information about OpenStreetMap tags and makes it searchable and browsable. + + **Documentation:** the page [Taginfo](http://wiki.openstreetmap.org/wiki/Taginfo) at OpenStreetMap's wiki + + **Live System:** [taginfo.openstreetmap.org](http://taginfo.openstreetmap.org/) + + +Files +----- + +* `/sources` - import scripts +* `/web` - web user interface and API +* `/examples` - some misc example stuff +* `/tagstats` - C++ program to create database statistics + + +Prerequisites +------------- + +It uses: + +* Ruby (must be at least 1.9.1) +* Mongrel or Apache2 mod_passenger +* [Sinatra web framework](http://www.sinatrarb.com/) +* Rack Contrib Gem (for `Rack::JSONP`) +* JSON gem (install with gem, Debian/Ubuntu packages are too old and buggy) +* curl binary +* sqlite3 binary and ruby libs +* m4 binary + +Install the Debian/Ubuntu packages: +```bash +$ sudo apt-get install curl m4 sqlite3 ruby-sqlite3 ruby-passenger libapache2-mod-passenger +``` + +Install the Gems: +```bash +$ sudo gem install rack rack-contrib sinatra sinatra-r18n json +``` + +There is a developer mailing list: [taginfo-dev](http://lists.openstreetmap.org/listinfo/taginfo-dev) + + +Data Import +----------- + +See [Taginfo/Running](http://wiki.openstreetmap.org/wiki/Taginfo/Running) at OpenStreetMap's wiki. + + +Web User Interface +------------------ + +You need a `/data` directory (where this `README.md` is). It must contain the sqlite database files created in the data import step or downloaded from page [taginfo.openstreetmap.org/download](http://taginfo.openstreetmap.org/download). + +To start the web user interface: +```bash +$ cd web +$ ./taginfo.rb +``` + +Javascript +---------- + +Taginfo uses the following Javascript libraries: +* jQuery 1.9.0 +* jQuery UI 1.9.2 +* [customSelect](http://adam.co/lab/jquery/customselect/) +* [tipsy](http://onehackoranother.com/projects/jquery/tipsy/) +* [jQuery Cookie](https://github.com/carhartl/jquery-cookie/) +* Flexigrid (from [Google Code](http://code.google.com/p/flexigrid/) and [flexigrid.info](http://www.flexigrid.info/), but with changes and bugfixes) + +All the Javascript and CSS needed is already included. + + +Thanks +------ + +* Stefano Tampieri, for the Italian translation +* Ilya Zverev <<zverik@textual.ru>>, for the Russion translation +* Jocelyn Jaubert <<jocelyn.jaubert@gmail.com>>, for the French translation +* Jacek Buczyński <<jacekzlodzi@gmail.com>>, for the Polish translation + + +Author +------ + +Jochen Topf <<jochen@remote.org>> AKA [Joto](http://wiki.openstreetmap.org/wiki/User:Joto) |