summaryrefslogtreecommitdiff
path: root/web/viewsjs/key.js.erb
Commit message (Collapse)AuthorAge
* Make JOSM button work in https mode.Jochen Topf2015-03-06
| | | | | | | | The JOSM button now contacts JOSM on http://localhost:8111/ if the taginfo page is using http and https://localhost:8112/ if it is using https. This way we don't have a problem with mixed content. Also the way JOSM is called now works without the iframes which were a hack around the (then) missing CORS ability.
* Add (hidden) similar keys tab on key page and similar keys report.Jochen Topf2015-02-26
| | | | | This commit adds the new tab and new report but doesn't activate them, because they will not work until the database backend is updated.
* Remove spaces at line endings.Jochen Topf2014-09-29
|
* Disable JOSM tab on key and tag pages.Jochen Topf2014-09-19
| | | | Superseded by the new Project tab.
* Add filtering to key/tag project output.Jochen Topf2014-09-14
|
* Separate out up API call for key/projects from tag/projects.Jochen Topf2014-09-14
|
* Remove need for project icon redirect.Jochen Topf2014-09-07
|
* Project files can now contain a list of object types for each key/tag.Jochen Topf2014-09-06
|
* Some project-related texts improved.Jochen Topf2014-09-06
|
* Add project icons.Jochen Topf2014-09-05
|
* Add new 'projects' source.Jochen Topf2014-08-21
| | | | | | Any kind of project using OSM tags can create a json-formatted taginfo project file and after its URL is added to the taginfo config, taginfo will integrate this data into its database.
* More escaping... (Fixes https://trac.openstreetmap.org/ticket/4775)Jochen Topf2013-02-11
|
* Fix escapingJochen Topf2013-01-30
| | | | | | | | | Some data was HTML-escaped in the API results. Now data in API results is (hopefully) all raw and clients have to escape as needed. One client is, obviously, taginfo itself and a few places have been changed to do the right escaping now. Fixes #19.
* Add in_wiki column to key values viewJochen Topf2013-01-24
|
* More misc js cleanupJochen Topf2013-01-17
|
* More print_* to fmt_* cleanupJochen Topf2013-01-17
|
* Cleanup js function print_value_with_percentJochen Topf2013-01-17
|
* More fmt function cleanupsJochen Topf2013-01-17
|
* More js fmt function cleanupsJochen Topf2013-01-17
|
* Split fmt_wiki_link into link_to_wiki and url_for_wikiJochen Topf2013-01-17
|
* Cleanup batch of print_* functionsJochen Topf2013-01-17
|
* Add keyboard shortcutsJochen Topf2013-01-16
|
* Optimized column width in tablesJochen Topf2013-01-11
|
* Add image popup to key/tag wiki tab tablesJochen Topf2013-01-09
|
* Better support for wiki images.Jochen Topf2013-01-09
| | | | | | | | | | | | | Key and tag wiki pages can contain images. Until now we only got the titles of those images. Now we also get the URL to the image, URL to thumbnails, width, height, and mime type. This information is now exposed in the API and it is used to show the images in the Overview tab of the key and tag pages. While we are changing the update process anyway, I changed the program that gets the list of all pages to also output the time those pages changed last. This information is currently not used, but it could be used to cache those pages locally making the update much faster and adding less strain to the wiki server.
* Empty table issue cleanup.Jochen Topf2013-01-07
| | | | | | | | | | | | | | | Sometimes there are not results for some query and you'll end up with an empty table. It would be nice if no empty table appears in this case but instead some nice message. But we can't simply remove the table, because if people use the search-inside-table function and that was the result of the empty table they loose the ability to change the search term. We could only draw the table in the first place if there will be something in it. But just finding out whether there will be something in the table can be quite expensive, for instance with searches for values. So we don't want to do this twice (once in the template to find out whether to draw the table in the first place and once in the API call filling the table.) So we are currently stuck with what we have until somebody invents a better way.
* Javascript functions to pretty-print JOSM dataJochen Topf2013-01-06
|
* More javascript cleanupJochen Topf2013-01-06
|
* Javascript related cleanupJochen Topf2013-01-06
|
* Rename 'b' result to 'value_bool' in josm API calls.Jochen Topf2013-01-06
|
* Updated josm API callsJochen Topf2013-01-06
|
* Moved many API calls over to new version 4.Jochen Topf2013-01-06
| | | | Old versions are marked as deprecated. All new API calls are documented.
* More I18N cleanupJochen Topf2012-01-24
|
* key page tab cleanupJochen Topf2012-01-24
|
* Internationalization of key pageJochen Topf2012-01-24
|
* Simplified javascript codeJochen Topf2012-01-23
|
* Move flexigrid table definitions into javascript files for each page which ↵Jochen Topf2012-01-23
are created dynamically according to the language.