User: markomlm Date: 2010-06-15 09:20:39+0000 Modified: de/www/downloads/download.js
Log: fix fuer sonstige Systeme File Changes: Directory: /de/www/downloads/ ============================= File [changed]: download.js Url: http://de.openoffice.org/source/browse/de/www/downloads/download.js?r1=1.19&r2=1.20 Delta lines: +8 -4 ------------------- --- download.js 2010-06-12 14:47:08+0000 1.19 +++ download.js 2010-06-15 09:20:37+0000 1.20 @@ -176,8 +176,8 @@ filename="OOo_"+version+"_MacOS_x86_install_de.dmg"; return; } else { - os_name = "Linux (RPM)"; - filename = "OOo_"+version+"_Linux_x86_install_de.tar.gz"; + os_name = "weitere nicht automtatisch erkannte Systeme"; + filename = ""; return; } } @@ -185,8 +185,12 @@ function write_download_link() { DPLoad( ); os_detect(); - + if (filename == ""){ + document.writeln( "<a href=\"../about-ooo/about_unterstuetzung.html?dl=http://de.openoffice.org/downloads/other.html"\">" ); + } + else { document.writeln( "<a href=\"../about-ooo/about_unterstuetzung.html?dl=http://download.services.openoffice.org/files/localized/de/"+version+"/"+filename+"\">" ); + } document.writeln( "OpenOffice.org " + version + " für " + os_name + " (*) jetzt herunterladen</a>" ); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
