You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by rb...@apache.org on 2011/08/24 21:50:34 UTC

svn commit: r1161250 [1/2] - in /incubator/ooo/site/trunk/content/openofficeorg/de/doc: doc-generate/ doc-generate/in/ doc-generate/templates/ ecdl/ entwicklung/ entwicklung/pics/

Author: rbircher
Date: Wed Aug 24 19:50:33 2011
New Revision: 1161250

URL: http://svn.apache.org/viewvc?rev=1161250&view=rev
Log:
Add de site part 13

Added:
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pdf   (with props)
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pl   (with props)
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/gen-all.sh   (with props)
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/all.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/base.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/calc.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/content-developer.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/developers.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/draw.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/impress.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/math.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/writer.in
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/footer.tt
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/grid-contents.tt
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index-nojs.tt
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index.tt
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/ecdl/
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/ecdl/index.html
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/index.html
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/componenten_modus.png   (with props)
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/ipc_modus.png   (with props)
    incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/python_bruecke.html

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pdf
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pdf?rev=1161250&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pdf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pl
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pl?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pl (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pl Wed Aug 24 19:50:33 2011
@@ -0,0 +1,69 @@
+#!/usr/bin/perl
+
+# doc-generate.pl V0.1 (20080918)
+# Simon A. Wilper
+
+use warnings;
+use strict;
+
+use Data::Dumper;
+use Template;
+
+sub get_records {
+	my( $infile ) = @_;
+	my @records;
+	$/ = "\n\n";
+
+	open( INFILE, '<', "in/$infile" ) || die( $! );
+	while( <INFILE> ) {
+		chomp;
+		my %record;
+		foreach my $line ( split( "\n" ) ) {
+			my( $K,$V ) = $line =~ m/^(.+?): (.+)$/;
+
+			if ( !defined($V) ) {
+				print STDERR "No value defined: ($infile): $line\n";
+			}
+
+			if ( $V =~ m/^(.+)\[(.+)\]$/ ) {
+				$record{'authorlink'} = $2;
+				$record{$K} = $1;
+			} else {
+				$record{$K} = $V;
+			}
+		}
+		push @records, \%record;
+	}
+	close INFILE;
+
+	return \@records;
+}
+
+sub main {
+	my ( $ttfile ) = @_;
+	my $tt = Template->new( {
+			INCLUDE_PATH => 'templates/',
+		} );
+
+	my $vars = {
+		'all'     => get_records( 'all.in' ),
+		'writer'  => get_records( 'writer.in' ),
+		'calc'    => get_records( 'calc.in' ),
+		'impress' => get_records( 'impress.in' ),
+		'draw'    => get_records( 'draw.in' ),
+		'base'    => get_records( 'base.in' ),
+		'math'    => get_records( 'math.in' ),
+		'dev'     => get_records( 'developers.in' ),
+		'author'  => get_records( 'content-developer.in' ),
+	};
+
+	$tt->process( $ttfile, $vars ) ||
+		die( $tt->error() . "\n" );
+}
+
+if ( @ARGV < 1 ) {
+	die( "No TT file given\n" );
+}
+
+main( $ARGV[0] );
+

Propchange: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/doc-generate.pl
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/gen-all.sh
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/gen-all.sh?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/gen-all.sh (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/gen-all.sh Wed Aug 24 19:50:33 2011
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+echo "Generating JS-Version..."
+./doc-generate.pl index.tt > ../index.html
+
+echo "Generating Non-JS-Version"
+./doc-generate.pl index-nojs.tt > ../index-nojs.html
+

Propchange: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/gen-all.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/all.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/all.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/all.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/all.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,100 @@
+title: Wie Sie Hilfe erhalten
+author: Daniel Carrera, Volker Merschmann, Franz Jakob, Wolfgang Uhlig
+date: 02.02.2007
+version: n/a
+pdf: sonstiges/wie-sie-hilfe-erhalten.pdf
+
+title: Installationshandbuch
+author: <a href="/dev/members/markomlm.html">Marko Moeller</a>, <a href="mailto:joesch@openoffice.org">J&ouml;rg Schmidt</a>
+date: 18.12.2008
+version: 3.0
+pdf: setupguide/installations_handbuch.pdf      
+
+title: Netzwerkinstallation (Windows)
+author: Florian Effenberger
+date: 11.03.2007
+version: ab 2.x
+pdf: setupguide/2.0/netzwerkinstallation_windows.pdf
+
+title: Versorgung von OpenOffice per GPO
+author: Wolfgang Holzmann
+date: 14.11.2008
+version: 3.0.0
+pdf: howto/gpo-mst.pdf
+
+title: Installation auf einem Terminalserver
+author: Thomas Jansen
+date: 14.01.2008
+version: 2.3
+pdf: setupguide/2.0/installation-terminalserver.pdf
+
+title: Migration: Lotus SmartSuite nach OpenOffice.org
+author: Christoph Strobel
+date: 19.04.2007
+version: ab 2.x
+pdf: howto_2_0/office/migration_smartsuite.pdf
+
+title: Dokumente digital signieren (Linux)
+author: Simon A. Wilper
+date: 18.02.2008
+version: ab 2.x
+pdf: howto_2_0/office/digitale-signaturen-linux.pdf
+
+title: Export in das PDF-Format
+author: Andreas Mantke[/dev/members/andreasma.html]
+date: 20.06.2010
+version: ab 2.4
+pdf: howto_2_0/office/exportpdfformat.pdf
+hilight: #FFFFAA
+
+title: Getting Started Handbuch
+type: group
+
+title: Kapitel 1: Was ist OpenOffice.org?
+indent: 1em
+author: OOoAuthors-Team
+date: 05.06.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/01-was-ist-openofficeorg.pdf
+
+title: Kapitel 3: Dateimanagement in OpenOffice.org
+indent: 1em
+author: OOoAuthors-Team
+date: 11.12.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/03-dateimanagement-in-openofficeorg.pdf
+
+title: Kapitel 4: Men&uuml;s und Werkzeugleisten
+indent: 1em
+author: OOoAuthors-Team
+date: 07.06.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/04-menues-und-werkzeugleisten.pdf
+
+title: Kapitel 5: OpenOffice.org einrichten
+indent: 1em
+author: OOoAuthors-Team
+date: 07.06.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/05-openofficeorg-einrichten.pdf
+
+title: Kapitel 14: Arbeiten mit der Gallery
+indent: 1em
+author: OOoAuthors-Team
+date: 07.06.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/14-mit-der-gallery-arbeiten.pdf
+
+title: Kapitel 16: Webseiten erstellen
+indent: 1em
+author: OOoAuthors-Team
+date: 07.06.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/16-webseiten-erzeugen.pdf
+
+title: Kapitel 17: Erste Schritte mit Makros
+indent: 1em
+author: OOoAuthors-Team
+date: 07.06.2006
+version: ab 2.x
+pdf: oooauthors/getting-started/17-erste-schritte-mit-makros.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/base.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/base.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/base.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/base.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,17 @@
+title: Entwurf einer Beispieldatenbank
+author: walteram, Franz Jakob, Mechtilde Stehmann, Gerald Geib, Wolfgang Uhlig
+date: 09.02.2007
+version: ab 2.x
+pdf: oooauthors/base_entwurf_einer_datenbank.pdf
+
+title: Datenbankanwendungen -- Eine Einf&uuml;hrung
+author: Jan-Christian Wienandt
+date: 12.01.2009
+version: 2.0 bis 3.x
+pdf: einfuehrungen/base/base-einfuehrung.pdf
+
+title: ODBC-Datenbankanbindungen in OpenOffice.org 2.0 unter Linux
+author: Mechtilde Stehmann, Simon A. Wilper
+date: 20.01.2008
+version: ab 2.x
+pdf: oooauthors/odbc-datenbanken-verbinden.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/calc.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/calc.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/calc.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/calc.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,57 @@
+title: Projekt-Management mit Calc 
+author: Serge Le Louarne, Bernd Hiller
+date: 06.06.2005
+version: ab 2.x
+pdf: howto_2_0/calc/project_management.pdf
+
+title: Calc-Handbuch
+type: group
+
+title: Kapitel 1: Der Einstieg in Calc
+indent: 1em
+author: OOoAuthors-Team
+date: 28.04.2009
+version: ab 3.x
+pdf: oooauthors/calc/01-der-einstieg-in-calc.pdf
+
+title: Kapitel 2: Eingeben, Bearbeiten und Formatieren
+indent: 1em
+author: OOoAuthors-Team
+date: 21.12.2006
+version: ab 2.x
+pdf: oooauthors/calc/02-eingeben-bearbeiten-formatieren.pdf
+
+title: Kapitel 4: Diagramme und Graphen erstellen
+indent: 1em
+author: OOoAuthors-Team
+date: 07.01.2007
+version: ab 2.x
+pdf: oooauthors/calc/04-diagramme-und-graphen-erstellen.pdf
+
+title: Kapitel 6: Datenpilot
+indent: 1em
+author: Stefan Weigel
+date: 25.09.2008
+version: ab 3.x
+pdf: oooauthors/calc/06-datenpilot.pdf
+
+title: Kapitel 8: Verwendung von Grafiken
+indent: 1em
+author: OOoAuthors-Team
+date: 06.04.2007
+version: ab 2.x
+pdf: oooauthors/calc/08-verwendung-von-grafiken.pdf
+
+title: Kapitel 11: Bearbeiten, &Auml;ndern und &Uuml;berarbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 28.04.2009
+version: ab 3.x
+pdf: oooauthors/calc/11-bearbeiten-aendern.pdf
+
+title: Anhang C: Calc-Fehlermeldungen
+indent: 1em
+author: OOoAuthors-Team
+date: 05.06.2006
+version: ab 2.x
+pdf: oooauthors/calc/c-fehlermeldungen.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/content-developer.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/content-developer.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/content-developer.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/content-developer.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,6 @@
+title: Styleguide
+author: Andr&eacute; Schnabel, Christian Lohmeier, Rene Lemke, Tobias Sager
+date: n/a
+version: ab 2.x
+pdf: handbuch/pdf/styleguide.pdf
+html: handbuch/styleguide.html

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/developers.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/developers.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/developers.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/developers.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,11 @@
+title: &Uuml;berblick
+author: n/a
+date: n/a
+version: ab 2.x
+html: http://wiki.services.openoffice.org/wiki/Building_de
+
+title: Python-Br&uuml;cke
+author: Andreas Mantke[/dev/members/andreasma.html]
+date: n/a
+version: ab 2.x
+html: entwicklung/python_bruecke.html

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/draw.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/draw.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/draw.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/draw.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,90 @@
+title: Draw-Einf&uuml;hrung
+author: Edgar Kuchelmeister
+date: n/a
+version: ab 2.x
+html: howto_2_0/draw/index.html
+
+title: ImageMaps mit Draw erstellen
+author: Andreas Mantke[/dev/members/andreasma.html]
+date: 10.11.2006
+version: ab 2.x
+pdf: howto_2_0/draw/imagemapsmitooo.pdf
+
+title: Das komplette Draw-Handbuch als PDF (9.5MB)
+author: OOoAuthors-Team
+date: 17.09.2007
+version: ab 2.x
+pdf: oooauthors/ooo-draw-handbuch.pdf
+
+title: Draw-Handbuch (Einzelne Kapitel)
+type: group
+
+title: Kapitel 1: Einf&uuml;hrung in Draw
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/01-einfuehrung-in-draw.pdf
+
+title: Kapitel 2: Einfache Formen in Draw
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/02-einfache-formen-in-draw.pdf
+
+title: Kapitel 3: Objekte bearbeiten Teil&nbsp;I
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/03-objekte-bearbeiten-1.pdf
+
+title: Kapitel 4: Objekte bearbeiten Teil&nbsp;II
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/04-objekte-bearbeiten-2.pdf
+
+title: Kapitel 5: Objekte kombinieren
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/05-objekte-kombinieren.pdf
+
+title: Kapitel 6: Bildbearbeitung
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/06-bildbearbeitung.pdf
+
+title: Kapitel 7: 3D-Objekte erstellen und bearbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/07-3d-objekte-erstellen-und-bearbeiten.pdf
+
+title: Kapitel 8: Tipps und Tricks
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/08-tipps-und-tricks.pdf
+
+title: Kapitel 9: Flussdiagramme und Organigramme
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/09-flussdiagramme-organigramme.pdf
+
+title: Kapitel 10: Fortgeschrittene Zeichentechniken
+indent: 1em
+author: OOoAuthors-Team
+date: 12.06.2007
+version: ab 2.2
+pdf: oooauthors/draw/10-fortgeschrittene-zeichentechniken.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/impress.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/impress.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/impress.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/impress.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,28 @@
+title: Erste Schritte in Impress (OOo Version 3)
+author: Andreas Mantke[/dev/members/andreasma.html]
+date: 28.01.2009
+version: ab 3.x
+pdf: howtos3/es_impress3.pdf
+
+title: Erste Schritte in Impress
+author: Andreas Mantke[/dev/members/andreasma.html]
+date: 09.07.2008
+version: ab 2.x
+pdf: howto_2_0/impress/es_impress2_0.pdf
+
+title: Impress-Handbuch (Einzelne Kapitel)
+type: group
+
+title: Kapitel 1: Schnellstart-Anleitung f&uuml;r Impress
+indent: 1em
+author: OOoAuthors-Team
+date: 06.02.2006
+version: ab 2.x
+pdf: oooauthors/impress/01-schnellstart.pdf
+
+title: Kapitel 7:  Unterschiede von Impress und PowerPoint
+indent: 1em
+author: OOoAuthors-Team
+date: 07.06.2006
+version: ab 2.x
+pdf: oooauthors/impress/07-unterschiede-impress-ppt.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/math.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/math.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/math.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/math.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,11 @@
+title: Erste Schritte
+author: Harald Schilly, Ferdinand Dubler
+date: 2003
+version: ab 2.x
+html: howto_2_0/math/index.html
+
+title: Math-Objekte
+author: OOoAuthors-Team
+date: 10.04.2006
+version: ab 2.x
+pdf: oooauthors/writer/16-math-objects.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/writer.in
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/writer.in?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/writer.in (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/in/writer.in Wed Aug 24 19:50:33 2011
@@ -0,0 +1,148 @@
+title: Einf&uuml;hrung f&uuml;r Studierende in die Techniken der Textverarbeitung
+author: David Paenson, B. A. Hons
+date: 23.11.2010
+version: ab 3.x
+hilight: #FFFFAA
+pdf: howto_2_0/writer/ooo_fuer_studenten.pdf
+
+title: Tutorium zu Aufz&auml;hlungen und Nummerierungen 
+author: Barbara Slawig, Michael Voges
+date: 16.03.2008
+version: ab 2.x
+pdf: howto_2_0/writer/tutorium-aufzaehlungen-nummerierungen.pdf
+
+title: Erstellung eines Serienbriefs
+author: Fricke, Pinz
+date: n/a
+version: ab 2.x
+pdf: howto_2_0/writer/erstellung-serienbrief.pdf
+
+title: Writer-Handbuch (10MB)
+author: OOoAuthors-Team
+date: 27.12.2007 
+version: ab 2.x
+pdf: oooauthors/writer-handbuch.zip
+
+title: Writer-Handbuch (Einzelne Kapitel)
+type: group
+
+title: Kapitel 1: Einf&uuml;hrung in Writer
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/01-einfuehrung-in-writer.pdf
+
+title: Kapitel 2: Writer konfigurieren
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/02-writer-konfigurieren.pdf
+
+title: Kapitel 3: Mit Text arbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/03-mit-text-arbeiten.pdf
+
+title: Kapitel 4: Seiten formatieren
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/04-seiten-formatieren.pdf
+
+title: Kapitel 5: Drucken, Faxen, Exportieren, E-mailen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/05-drucken-faxen-exportieren-emailen.pdf
+
+title: Kapitel 6: Einf&uuml;hrung in Formatvorlagen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/06-einfuehrung-in-formatvorlagen.pdf
+
+title: Kapitel 7: Mit Formatvorlagen arbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 10.03.2010
+version: ab 2.2
+pdf: oooauthors/writer/07-mit-formatvorlagen-arbeiten.pdf
+hilight: #FFFFAA
+
+title: Kapitel 8: Mit Grafiken arbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 26.03.2010
+version: ab 2.2
+hilight: #FFFFAA
+pdf: oooauthors/writer/08-mit-grafiken-arbeiten.pdf
+
+title: Kapitel 9: Mit Tabellen arbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/09-mit-tabellen-arbeiten.pdf
+
+title: Kapitel 10: Verwendung von Dokumentvorlagen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/10-verwendung-von-dokumentvorlagen.pdf
+
+title: Kapitel 11: Die Serienbrieffunktion benutzen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/11-die-serienbrieffunktion-benutzen.pdf
+
+title: Kapitel 12: Verzeichnisse erstellen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/12-verzeichnisse-erstellen.pdf
+
+title: Kapitel 13: Arbeiten mit Globaldokumenten
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/13-arbeiten-mit-globaldokumenten.pdf
+
+title: Kapitel 14: Mit Feldern arbeiten
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/14-mit-feldern-arbeiten.pdf
+
+title: Kapitel 15: Verwendung von Formularen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/15-verwendung-von-formularen.pdf
+
+title: Kapitel 16: Math-Objects
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/16-math-objects.pdf
+
+title: Anhang A: Tastenkombinationen
+indent: 1em
+author: OOoAuthors-Team
+date: 01.06.2007
+version: ab 2.2
+pdf: oooauthors/writer/a-tastenkombinationen.pdf

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/footer.tt
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/footer.tt?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/footer.tt (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/footer.tt Wed Aug 24 19:50:33 2011
@@ -0,0 +1,2 @@
+	<div id="de-doc-footer">
+	</div>

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/grid-contents.tt
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/grid-contents.tt?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/grid-contents.tt (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/grid-contents.tt Wed Aug 24 19:50:33 2011
@@ -0,0 +1,52 @@
+						<table class="docgrid">
+							<tr>
+								<td style="width: 40%" />
+								<td class="heading">Autor</td>
+								<td class="heading">Letzte &Auml;nderung</td>
+								<td class="heading" title="OpenOffice.org-Version f&uuml;r die diese Dokumentation relevant ist">OOo-Version</td>
+							</tr>
+
+
+[% FOREACH e = elements %]
+							[% IF e.hilight.defined %]
+							<tr style="background-color: [% e.hilight %]">
+							[% ELSE %]
+							<tr>
+							[% END %]
+								<td [% IF e.type == 'group' %]style="vertical-align: bottom;" colspan="4"[% END %] >
+									[% IF e.type == 'group' %]
+									<div class="group">
+										[% e.title %]
+									[% ELSE %]
+									<div class="doclink" [% IF e.indent.defined %]style="margin-left: [% e.indent %]"[% END %]>
+										[% IF e.hilight.defined %]
+										<span style="color: red; font-weight: bold">NEU:</span><br />
+										[% END %]
+										[% IF e.pdf.defined %]
+										<a href="[% e.pdf %]">[% e.title %]</a>
+										[% ELSIF e.html.defined %]
+										<a href="[% e.html %]">[% e.title %]</a>
+										[% ELSE %]
+										<a href="[% e.odt %]">[% e.title %]</a>
+										[% END %]
+									[% END %]
+									</div>
+								</td>
+								[% IF e.type != 'group' %]
+								<td>
+									[% IF e.authorlink.defined %]
+									<a href="[% e.authorlink %]">[% e.author %]</a>
+									[% ELSE %]
+									[% e.author %]
+									[% END %]
+								</td>
+								<td>
+									[% e.date %]
+								</td>
+								<td>
+									[% e.version %]
+								</td>
+								[% END %]
+							</tr>
+							[% END %]
+						</table>

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index-nojs.tt
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index-nojs.tt?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index-nojs.tt (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index-nojs.tt Wed Aug 24 19:50:33 2011
@@ -0,0 +1,185 @@
+	<html>
+	<head>
+<title>
+		Dokumentationsportal fuer die Leute aus den 80ern ohne JavaScript
+</title>
+		<!-- Start de-header -->
+		
+		<link rel="stylesheet" type="text/css" href="doc.css" />
+		<link rel="alternate" type="application/atom+xml" title="OpenOffice.org Dokumentation" href="http://de.openoffice.org/doc/feed.xml" />
+
+		<!-- End de-header -->
+	</head>
+	<body>
+		<!-- Start Body -->
+
+		<h1>Dokumentation</h1>
+
+		<table id="feedinfo" summary="Dokumentationsnewsfeed">
+			<tr>
+				<td><a href="feed.xml"><img src="pics/icon-feed.png" alt="Feedicon" /></a></td>
+				<td>
+				Seien Sie immer auf dem neuesten Stand und abonnieren Sie
+				unseren <a href="feed.xml">Dokumentationsfeed</a>.
+				</td>
+			</tr>
+		</table>
+
+
+		<table summary="Dokumentation nach Modulen" class="modules">
+			<tr>
+				<td id="all" class="icon-col"><img src="pics/icon-all.png" alt="Alle" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Allgemein</div>
+					<div class="docdesc">
+						Installationsanleitungen &middot; allgemeine Dokumentationen, die auf alle
+						OpenOffice.org-Module zutreffen
+					</div>
+
+					<div id="grid-all" class="grid-container-visible">
+						<!-- docgrid: all -->
+						[% INCLUDE 'grid-contents.tt' elements=all %]
+						<!-- end of docgrid: all -->
+					</div>
+				</td>
+			</tr>
+		</table>
+		<table summary="Hauptmodule" class="modules">
+			<tr>
+				<td id="writer" class="icon-col"><img src="pics/icon-writer.png" alt="Writer" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Writer (Textverarbeitung)</div>
+					<div class="docdesc">Das komplette Writer-Handbuch &middot;
+						Tutorien zu Serienbriefen &middot;
+						Aufz&auml;hlungen/Nummerierungen</div>
+					<div id="grid-writer" class="grid-container-visible">
+						<!-- docgrid: writer -->
+						[% INCLUDE 'grid-contents.tt' elements=writer %]
+						<!-- end of docgrid: writer -->
+					</div>
+				</td>
+				
+			</tr>
+			<tr>
+				<td id="calc" class="icon-col"><img src="pics/icon-calc.png" alt="Calc" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Calc (Tabellenkalkulation)</div>
+					<div class="docdesc">
+						Tutorium zur Erstellung von Gantt-Diagrammen mit Calc
+					</div>
+					<div id="grid-calc" class="grid-container-visible">
+						<!-- docgrid: calc -->
+						[% INCLUDE 'grid-contents.tt' elements=calc %]
+						<!-- end of docgrid: calc -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="impress" class="icon-col"><img src="pics/icon-impress.png" alt="Impress" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Impress (Pr&auml;sentationsmodul)</div>
+					<div class="docdesc">
+						Erste Schritte f&uuml;r Einsteiger &middot; Schnellstart &middot; Unterschiede zu PowerPoint
+					</div>
+					<div id="grid-impress" class="grid-container-visible">
+						<!-- docgrid: impress -->
+						[% INCLUDE 'grid-contents.tt' elements=impress %]
+						<!-- end of docgrid: impress -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="draw" class="icon-col"><img src="pics/icon-draw.png" alt="Draw" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Draw (Zeichenprogramm)</div>
+					<div class="docdesc">
+						Das komplette Draw-Handbuch als PDF &middot; Tutorium zu Imagemaps
+					</div>
+					<div id="grid-draw" class="grid-container-visible">
+						<!-- docgrid: draw -->
+						[% INCLUDE 'grid-contents.tt' elements=draw %]
+						<!-- end of docgrid: draw -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="base" class="icon-col"><img src="pics/icon-base.png" alt="Base" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Base (Datenbankmodul)</div>
+					<div class="docdesc">
+						Einf&uuml;hrung in Datenbankanwendungen &middot; Entwurf einer Beispieldatenbank &middot; ODBC-Datenanbindungen
+					</div>
+					<div id="grid-base" class="grid-container-visible">
+						<!-- docgrid: base -->
+						[% INCLUDE 'grid-contents.tt' elements=base %]
+						<!-- end of docgrid: base -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="math" class="icon-col"><img src="pics/icon-math.png" alt="Math" /></td>
+				<td class="doccontent">
+					<div class="doclink">OpenOffice.org Math (Formelprogramm)</div>
+					<div class="docdesc">
+						Erste Schritte
+					</div>
+					<div id="grid-math" class="grid-container-visible">
+						<!-- docgrid: math -->
+						[% INCLUDE 'grid-contents.tt' elements=math %]
+						<!-- end of docgrid: math -->
+					</div>
+				</td>
+			</tr>
+		</table>
+		<table summary="Sonstiges" class="modules">
+			<tr>
+				<td id="development" class="icon-col"><img src="pics/icon-development.png" alt="Entwicklung" /></td>
+				<td class="doccontent">
+					<div class="doclink">Dokumentation f&uuml;r Entwickler</div>
+					<div class="docdesc">
+						OpenOffice.org kompilieren mit ooobuild &middot; Python-Bridge
+					</div>
+					<div id="grid-dev" class="grid-container-visible">
+						<!-- docgrid: dev -->
+						[% INCLUDE 'grid-contents.tt' elements=dev %]
+						<!-- end of docgrid: dev -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="docdevel" class="icon-col"><img src="pics/icon-docdevel.png" alt="Dokumentation - Entwicklung" /></td>
+				<td class="doccontent">
+					<div class="doclink">Informationen f&uuml;r Autoren</div>
+					<div class="docdesc">
+						Informationen f&uuml;r Mitarbeiter im Projekt
+						und Autoren, die neue Dokumentationen beitragen
+						oder bestehende erweitern m&ouml;chten
+					</div>
+					<div id="grid-author" class="grid-container-visible">
+						<!-- docgrid: author -->
+						[% INCLUDE 'grid-contents.tt' elements=author %]
+						<!-- end of docgrid: author -->
+					</div>
+				</td>
+			</tr>
+
+			<!-- OOo 1.x / 1.1.x -->
+			<tr>
+				<td />
+				<td class="doccontent">
+					<div class="doclink"><a href="howto/index_1_x.html">Dokumentation f&uuml;r Version 1.x und 1.1.x</a></div>
+					<div class="docdesc">
+						Dokumentation der Verson 1.x und 1.1.x von OpenOffice.org
+					</div>
+				</td>
+			</tr>
+
+
+		</table>
+
+		[% INCLUDE 'footer.tt' %]
+
+
+		<!-- End Body -->
+	</body>
+	</html>

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index.tt
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index.tt?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index.tt (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/doc-generate/templates/index.tt Wed Aug 24 19:50:33 2011
@@ -0,0 +1,253 @@
+	<html>
+	<head>
+
+<title>
+		Dokumentationsportal
+</title>
+
+	<noscript>
+				<meta http-equiv="refresh" content="0; URL=index-nojs.html" />
+			</noscript>
+
+
+
+		<!-- Start de-header -->
+		
+		<link rel="stylesheet" type="text/css" href="doc.css" />
+		<link rel="alternate" type="application/atom+xml" title="OpenOffice.org Dokumentation" href="http://de.openoffice.org/doc/feed.xml" />
+
+
+		<script type="text/javascript">
+			var GridStates = new Array();
+
+			GridStates['grid-all']     = 0;
+
+			GridStates['grid-writer']  = 0;
+			GridStates['grid-calc']    = 0;
+			GridStates['grid-draw']    = 0;
+			GridStates['grid-base']    = 0;
+			GridStates['grid-impress'] = 0;
+			GridStates['grid-math']    = 0;
+
+			GridStates['grid-dev']     = 0;
+			GridStates['grid-author']  = 0;
+
+			function getGridNameFromURLParam() {
+				grid = undefined;
+				if ( document.URL.indexOf('?') > 0 ) {
+					u = document.URL;
+					end = u.indexOf('#');
+					if ( end == -1 ) {
+						end = u.length;
+					}
+					grid = u.substring(u.indexOf('?')+1,end).split('&')[0].split('=')[1];
+					if ( grid == '' ) {
+						grid = undefined;
+					}
+				}
+				return grid;
+			}
+
+			function toggleGridVisible( gridname ) {
+				if ( gridname == undefined ) {
+					return;
+				}
+				var obj = document.getElementById( gridname );
+				if ( GridStates[gridname] == 0 ) {
+					obj.style.display = 'block';
+					GridStates[gridname] = 1;
+				} else {
+					obj.style.display = 'none';
+					GridStates[gridname] = 0;
+				}
+			}
+		</script>
+		<!-- End de-header -->
+	</head>
+	<body>
+		<!-- Start Body -->
+
+		<h1>Dokumentation</h1>
+
+		<noscript>
+			<div class="warning">
+				<p>
+				Bitte aktivieren Sie JavaScript, um die Dokumentation anzuzeigen.
+				</p>
+				<p>
+				<a href="index-nojs.html">Alternative ohne JavaScript</a>
+				</p>
+			</div>
+		</noscript>
+
+		<table id="feedinfo" summary="Dokumentationsnewsfeed">
+			<tr>
+				<td><a href="feed.xml"><img src="pics/icon-feed.png" alt="Feedicon" /></a></td>
+				<td>
+				Seien Sie immer auf dem neuesten Stand und abonnieren Sie
+				unseren <a href="feed.xml">Dokumentationsfeed</a>.
+				</td>
+			</tr>
+		</table>
+
+
+		<table summary="Dokumentation nach Modulen" class="modules">
+			<tr>
+				<td id="all" class="icon-col"><a href="javascript:toggleGridVisible('grid-all')"><img src="pics/icon-all.png" alt="Alle" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-all')">OpenOffice.org Allgemein</a></div>
+					<div class="docdesc">
+						Installationsanleitungen &middot; allgemeine Dokumentationen, die auf alle
+						OpenOffice.org-Module zutreffen
+					</div>
+
+					<div id="grid-all" class="grid-container">
+						<!-- docgrid: all -->
+						[% INCLUDE 'grid-contents.tt' elements=all %]
+						<!-- end of docgrid: all -->
+					</div>
+				</td>
+			</tr>
+		</table>
+		<table summary="Hauptmodule" class="modules">
+			<tr>
+				<td id="writer" class="icon-col"><a href="javascript:toggleGridVisible('grid-writer')"><img src="pics/icon-writer.png" alt="Writer" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-writer')">OpenOffice.org Writer (Textverarbeitung)</a></div>
+					<div class="docdesc">Das komplette Writer-Handbuch &middot;
+						Tutorien zu Serienbriefen &middot;
+						Aufz&auml;hlungen/Nummerierungen</div>
+					<div id="grid-writer" class="grid-container">
+						<!-- docgrid: writer -->
+						[% INCLUDE 'grid-contents.tt' elements=writer %]
+						<!-- end of docgrid: writer -->
+					</div>
+				</td>
+				
+			</tr>
+			<tr>
+				<td id="calc" class="icon-col"><a href="javascript:toggleGridVisible('grid-calc')"><img src="pics/icon-calc.png" alt="Calc" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a	href="javascript:toggleGridVisible('grid-calc')">OpenOffice.org Calc (Tabellenkalkulation)</a></div>
+					<div class="docdesc">
+						Tutorium zur Erstellung von Gantt-Diagrammen mit Calc
+					</div>
+					<div id="grid-calc" class="grid-container">
+						<!-- docgrid: calc -->
+						[% INCLUDE 'grid-contents.tt' elements=calc %]
+						<!-- end of docgrid: calc -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="impress" class="icon-col"><a href="javascript:toggleGridVisible('grid-impress')"><img src="pics/icon-impress.png" alt="Impress" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-impress')">OpenOffice.org Impress (Pr&auml;sentationsmodul)</a></div>
+					<div class="docdesc">
+						Erste Schritte f&uuml;r Einsteiger &middot; Schnellstart &middot; Unterschiede zu PowerPoint
+					</div>
+					<div id="grid-impress" class="grid-container">
+						<!-- docgrid: impress -->
+						[% INCLUDE 'grid-contents.tt' elements=impress %]
+						<!-- end of docgrid: impress -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="draw" class="icon-col"><a href="javascript:toggleGridVisible('grid-draw')"><img src="pics/icon-draw.png" alt="Draw" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-draw')">OpenOffice.org Draw (Zeichenprogramm)</a></div>
+					<div class="docdesc">
+						Das komplette Draw-Handbuch als PDF &middot; Tutorium zu Imagemaps
+					</div>
+					<div id="grid-draw" class="grid-container">
+						<!-- docgrid: draw -->
+						[% INCLUDE 'grid-contents.tt' elements=draw %]
+						<!-- end of docgrid: draw -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="base" class="icon-col"><a href="javascript:toggleGridVisible('grid-base')"><img src="pics/icon-base.png" alt="Base" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-base')">OpenOffice.org Base (Datenbankmodul)</a></div>
+					<div class="docdesc">
+						Einf&uuml;hrung in Datenbankanwendungen &middot; Entwurf einer Beispieldatenbank &middot; ODBC-Datenanbindungen
+					</div>
+					<div id="grid-base" class="grid-container">
+						<!-- docgrid: base -->
+						[% INCLUDE 'grid-contents.tt' elements=base %]
+						<!-- end of docgrid: base -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="math" class="icon-col"><a href="javascript:toggleGridVisible('grid-math')"><img src="pics/icon-math.png" alt="Math" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-math')">OpenOffice.org Math (Formelprogramm)</a></div>
+					<div class="docdesc">
+						Erste Schritte
+					</div>
+					<div id="grid-math" class="grid-container">
+						<!-- docgrid: math -->
+						[% INCLUDE 'grid-contents.tt' elements=math %]
+						<!-- end of docgrid: math -->
+					</div>
+				</td>
+			</tr>
+		</table>
+		<table summary="Sonstiges" class="modules">
+			<tr>
+				<td id="development" class="icon-col"><a href="javascript:toggleGridVisible('grid-dev')"><img src="pics/icon-development.png" alt="Entwicklung" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-dev')">Dokumentation f&uuml;r Entwickler</a></div>
+					<div class="docdesc">
+						OpenOffice.org kompilieren mit ooobuild &middot; Python-Bridge
+					</div>
+					<div id="grid-dev" class="grid-container">
+						<!-- docgrid: dev -->
+						[% INCLUDE 'grid-contents.tt' elements=dev %]
+						<!-- end of docgrid: dev -->
+					</div>
+				</td>
+			</tr>
+			<tr>
+				<td id="docdevel" class="icon-col"><a href="javascript:toggleGridVisible('grid-author')"><img src="pics/icon-docdevel.png" alt="Dokumentation - Entwicklung" /></a></td>
+				<td class="doccontent">
+					<div class="doclink"><a href="javascript:toggleGridVisible('grid-author')">Informationen f&uuml;r Autoren</a></div>
+					<div class="docdesc">
+						Informationen f&uuml;r Mitarbeiter im Projekt
+						und Autoren, die neue Dokumentationen beitragen
+						oder bestehende erweitern m&ouml;chten
+					</div>
+					<div id="grid-author" class="grid-container">
+						<!-- docgrid: author -->
+						[% INCLUDE 'grid-contents.tt' elements=author %]
+						<!-- end of docgrid: author -->
+					</div>
+				</td>
+			</tr>
+
+			<!-- OOo 1.x / 1.1.x -->
+			<tr>
+				<td />
+				<td class="doccontent">
+					<div class="doclink"><a href="howto/index_1_x.html">Dokumentation f&uuml;r Version 1.x und 1.1.x</a></div>
+					<div class="docdesc">
+						Dokumentation der Verson 1.x und 1.1.x von OpenOffice.org
+					</div>
+				</td>
+			</tr>
+
+
+		</table>
+
+		[% INCLUDE 'footer.tt' %]
+
+	<script type="text/javascript">
+		toggleGridVisible(getGridNameFromURLParam());
+	</script>
+
+		<!-- End Body -->
+	</body>
+	</html>

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/ecdl/index.html
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/ecdl/index.html?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/ecdl/index.html (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/ecdl/index.html Wed Aug 24 19:50:33 2011
@@ -0,0 +1,6 @@
+<html><head>
+<meta HTTP-EQUIV="content-type" CONTENT="text/html; charset=UTF-8">
+</head>
+<body>
+<meta http-equiv="refresh" content="0; URL=../../bildung/ecdl.html"></body>
+</html>
\ No newline at end of file

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/index.html
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/index.html?rev=1161250&view=auto
==============================================================================
--- incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/index.html (added)
+++ incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/index.html Wed Aug 24 19:50:33 2011
@@ -0,0 +1,98 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html><head>
+	<title>de-OOo-Entwickler-Dokumentationsportal</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 -->
+	<!-- >
+	Kommentare zur Seite
+	$Id: index.html,v 1.3 2008/03/28 17:54:03 andreasma Exp $
+	< -->
+</head>
+<body>
+<!-- Start Navbar -->
+	<!-- >
+	Kommentare zur Navbar Installationsbeschreibungen und mehr Schriftliches
+	Makemapversion:
+	$Id: makemap.pl,v 1.7 2006/02/23 12:28:08 markomlm Exp :
+	navbar_Dokus ,V 0.5.6 Dienstag, 11. Juli 2006 19:33:05 _MLM
+	< -->
+<ul id="navbar_de">
+    <li><div >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>Dokumentationen
+      <ul>
+      <li> Dokumentationen </li>
+      <li> <a href="../setupguide/index.html" title="in html, pdf und sxw f&uuml;r 2.0.x 1.0 und 1.1, auch unter MacOS (dmg)"> Installationshandbuch </a></li>
+      <li> <a href="../faq/index.html" title="Der Weg zu schnellen Antworten auf bekannte Fragen"> FAQs </a></li>
+      <li> <a href="../../about-ooo/about-literatur.html" title="- Eine &Uuml;bersicht"> Literatur </a></li>
+      <li> <a href="../howto/index.html" title="Die Begleiter f&uuml;r die ersten Stunden mit Literatur - Schulungsunterlagen"> Erste Schritte </a></li>
+      </ul>
+    </li>
+    <li> <a href="../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="../howto/index.html" title="Knappe Anleitungen f&uuml;r die erste Benutzung"> Erste Schritte </a></li>
+    <li> <a href="../../marketing/index.html" title="Materialien und mehr"> Marketing </a></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 -->
+
+
+<div id="body_de">
+
+<h2>Das deutschsprachige OpenOffice.org - Entwickler-Dokumentationsportal</h2>
+<p>Auf dieser Seite finden Sie eine &Uuml;bersicht &uuml;ber die bereits in deutscher Sprache verf&uuml;gbaren Dokumentationen f&uuml;r Entwickler. Falls Sie einen Vorschlag f&uuml;r weitere Entwickler-Dokumentationen haben oder eine entsprechende Information aus einer anderen Sprache &uuml;bersetzen wollen, teilen Sie uns das bitte einfach mit. Nehmen Sie hierzu einfach &uuml;ber unsere <a
+href="mailto:dev@de.openoffice.org?subject=Neues%20Entwicklerdokument">
+Mailing-Liste</a> Kontakt zu uns auf. Bitte schicken Sie aber nicht auf diesem Wege eine Mail zu allgemeinen oder speziellen Fragen rund um OpenOffice.org auf diese Mailingliste.</p>
+
+<h3>Erstellen von OpenOffice.org</h3>
+
+<p>Auf disen Seiten finden Sie Informationen, wie Sie OpenOffice.org aus den Quellen selbst &uuml;bersetzen k&ouml;nnen.</p>
+<ul>
+<li><a href="http://wiki.services.openoffice.org/wiki/Building_de">&Uuml;berblick &uuml;ber die Verschiedenen Wege OpenOffice.org zu erstellen (Einstiegsseite)</a></li>
+<li><a href="http://wiki.services.openoffice.org/wiki/Building_OpenOffice.org_de">Building OpenOffice.org - wie man ein "einfaches" ("vanilla") (oder "Up-Stream") OpenOffice.org erstellt</a></li>
+<li><a href="http://wiki.services.openoffice.org/wiki/Erstellen_mit_ooobuild">Erstellen von OpenOffice.org mit OOoBuild</a></li>
+</ul>
+<h3>OpenOffice.org und Python</h3>
+<ul>
+<li><a href="python_bruecke.html">Die Python-UNO-Br&uuml;cke von OpenOffice.org</a></li>
+<li><a href="http://wiki.services.openoffice.org/wiki/Python_de">Informationen zu PyUNO im OpenOffice.org Wiki</a></li>
+</ul>
+
+<p><br /><br />Hilfe beim Korrekturlesen ist jederzeit erw&uuml;nscht und wer Interesse hat,
+	ein Dokument systematisch zu lesen und dem Autor Fehler zu melden,
+	ist hiermit herzlich dazu eingeladen.<br />
+	Falls Sie Interesse daran haben oder eine neue Dokumentation schreiben m&ouml;chten, melden Sie sich einfach auf
+	unserer<a
+	href="mailto:dev@de.openoffice.org?subject=Mitarbeit%20Dokumentation%20zu%20Entwicklung">
+		Mailing-Liste</a> oder bei einem <a href="../dev/team.html">Teammitglied</a>.
+</p>
+<p>Die Dokumente liegen auch in einer bearbeitbaren Fassung vor. Falls Sie an der &#220;berarbeitung einer dieser Dokumentationen interessiert sind und eine editierbare Fassung ben&#246;tigen, wenden Sie sich bei Schwierigkeiten an den Autor oder eines der <a href="../dev/team.html">Teammitglieder</a>.
+</p>
+</div>
+<p>
+    <a href="http://validator.w3.org/check?uri=referer"><img
+        src="http://www.w3.org/Icons/valid-xhtml10"
+        alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
+  </p>
+</body>
+</html>

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/componenten_modus.png
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/componenten_modus.png?rev=1161250&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/componenten_modus.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/ipc_modus.png
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/ipc_modus.png?rev=1161250&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ooo/site/trunk/content/openofficeorg/de/doc/entwicklung/pics/ipc_modus.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream