Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/download.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/download.js 
(added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/download.js Wed 
Apr  5 17:05:32 2017
@@ -0,0 +1,150 @@
+/*
+ * JavaScript fuer das Download-Portal von de.openoffice.org
+ * 16.1.2010 - Simon Wilper
+ *
+ */
+
+
+// OOo-Version
+version        = "3.1.1";
+
+// ooodev - PrOOo-Box-DVD, Portable-OOo und ggf. weitere Zusatzprojekte
+
+mirror_list = [
+       ['ooodev_akl1',                         'files.akl.lt (FTP)',           
                                
'ftp://files.akl.lt/OpenOffice.org-extras/ooodev/'],
+       ['ooodev_akl2',                         'files.akl.lt (HTTP)',          
                                
'http://files.akl.lt/OpenOffice.org-extras/ooodev/'],
+       ['ooodev_chemnitz',                     'ftp.tu-chemnitz.de (FTP)',     
                                'ftp://ftp.tu-chemnitz.de/pub/ooodev/'],
+       ['ooodev_chemnitz2',            'ftp.tu-chemnitz.de (HTTP)',            
                'http://ftp.tu-chemnitz.de/pub/ooodev/'],
+       ['ooodev_esslingen1',           'ftp-stud.fht-esslingen.de (FTP)',      
                'ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ooodev/'],
+       ['ooodev_esslingen2',           'ftp-stud.fht-esslingen.de (HTTP)',     
                'http://ftp-stud.fht-esslingen.de/pub/Mirrors/ooodev/'],
+       ['ooodev_garr1',                        'ooodev.mirror.garr.it (FTP)',  
                        'ftp://ooodev.mirror.garr.it/mirrors/ftp.ooodev.org/'],
+       ['ooodev_gwdg',                         'ftp5.gwdg.de (FTP)',           
                                'ftp://ftp5.gwdg.de/pub/misc/ooodev/'],
+       ['ooodev_gwdg2',                        'ftp5.gwdg.de (HTTP)',          
                                'http://ftp5.gwdg.de/pub/misc/ooodev/'],
+       ['ooodev_heanet1',                      'ftp.heanet.ie (FTP)',          
                                'ftp://ftp.heanet.ie/mirrors/ftp.ooodev.org/'],
+       ['ooodev_heanet2',                      'ftp.heanet.ie (HTTP)',         
                                'http://ftp.heanet.ie/mirrors/ftp.ooodev.org/'],
+       ['ooodev_kddi1',                        'ftp.kddilabs.jp (FTP)',        
                                'ftp://ftp.kddilabs.jp/office/openoffice-dev/'],
+       ['ooodev_mirrorservice1',       'ftp.mirrorservice.org (FTP)',          
                'ftp://ftp.mirrorservice.org/sites/ftp.ooodev.org/ooodev/'],
+       ['ooodev_mirrorservice2',       'www.mirrorservice.org (HTTP)',         
                'http://www.mirrorservice.org/sites/ftp.ooodev.org/ooodev/'],
+       ['ooodev_muenster',                     'ftp.uni-muenster.de (FTP)',    
                        'ftp://ftp.uni-muenster.de/pub/software/OOoDev/'],
+       ['ooodev_muenster2',            'ftp.uni-muenster.de (HTTP)',           
                'http://ftp.uni-muenster.de/pub/software/OOoDev/'],
+       ['ooodev_pacific',                      'mirror.pacific.net.au (FTP)',  
                        'ftp://mirror.pacific.net.au/pub/ooodev/'],
+       ['ooodev_secsup1',                      'ooodev.secsup.org (FTP)',      
                                'ftp://ooodev.secsup.org/pub/software/ooodev/'],
+       ['ooodev_solnet1',                      'ftp.solnet.ch (FTP)',          
                                'ftp://ftp.solnet.ch/mirror/ooodev/'],
+       ['ooodev_solnet2',                      'ooodev.mirror.solnet.ch 
(HTTP)',                       'http://ooodev.mirror.solnet.ch/'],
+       ['ooodev_sunsite',                      
'sunsite.informatik.rwth-aachen.de (FTP)',      
'ftp://sunsite.informatik.rwth-aachen.de/pub/mirror/ftp.ooodev.org/'],
+       ['ooodev_switch1',                      'mirror.switch.ch (FTP)',       
                                'ftp://mirror.switch.ch/mirror/ooodev/'],
+       ['ooodev_switch2',                      'mirror.switch.ch (HTTP)',      
                                'http://mirror.switch.ch/ftp/mirror/ooodev/'],
+       ['ooodev_tds1',                         'openoffice.mirrors.tds.net 
(FTP)',                     
'ftp://openoffice.mirrors.tds.net/pub/openoffice-ooodev/'],
+       ['ooodev_tds2',                         'openoffice.mirrors.tds.net 
(HTTP)',            'http://openoffice.mirrors.tds.net/pub/openoffice-ooodev/'],
+       ['ooodev_tubs',                         'ftp.rz.tu-bs.de (FTP)',        
                                
'ftp://ftp.rz.tu-bs.de/pub/mirror/ALL_primary_servers/rsync/ftp.ooodev.org/ooodev/'],
+       ['ooodev_tubs2',                        'ftp.rz.tu-bs.de (HTTP)',       
                                
'http://ftp.rz.tu-bs.de/pub/mirror/ALL_primary_servers/rsync/ftp.ooodev.org/ooodev/'],
+       ['ooodev_tuwien',                       'gd.tuwien.ac.at (FTP)',        
                                'ftp://gd.tuwien.ac.at/office/ooodev/'],
+       ['ooodev_utah1',                        'ooodev.cs.utah.edu (FTP)',     
                                'http://ooodev.cs.utah.edu/'],
+       ['ooodev_utah2',                        'ooodev.cs.utah.edu (HTTP)',    
                        'ftp://ooodev.cs.utah.edu/pub/ooodev/']
+];
+
+/* Initialisieren
+ */
+function add_init() {
+       // <select>-Element "lstMirrors"
+       lstMirrors = document.getElementById( "lstMirrors" );
+
+       // Alle Kind-Elemente loeschen, damit der Eintrag "Auswahl nur mit 
JavaScript" verschwindet
+       while( lstMirrors.firstChild ) {
+               lstMirrors.removeChild(lstMirrors.firstChild);
+       }
+
+       // Mirrors zur Liste hinzufuegen
+       for ( i=0; i<mirror_list.length; i++ ) {
+               E = document.createElement( "option" );
+               E.setAttribute( "label", mirror_list[i][1] );
+               E.setAttribute( "value", mirror_list[i][2] );
+
+               T = document.createTextNode( mirror_list[i][1] );
+               E.appendChild(T);
+
+               lstMirrors.appendChild(E);
+       }
+
+       // Zufaellig einen auswaehlen
+       add_mk_dl_link(Math.floor(Math.random() * mirror_list.length));
+}
+
+function add_set_href( id, download_link) {
+       document.getElementById(id).setAttribute("href",download_link);
+}
+
+function add_mk_dl_link( index ) {
+       mirror  = mirror_list[index][2];
+       tracker = "http://ooodev.org:6969/torrents";;
+
+       // --- PrOOoBox ---
+
+       add_set_href( "prooo_win_cd", 
mirror+"prooo-box-cd/prooo-box-"+version+"-1_CD_Win_de.iso" );
+       add_set_href( "prooo_win_cd_torrent", 
tracker+"/OOo_"+version+"-1_CD_Win_prooo-box_de.iso.torrent?info_hash=0c987ed1fed0c63e87e7554661b2fd85d970cbb0"
 );
+
+       add_set_href( "prooo_rpm_cd", 
mirror+"prooo-box-cd/prooo-box-"+version+"-1_CD_Linux-rpm_de.iso" );
+       add_set_href( "prooo_rpm_cd_torrent", 
tracker+"/OOo_"+version+"-1_CD_Linux-rpm_prooo-box_de.iso.torrent?info_hash=e70e90c2d16fa971e1046a99b19b0061302168f7"
 );
+
+       add_set_href( "prooo_deb_cd", 
mirror+"prooo-box-cd/prooo-box-"+version+"-1_CD_Linux-deb_de.iso" );
+       add_set_href( "prooo_deb_cd_torrent", 
tracker+"/OOo_"+version+"-1_CD_Linux-deb_prooo-box_de.iso.torrent?info_hash=fd9224cab4d00fcc8c4ffb23c39868025f6f352f"
 );
+
+       add_set_href( "prooo_dvd", 
mirror+"prooo-box-dvd/prooo-box-"+version+"-1_DVD_de.iso" );
+       add_set_href( "prooo_dvd_torrent", 
tracker+"/OOo_"+version+"-1_DVD_prooo-box_allplatforms_de.iso.torrent?info_hash=17464aff190288ea950000be346884a615d70783"
 );
+       
+       // --- OOoPortable ---
+
+       add_set_href( "ooop_win_py", 
mirror+"oooportable/OpenOfficePortable_3.1.0_German.paf.exe" );
+       add_set_href( "ooop_win_nopy", 
mirror+"oooportable-plus/new/OpenOffice_Portable_2.2.1_de-de.paf.exe" );
+
+       // SimonAW [14.1.2010]: Gibt erstmal keine neue...
+       //add_set_href( "ooop_plus", 
mirror+"oooportable-plus/new/OpenOfficePortablePlus_2.2.1.exe" );
+}
+
+// ---
+
+os_name                = "";
+filename       = "";
+
+function os_detect() {
+       uastring = new String( navigator.userAgent ).toLowerCase();
+
+       if ( uastring.indexOf( "linux" ) >= 0 ) {
+               if ( uastring.indexOf( "debian" ) >= 0 || uastring.indexOf( 
"untu" ) >= 0 ) {
+                       os_name = "Linux (DEB)";
+                       filename = 
"OOo_"+version+"_LinuxIntel_install_de_deb.tar.gz";
+                       return;
+               } else {
+                       os_name = "Linux (RPM)";
+                       filename = 
"OOo_"+version+"_LinuxIntel_install_de.tar.gz";
+                       return;
+               }
+       } else
+               if ( uastring.indexOf( "windows" ) >= 0 ) {
+                       os_name = "Windows";
+                       filename="OOo_"+version+"_Win32Intel_install_de.exe";
+               return;
+       } else
+               if ( uastring.indexOf( "macintosh" ) >= 0 ) {
+                       os_name = "MacOS X";
+                       filename="OOo_"+version+"_MacOSXIntel_install_de.dmg";
+               return;
+       } else {
+               os_name = "Linux (RPM)";
+               filename = "OOo_"+version+"_LinuxIntel_install_de.tar.gz";
+               return;
+       }
+}
+
+function write_download_link() {
+       os_detect();
+
+       document.writeln( "<a 
href=\"http://download.services.openoffice.org/files/localized/de/"+version+"/"+filename+"\";>"
 );
+       document.writeln( "OpenOffice.org f&uuml;r " + os_name + " 
herunterladen</a>" );
+}
+
+function write_torrent_link() {
+       document.writeln( "<a 
href=\"http://borft.student.utwente.nl/~adrian/torrentphp/torrent.php/"; +
+                       filename +
+                       ".torrent\">&Uuml;ber BitTorrent herunterladen</a> 
&middot; <a 
href=\"http://borft.student.utwente.nl/~adrian/bt.php\";>&Uuml;bersicht</a>" );
+}

Added: 
websites/staging/ooo-site/trunk/content/de/Archive/testdir/druckbares.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/druckbares.html 
(added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/druckbares.html 
Wed Apr  5 17:05:32 2017
@@ -0,0 +1,235 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+       <title>Marketing-Material Druckbares</title>
+<!-- Start de-header -->
+       <link rel="stylesheet" href="../styles/de.css" media="screen" 
type="text/css" />
+       <link rel="stylesheet" href="../styles/de_print.css" media="print" 
type="text/css" />
+       <link rel="alternate stylesheet" title="ohne Navbar" media="screen" 
href="../styles/de_nonavbar.css" type="text/css" />
+       <meta http-equiv="Content-Style-Type" content="text/css" />
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+       <style type="text/css">
+               /*<![CDATA[*/
+               <!--
+               @import url("../styles/de_navbar6.css");
+               -->
+               /*]]>*/
+        </style>
+
+<!-- End de-header -->
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body  onload="loginfocus()" class="composite">
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+
+<table>
+<tr><td>
+<h2>Marketing-Material: Druckbares</h2>
+
+<div class="tabs">
+<table  border="0" cellpadding="4" cellspacing="0">
+  <tbody>
+       <tr>
+       <td>
+               <a href="index.html">&Uuml;bersicht</a>
+         </td>
+         <td>
+               <a href="erfolgsgeschichten.html">Referenzen</a>
+         </td>
+         <th>
+               <a href="druckbares.html">Druckbares</a>
+         </th>
+         <td>
+               <a href="praesentationen.html">Pr&auml;sentationen</a>
+         </td>
+         <td>
+               <a href="logos.html">Logos/Bilder</a>
+         </td>
+         <td>
+               <a href="statistik.html">Statistiken</a>
+         </td>
+
+
+       </tr>
+</tbody>
+</table>
+</div>
+
+
+<table border="0" >
+
+<tr><td>
+<p>Diese Materialen k&ouml;nnen Sie drucken und vervielf&auml;ltigen oder 
selbst zum
+Download anbieten. &Auml;nderungen und Vorschl&auml;ge zur Verbesserung teilen 
Sie uns
+bitte mit. E-Mail an: <a 
href="mailto:[email protected]";>[email protected]</a></p>
+
+<h3>Flyer:</h3>
+       <ul>
+               <li><strong>A4 - 2 Seiten (1.1)</strong>
+                       (<a 
href="./collaterals/flyer_deutsch_11_komplett_und_gut.pdf">.pdf</a>, 264kB |
+                       <a 
href="./collaterals/flyer_deutsch_11_komplett_und_gut.sxw">.sxw</a>, 1,2MB)<br 
/>
+                               Flyer mit einer Kurzbeschreibung der Features.
+       </li>
+               <li><strong>A4 - 4 Seiten (1.1)</strong>
+                       (<a href="./collaterals/flyer_deutsch_11.pdf">.pdf</a>, 
330kB |
+                       <a href="./collaterals/flyer_deutsch_11.sxw">.sxw</a>, 
800kB)<br />
+                               Dieser Flyer kann ausgedruckt und auf Messen, 
Kongressen und &auml;hnlichen Veranstaltungen verteilt werden.
+       </li>
+               <li><strong>A4 - 4 Seiten (1.0)</strong>
+                       (<a href="./collaterals/flyer_deutsch.pdf">.pdf</a>, 
360kB |
+                       <a href="./collaterals/flyer_deutsch.sxw">.sxw</a>, 
660kB)<br />
+                               Dieser Flyer kann ausgedruckt und auf Messen, 
Kongressen und &auml;hnlichen Veranstaltungen verteilt werden.
+       </li>
+               <li><strong>A4 - Faltblatt dreispaltig (1.1)</strong>
+                       (<a href="./collaterals/faltflyer_11.pdf">.pdf</a>, 
250kB |
+                       <a href="./collaterals/faltflyer_11.sxw">.sxw</a>, 
330kB)<br />
+                               Dieses Faltblatt kann ausgedruckt und f&uuml;r 
Briefsendungen verwendet oder auf Veranstaltungen verteilt werden.
+                               Der Screenshot auf der R&uuml;ckseite des 
Flyers kann durch das eigene Firmenlogo ersetzt und mit dem Hinweis
+                                       "Dieser Flyer wird gesponsert von:" 
oder "Das Projekt wird unterst&uuml;tzt von:" versehen werden.
+       </li>
+               <li><strong>A4 - Faltblatt dreispaltig (1.0)</strong>
+                       (<a href="./collaterals/faltflyer_1.0.pdf">.pdf</a>, 
40kB |
+                       <a href="./collaterals/faltflyer_1.0.sxw">.sxw</a>, 
40kB)<br />
+                               Dieses Faltblatt kann ausgedruckt und f&uuml;r 
Briefsendungen verwendet oder auf Veranstaltungen verteilt werden.
+       </li>
+               <li><strong>A4 - Faltblatt hochkant (1.1)</strong>
+                       (<a 
href="./collaterals/flyer_hochkant_11.pdf">.pdf</a>, 431kB |
+                       <a href="./collaterals/flyer_hochkant_11.sxd">.sxd</a>, 
401kB)<br />
+                               Ein Faltblatt im besonderen Format.
+       </li>
+
+               <li><strong>A4 - 4 Seiten (1.1)</strong>
+                       (<a href="./collaterals/infos_ooo_1.1.pdf">.pdf</a>, 
63kB |
+                       <a href="./collaterals/infos_ooo_1.1.sxw">.sxd</a>, 
69kB)<br />
+                               Die wichtigsten Fragen und Antworten zu 
OpenOffice.org 1.1.
+       </li>
+               <li><strong>A4 - 1 Seite</strong>
+                       (<a href="kleiner-flyer.pdf">.pdf</a>, 17kB |
+                       <a href="kleiner-flyer.sxw">.sxw</a>, 38kB)<br />
+                       Ein einseitiges Flugblatt mit den wichtigsten Infos zu 
OpenOffice.org.
+               </li>
+               <li><strong>A4 - 1 Seite, Mac OS X (X11)</strong>
+                       (<a 
href="./collaterals/flyer_deutsch_macosx.pdf">.pdf</a>, 300kB |
+                       (<a 
href="./collaterals/flyer_deutsch_macosx.sxw">.sxw</a>, 950kB)<br />
+                       Ein einseitiger Flyer zu OpenOffice.org auf dem Mac.
+               </li>
+       </ul>
+   <br />
+
+   <h3>Poster:</h3>
+   <img src="./plakatwettbewerb/sc_poster_1.jpg" alt="Kostenlos" width="280" 
height="193" align="right" border="0" />
+
+   Dieses und weitere Plakate wurden beim <a 
href="http://de.openoffice.org/marketing/plakatwettbewerb/index.html";>Plakat-Wettbewerb</a>
 f&uuml;r Sch&uuml;ler eingereicht:
+          (<a 
href="http://de.openoffice.org/marketing/plakatwettbewerb/gewinner.html";>Gewinner</a>,
+          <a 
href="http://www.kaldewey-online.de/postnuke/index.php?module=photoshare&amp;func=viewallfolders&amp;fid=1";>alle
 Entw&uuml;rfe</a>):
+       <ul>
+               <li><a 
href="http://de.openoffice.org/files/documents/66/1788/Kostenlos.jpg";>Kostenlos.jpg</a>
 (1,2 MB)</li>
+               <li><a 
href="http://de.openoffice.org/files/documents/66/1795/Pusteblume.png";>Pusteblume.png</a>
 (2,3 MB)</li>
+               <li><a 
href="http://de.openoffice.org/files/documents/66/1790/Freiheit.pdf";>Freiheit.pdf</a>
 (0,3 MB)</li>
+               <li><a 
href="http://de.openoffice.org/files/documents/66/1791/file_1791.dat?filename=Offen%2df%c3%bcr%2djeden%2ejpg";>Offen-f&uuml;r-jeden.jpg</a>
 (2,4 MB)</li>
+               <li>Weitere Plakate finden Sie in guter Qualit&auml;t <a 
href="http://de.openoffice.org/servlets/ProjectDocumentList?folderID=318&amp;expandFolder=318&amp;folderID=318";>hier</a>
 .</li>
+       </ul>
+       <br />
+
+    <h3>Plakate selbermachen:</h3>
+    <p>Auf der Seite von <a 
href="http://kfacts.com/gfx/oooposter/index.php";>kfacts.com</a> findet sich
+    ein Tool mit dem man online OpenOffice.org-Plakate entwerfen kann. <br />
+    Ein paar fertige Entwürfe finden Sie
+     <a 
href="http://de.openoffice.org/servlets/ProjectDocumentList?folderID=359&amp;expandFolder=359&amp;folderID=0";>hier</a>.</p>
+     <br />
+
+    <h3>CD- und DVD Materialien:</h3>
+       <ul>
+               <li>CD-Cover: <a href="cd-einleger.sxd">SXD</a><br />
+               Dieses OpenOffice.org Draw-Dokument enth&auml;lt einen Einleger 
f&uuml;r CD-H&uuml;llen. Nat&uuml;rlich gibt es ein Teil f&uuml;r die
+               Vorder- und R&uuml;ckseite der CD-H&uuml;lle.</li>
+               <li>CD-H&uuml;lle: SXD <a href="cd-huelle.sxd">Version 
1.0.1</a>&nbsp;&nbsp;&nbsp;<a href="cd_huelle_v_1_1.sxd">Version 1.1</a><br />
+               Eine CD-H&uuml;lle. Auf etwas festeres Papier ausgedruckt 
l&auml;sst sich eine ansprechende Papp-H&uuml;lle f&uuml;r CDs erzeugen:
+               die g&uuml;nstige und umweltfreundliche Alternative zu 
Kunststoff-CD-H&uuml;llen.</li>
+               <li>Ein Umschlag f&uuml;r eine DVD-H&uuml;lle zu OpenOffice.org 
1.1
+                       (<a href="dvd_huelle.pdf">PDF</a> | <a 
href="dvd_huelle.sxd">SXD</a>)
+               </li>
+        </ul>
+        Weitere CD-Cover und -H&uuml;llen finden Sie auf OOoDocs.org
+        oder auf den Seiten von <a 
href="http://www.zwahlendesign.ch/20ooo_info.html";>Christian Zwahlen</a>.
+
+       <br /><br />
+
+
+       <h3>Werbefolie f&uuml;r Autoscheibe:</h3>
+       Diese <a href="autofolie.sxd">Vorlage</a> kann f&uuml;r den Druck auf 
eine DIN-A4-Folie benutzt werden, die dann l&auml;ngs durchgeschnitten wird.
+       Die Folie kann dann von innen an der Fahrzeugscheibe angebracht werden.
+       <br />
+       <br />
+       <br />
+       Das Art Project (Wallpapers etc.) bei OpenOffice.org finden Sie <a 
href="http://marketing.openoffice.org/art/";>hier</a>.
+       <br />
+<br />
+
+</td></tr>
+
+</table>
+</td>
+<td valign="top">
+<!-- Start Navbar -->
+       <!-- >
+       Kommentare zur Navbar Materialien und mehr
+       Makemapversion:
+       $Id: makemap.pl,v 1.6 2006/02/12 22:32:45 mkirchner Exp :
+       navbar_Marketing ,V 0.5.5 Mittwoch, 22. Februar 2006 10:15:48 _MLM
+       < -->
+<ul id="navbar_de">
+    <li><div align="center">de-links</div></li>
+    <li> <a href="../index.html" title=" "> Hauptseite </a></li>
+    <li> <a href="../map_all.html" title=" "> Sitemap </a></li>
+    <li> <a href="../neuhier.html" title="Informationen zu OpenOffice.org, dem 
Softwareprodukt"> Produkt-Info </a></li>
+    <li> <a href="../kontakt.html" title="Informationen zu OpenOffice.org, der 
Community"> Projekt-Info </a></li>
+    <li> <a href="../downloads/quick.html" title="Software und mehr"> Download 
</a></li>
+    <li> <a href="../doc/index.html" title="Installationsbeschreibungen und 
mehr Schriftliches"> Dokumentationen </a></li>
+    <li> <a href="../doc/faq/index.html" title="FAQ- H&auml;ufig gestellte 
Fragen"> FAQ </a></li>
+    <li> <a href="../probleme.html" title="Wo Hilfe nahe ist"> Support 
</a></li>
+    <li> <a href="../doc/howto/index.html" title="Knappe Anleitungen f&uuml;r 
die erste Benutzung"> Erste Schritte </a></li>
+    <li>Marketing
+      <ul>
+      <li> <a href="index.html" title=" ">Marketing-Material </a></li>
+      <li> <a href="erfolgsgeschichten.html" title=" ">Referenzen </a></li>
+      <li> Druckbares </li>
+      <li> <a href="praesentationen.html" title=" "> Pr&auml;sentationen 
</a></li>
+      <li> <a href="logos.html" title=" "> Logos und Bilder </a></li>
+      <li> <a href="statistik.html" title=" "> Statistiken </a></li>
+      <li> <a href="referenzkunden.html" title=" "> Referenzkunden </a></li>
+      <li> <a href="../veranstaltungen/index.html" title=" "> Veranstaltungen 
</a></li>
+      <li> <a href="../about-ooo/about_unterstuetzung.html" title="Finanzielle 
Zuwendungen und Serverkapazitaeten"> Zuwendungen </a></li>
+      </ul>
+    </li>
+    <li> <a href="../presse/about-presskit.html" title="Pressemitteilungen, 
Interviews und andere Informationen"> Presse </a></li>
+    <li> <a href="../dev/index.html" title="Informationen f&uuml;r Mitglieder 
im de.OpenOffice.org Projekt"> Mithelfen </a></li>
+</ul>
+<!-- End Navbar -->
+</td>
+</tr></table>
+<p>
+    <a href="http://validator.w3.org/check?uri=referer";><img
+        src="http://www.w3.org/Icons/valid-xhtml10";
+        alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a>
+  </p>
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/edok.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/edok.html (added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/edok.html Wed 
Apr  5 17:05:32 2017
@@ -0,0 +1,150 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+       <title>eDOKument</title>
+       <!-- Start de-header -->
+       <link rel="stylesheet" href="../styles/de.css" media="screen" 
type="text/css" />
+       <link rel="stylesheet" href="../styles/de_print.css" media="print" 
type="text/css" />
+       <link rel="stylesheet" title="mit Navbar" 
href="../styles/de_navbar.css" media="screen" type="text/css" />
+       <link rel="alternate stylesheet" title="ohne Navbar" media="screen" 
href="../styles/de_nonavbar.css" type="text/css" />
+
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+       <!-- >
+       Kommentare zur Seite
+       $Id: edok.html,v 1.1 2007/04/16 14:35:17 floeff Exp $
+       < -->
+<!-- End de-header -->
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body>
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+
+
+<table width="100%" border="0" cellspacing="0" cellpadding="0" 
summary=""><tr><td>
+
+<div id="body_de">
+                               <h2>eDOKument - inter@ktiv, Open Content und 
Schulungsunterlagen</h2>
+                               <h3>eDOKument - inter@ktiv</h3>
+                               <p>Die freie Software &raquo;eDOKument - 
inter@ktiv&laquo; erlaubt es, elektronische
+                               B&uuml;cher und elektronische Kataloge im 
HTML-Format zu erstellen. Die Software
+                               arbeitet mit 
&raquo;StarOffice&laquo;/&raquo;OpenOffice.org&laquo; zusammen. Sie
+                               steht unter der GPL und kann kostenlos beim <a 
href="http://www.it-know-how.net/";>Handel
+                               und Technik Verlag (HuT)</a> bezogen werden.</p>
+                               <p>Weitere Infos und Download von 
&raquo;eDOKument &ndash;
+                               inter@ktiv&laquo;:<a 
href="http://www.it-know-how.net/katalog/artikel/sw0059dl.htm";>
+                               hier.</a><br /><br /></p>
+                               <h3>Open Content</h3>
+                               <p>Die Idee hinter Open Content ist es, nicht 
fertige gedruckte oder
+                               elektronische B&uuml;cher, sondern die Inhalte 
als Datei zu erwerben
+                               &ndash; mit dem Recht die Inhalte beliebig 
ver&auml;ndern zu d&uuml;rfen.
+                               Das bedeutet f&uuml;r die Branche der Aus- und 
Weiterbildung, individuell
+                               Unterlagen f&uuml;r einzelne Schulungen 
erstellen zu k&ouml;nnen. Die Lizenzen,
+                               die dieses zulassen, sind beim 
Kompetenznetzwerk Universit&auml;tsverbund MultiMedia
+                               NRW <a 
href="http://www.uvm.nrw.de/opencontent";>ver&ouml;ffentlicht</a>.</p>
+                               <p>Weitere Informationen zu den Lizenzen und 
wie Open Content funktioniert
+                               finden Sie bei <a 
href="http://www.it-know-how.net/katalog/artikel/bw0136dl.htm";>HuT:
+                               hier.</a><br /><br /></p>
+                               <h3>Schulungsunterlagen</h3>
+                               <p>Der <a 
href="http://www.it-know-how.net/";>Handel und Technik Verlag</a> hat mehrere
+                               Schulungsunterlagen aus dem IT-Bereich 
erstellt, die auf der Basis von &raquo;eDOKument -
+                               inter@ktiv&laquo; nach dem Open Content Konzept 
beliebig zusammen gestellt und
+                               ver&auml;ndert werden k&ouml;nnen. Mehrere 
hundert Seiten Material sind vorhanden, u.a.
+                               die komplette Dokumentation zu OpenOffice.org. 
Dieses Angebot ist gerade f&uuml;r
+                               Kursanbieter interessant. Die Abrechnung 
erfolgt auf Basis der verwendeten Seiten.
+                               F&uuml;r &ouml;ffentliche Schulen stehen 
au&szlig;erdem Klassen- und Campuslizenzen
+                               zur Wahl.</p>
+                               <p>Das verf&uuml;gbare Angebot f&uuml;r 
B&uuml;cher und Schulungsunterlagen
+                               steht im <a 
href="http://www.it-know-how.net/";>Katalog des Verlages: HuT</a></p>
+                               <p></p>
+                               <p></p>
+                               <p></p>
+                               <p></p>
+                               <p>Eine Pr&auml;sentation zu &raquo;eDOKument - 
inter@ktiv&laquo; finden Sie
+                               in unserer Dokumentensammlung: <a 
href="http://de.openoffice.org/servlets/ProjectDocumentList";>
+                               hier</a></p>
+</div>
+
+
+ 
+
+
+ </td><td valign="top" height="100%">
+
+<!-- Start Navbar -->
+<table id="navbar_de" summary="Navigationsleiste" border="0" cellspacing="0" 
cellpadding="0">
+
+       <tr><th>Empfang</th></tr>
+       <tr><td><a href="../index.html">Startseite</a></td></tr>
+
+       <tr><th>Software</th></tr>
+
+               <tr><td><a 
href="../product/index.html">Produktinfo</a></td></tr>
+               <tr><td><a href="../about-features.html">Features</a></td></tr>
+               <tr><td><a href="../about-downloads.html">Download</a></td></tr>
+               <tr><td><a href="../about-cdrom.html">CD-ROM 
bestellen</a></td></tr>
+               <tr><td><a 
href="../spellcheck/about-spellcheck.html">Rechtschreibpr&uuml;fung</a></td></tr>
+
+       <tr><th>Dokumentation</th></tr>
+               <tr><td><a 
href="../about-documentation.html">Inhalt</a></td></tr>
+               <tr><td><a 
href="../doc/setupguide/index.html">Installationshandbuch</a></td></tr>
+               <tr><td><a href="../doc/howto/index.html">How-Tos</a></td></tr>
+               <tr><td><a href="../doc/faq/index.html">FAQs</a></td></tr>
+               <tr><td><a 
href="../about-literatur.html">Literatur</a></td></tr>
+
+       <tr><th>Support</th></tr>
+               <tr><td><a href="../about-users-mailinglist.html">Hilfe per 
Mail</a></td></tr>
+               <tr><td><a href="../foren.html">Foren (extern)</a></td></tr>
+               <tr><td><a href="../about-support.html">Professioneller 
Support</a></td></tr>
+
+       <tr><th>Marketing</th></tr>
+               <tr><td><a 
href="../marketing/marketing.html">Marketing-Material</a></td></tr>
+               <tr><td><a 
href="../veranstaltungen/index.html">Veranstaltungen</a></td></tr>
+               <tr><td><a 
href="../presse/about-presskit.html">Presse-Infos</a></td></tr>
+               <tr><td><a 
href="../presse/about-presse-faq.html">Presse-FAQ</a></td></tr>
+
+       <tr><th>&Uuml;ber das Projekt</th></tr>
+               <tr><td><a 
href="../about-ooo/about-history.html">Geschichte</a></td></tr>
+               <tr><td><a 
href="../about-ooo/about-milestones.html">Meilensteine</a></td></tr>
+               <tr><td><a 
href="../about-ooo/about-projects.html">Unterprojekte</a></td></tr>
+               <tr><td><a 
href="../about-ooo/about_incubator.html">Incubator</a></td></tr>
+               <tr><td><a 
href="../about-ooo/about-whitepapers.html">Whitepapers</a></td></tr>
+               <tr><td><a 
href="../sponsoren/index.html">Sponsoren</a></td></tr>
+
+       <tr><th>Mithelfen</th></tr>
+               <tr><td><a href="../about-helping.html">...&nbsp;aber 
wie?</a></td></tr>
+               <tr><td><a 
href="../about_unterstuetzung.html">Zuwendungen</a></td></tr>
+               <tr><td><a 
href="../dev/ansprechpartner.html">Ansprechpartner</a></td></tr>
+
+       <tr><th>Sonstiges</th></tr>
+               <tr><td><a 
href="../bildung/index.html">Bildungsportal</a></td></tr>
+               <tr><td><a href="../credits.html">Danksagungen</a></td></tr>
+               <tr><td><a href="../links.html">Links</a></td></tr>
+               <tr><td><a href="../about-linking.html">Unsere Seiten 
linken</a></td></tr>
+               <tr><td><a href="../about-legal.html">Rechtliches</a></td></tr>
+
+       <tr><th><a href="../dev/index.html">Infos f&uuml;r Helfer</a></th></tr>
+
+</table>
+<!-- End Navbar -->
+</td></tr></table>
+
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>

Added: 
websites/staging/ooo-site/trunk/content/de/Archive/testdir/erfolgsgeschichten.html
==============================================================================
--- 
websites/staging/ooo-site/trunk/content/de/Archive/testdir/erfolgsgeschichten.html
 (added)
+++ 
websites/staging/ooo-site/trunk/content/de/Archive/testdir/erfolgsgeschichten.html
 Wed Apr  5 17:05:32 2017
@@ -0,0 +1,158 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+       <title>Marketing-Material  Referenzen</title>
+<!-- Start de-header -->
+       <link rel="stylesheet" href="../styles/de.css" media="screen" 
type="text/css" />
+       <link rel="stylesheet" href="../styles/de_print.css" media="print" 
type="text/css" />
+       <link rel="alternate stylesheet" title="ohne Navbar" media="screen" 
href="../styles/de_nonavbar.css" type="text/css" />
+       <meta http-equiv="Content-Style-Type" content="text/css" />
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+       <style type="text/css">
+               /*<![CDATA[*/
+               <!--
+               @import url("../styles/de_navbar6.css");
+               -->
+               /*]]>*/
+        </style>
+
+<!-- End de-header -->
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body  onload="loginfocus()" class="composite">
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+<table width="100%" summary="" border="0" cellspacing="0" cellpadding="0">
+<tr><td>
+<h2>Marketing-Material: Referenzen</h2>
+
+<div class="tabs">
+<table  border="0" cellpadding="4" cellspacing="0">
+  <tbody>
+       <tr >
+       <td>
+               <a href="index.html">&Uuml;bersicht</a>
+         </td>
+         <th>
+               <a href="erfolgsgeschichten.html">Referenzen</a>
+         </th>
+         <td>
+               <a href="druckbares.html">Druckbares</a>
+         </td>
+         <td>
+               <a href="praesentationen.html">Pr&auml;sentationen</a>
+         </td>
+         <td>
+               <a href="logos.html">Logos/Bilder</a>
+         </td>
+         <td>
+               <a href="statistik.html">Statistiken</a>
+         </td>
+
+       </tr>
+</tbody>
+</table>
+</div>
+
+
+<table border="0">
+<tr><td>
+
+
+<h3>Berichte und Anwenderstimmen, Feedback:</h3>
+       <ul>
+               <li><a href="./stories/index.html">Erfolgsgeschichten und 
Anwenderberichte</a></li>
+               <li><a href="referenzkunden.html">OpenOffice.org-Anwender</a>
+               &nbsp;<a href="referenzkunden_i.html">[Clienti]</a></li>
+       </ul><br />
+
+<h3>OpenOffice.org in der Presse</h3>
+<ul>
+<li><a 
href="http://news.google.de/news?q=openoffice&amp;num=100&amp;hl=de&amp;lr=&amp;ie=UTF-8&amp;sa=G&amp;edition=de&amp;scoring=d";>Google.de</a></li>
+<li><a 
href="http://de.search.news.yahoo.com/search/news_de?fr=fp-tab-news-t&amp;z=date&amp;h=s&amp;p=openoffice+";>Yahoo.de</a></li>
+</ul><br />
+
+<h3> Malte Kaldewey's Newsportal rund um OpenOffice.org: <a 
href="http://www.ooo-portal.de/index.php";>OOo-Portal.de</a></h3><br />
+
+<h3>Auszeichnungen</h3>
+
+<ul>
+<li>Preise, die OpenOffice.org erhalten hat: <a 
href="//awards/">&Uuml;bersicht (engl.)</a>.</li>
+</ul> <br />
+
+<h3>Projekte rund um OpenOffice.org:</h3>
+       <ul>
+               <li><a href="./comenius/index.html">Comenius-Schul-Projekt</a>
+               </li>
+               <li><a 
href="http://de.openoffice.org/servlets/ProjectDocumentList?expandFolder=0&amp;expandFolder=239&amp;expandFolder=254&amp;folderID=0";>
+                Kommerzielle Projekte finden Sie im Files-Bereich</a>
+               </li>
+       </ul>
+
+
+</td></tr>
+
+</table>
+</td>
+<td valign="top">
+<!-- Start Navbar -->
+       <!-- >
+       Kommentare zur Navbar Materialien und mehr
+       Makemapversion:
+       $Id: makemap.pl,v 1.6 2006/02/12 22:32:45 mkirchner Exp :
+       navbar_Marketing ,V 0.5.5 Mittwoch, 22. Februar 2006 10:15:48 _MLM
+       < -->
+<ul id="navbar_de">
+    <li><div align="center">de-links</div></li>
+    <li> <a href="../index.html" title=" "> Hauptseite </a></li>
+    <li> <a href="../map_all.html" title=" "> Sitemap </a></li>
+    <li> <a href="../neuhier.html" title="Informationen zu OpenOffice.org, dem 
Softwareprodukt"> Produkt-Info </a></li>
+    <li> <a href="../kontakt.html" title="Informationen zu OpenOffice.org, der 
Community"> Projekt-Info </a></li>
+    <li> <a href="../downloads/quick.html" title="Software und mehr"> Download 
</a></li>
+    <li> <a href="../doc/index.html" title="Installationsbeschreibungen und 
mehr Schriftliches"> Dokumentationen </a></li>
+    <li> <a href="../doc/faq/index.html" title="FAQ- H&auml;ufig gestellte 
Fragen"> FAQ </a></li>
+    <li> <a href="../probleme.html" title="Wo Hilfe nahe ist"> Support 
</a></li>
+    <li> <a href="../doc/howto/index.html" title="Knappe Anleitungen f&uuml;r 
die erste Benutzung"> Erste Schritte </a></li>
+    <li>Marketing
+      <ul>
+      <li> <a href="index.html" title=" ">Marketing-Material </a></li>
+      <li> Referenzen </li>
+      <li> <a href="druckbares.html" title=" "> Druckbares </a></li>
+      <li> <a href="praesentationen.html" title=" "> Pr&auml;sentationen 
</a></li>
+      <li> <a href="logos.html" title=" "> Logos und Bilder </a></li>
+      <li> <a href="statistik.html" title=" "> Statistiken </a></li>
+      <li> <a href="referenzkunden.html" title=" "> Referenzkunden </a></li>
+      <li> <a href="../veranstaltungen/index.html" title=" "> Veranstaltungen 
</a></li>
+      <li> <a href="../about-ooo/about_unterstuetzung.html" title="Finanzielle 
Zuwendungen und Serverkapazitaeten"> Zuwendungen </a></li>
+      </ul>
+    </li>
+    <li> <a href="../presse/about-presskit.html" title="Pressemitteilungen, 
Interviews und andere Informationen"> Presse </a></li>
+    <li> <a href="../dev/index.html" title="Informationen f&uuml;r Mitglieder 
im de.OpenOffice.org Projekt"> Mithelfen </a></li>
+</ul>
+<!-- End Navbar -->
+</td>
+</tr></table>
+<p>
+    <a href="http://validator.w3.org/check?uri=referer";><img
+        src="http://www.w3.org/Icons/valid-xhtml10";
+        alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a>
+  </p>
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/feed-icon.png
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/ooo-site/trunk/content/de/Archive/testdir/feed-icon.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/feed-style.css
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/feed-style.css 
(added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/feed-style.css 
Wed Apr  5 17:05:32 2017
@@ -0,0 +1,20 @@
+
+* {
+       padding: 4px;
+       font-family: sans-serif;
+}
+
+#feedtitle {
+       background: #cfdffe url("ooo-logo.png") no-repeat 100% 0%;
+       height: 66px;
+       font-size: 2em;
+       font-weight: bold;
+}
+
+feed, title, subtitle, entry, link, published {
+       display: block;
+}
+
+title {
+       font-size: 1.5em;
+}

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/filter.js
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/filter.js (added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/filter.js Wed 
Apr  5 17:05:32 2017
@@ -0,0 +1,19 @@
+       
+function filter (phrase, _id){
+       var words = phrase.value.toLowerCase().split(" ");
+       var table = document.getElementById(_id);
+       var ele;
+       for (var r = 1; r < table.rows.length; r++){
+               ele = table.rows[r].innerHTML.replace(/<[^>]+>/g,"");
+                      var displayStyle = 'none';
+                      for (var i = 0; i < words.length; i++) {
+                          if (ele.toLowerCase().indexOf(words[i])>=0)
+                       displayStyle = '';
+                          else {
+                       displayStyle = 'none';
+                       break;
+                          }
+                      }
+               table.rows[r].style.display = displayStyle;
+       }
+}
\ No newline at end of file

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/index.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/index.html 
(added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/index.html Wed 
Apr  5 17:05:32 2017
@@ -0,0 +1,342 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+ <title>
+       OpenOffice.org: Startseite (deutsch)
+       </title>
+       <meta http-equiv="Content-Style-Type" content="text/css" />
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+               <!-- my stuff -->
+               <link rel="stylesheet" type="text/css" href="styles/main.css" />
+
+               <link rel="alternate" type="application/atom+xml"
+    title="OpenOffice.org Neuigkeiten" 
href="http://de.openoffice.org/news.xml"; />
+               <link rel="alternate" type="application/atom+xml"
+    title="OpenOffice.org Termine" href="http://de.openoffice.org/termine.xml"; 
/>
+
+               <!-- /my stuff -->
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body>
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+
+
+<!-- BEGIN -->
+
+<div id="portal-sections">
+       <div id="sect1" class="sectItem">
+               <div class="sectMainLink"><a href="neuhier.html">Neu hier?</a>
+                       <div class="sectSubLink">
+<!--                           <a 
href="downloads/download.html?version=3.2.0"><b>Download</b></a> &middot; -->
+                               <a 
href="downloads/mirror.html"><b>Download</b></a> &middot;
+                               <a href="product/suite.html">Kurzinfo</a> 
&middot;
+                               <a href="product/index.html">Features</a> 
&middot;
+                               <a 
href="http://www.prooo-box.org";>PrOOo-Box</a> &middot;
+                               <!-- //TODO:
+                               <a href="">Die de-Community</a> &middot;
+                               -->
+                               <a href="map_all.html">Sitemap</a>
+                       </div>
+               </div>
+       </div>
+       <div id="sect2" class="sectItem">
+               <div class="sectMainLink"><a href="probleme.html">Probleme?</a>
+                       <div class="sectSubLink">
+                               <a href="doc/faq/">FAQ</a> &middot;
+<a href="doc/">Dokumentation</a> &middot;
+<a href="about-ooo/about-mailinglist.html">Mailinglisten</a> &middot;
+                               <a href="foren.html">Foren</a> &middot;
+
+
+                               <a href="http://www.ooowiki.de/";>OOo-Wiki</a> 
&middot;
+                               <a 
href="dev/ansprechpartner.html">Ansprechpartner</a> &middot;
+                               <a href="dev/team.html">Das&nbsp;Team</a>
+                       </div>
+               </div>
+       </div>
+       <div id="sect3" class="sectItem">
+               <div class="sectMainLink"><a href="dev">Mithelfen?</a>
+                       <div class="sectSubLink">
+                               <a 
href="http://eis.services.openoffice.org/";>EIS</a> &middot;
+                               <a 
href="servlets/ProjectIssues">Issuetracker</a> &middot;
+                               <a 
href="http://wiki.services.openoffice.org/wiki/Deutsche_%C3%9Cbersetzung";>Wiki</a>
 &middot;
+                               <a 
href="http://www.sunvirtuallab.com/tcm2/opensource/tcm_login.cgi?tcm_config=newooo";>TCM</a>
 &middot;
+                               <a href="http://tools.openoffice.org";>Tools</a> 
&middot;
+                               <a href="about-ooo/about-irc.html">IRC</a> 
&middot;
+                               <a 
href="http://blogs.sun.com/GullFoss";>Blogs</a> &middot;
+                               <a 
href="http://g11nportal.sun.com/sungloss/login.jsp";>Glossar</a> &middot;
+                               <a 
href="http://qatrack.services.openoffice.org/";>QATrack</a>
+                       </div>
+               </div>
+       </div>
+       <div id="sect4" class="sectItem">
+               <div class="sectMainLink">Marketing &amp; Presse
+                       <div class="sectSubLink">
+                               <a 
href="marketing/index.html">Marketing-Material</a> &middot;
+                               <a 
href="presse/about-presskit.html">Pressebereich</a> &middot;
+                               <a 
href="marketing/erfolgsgeschichten.html">Referenzen</a> &middot;
+                               <a 
href="marketing/praesentationen.html">Pr&auml;sentationen</a>
+                       </div>
+               </div>
+       </div>
+</div>
+
+<div id="info-section">
+       <div id="greeter">
+               <div id="containerLines">
+               <div id="opener">
+
+               <h1 class="main">OpenOffice.org - die freie 
B&uuml;rosoftware</h1>
+               <p>
+OpenOffice.org ist sowohl eine <a href="product/index.html">Office Suite</a>,
+die auf vielen <a
+       href="product/sysreqs.html">Betriebssystemen</a>
+und in zahlreichen <a
+       href="//project/l10n/languages.html">Sprachen</a>
+verf&uuml;gbar ist, als auch ein <a
+       
href="http://www.opensource.org/docs/definition.php";>Open-Source</a>-Projekt,
+in dem viele zumeist ehrenamtliche Mitglieder das Produkt immer weiter
+verbessern und unterst&uuml;tzen. F&uuml;r diese Gemeinschaft suchen wir
+st&auml;ndig neue Mitglieder: <a href="dev/index.html">Beteiligen</a> Sie sich!
+</p>
+               </div>
+
+               <div id="ooo-modules">
+                       <table summary="OOo Modules" class="ooomodules">
+                               <tr>
+                                       <td>
+                                               <a href="product/writer.html">
+                                                       <img 
src="pics/icon_OOo321_writer.png"
+                                                       alt="Textverarbeitung"
+                                                       class="icon"
+                                                       
title="Textverarbeitung" />
+                                               </a>
+                                       </td>
+                                       <td>
+                                               <a 
href="product/math.html"><img class="icon" src="pics/icon_OOo321_math.png" 
alt="Formeleditor" title="Formeleditor" /></a>
+                                       </td>
+                                       <td>
+                                               <a 
href="product/calc.html"><img class="icon" src="pics/icon_OOo321_calc.png" 
alt="Tabellenkalkulation" title="Tabellenkalkulation" /></a>
+                                       </td>
+                                       <td>
+                                               <a 
href="product/draw.html"><img class="icon" src="pics/icon_OOo321_draw.png" 
alt="Zeichenprogramm" title="Zeichenprogramm" /></a>
+                                       </td>
+                                       <td>
+                                               <a 
href="product/impress.html"><img class="icon" 
src="pics/icon_OOo321_impress.png" alt="Pr&auml;sentationsprogramm" 
title="Pr&auml;sentationsprogramm" /></a>
+                                       </td>
+                                       <td>
+                                               <a 
href="product/base.html"><img class="icon" src="pics/icon_OOo321_base.png" 
alt="Datenbankmodul" title="Datenbankmodul" /></a>
+                                       </td>
+                               </tr>
+                               <tr class="labelRow">
+                                       <td><a 
href="product/writer.html">Writer</a></td>
+                                       <td><a 
href="product/math.html">Math</a></td>
+                                       <td><a 
href="product/calc.html">Calc</a></td>
+                                       <td><a 
href="product/draw.html">Draw</a></td>
+                                       <td><a 
href="product/impress.html">Impress</a></td>
+                                       <td><a 
href="product/base.html">Base</a></td>
+                               </tr>
+                       </table>
+               </div>
+
+               <div id="download">
+                       <table summary="Download-Elements">
+                               <tr>
+                                       <td>
+                                               <a 
href="downloads/download.html?version=3.2.1"><img id="dnarrow" 
src="pics/dnarrow.png" alt="Download-Button" /></a> 
+<!--                                           <a 
href="downloads/mirror.html"><img id="dnarrow" src="pics/dnarrow.png" 
alt="Download-Button" /></a>   -->
+                               </td>
+                                       <td id="download-links">
+                                               Download
+                                               <div id="download-sub-links">
+                                                       <div class="sublink">
+                                                               <a 
href="downloads/download.html?version=3.2.1">Die&nbsp;aktuelle&nbsp;Version&nbsp;<span
 style="font-size: 1.5em">3.2.1</span></a> 
+<!--                                                           <a 
href="downloads/mirror.html">Die&nbsp;aktuelle&nbsp;Version&nbsp;<span 
style="font-size: 1.5em">3.2.0</span></a>-->
+                                                       </div>
+                                               </div>
+                                       </td>
+
+                                       <td id="fraud-info">
+                                               <div id="fraud-frame">
+                                                       <div 
id="fraud-headline"><a href="abgezockt/">Warnung vor 
Download-Abofallen</a></div>
+                                               </div>
+
+                                       </td>
+
+                                       <!-- Dieser Block ist fuer RCs: -->
+                                       <!--
+                                       <td>
+                                               <a 
href="downloads/quick.html?platform=ooo_beta"><img id="uparrow" 
src="pics/downloadklein.png" alt="RC Versionsinfo" /></a>
+                                       </td>
+                                       <td>
+                                               <span 
style="font-size:0.5em">OpenOffice.org<br />RC (Testversion)</span>
+                                               <div id="update-sub-links">
+                                                       <div class="sublink">
+                                                               <a 
href="product/info.html">Infos und Download</a>
+                                                               <br />
+                                                               <a 
href="product/index.html">Was ist neu?</a>
+                                                       </div>
+                                               </div>
+                                       </td>
+                                       -->
+                               </tr>
+                       </table>
+               </div>
+
+               <table summary="Newstable" class="newstable">
+                       <tr>
+                               <td id="sect-news">
+
+               <table summary="Neuigkeiten">
+                       <thead>
+                               <tr><td><span 
class="table-title">Neuigkeiten</span>
+                               </td></tr>
+                       </thead>
+                       <tbody>
+
+                               <!--
+                               <tr><td class="date-row">24.03.2009</td></tr>
+                               <tr>
+                                       <td class="news-row">
+                                               <a
+                                                       
href="about-ooo/about-features31.html">Ausblick: Neue Funktionen in 
OpenOffice.org 3.1<br /></a>
+                                       </td>
+                               </tr>
+                          -->
+
+                               <tr><td class="date-row">24.06.2010</td></tr>
+                               <tr>
+                                       <td class="news-row">
+                                               <a 
href="http://www.goldenerdownload.de";>COMPUTER BILD hat OpenOffice.org den </a>
+                                       </td>
+                               </tr>
+                               <tr><td class="date-row">04.06.2010</td></tr>
+                               <tr>
+                                       <td class="news-row">
+                                               <a
+                                                       
href="presse/pressemitteilung_20100604.html">OpenOffice.org 3.2.1 wurde 
ver&ouml;ffentlicht</a>
+                                       </td>
+                               </tr>
+                               <tr><td class="date-row">29.10.2009</td></tr>
+                               <tr>
+                                       <td class="news-row">
+                                               <a
+                                                       
href="http://www.prweb.com/releases/ooo/centomilioni/prweb3108474.htm";>OpenOffice.org
 3 wurde 100 Millionen mal heruntergeladen</a>
+                                       </td>
+                               </tr>
+
+                               <tr><td class="date-row">15.09.2009</td></tr>
+                               <tr>
+                                       <td class="news-row">
+                                               <a
+                                                       
href="presse/pressemitteilung_20090915.html">OpenOffice.org startet Kampagne 
gegen Download-Abofallen</a>
+                                       </td>
+                               </tr>
+
+                               <tr>
+                                       <td style="text-align: center; 
padding-top: 8px;">
+                                               <p>
+                                               <a href="news.xml"><img 
src="pics/feed-icon.png" alt="Link zum RSS-Feed News" /> <b>weitere...</b></a>
+                                               </p>
+                                       </td>
+                               </tr>
+                       </tbody>
+               </table>
+
+       </td>
+                               <td id="sect-events">
+
+               <table summary="Termine">
+                       <thead>
+                               <tr>
+                                       <td>
+                                               <span 
class="table-title">Termine</span>
+                                       </td>
+                               </tr>
+                       </thead>
+                       <tbody>
+
+                               <tr>
+                                       <td class="date-row">Rostock, 
4.-6.6.</td>
+                               </tr>
+                               <tr>
+                                       <td class="news-row"><a 
href="http://amoocon.de/talks/114";>AMOOCON</a></td>
+                               </tr>
+                                                                       
+                               <tr>
+                                       <td class="date-row">Berlin, 
9.-12.6.</td>
+                               </tr>
+                               <tr>
+                                       <td class="news-row"><a 
href="http://www.linuxtag.org";>LinuxTag</a></td>
+                               </tr>
+                               
+                               <tr>
+                                       <td class="date-row">M&uuml;nchen, 
25.6.</td>
+                               </tr>
+                               <tr>
+                                       <td class="news-row"><a 
href="http://www.opensourcetreffen.de";>Open-Source-Treffen</a></td>
+                               </tr>
+
+                               
+                               <tr>
+                                       <td class="date-row">Budapest, 
31.8.-3.9.</td>
+                               </tr>
+                               <tr>
+                                       <td class="news-row"><a 
href="http://www.ooocon.org";>OpenOffice.org Conference</a></td>
+                               </tr>
+                               
+                               <tr>
+                                       <td class="date-row">M&uuml;nchen, 
16./17.11.</td>
+                               </tr>
+                               <tr>
+                                       <td class="news-row"><a 
href="http://www.oookwv.de";>OpenOffice.org-Kongress f&uuml;r Wirtschaft und 
Verwaltung</a></td>
+                               </tr>
+
+                               <tr>
+                                       <td style="text-align: center; 
padding-top: 8px;">
+                                               <p>
+                                                       <a 
href="termine.xml"><img src="pics/feed-icon.png" alt="Link zum RSS-Feed 
Termine" /> <b>weitere...</b></a><br />
+<!--                                           <a 
href="veranstaltungen/index.html"><b>vergangene...</b></a><br /><br /> -->
+<!--                                           <a 
href="http://www.ooodev.org/terminkalender/";><b>NEU: jetzt als 
Online-Kalender</b></a> -->
+                                               </p>
+
+                                       </td>
+                               </tr>
+                       </tbody>
+
+               </table>
+
+       </td>
+</tr>
+</table>
+
+       </div>
+
+</div>
+<script type="text/javascript">fraud(0);</script>
+<div id="validXHTMLIcon">
+       <a href="http://validator.w3.org/check?uri=referer";><img 
src="http://www.w3.org/Icons/valid-xhtml10-blue"; alt="Valid XHTML 1.0 
Transitional"/></a>
+</div>
+
+
+</div>
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/index_neu.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/index_neu.html 
(added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/index_neu.html 
Wed Apr  5 17:05:32 2017
@@ -0,0 +1,320 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+    <title>
+        de.OpenOffice.org: Startseite
+    </title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+    <meta http-equiv="Content-Style-Type" content="text/css" />
+    <meta name="version" content="0.1" />
+<!-- >
+       Kommentare zur Seite
+       $Id: index.html,v 1.471 2007/06/13 11:35:00 markomlm Exp $
+       < -->
+<style type="text/css" media="screen, projection">
+/*<![CDATA[*/
+<!--
+  @import url(../styles/DeHome_2007.css);
+-->
+/*]]>*/
+</style>
+
+      <!--
+      DeHome.css ist von DomainHome.css kopiert und re/um-definiert eine Reihe 
von Dingen,
+      die sich auf der internationalen Seite nicht finden.
+      -->
+
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body>
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+
+
+
+
+        <div class="contentpart" id="spotlight">
+
+<!--   Das Spotlight ist alles, was oben steht und Aufmerksamkeit ziehen soll. 
  -->
+
+            <div id="spotlightgull">
+
+<!--
+    Das Spotlight ist in vier Bereiche gegliedert:
+    links die Buttons / rechts ein graphisches Element mit Produktlinks
+    in der Mitte der Titel, evtl. eine wichtige Meldung, und ein kurzer Text 
zu OOo
+    darunter der Download-button
+ -->
+
+                <div class="buttongroup">
+
+<!--
+      Die Buttongroup steht ganz links und soll die zweitgroessten
+      (ausser Download) und interessantesten Besuchergruppen abfangen.
+      Dies sind: Neulinge & Supportsuchende & Mitarbeiter.
+      Andere Sucher sollten mit der Sitemap finden, was sie brauchen.
+      Bei Kontakt ist sowohl der Pressekontakt als auch die Mailinglisten
+      als auch der rechtliche Hinweis angedacht.
+ -->
+
+                    <ul>
+                        <li><a href="../neuhier.html" class="button" 
id="buttonneu" title="Was ist das hier? - Informationen zu 
OOo"><span></span></a></li>
+                        <li><a href="../probleme.html" class="button" 
id="buttonproblem" title="Support, Tutorial, Dokumentation - alles in 
Deutsch"><span></span></a></li>
+                        <li><a href="../kontakt.html" class="button" 
id="buttonkontakt" title="Unsere Ansprechpartner in den verschiedenen 
Aufgabengebieten"><span></span></a></li>
+                        <li> <a href="../../dev/index.html" class="button" 
id="buttonmithelfen" title="Am Projekt aktiv mitarbeiten"><span></span></a></li>
+                        <li><a href="../map_all.html" class="button" 
id="buttonwo" title="Mit einem Klick zu den wichtigsten deutschsprachigen 
Seiten"><span></span></a></li>
+
+
+<!--
+        links koennen auch weitere Buttons eingefuegt werden,
+        wenn man sich an das obige Schema haelt.
+        Farben und Groessen werden ueber das css realisiert.
+ -->
+
+                    </ul>
+                </div> <!-- Ende "buttongroup" -->
+
+                <div class="graphicalpresentation">
+
+<!--
+      Auf der rechten Seite sind zwei graphische Elemente.
+      Zunaechst ganz links oben ein Bild.
+ -->
+
+                    <img src="//branding/images/eggsopen_v6_with_gull.gif" 
alt="OpenOffice 2.0! (seagull image by Olly Clarke)" 
longdesc="http://www.flickr.com/photos/whatmeworry/40431517/"; title="OpenOffice 
2.0! (seagull image by Olly Clarke)" />
+
+                    <div class="ooocomponents">
+
+<!--
+        Darunter eine Leiste mit den Komponenten von 2.0.
+ -->
+                        <h2>OpenOffice.org 2 Komponenten:</h2>
+                        <ul class="ooocomponentslist">
+                            <li class="ooobase"><a href="../product/base.html" 
title="Datenbank">Base</a></li>
+                            <li class="ooocalc"><a href="../product/calc.html" 
title="Tabellenkalkulation">Calc</a></li>
+                            <li class="ooodraw"><a href="../product/draw.html" 
title="Vektorzeichnen">Draw</a></li>
+                            <li class="ooomath"><a href="../product/math.html" 
title="Formeln erstellen">Math</a></li>
+                            <li class="oooimpress"><a 
href="../product/impress.html" title="Pr&auml;sentationen">Impress</a></li>
+                            <li class="ooowriter"><a 
href="../product/writer.html" title="Textverarbeitung">Writer</a></li>
+                            <li class="oooprodukt"><a 
href="../product/index.html" title="Produkt">Produkt</a></li>
+                        </ul>
+                    </div> <!-- Ende "ooocomponents" -->
+
+                </div> <!-- Ende "graphicalpresentation" -->
+
+<!--
+    In der Mitte der Seite steht oben der Seitentitel.
+ -->
+                <h1>OpenOffice.org - die freie Office Suite </h1>
+
+<!--
+    Bei Aktionen kann direkt unter der Ueberschrift ein Einzeiler mit Link
+    eingefuegt werden. Der Link fuehrt zum ersten Newsitem, wo ein laengerer 
Text
+    und weitere Links stehen.
+    Der Absatz sollte nicht geloescht werden, wenn er nicht mehr
+    benoetigt wird, sondern er sollte lediglich auskommentiert werden.
+ -->
+
+  
+
+
+
+<!--
+<p class="wichtig">Aktuell: <a 
href="presse/pressemitteilung_20070329.html">29.03.2007: Neue Version 2.2 von 
OpenOffice.org in deutscher Sprache erschienen</a></p>
+
+    In der Mitte der Seite ist unter dem Seitentitel ein _kurzer_ Text.
+    Der Text selbst sollte moeglichst nicht als Newsitem benutzt werden, 
sondern
+    neuen Besuchern eine ganz kurze Information geben, was auf dieser Seite
+    ueberhaupt passiert und ob der Besucher dort richtig ist.
+ -->
+               
+                <p>
+                          OpenOffice.org ist sowohl eine <a 
href="product/index.html">Office Suite</a>, die auf vielen
+                          <a 
href="//dev_docs/source/sys_reqs_11.html">Betriebssystemen</a>
+                          und in zahlreichen <a 
href="//project/l10n/languages.html">Sprachen</a>
+                          verf&uuml;gbar ist, als auch ein <a 
href="http://www.opensource.org/docs/definition.php";>Open-Source</a>-Projekt,
+                          in dem viele zumeist ehrenamtliche Mitglieder das 
Produkt immer weiter
+                          verbessern und unterst&uuml;tzen. F&uuml;r diese 
Gemeinschaft suchen wir st&auml;ndig neue Mitglieder:
+                          <a href="dev/index.html">Beteiligen</a> Sie sich!
+                </p>
+                <p>Als Produkt ist OpenOffice.org frei: Sie k&ouml;nnen es 
frei herunterladen, frei benutzen und frei weitergeben.</p>
+
+<!--
+    Der Downloadbutton ist das letzte Element im Spotbereich.
+    Er ist unter dem Kurztext recht prominent plaziert und
+    sollte die Links zu den wesentlichen Versionen und wichtigen
+    Patches erhalten. Ein letzter Link fuehrt zur Downloadseite.
+ -->
+
+                <div class="button" id="buttondownload">
+                    <h1>Download<h1>
+
+                    <p>    <a href="../downloads/quick.html?version=2.2" 
title="Auf dem neuesten Stand">2.2.1</a><br />
+                            <a href="../downloads/quick.html?version=1.1.5" 
title="Zur Erg&auml;nzung bestehender Installationen">1.1.5</a>
+                    </p>
+                </div> <!-- Ende "buttondownload" -->
+
+            </div> <!-- Ende "spotlightgull" -->
+
+        </div> <!-- Ende "spotlight" -->
+
+        <div class="contentpart" id="news">
+
+<p> </p>
+<!--
+  Der Newspart steht unter dem Spotlight und soll die Seite nicht so unaktuell
+  langweilig aussehen lassen. Fuer den Fall, dass wirklich mal was passiert,
+  kann man hier auch News hinstellen.
+ -->
+
+            <div class="contentsubpart" id="othermedia">
+
+<!--
+    Auf der rechten Seite ist eine Tabelle. Die Tabelle hat einen
+    Kopf mit dem Titel. Dadrunter sind in jeder Tabellenzeile eine Information,
+    in der ersten Spalte ihr Datum, in der zweiten ein als Link formatierter
+    kurzer Hinweistext.
+ -->
+
+                <table summary="OpenOffice.org DE - Termine">
+                    <thead>
+                        <tr>
+                            <td colspan="2">OpenOffice.org DE -  Termine </td>
+                        </tr>
+                    </thead>
+                    <tbody>
+
+<!--
+        Neue Informationen ueber Termine sollen hier eingefuegt werden.
+        Dabei sollte man schauen, ob ein weiter unten stehendes Item
+        nicht mehr aktuell ist und geloescht werden kann. Folgende
+        Schablone kann man verwenden:
+
+        <tr>
+          <td class="headcol">
+            Hier Datum einsetzten, dabei zuerst Tag ohne Punkt, dann Monat mit 
drei
+            Buchstaben ohne Punkt: 1 Jan, 4 M&auml;r
+          </td>
+          <td><a href="http://de.openoffice.org/";>
+            Text der Info, kurz fassen, kein Punkt am Ende
+          </a></td></tr>
+
+ -->
+
+         <tr>
+                       <td class="headcol">13. Jun.</td>
+                       <td><a href="http://www.it-kom-mainz.de";>IT_kom in 
Mainz</a></td>
+      </tr>
+         <tr>
+                       <td class="headcol">29. Jun.-1. Jul.</td>
+                       <td><a 
href="http://wiki.services.openoffice.org/wiki/DE/Projektwochenende2007";>Projekt-Wochenende
 in Hof</a></td>
+      </tr>
+         <tr>
+                       <td class="headcol">17.-19. Aug.</td>
+                       <td><a 
href="veranstaltungen/camp2007.html">CampOpenOffice.org am Biggesee</a></td>
+      </tr>
+         <tr>
+                       <td class="headcol">25./26. Aug.</td>
+                       <td><a 
href="http://www.froscon.de/Call-for-Papers.12.0.html";>FrOSCon in St. 
Augustin</a></td>
+      </tr>
+         <tr>
+                       <td class="headcol">19.-21. Sep.</td>
+                       <td><a 
href="http://marketing.openoffice.org/ooocon2007/";>OOoCon in Barcelona</a></td>
+      </tr>
+                    </tbody>
+                </table>
+
+            </div> <!-- Ende "othermedia" -->
+
+<!--
+  Unter dem Spotlight auf der linken Seite stehen untereinander die
+  Neuigkeitenpunkte (Newsitems).
+
+  Zu dem Anker "Wichtig" gehoert noch ein Hinweis mit Link direkt
+  unter dem Titel der Seite.
+
+ -->
+
+            <div class="item" id="newsprimaryarticle">
+                <a name="Wichtig"></a>
+                <table summary="OpenOffice.org DE - Neuigkeiten">
+                    <thead>
+                        <tr>
+                            <td colspan="2">OpenOffice.org DE - 
Neuigkeiten</td>
+                        </tr>
+                    </thead>
+                    <tbody>
+
+<!--
+        Neue Informationen ueber Interna sollen hier eingefuegt werden.
+        Dabei sollte man schauen, ob ein weiter unten stehendes Item
+        nicht mehr aktuell ist und geloescht werden kann. Folgende
+        Schablone kann man verwenden:
+
+        <tr>
+          <td class="headcol">
+            Hier Datum einsetzten, dabei zuerst Tag ohne Punkt, dann Monat mit 
drei
+            Buchstaben ohne Punkt: 1 Jan, 4 M&auml;r
+          </td>
+          <td><a href="http://de.openoffice.org/";>
+            Text der Info, kurz fassen, kein Punkt am Ende
+</a></td></tr> -->
+                 <tr>
+                            <td class="headcol">12.06.2007</td>
+                            <td>
+                                OpenOffice.org in Version 2.2.1 veröffentlicht
+                            </td>
+          </tr>                
+         <tr>
+                            <td class="headcol">12.05.2007</td>
+                            <td><a href="../doc/sonstiges/gerry.html">
+                                G.R. Singleton verstorben</a>
+                            </td>
+          </tr>
+          <tr>
+                            <td class="headcol">29.03.2007</td>
+                            <td><a 
href="../presse/pressemitteilung_20070329.html">
+                                OpenOffice.org in Version 2.2 
veröffentlicht</a>
+                            </td>
+          </tr>
+
+            <tr>
+                            <td class="headcol">11.03.2007</td>
+                            <td><a 
href="../veranstaltungen/camp2007.html">Bewerbungsphase f&uuml;r 
CampOpenOffice.org beginnt</a>
+                            </td>
+          </tr>
+          <tr>
+                            <td class="headcol">02.03.2007</td>
+                            <td><a 
href="../marketing/wettbewerb_ebay.html">OpenOffice.org und eBay starten 
gemeinsamen Programmierwettbewerb</a>
+                            </td>
+          </tr>
+
+          </tbody>
+       </table>
+
+            </div> <!-- Ende "newsprimaryarticle" -->
+
+        </div> <!-- Ende "news" -->
+
+        <p><a href="http://validator.w3.org/check?uri=referer";><img 
src="http://www.w3.org/Icons/valid-xhtml10"; alt="Valid XHTML 1.0 Transitional" 
/></a></p>
+
+
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/index_why.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/index_why.html 
(added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/index_why.html 
Wed Apr  5 17:05:32 2017
@@ -0,0 +1,261 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+  <title>Why OpenOffice.org</title>
+<!-- OOoLayout:nonav -->
+  <link rel="stylesheet" href="/why/suppress.css" type="text/css" />
+  <link rel="stylesheet" href="/why/why.css" type="text/css" />
+       <!-- start IE6 hack by markomlm -->
+       <!--[if lte IE 6]>
+       <style> 
+       <!--
+               body {position: static;}
+
+       #container {margin-left: -0px;}
+       --></style>
+       <![endif]-->
+       <!-- end IE6 hack by markomlm -->
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body>
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+
+
+
+
+
+
+<!-- Master Container: Centered and 700px wide -->
+<div id="container">
+
+    <!-- The topmost bar -->
+    <div id="topbar">
+        <a href="/">OpenOffice.org</a> - 
+        home of the world's leading open-source office suite
+    </div>
+    <!-- End of top bar -->
+
+    <!-- This holds the main header -->
+    <div id="headerwrapper">
+
+        <!-- This is the site title -->
+        <h1>Why OpenOffice.org</h1>
+       </div>
+       <!-- End of headerwrapper -->
+
+    <!-- This hold the navigation tabs -->
+    <div id="tabholder">
+        <div id="tabs8">
+            <ul>
+                <!-- CSS Tabs -->
+                <li id="current"><a href="index.html"><span>Why</span></a></li>
+                <li><a href="why_great.html"><span>Great 
Software</span></a></li>
+                <li><a href="why_easy.html"><span>Easy to use</span></a></li>
+                <li><a href="why_free.html"><span>and it's free</span></a></li>
+            </ul>
+        </div>
+    </div>
+    <!-- End of the tabs holder -->
+
+    <!-- Here's the box for the main article -->
+    <div class="articleboxouter">
+
+        <!-- Here's where you can place ur content -->
+        <div class="articleboxinner">
+
+            <!-- The main image. 300px by 210px -->
+            <img src="/why/images/why_home.gif" width="300" height="210"
+            alt="OOo logo" class="mainpiccontrol" name="pix" />
+            <div id="mytext">
+            <!-- The title for this article -->
+            <span class="articleheader" >OpenOffice.org 2</span>
+
+            <!-- The preview content -->
+            is the leading <b>open-source</b> <b>office software suite</b>
+            for <b>word processing</b>, <b>spreadsheets</b>, 
<b>presentations</b>,
+            <b>graphics</b>, <b>databases</b> and more. It is available 
+            in <b>many languages</b>
+            and works on all <b>common computers</b>. It stores all your data 
in an
+            <b>international open standard format</b> and can also read and 
write
+            files from other common office software packages. It can be
+            downloaded and used completely <b>free of charge</b> for <b>any 
purpose</b>.
+            <br />
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="/why/images/arrow.png" alt="read more" 
class="noborder" />
+                </a>
+                <a href="/download">
+                  Get OpenOffice.org 2 now
+                </a>
+                <br />&nbsp;
+            </span>
+        </div>
+        <!-- End of content holder -->
+    </div>
+    <!-- End of main article -->
+
+    <!-- Here's the box for some pics -->
+    <div class="picboxouter">
+
+        <!-- Here's where you can place ur thumbnails -->
+        <!-- All should be uniformly sized ;-) -->
+
+        <div class="picbox">
+          <a href="why_gov.html"><img src="/why/images/icon_gov.png" 
class="pickboxcontrol"
+             alt="Public Administration"  
+             title="Why OpenOffice.org for Public Administration" /><br />
+             <span>Governments</span>
+          </a>
+        </div>
+        <div class="picbox">
+          <a href="why_edu.html"><img src="/why/images/icon_edu.png" 
class="pickboxcontrol"
+             alt="Education"  title="Why OpenOffice.org for Education" /><br />
+             <span>Education</span>
+          </a>
+        </div>
+        <div class="picbox">
+          <a href="why_sme.html"><img src="/why/images/icon_biz.png" 
class="pickboxcontrol"
+             alt="Businesses"  title="Why OpenOffice.org for Businesses" /><br 
/>
+             <span>Businesses</span>
+          </a>
+        </div>
+        <div class="picbox">
+          <a href="why_nfp.html"><img src="/why/images/icon_nfp.png" 
class="pickboxcontrol" 
+             alt="Not For Profits"  title="Why OpenOffice.org for Not For 
Profits" /><br />
+             <span>Not for profits</span>
+          </a>
+        </div>
+        <div class="picbox">
+          <a href="why_oem.html"><img src="/why/images/icon_oem.png" 
class="pickboxcontrol"
+             alt="IT businesses"  title="Why OpenOffice.org for IT businesses" 
/><br />
+             <span>IT Businesses</span>
+          </a>
+        </div>
+        <div class="picbox">
+          <a href="why_foss.html"><img src="/why/images/icon_linux.png" 
class="pickboxcontrol"
+             alt="F/OSS"  
+             title="Why OpenOffice.org for Free/Open-Source Systems advocates" 
/><br />
+             <span>F/OSS advocates</span>
+          </a>
+        </div>
+    </div>
+    <!-- End of photogallery -->
+
+    <!-- We love three columns, don't we? -->
+    <!-- Holder for three columns -->
+    <div class="articleboxouter">
+        <div id="newsContainer2">
+
+            <!-- Column 1 -->
+               <div class="c1">
+                       <div class="noteheader">
+                               &nbsp;Great software
+                       </div>
+                       <div class="spacy">
+                    OpenOffice.org 2 is the result of over twenty years' 
software
+                    engineering. Designed from the start as a single piece of 
software,
+                    it has a consistency other products cannot match. A 
completely open
+                    development process means that anyone can report bugs, 
request
+                    new features, or enhance the software. 
+                    The result: OpenOffice.org 2 does everything you want your
+                    office software to do, the way you want it to.
+                       </div>
+               </div>
+
+               <!-- Column 2 -->
+            <div class="c2">
+                <div class="noteheader">
+                    &nbsp;Easy to use
+                </div>
+                <div class="spacy">
+                    OpenOffice.org 2 is easy to learn, and if you're already 
using another
+                    office software package, you'll take to OpenOffice.org 2 
straight away. 
+                    Our world-wide native-language community means that  
+                    OpenOffice.org 2 is probably available and supported in 
your own language.
+                    And if you already have files from another office package 
- OpenOffice.org
+                    2 will probably read them with no difficulty.
+                </div>
+            </div>
+
+            <!-- Column 3 -->
+               <div class="c3">
+                <div class="noteheader">
+                    &nbsp;and it's free
+                </div>
+              <div class="spacy">
+                       <!-- The content for this attention grabbing block -->
+                    Best of all, OpenOffice.org 2 can be downloaded and used 
entirely
+                    free of any licence fees. OpenOffice.org 2 is released 
under the LGPL
+                    licence. This means you may use it for any purpose - 
domestic,
+                    commercial, educational, public administration. You may 
install it
+                    on as many computers as you like. You may make copies and 
give them
+                    away to family, friends, students, employees - anyone you 
like.
+              </div>
+            </div>
+        </div>
+    </div>
+    <!-- End of the three columns holder -->
+
+    <!-- This little whitespace will separate the page from the footer -->
+    &nbsp;
+
+    <!-- Finally, here's the humble footer, holding your copyright -->
+    <div id="myfooter">
+  
+      <a href="http://www.sun.com/software/star/openoffice/index.html";>
+        <img 
+         style="float:left; display:inline; border:1px solid #444487; 
width:81px; height:41px;" 
+         title="Sponsored by Sun Microsystems, Inc." 
+                    alt="Sun Microsystems Logo" 
src="/why/branding/images/sun_logo.gif" />
+               </a>
+      <a href="http://www.collab.net/special/clickpbc0502.html";>
+                   <img 
+                    style="float:right; display:inline; width:102px; 
height:38px"  
+                  title="Powered by CollabNet" alt="CollabNet Logo" 
+                  src="/why/branding/images/poweredby_036.gif" />
+               </a>
+<!--  <a title="Give feedback, or ask for assistance" 
+                         href="/project/www/contact.html">Contact Us</a>
+               <a title="Sitemap" href="/project/www/sitemap.html">Sitemap</a>
+                 <a title="What should happen on the matter listed on this 
page..."
+                       href="/project/development/todo.html">To-Dos</a>
+               <a href="//nonav/servlets/HelpTOC">Site Help</a>
+                 <a href="/project/www/press/2.0/index.html">Press Room</a>
+               <br /> -->
+               By any use of this Website, you agree to be bound by these 
+               <a href="http://www.sunsource.net/TUPPCP.html";>Policies and 
Terms of Use</a>
+               <br />
+               CollabNet is a trademark of CollabNet, Inc., Sun, Sun 
Microsystems, 
+    the Sun logo, Java, Solaris, StarOffice are trademarks or registered
+    trademarks of Sun Microsystems, Inc. in the United States and other 
countries.
+
+    </div>
+    <!-- End of footer -->
+
+</div>
+<!-- End of master container -->
+
+
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>

Added: websites/staging/ooo-site/trunk/content/de/Archive/testdir/info.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/de/Archive/testdir/info.html (added)
+++ websites/staging/ooo-site/trunk/content/de/Archive/testdir/info.html Wed 
Apr  5 17:05:32 2017
@@ -0,0 +1,379 @@
+<!--#include virtual="/doctype.html" -->
+<html>
+<head>
+<link href="/css/ooo.css" rel="stylesheet" type="text/css">
+
+    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+    <title>OpenOffice.org Informationen</title>
+<!-- OOoLayout:nonav -->
+    <link rel="stylesheet" href="./../styles/suppress.css" type="text/css" />
+    <link rel="stylesheet" href="./../styles/why.css" type="text/css" />
+
+    <script type="text/javascript" src="./box.js"></script>
+
+    <style type="text/css">
+    .boxes {
+      display: none;
+     }
+    </style>    
+    
+
+<!--#include virtual="/google-analytics.js" --> 
+<!--#include virtual="/scripts/entourage.js" -->
+</head>
+<body>
+<!--#include virtual="/de/brand.html" -->
+  <div id="topbara">
+    <!--#include virtual="/de/topnav.html" -->
+    <div id="breadcrumbsa"><a href="/">home</a>&nbsp;&raquo;&nbsp;<a 
href="/de/">de</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/">Archive</a>&nbsp;&raquo;&nbsp;<a 
href="/de/Archive/testdir/">testdir</a></div>
+  </div>
+  <div id="clear"></div>
+  
+  
+  <div id="content">
+    
+    
+    
+
+
+
+
+
+<!-- Master Container: Centered and 700px wide -->
+<div id="container">
+
+    <!-- The topmost bar -->
+    <div id="topbar">
+        <a href="http://de.openoffice.org/";>de.OpenOffice.org</a> - 
+        Die deutschen Projektseiten
+    </div>
+    <!-- End of top bar -->
+
+    <!-- This holds the main header -->
+    <div id="headerwrapper">
+
+        <!-- This is the site title -->
+        <h1>OpenOffice.org Version 3</h1>
+       </div>
+       <!-- End of headerwrapper -->
+
+
+
+    <!-- Here's the box for the main article -->
+    <div class="articleboxouter">
+
+        <!-- Here's where you can place ur content -->
+        <div class="articleboxinner">
+
+        <div style="display: none;" id="box_1">
+            <!-- The main image. 300px by 210px -->
+            <img src="../images/why_great.png" alt="OpenOffice.org 2 software" 
title="OpenOffice.org 2 software" class="mainpiccontrol" id="pix1" height="210" 
width="300">
+            <div id="mytext1">
+            <!-- The title for this article -->
+            <span class="articleheader">Eine gro&szlig;artige Software</span>
+
+            <!-- The preview content -->
+            erfordert ein gro&szlig;artiges Team. 
+            OpenOffice.org 2 ist das Ergebnis einer zwanzigj&auml;hrigen 
kontinuierlichen
+            Sowtwareentwicklung auf hohem Niveau. 
+            Das <b>Open-Source</b> Entwicklungsmodell bedeutet, dass es 
keinerlei Geheimnisse gibt.
+            <br>
+            Bewegen Sie Ihre Maus &Uuml;ber die Screenshots, um mehr Details 
zu den Hauptkomponenten zu erfahren
+            <i>(erfordert javascript)</i>.
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="../images/arrow.png" alt="read more" 
class="noborder">
+                </a>
+                <a href="http://de.openoffice.org/downloads/quick.html";>
+                  OpenOffice.org 3 jetzt Herunterladen
+                </a>
+                <br>&nbsp;
+            </span>
+        </div>    
+
+        <div style="display: none;" class="boxes" id="box_2">    
+            <!-- The main image. 300px by 210px -->
+            <a href="../images/writer-big.png">
+            <img src="../images/writer-crop.png" alt="Writer" title="Click for 
full-size screenshot of Writer" class="mainpiccontrol" id="pix2" height="210" 
width="300"></a>
+            <div id="mytext2">
+            <!-- The title for this article -->
+            <span class="articleheader">Writer</span>
+
+            <!-- The preview content -->
+enth&auml;lt alles, was man von einer modernen, voll ausgestatteten
+Textverarbeitung mit DTP-Funktionalit&auml;t erwarten w&uuml;rde: 
leistungsf&auml;hige
+Features wie AutoKorrektur, AutoVervollst&auml;ndigung, AutoFormat,
+Formatvorlagen, Textrahmen und Verkn&uuml;pfungen, Inhaltsverzeichnisse,
+Indizierung, Literaturverzeichnisse, Abbildungen, Tabellen und andere
+Elemente. Writer ist einfach genug f&uuml;r ein schnelles Memo und zugleich
+m&auml;chtig und stabil genug, um komplette B&uuml;cher mit vielen Grafiken,
+&Uuml;berschriften und vielerlei mehr zu verfassen. <br>
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="../images/arrow.png" alt="read more" 
class="noborder">
+                </a>
+                <a href="http://de.openoffice.org/downloads/quick.html";>
+                  OpenOffice.org 3 jetzt herunterladen
+                </a>
+                <br>&nbsp;
+            </span>
+        </div>    
+                        
+        <div style="display: none;" class="boxes" id="box_3">    
+            <!-- The main image. 300px by 210px -->
+            <a href="../images/calc-big.png">
+            <img src="../images/calc-crop.png" alt="Calc" title="Click for 
full-size screenshot of Calc" class="mainpiccontrol" id="pix3" height="210" 
width="300"></a>
+            <div id="mytext3">
+            <!-- The title for this article -->
+            <span class="articleheader">Calc</span>
+
+            <!-- The preview content -->
+ist die Tabellenkalkulation, die Sie schon immer wollten. Anf&auml;nger
+finden sie intuitiv und leicht zu erlernen; professionelle
+Datenverarbeiter und Zahlenjongleure sch&auml;tzen die umfassende Palette
+von leistungsstarken Funktionen wie den erweiterten Datenpilot, Formeln
+in nat&uuml;rlicher Sprache, eine intelligente Summmenfunktion, eine
+umfassende Palette von fortschrittlichen Kalkulationsfunktionen, Stile
+und Formatierungen sowie einen Szenario-Manager f&uuml;r die Frage "Was 
w&auml;re
+wenn...". <br>
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="../images/arrow.png" alt="read more" 
class="noborder">
+                </a>
+                <a href="http://de.openoffice.org/downloads/quick.html";>
+                  OpenOffice.org 3 jetzt herunterladen
+                </a>
+                <br>&nbsp;
+            </span>
+        </div>    
+
+        <div style="display: none;" class="boxes" id="box_4">    
+            <!-- The main image. 300px by 210px -->
+            <a href="http://de.openoffice.org/images/impress-big.png";>
+            <img src="../images/impress-crop.png" alt="Impress" title="Click 
for full-size screenshot of Impress" class="mainpiccontrol" id="pix4" 
height="210" width="300"></a>
+            <div id="mytext4">
+            <!-- The title for this article -->
+            <span class="articleheader">Impress</span>
+
+            <!-- The preview content -->
+ist ein hervorragendes Werkzeug f&uuml;r effektive
+Multimedia-Pr&auml;sentationen. Ihre Pr&auml;sentationen bestechen mit 2D-und
+3D-Clipart, Schrifteffekten mit FontWork, Spezialeffekten, Animationen
+und beeindruckenden Zeichenwerkzeugen. Eine geteilte Ansicht stellt
+alle Tools griffbereit zur Verf&uuml;gung und Sie k&ouml;nnen Ihre am 
h&auml;ufigsten
+verwendeten Zeichenwerkzeuge rund Ihrem Bildschirm f&uuml;r den Zugriff auf
+Tastendruck anordnen.
+Verteilen Sie Ihre Werke auf alle erdenklichen Arten: nicht nur PDF,
+sondern auch HTML und Flash.
+Verk&uuml;nden Sie Ihre Botschaft mit <b>Impress</b>.
+
+            <br>
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="../images/arrow.png" alt="read more" 
class="noborder">
+                </a>
+                <a href="http://de.openoffice.org/downloads/quick.html";>
+                  OpenOffice.org 3 jetzt herunterladen
+                </a>
+                <br>&nbsp;
+            </span>
+        </div>    
+
+        <div style="display: none;" class="boxes" id="box_5">    
+            <!-- The main image. 300px by 210px -->
+            <a href="http://de.openoffice.org/images/draw-big.png";>
+            <img src="../images/draw-crop.png" alt="Draw" title="Click for 
full-size screenshot of Draw" class="mainpiccontrol" id="pix5" height="210" 
width="300"></a>
+            <div id="mytext5">
+            <!-- The title for this article -->
+            <span class="articleheader">Draw</span>
+
+            <!-- The preview content -->
+alles von einer schnellen Skizze zu einem komplexen Plan. <b>Draw</b>
+gibt Ihnen die Werkzeuge zur Kommunikation mit Grafiken und Diagrammen.
+Objekte manipulieren, drehen in zwei oder drei Dimensionen, die Nutzung
+ausgefeilten Renderings zur Schaffung fotorealistischer Bilder.
+Verbindungspunkte erleichtern die Arbeit mit Flussdiagrammen,
+Organigrammen, Netzwerk-Diagrammen und mehr. Formatvorlagen erleichtern
+Ihnen die Arbeit in Draw genauso wie in allen anderen Modulen von
+OpenOffice.org Ein Bild aus <b>Draw</b> sagt mehr als tausend Worte!
+            <br>
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="../images/arrow.png" alt="read more" 
class="noborder">
+                </a>
+                <a href="http://de.openoffice.org/downloads/quick.html";>
+                  OpenOffice.org 3 jetzt herunterladen
+                </a>
+                <br>&nbsp;
+            </span>
+        </div>    
+
+        <div style="display: block;" class="boxes" id="box_6">    
+            <!-- The main image. 300px by 210px -->
+            <a href="http://de.openoffice.org/images/base-big.png";>
+            <img src="../images/base-crop.png" alt="Base" title="Click for 
full-size screenshot of Base" class="mainpiccontrol" id="pix6" height="210" 
width="300"></a>
+            <div id="mytext6">
+            <!-- The title for this article -->
+            <span class="articleheader">Base</span>
+
+            <!-- The preview content -->
+erm&ouml;glicht Ihnen die nahtlose Bearbeitung Ihrer Datenbank in
+OpenOffice.org. Erstellen und Modifizieren von Tabellen, Formularen,
+Abfragen und Berichten, entweder mit Ihrem eigenen Datenbankserver oder
+der in Base intergrierten HSQL-Datenbank. Base bietet den Zugriff &uuml;ber
+Assistenten, Design-Ansichten oder SQL-Ansichten f&uuml;r Anf&auml;nger,
+Fortgeschrittene und erfahrene Benutzer.
+Greifen Sie problemlos auf Ihre Datenbanken zu mit <b>Base</b>!
+            <br>
+            </div>
+            <!-- Link to the full article, an arrow and a text link -->
+            <span class="readmore">
+                <a href="#">
+                 <img src="../images/arrow.png" alt="read more" 
class="noborder">
+                </a>
+                <a href="http://de.openoffice.org/downloads/quick.html";>
+                  OpenOffice.org 3 jetzt herunterladen
+                </a>
+                <br>&nbsp;
+            </span>
+        </div>    
+
+
+        </div>
+        <!-- End of content holder -->
+    </div>
+    <!-- End of main article -->
+
+    <!-- Here's the box for some pics -->
+    <div class="picboxouter">
+
+        <!-- Here's where you can place ur thumbnails -->
+        <!-- All should be uniformly sized ;-) -->
+
+        <div class="screenbox">
+            <a href="http://de.openoffice.org/images/writer-big.png"; 
onmouseover="swapper('box_2');">
+               <img src="../images/writer-icon.png" class="screenboxcontrol" 
alt="Writer word processor screenshot" title="Click for Writer word processor 
screenshot"><br>
+               <span>Writer</span>
+            </a>
+        </div>
+        <div class="screenbox">
+            <a href="http://de.openoffice.org/images/calc-big.png"; 
onmouseover="swapper('box_3');">
+               <img src="../images/calc-icon.png" class="screenboxcontrol" 
alt="Calc spreadsheet screenshot" title="Click for Calc spreadsheet 
screenshot"><br>
+               <span>Calc</span>
+            </a>
+        </div>
+        <div class="screenbox">
+            <a href="http://de.openoffice.org/images/impress-big.png"; 
onmouseover="swapper('box_4');">
+               <img src="../images/impress-icon.png" class="screenboxcontrol" 
alt="Impress presentations screenshot" title="Click for Impress presentations 
screenshot"><br>
+               <span>Impress</span>
+            </a>
+        </div>
+        <div class="screenbox">
+            <a href="http://de.openoffice.org/images/draw-big.png"; 
onmouseover="swapper('box_5');">
+               <img src="../images/draw-icon.png" class="screenboxcontrol" 
alt="Draw graphics screenshot" title="Click for Draw graphics screenshot"><br>
+               <span>Draw</span>
+            </a>
+        </div>
+        <div class="screenbox">
+            <a href="http://de.openoffice.org/images/base-big.png"; 
onmouseover="swapper('box_6');">
+               <img src="../images/base-icon.png" class="screenboxcontrol" 
alt="Base database screenshot" title="Click for Base database screenshot"><br>
+               <span>Base</span>
+            </a>
+        </div>
+    </div>
+    <!-- End of photogallery -->
+
+    <!-- We love three columns, don't we? -->
+    <!-- Holder for three columns -->
+    <div class="articleboxouter">
+      <div id="newsContainer2">
+
+        <!-- Column 1 -->
+               <div class="c1">
+                 <div class="noteheader">
+                   &nbsp;Vorsprung durch Design
+                 </div>
+                       <div class="spacy">
+Mit Wurzeln, die &uuml;ber zwanzig Jahre zur&uuml;ckreichen, ist OpenOffice.org
+ein ausgereiftes, zuverl&auml;ssiges Produkt.
+OpenOffice.org wurde von Anfang an als eine zusammenh&auml;ngende Software
+entwickelt - nicht als Zusammenstellung einzelner Programme. Dadurch
+ist es in der Bedienung durchg&auml;ngig und leicht zu anzuwenden - was Sie
+in einer Anwendung lernen, ist auch in den anderen Modulen nutzbar. Die
+kontextsensitive Hilfe gibt Ihnen in allen Anwendungen genau die
+Unterst&uuml;tzung, die Sie ben&ouml;tigen. Sie k&ouml;nnen jede Art von 
Dokument aus
+jeder Anwendung &ouml;ffnen - OpenOffice.org ist wirklich aus einem Guss.
+Dar&uuml;ber hinaus l&auml;uft auf allen wichtigen Plattformen - Microsoft
+Windows, GNU/Linux, Sun Solaris, Mac OS X - ist das nicht toll? </div>
+               </div>
+
+               <!-- Column 2 -->
+        <div class="c2">
+          <div class="noteheader">
+              &nbsp;Vorsprung f&uuml;r Sie
+          </div>
+          <div class="spacy">
+OpenOffice.org enth&auml;lt alle Office-Anwendungen, die Sie ben&ouml;tigen, in
+einem einzigen Paket. Sie brauchen sich keine Gedanken dar&uuml;ber zu
+machen, welche Version Sie installieren: eine einzige Installation
+liefert alles. Die Installation umfasst auch einige Features, die
+selbst teure Drittprogramme nicht haben - zum Beispiel die F&auml;higkeit,
+PDF-Dateien zu erstellen, um sicherzugehen, dass Dritte unabh&auml;ngig von
+ihrer Anwendung Ihr Dokument genau so sehen, wie sie es sollen. Es gibt
+auch eine wachsende Reihe von Erweiterungen, so genannten Extensions:
+Zus&auml;tzliche Features, die jeder entwickeln kann. OpenOffice.org
+ver&ouml;ffentlich neue Versionen des Paketes mehrere Male pro Jahr, damit
+Sie schneller in den Genuss von neuer Funktionalit&auml;t kommen. </div>
+        </div>
+
+        <!-- Column 3 -->
+               <div class="c3">
+           <div class="noteheader">
+              &nbsp;Vorsprung durch Offenheit
+           </div>
+           <div class="spacy">
+                  <!-- The content for this attention grabbing block -->
+OpenOffice.org wird "ohne Geheimnisse" nach dem Open-Source-Modell
+entwickelt. Jeder kann sich die Programme im Quelltext anschauen und
+Verbesserungen einbringen oder Fehler beheben. Jeder kann Fehler melden
+und Erweiterungen vorschlagen, und jeder kann die Reaktion von anderen
+Benutzern oder Entwicklern darauf sehen. Der Status der aktuellen und
+der zuk&uuml;nftigen Versionen wird auf einem &ouml;ffentliche Wiki 
dokumentiert.
+So k&ouml;nnen Sie entscheiden, ob und wann Sie ein Upgrade machen, um die
+Vorteile der neuen Funktionen zu genie&szlig;en. Jeder, der kommerzielle
+Software und seine Vermarktung gewohnt ist, wird OpenOffice.org
+erfrischend anders finden. Genie&szlig;en Sie die Vorteile von Open Source! 
</div>
+         </div>
+      </div>
+    </div>
+    <!-- End of the three columns holder -->
+
+    <!-- This little whitespace will separate the page from the footer -->
+    &nbsp;
+
+
+
+</div>
+<!-- End of master container -->
+
+<div id="valid-xhtml-footer">
+<p>
+    <a href="http://validator.w3.org/check?uri=referer";><img 
src="http://www.w3.org/Icons/valid-xhtml10-blue"; alt="Valid XHTML 1.0 Strict" 
height="31" width="88"></a>
+       </p>
+</div>
+
+
+  </div>
+<!--#include virtual="/footer.html" -->
+</body>
+</html>


Reply via email to