| Commit message (Expand) | Author | Age |
... | |
* | Change order of buttons on key and tag pages. | Jochen Topf | 2014-05-14 |
* | Fix calculation of relations of given type. | Jochen Topf | 2014-05-14 |
* | i18n support for "button disabled" text on key/tag/relation pages. | Jochen Topf | 2014-05-14 |
* | Fix level0 link on tag page. | Jochen Topf | 2014-05-14 |
* | Add "Level0 Editor" button to key and tag pages.•••This allows easy editing of tags, for instance when there are typos. If you
click on this link an Overpass API call will be made to find the object IDs for
the objects with this key/tag and then the Level0 editor will be opened in a
new window with those objects. To not overwhelm the Overpass API or the Level0
editor, the link will only be active if there are less then a configurable
number of objects with the given key/tags.
| Jochen Topf | 2014-05-14 |
* | Remove obsolete sql scripts.•••Their functionality is now in selection.sql.
| Jochen Topf | 2014-05-13 |
* | Add all positions in ways to map, not just the first one. | Jochen Topf | 2014-05-13 |
* | Activate map tab for tags. | Jochen Topf | 2014-05-13 |
* | Do packing of databases with bzip2 in parallel. | Jochen Topf | 2014-05-13 |
* | Add pragmas to make the sqlite stuff run a little faster. | Jochen Topf | 2014-05-13 |
* | Remove iostreams include. | Jochen Topf | 2014-05-13 |
* | Add --prefix-builtins option to calls to m4 command.•••This effectively disables built-in macros that can mess up the result.
| Jochen Topf | 2014-05-13 |
* | Fix selection db path and general cleanups in update scripts. | Jochen Topf | 2014-05-13 |
* | The tagstats binary is no longer available in the repository.•••You have to compile it yourself.
| Jochen Topf | 2014-05-13 |
* | Use sqlite db file instead of text *.lst files for selected data.•••This changes the way some data is given from one taginfo update run
to the next. Instead of plain text files an sqlite database is used.
Part of the update is a new version of the upstream sqlite.hpp file.
After this commit the update has to be run twice to get all data
updated properly.
| Jochen Topf | 2014-05-13 |
* | Remove defunct merkaartor source files. | Jochen Topf | 2014-05-13 |
* | Remove unused merkaartor section from translation files. | Jochen Topf | 2014-05-13 |
* | Add selection database which will replace *.lst files.•••The *.lst files generated by the update script are problematic because they
don't work when special characters like "line feeds" are in tags. This commit
adds creation of a database called "selection.db" that contains all this data,
but it is not used yet.
Adds dependency on m4 program.
| Jochen Topf | 2014-05-13 |
* | Add support for showing geo distribution of tags.•••This adds all the necessary code but it is still disabled.
| Jochen Topf | 2014-05-13 |
* | Change title on overpass turbo image link. | Jochen Topf | 2014-05-13 |
* | Tagstat fixes for recent changes. | Jochen Topf | 2014-05-13 |
* | Allow spaces in key-value geodistribution lst. | Jochen Topf | 2014-05-12 |
* | Add API call to get maps of tag distributions. | Jochen Topf | 2014-05-12 |
* | Remove old API versions (2 and 3).•••The API v4 has been available since January 2013. Enough time to switch over.
| Jochen Topf | 2014-05-12 |
* | Add code to create maps for tags.•••For a long time we had the capability to create overview maps for keys, but
never for tags (ie key-value-combinations). This commit now adds code to
create maps for frequently used tags. We can't create maps for all tags,
because each map takes about 8k in RAM and there are a lot of tags.
| Jochen Topf | 2014-05-12 |
* | Create list of frequent tags.•••This can later be used to create maps for them.
| Jochen Topf | 2014-05-11 |
* | Ignore Tag templates without tag | Jochen Topf | 2014-04-30 |
* | Add Ukrainian translation from https://github.com/dubyk•••Fixes #48.
| Jochen Topf | 2014-04-21 |
* | Merge pull request #45 from jgpacker/master•••Kickstarting Portuguese locale | Jochen Topf | 2014-03-30 |
|\ |
|
| * | Kickstarting Portuguese locale | jgpacker | 2014-03-26 |
|/ |
|
* | Fix two more places where hard coded http:// urls to wiki were used. | Jochen Topf | 2014-02-23 |
* | Send image URLs in overview tabs without "http:"•••This way they are included as http or https, as appropriate.
| Jochen Topf | 2014-02-18 |
* | Merge pull request #42 from Firefishy/master•••Use protocol relative urls for (trac|wiki|www).openstreetmap.org | Jochen Topf | 2014-02-18 |
|\ |
|
| * | Use protocol relative urls for (trac|wiki|www).openstreetmap.org | Grant Slater | 2014-02-18 |
|/ |
|
* | Add git commit SHA to /taginfo output•••This way we can see what software version the server is running.
| Jochen Topf | 2014-02-17 |
* | Update language registry URL | Jochen Topf | 2014-02-17 |
* | Make taginfo log directory configurable. | Jochen Topf | 2014-02-16 |
* | Merge branch 'master' of github.com:joto/taginfo | Jochen Topf | 2014-02-02 |
|\ |
|
| * | Merge pull request #39 from double-a/patch-1•••Update languages.sql | Jochen Topf | 2013-10-30 |
| |\ |
|
| | * | Update languages.sql•••Added language names which are not yet in the table. | Andreas Abraham | 2013-10-29 |
| |/ |
|
* | | Show some control characters in keys | Jochen Topf | 2014-02-02 |
* | | Text clarification for problematic character report. | Jochen Topf | 2014-02-02 |
|/ |
|
* | Make min_tag_combination_count configurable at runtime | Jochen Topf | 2013-10-07 |
* | Improved message when there is no wiki description | Jochen Topf | 2013-10-07 |
* | Fix a bug with nodes outside bbox•••If there are nodes with locations outside the bounding box we are interested in
in the input osm file and we are generating the geodistribution for ways images,
tagstats could segfault. In this case the node location wasn't stored in the
m_storage, so when reading the it back, either you get an unintialized value
or a segfault. (This also depends on the type of storage used.)
Thanks to @lonvia for help debugging this.
The solution is to store "MAXINT" as a marker and make sure it doesn't end up
in the GeoDistribution.
| Jochen Topf | 2013-10-07 |
* | Move .gitignore | Jochen Topf | 2013-10-07 |
* | Fixes #35 | Jochen Topf | 2013-10-05 |
* | Make geodistribution int type configurable | Jochen Topf | 2013-10-05 |
* | Remove unused debug option | Jochen Topf | 2013-10-05 |
* | Fix for issue #34 | Jochen Topf | 2013-08-05 |