User: SimonAW Date: 2010-01-12 19:46:00+0000 Modified: de/www/testdir/download.html
Log: Das neue Download-Portal (Entwurf!!!) File Changes: Directory: /de/www/testdir/ =========================== File [changed]: download.html Url: http://de.openoffice.org/source/browse/de/www/testdir/download.html?r1=1.2&r2=1.3 Delta lines: +98 -2 -------------------- --- download.html 2009-09-20 21:39:46+0000 1.2 +++ download.html 2010-01-12 19:45:58+0000 1.3 @@ -1,2 +1,98 @@ -#set( $foo = "Velocity" ) -Hello $foo World! +<html> + <head> + <title>OpenOffice.org herunterladen</title> + <link rel="stylesheet" type="text/css" href="download.css" media="screen" /> + </head> + + <body> + +<!-- CONTENT GOES HERE --> + +<div id="dlBoxes"> + + <div id="dlCurrent" class="dlBox"> + <div class="dlHeading"> + <script type="text/javascript"> + + var os_name; + + function os_detect() { + uastring = new String( navigator.userAgent ).toLowerCase(); + if ( uastring.indexOf( "linux" ) >= 0 ) { + os_name = "Linux"; + return "linuxintel"; + } else + if ( uastring.indexOf( "windows" ) >= 0 ) { + os_name = "Windows"; + return "win"; + } else + if ( uastring.indexOf( "macintosh" ) >= 0 ) { + os_name = "MacOS X"; + return "macosxintel"; + } else { + return "linuxintel"; + } + } + +function mk_dl_url() { + version="3.1.1"; + lang="de"; + product="OpenOffice.org"; + os=os_detect(); + + document.writeln( "<a href=\"http://openoffice.bouncer.osuosl.org/?product="+product+"&os="+os+"&lang="+lang+"&version="+version+"\">" ); + document.writeln( "OpenOffice.org für " + os_name + " herunterladen</a>" ); +} + +mk_dl_url(); + </script> + + <noscript> + OpenOffice.org herunterladen + </noscript> + </div> + + <div class="dlSubinfo"> + <a href="http://download.openoffice.org/other.html"> + Weitere Versionen (mit JRE, 64-bit-Versionen, Alle Betriebssysteme) + </a> + </div> + + </div> + + <div id="dlExtensions" class="dlBox"> + <div class="dlHeading"> + <a href="http://extensions.services.openoffice.org">Erweiterungen für OpenOffice.org herunterladen</a> + </div> + + <div class="dlSubinfo"> + + Erweitern und personalisieren Sie Ihre OpenOffice.org durch + eine ständig anwachsende Auswahl von Erweiterungen, wie z.B. + Wörterbücher. + + </div> + </div> + + <div id="dlNext" class="dlBox"> + <div class="dlHeading"> + <a href="http://download.openoffice.org/all_rc.html">Release Candidates</a> + </div> + + <div class="dlSubinfo"> + + Release Candidates (RCs) heissen zukünftige Versionen von + OpenOffice.org, die noch Fehler (Bugs) enthalten können und + <strong>nicht für den täglichen Gebrauch bestimmt + sind</strong>. Laden Sie sich diese Versionen nur dann, + wenn Sie mithelfen wollen, Fehler zu behen oder genau + wissen, was Sie tun. + + </div> + </div> + +</div> + +<!-- CONTENT --> +</body> +</html> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
