Custom query (1088 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (154 - 156 of 1088)

Ticket Resolution Summary Owner Reporter
#804 fixed Wrong icon in MetaCRS Overview live-demo@… camerons
Description

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

#808 fixed USB, Persistant file system corruption live-demo@… micha
Description

I am making a batch of LiveUSB disks created with Unetbootin and using the "persistence" option. I have found that I get file system corruption when using the Desktop osgeo-halt icon to shutdown immediately after saving a new file. If I wait a few moments (> 1 min) this does not occur. If I shutdown using the usual shutdown in the top panel (under User's name) and *wait for the 30 sec timeout*, the file system stays intact. But using the Desktop shutdown icon, whatever directory I saved a file in becomes inaccessible on the next boot.

-- Micha

#833 fixed Redirect if the browser/window language is one of the supported fgdrf fgdrf
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.