summaryrefslogtreecommitdiff
path: root/taginfo-config-example.json
Commit message (Collapse)AuthorAge
* Make showing the similar tab the default.Jochen Topf2015-03-09
|
* Increase max_auto parameter for Overpass Turbo.Jochen Topf2015-02-27
| | | | | | Overpass turbo is well able to handle larger number of objects. Fixes #110.
* Make display of new 'similar' tab configurable.Jochen Topf2015-02-27
| | | | | | There is a setting now in the configuration file. Display is off by default until people have a chance to upgrade their taginfo version, so that the data needed for displaying this is actually available.
* Replaces tabs by spaces in example config.Jochen Topf2015-02-27
|
* Run 'similarity' binary from db update script if it is available.Jochen Topf2015-02-26
| | | | | | | This also introduces a 'bindir' config setting which must contain the directory where the binaries such as 'tagstats' and 'similarity' live. This setting will replace the current 'tagstats' setting in the future.
* make sqlite3 full-text search tokenizer configurable.Kuang-che Wu2015-02-05
| | | | | | | | | OpenStreetMap is an international project. "icu" or other non-default tokenizer may be more suitable for some locales. For example, "icu" tokenizer is better than the default ("simple") for Chinese. We don't want to force all to recompile sqlite3 in order to use "icu" tokenizer, so make it configurable in taginfo-config.json.
* Remove "josm" from sources in example config.Jochen Topf2014-10-20
|
* Add config setting for CORS header.Jochen Topf2014-10-09
| | | | | | | | | The response header Access-Control-Allow-Origin was always set to '*' for API URLs. This is creating some problems with Apache (see https://github.com/openstreetmap/iD/issues/2333), so it is now configurable. The value of the new config setting "instance.access_control_allow_origin" is used for that header now, or, if the variable is empty, the header is not set at all.
* Add 'projects' source to example config file.Jochen Topf2014-09-18
|
* Removed unused Potlatch-related code.Jochen Topf2014-09-14
|
* Improved comments in example config. Reduced number of SQL queries logged.Jochen Topf2014-05-21
|
* add config options for base map attribution and separate scale factor for ↵Sarah Hoffmann2014-05-20
| | | | compare maps
* Put "about" texts in i18n files.Jochen Topf2014-05-20
|
* Fixed Overpass Turbo linkJochen Topf2014-05-18
|
* Improved comments in config fileJochen Topf2014-05-18
|
* Use different overpass turbo call when numbers of objects is small.Jochen Topf2014-05-15
| | | | | | | | When there aren't too many objects with a given key or tag, use the new wizard interface of overpass turbo, which runs automatically in global context and automatically zooms to the results. This is much nicer and easier. If there are too many objects, we keep the old behaviour. Unfortunately this is rather confusing. Maybe we can figure out something better...
* Add "Level0 Editor" button to key and tag pages.Jochen Topf2014-05-14
| | | | | | | | | 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.
* The tagstats binary is no longer available in the repository.Jochen Topf2014-05-13
| | | | You have to compile it yourself.
* Create list of frequent tags.Jochen Topf2014-05-11
| | | | This can later be used to create maps for them.
* Make taginfo log directory configurable.Jochen Topf2014-02-16
|
* Make min_tag_combination_count configurable at runtimeJochen Topf2013-10-07
|
* Make geodistribution int type configurableJochen Topf2013-10-05
|
* Make minimum number of tags/relations of some type needed for some ↵Jochen Topf2013-05-27
| | | | statistics configurable.
* Remove part of the Merkaartor code. This was never used and the Merkaartor ↵Jochen Topf2013-05-27
| | | | editor is no longer maintained.
* Add turbo link to toolsJochen Topf2013-02-13
|
* Make SQL query logging configurableJochen Topf2013-01-20
|
* Extend languages source to get info about scripts.Jochen Topf2013-01-15
|
* correct comment in example config fileJochen Topf2012-09-14
|
* fix url for josmJochen Topf2012-02-25
|
* make xapi/josm max_results configurableJochen Topf2012-02-25
|
* Add configuration options that help when compiling tagstatsJochen Topf2012-01-25
|
* Path to tagstats program now in main configJochen Topf2012-01-23
|
* Add more instance logos and API call to get to instance infoJochen Topf2012-01-20
|
* Remove config option for javascript cloud size, this is now autosizingJochen Topf2012-01-15
|
* Continuing the great layout change...Jochen Topf2012-01-15
|
* First checkin of new layoutJochen Topf2012-01-01
|
* Fix language switching.Jochen Topf2011-10-15
| | | | | | | | Switching between languages didn't work in some constellations. This seems to be because of caching of the pages in the browser. I think the browser should not use the cached page, because it has a different cookie, but it did. So I changed the expire on normal web pages to 0. (API pages still have a longer expire.)
* Add config for distribution images.Jochen Topf2011-10-12
| | | | New config options for the geographic distribution images.
* Add taginfo-config.rb to read config from command line.Jochen Topf2011-10-10
I added bin/taginfo-config.rb to easily access the config file from the command line. This is now used in sources/db/update.sh and sources/update_all.sh. This, again, reduces the places in the distribution where things needed to be changed for each instance.