Custom query (1092 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (52 - 54 of 1092)

Ticket
#797
Description

In our categorizing of applications in the osgeolive documentation, and in the menu structure, maptiler is currently listed under SpatialTools. http://live.osgeo.org/en/overview/overview.html

However, since maptiler creates tiles which are to be served to the web via various standards, like the Tiled WMS standard, I think it would be better categorised under "Web Services". In particular, it should be put near MapProxy which provides similar functionality.

Cameron Shorter.

#804
Description

The MetaCRS Overview includes the GDAL icon instead of a MetaCRS icon. http://live.osgeo.org/en/overview/metacrs_overview.html

#833
Description

in case of the browser has set en, de, el, jp, es or pl the relevant index page should be loaded by redirecting. IMHO this should only happen if the user came from an other side .

Its possible to achieve this behavior by adding a javascript right under 'doc/_static/<path>/<the_java_script_file.js>' and register it in the python script conf.py by the following additional lines:

def setup(app):
    app.add_javascript('<path>/<the_java_script_file.js>')

the js-File can access the language environment:

var supported_languages=["el", "es", "pl", "en", "de", "jp"];

var langCode = navigator.language || navigator.systemLanguage;
var lang = langCode.toLowerCase();
lang = lang.substr(0,2);

// check last page and if it's not live.osgeo.org and 
// browser language is one of the supported and
// requested page was index.html, 
// redirect to the relevant <lang>/index page
// TODO code here
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.