[debian-edu-commits] debian-edu/debian-edu-doc.git (#34) - wheezy (branch) updated: bdc36ade915ead880be6bcf94b95d46dd695a11f

David Prévot taffit at alioth.debian.org
Sat Oct 5 12:11:36 UTC 2013


The branch, wheezy has been updated
       via  bdc36ade915ead880be6bcf94b95d46dd695a11f (commit)
      from  0ece6211a4db3b64856b7f7c8de5c59cce3b9c57 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 debian/changelog                             |    9 ++
 debian/control                               |    4 +-
 documentation/wikibook/README                |   44 +++++++++
 documentation/wikibook/build_pdfs            |   23 +++++
 documentation/wikibook/getwikibook           |   13 +++
 documentation/wikibook/start_new_translation |   22 +++++
 documentation/wikibook/update_translations   |   18 ++++
 documentation/wikibook/wikibook.de.po        |  134 ++++++++++++++++++++++++++
 documentation/wikibook/wikibook.pot          |  123 +++++++++++++++++++++++
 documentation/wikibook/wikibook.xml          |   60 ++++++++++++
 10 files changed, 448 insertions(+), 2 deletions(-)
 create mode 100644 documentation/wikibook/README
 create mode 100755 documentation/wikibook/build_pdfs
 create mode 100755 documentation/wikibook/getwikibook
 create mode 100755 documentation/wikibook/start_new_translation
 create mode 100755 documentation/wikibook/update_translations
 create mode 100644 documentation/wikibook/wikibook.de.po
 create mode 100644 documentation/wikibook/wikibook.pot
 create mode 100644 documentation/wikibook/wikibook.xml

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 653e863..dbf75d4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+debian-edu-doc (0.4.20070706) unstable; urgency=low
+
+  * include new documentation from http://wiki.skolelinux.no/DebianEdu/Documentation/Etch/
+  * added build-depends to po4a to provide translation infrastructure for it
+  * todo: currently only pdf generation works, html version needs some work
+  * todo: the wikibook is not yet part of the binary package 
+
+ -- Holger Levsen <holger at debian.org>  Fri,  6 Jul 2007 15:43:54 +0200
+
 debian-edu-doc (0.3.20070517) unstable; urgency=low
 
   [ Holger Levsen ]
diff --git a/debian/control b/debian/control
index 07c6a6a..ae613ae 100644
--- a/debian/control
+++ b/debian/control
@@ -1,8 +1,8 @@
 Source: debian-edu-doc
 Section: doc
 Priority: optional
-Build-Depends: debhelper (>= 5), poxml, ldp-docbook-xsl, dblatex
-Build-Depends-Indep: docbook-utils
+Build-Depends: debhelper (>= 5) 
+Build-Depends-Indep: docbook-utils, poxml, ldp-docbook-xsl, dblatex, po4a
 Maintainer: Debian Edu Developers <debian-edu at lists.debian.org>
 Uploaders: Petter Reinholdtsen <pere at debian.org>, Morten Werner Olsen <werner at debian.org>, Luk Claes <luk at debian.org>, Steffen Joeris <white at debian.org>, Holger Levsen <holger at debian.org>
 Standards-Version: 3.7.2
diff --git a/documentation/wikibook/README b/documentation/wikibook/README
new file mode 100644
index 0000000..87361f1
--- /dev/null
+++ b/documentation/wikibook/README
@@ -0,0 +1,44 @@
+IMPORTANT note:
+---------------
+
+This is BETA. Use at your own risk & enjoy!
+Those 4 scripts should probably be merged into one or two...
+Anyway:
+
+
+
+How to document stuff
+---------------------
+Just edit the wiki at http://wiki.skolelinux.no/DebianEdu/Documentation/Etch/
+
+How to start a translation
+--------------------------
+$ ./start_new_translation de
+$ svn add wikibook.de.po
+$ vi wikibook.de.po
+
+How to update the translations
+------------------------------
+$ ./update_translations
+$ vi wikibook.de.po
+$ svn ci wikibook.de.po
+
+How to build the pdfs
+---------------------
+$ ./build_pdfs
+
+How to build the html version
+-----------------------------
+#tobewritten, basically docbook2html -o html wikibook.xml
+
+Don't add generated files to svn
+--------------------------------
+no wikibook.CC.xml
+no wikibook.*pdf
+no html/
+(This needs to be enforced with svn properties.)
+
+
+And what about lenny?
+
+2007-07-06, Holger Levsen, <holger at layer-acht.org>
diff --git a/documentation/wikibook/build_pdfs b/documentation/wikibook/build_pdfs
new file mode 100755
index 0000000..754d602
--- /dev/null
+++ b/documentation/wikibook/build_pdfs
@@ -0,0 +1,23 @@
+#!/bin/sh
+#
+# this script needs to be run to build the pdfs
+#
+# Author: Holger Levsen
+# Date:   2006-07-06
+
+
+
+name=wikibook
+ERROR=""
+
+dblatex -T simple -o $name.en.pdf $name.xml
+
+for i in $name.*.po ; do {
+	po4a-translate -f docbook -m $name.xml -p $i -l ${i%.po}.xml 
+	dblatex -T simple -o ${i%.po}.pdf ${i%.po}.xml || ERROR="$ERROR $i"
+} done
+
+for i in $ERROR ; do echo "$i could not be build, you need to translate more" ; done
+echo "Have fun!"
+
+
diff --git a/documentation/wikibook/getwikibook b/documentation/wikibook/getwikibook
new file mode 100755
index 0000000..f4fc964
--- /dev/null
+++ b/documentation/wikibook/getwikibook
@@ -0,0 +1,13 @@
+#!/bin/sh
+#
+# download the AllInOne page of the wikibook as docbook
+#
+# loosly based on the moinmoin2pdf script from Petter Reinholdtsen
+#
+# Author: Holger Levsen
+# Date:   2006-07-06
+
+url="http://wiki.skolelinux.no/DebianEdu/Documentation/Etch/AllInOne"
+name="wikibook.xml"
+
+GET "$url?action=format&mimetype=xml/docbook" | sed "s%</%\n</%g" > $name
diff --git a/documentation/wikibook/start_new_translation b/documentation/wikibook/start_new_translation
new file mode 100755
index 0000000..9f62397
--- /dev/null
+++ b/documentation/wikibook/start_new_translation
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# this script needs to be run to start a new translation
+#
+# Author: Holger Levsen
+# Date:   2006-07-06
+
+if [ -z "$1" ] ; then
+    echo "Usage: $0 CC"
+    echo
+    echo "where CC=de or CC=en, so it's: '$0 de' for example"
+    exit 1
+fi
+
+./getwikibook
+
+name=wikibook
+
+po4a-gettextize -f docbook -m $name.xml -p $name.pot
+cp $name.pot $name.$1.po
+
+echo "$name.$1.po generated. Have fun!"
diff --git a/documentation/wikibook/update_translations b/documentation/wikibook/update_translations
new file mode 100755
index 0000000..692a6cc
--- /dev/null
+++ b/documentation/wikibook/update_translations
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# this script needs to be run to update a translation
+#
+# Author: Holger Levsen
+# Date:   2006-07-06
+
+./getwikibook
+
+name=wikibook
+for i in $name.*.po ; do {
+	po4a-updatepo -f docbook -m $name.xml -p $i
+	echo "$i updated."
+} done
+
+echo "Have fun!"
+
+
diff --git a/documentation/wikibook/wikibook.de.po b/documentation/wikibook/wikibook.de.po
new file mode 100644
index 0000000..7b8bdf5
--- /dev/null
+++ b/documentation/wikibook/wikibook.de.po
@@ -0,0 +1,134 @@
+# wikibook for debian edu
+# Copyright (C) 2007 Holger Levsen
+# Holger Levsen <holger at layer-acht.org>, 2007
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: wikibook\n"
+"POT-Creation-Date: 2007-07-06 15:17+0200\n"
+"PO-Revision-Date: 2007-07-06 12:55+0200\n"
+"Last-Translator: Holger Levsen <holger at layer-acht.org>\n"
+"Language-Team: german team <users at skolelinux.de>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+# type: Content of: <article><articleinfo><title>
+#: wikibook.xml:1
+msgid "DebianEdu/Documentation/Etch/AllInOne"
+msgstr "DebianEdu/Documentation/Etch/AllInOne"
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:3
+msgid "Debian-Edu etch 3.0 Codename \"Terra\""
+msgstr "Debian-Edu etch 3.0 Codename \"Terra\""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:4
+msgid "This will become the etch documentation."
+msgstr "Dies wird die Etch doku werden"
+
+# type: Content of: <article><para><section><itemizedlist><listitem><para>
+#: wikibook.xml:5
+msgid ""
+"<ulink url='/DebianEdu/Documentation/Etch/CopyRight'>Copyright </ulink> and "
+"other basics"
+msgstr ""
+"<ulink url='/DebianEdu/Documentation/Etch/CopyRight'>Copyright </ulink> und "
+"andere Grundlagen"
+
+# type: Content of: <article><para><section><itemizedlist><listitem><para>
+#: wikibook.xml:8
+msgid ""
+"<ulink url='/DebianEdu/Documentation/Etch/AboutDebianEdu'>About </ulink> "
+"Debian-Edu and Skolelinux"
+msgstr ""
+"<ulink url='/DebianEdu/Documentation/Etch/CopyRight'>Copyright </ulink> und "
+"andere Grundlagen"
+
+# type: Content of: <article><para><section><itemizedlist><listitem><para>
+#: wikibook.xml:20
+msgid ""
+"<ulink url='/DebianEdu/Documentation/Etch/HowTo'>HowTo </ulink> - simple "
+"step by step Howtos"
+msgstr ""
+"<ulink url='/DebianEdu/Documentation/Etch/HowTo'>HowTo </ulink> - einfache "
+"Schritt-fuer-Schritt Anleitungen"
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:24
+msgid ""
+"Special pages: <ulink url='/DebianEdu/Documentation/Etch'>Index page </"
+"ulink> - <ulink url='/DebianEdu/Documentation/Etch/AllInOne'>All in one page "
+"</ulink>"
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:28
+msgid "Copyright of this document"
+msgstr "Copyright dieses Dokuments"
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:29
+msgid ""
+"The whole document is copyrighted by Holger Levsen 2007 and released under "
+"the GPL2 or any later version. Enjoy!"
+msgstr ""
+"Das gesamte Dokument is Copyright 2007 Holger Levsen und wird unter derGPL2 "
+"or einer beliebigen spaeteren Version veroeffentlicht. Geniesse es!"
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:30
+msgid ""
+"And if you add content to it, <emphasis role='strong'>only do so if you are "
+"the author of it </emphasis>! Then please add your name here and release it "
+"under the GPL2 or later version."
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:33
+msgid "AboutDebianEdu"
+msgstr "AboutDebianEdu"
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:34
+msgid "Welcome to <ulink url='/DebianEdu'>DebianEdu </ulink> / Skolelinux!"
+msgstr "Willkommen bei <ulink url='/DebianEdu'>DebianEdu </ulink> / Skolelinux!"
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:37
+msgid "Architecture"
+msgstr "Architektur"
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:38
+msgid "nothing to see yet."
+msgstr "hier gibt es noch nichts zu sehen."
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:40
+msgid "Requirements"
+msgstr "Vorraussetzungen"
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:46
+msgid "Installation"
+msgstr "Installation"
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:52
+msgid "HowTo"
+msgstr "Anleitung"
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:53
+msgid ""
+"The <ulink url='/HowTos'>HowTos </ulink> from <ulink url='http://wiki.debian."
+"org/DebianEdu/HowTo/'>http://wiki.debian.org/DebianEdu/HowTo/ </ulink> are "
+"either user- or developer-specific. Let's move the user-specific <ulink "
+"url='/HowTos'>HowTos </ulink> over here!"
+msgstr ""
+"Die <ulink url='/HowTos'>HowTos </ulink> von <ulink url='http://wiki.debian."
+"org/DebianEdu/HowTo/'>http://wiki.debian.org/DebianEdu/HowTo/ </ulink> sind "
+"entweder Anwender- oder Entwicklerbezogen. Lasst uns die "
+"Anwenderspezifischen <ulink url='/HowTos'>HowTos </ulink> hierhin schieben!"
diff --git a/documentation/wikibook/wikibook.pot b/documentation/wikibook/wikibook.pot
new file mode 100644
index 0000000..7a5c9f9
--- /dev/null
+++ b/documentation/wikibook/wikibook.pot
@@ -0,0 +1,123 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
+# 
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2007-07-06 15:36+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: ENCODING"
+
+# type: Content of: <article><articleinfo><title>
+#: wikibook.xml:1
+msgid "DebianEdu/Documentation/Etch/AllInOne"
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:3
+msgid "Debian-Edu etch 3.0 Codename \"Terra\""
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:4
+msgid "This will become the etch documentation."
+msgstr ""
+
+# type: Content of: <article><para><section><itemizedlist><listitem><para>
+#: wikibook.xml:5
+msgid ""
+"<ulink url='/DebianEdu/Documentation/Etch/CopyRight'>Copyright </ulink> and "
+"other basics"
+msgstr ""
+
+# type: Content of: <article><para><section><itemizedlist><listitem><para>
+#: wikibook.xml:8
+msgid ""
+"<ulink url='/DebianEdu/Documentation/Etch/AboutDebianEdu'>About </ulink> "
+"Debian-Edu and Skolelinux"
+msgstr ""
+
+# type: Content of: <article><para><section><itemizedlist><listitem><para>
+#: wikibook.xml:20
+msgid ""
+"<ulink url='/DebianEdu/Documentation/Etch/HowTo'>HowTo </ulink> - simple "
+"step by step Howtos"
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:24
+msgid ""
+"Special pages: <ulink url='/DebianEdu/Documentation/Etch'>Index page "
+"</ulink> - <ulink url='/DebianEdu/Documentation/Etch/AllInOne'>All in one "
+"page </ulink>"
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:28
+msgid "Copyright of this document"
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:29
+msgid ""
+"The whole document is copyrighted by Holger Levsen 2007 and released under "
+"the GPL2 or any later version. Enjoy!"
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:30
+msgid ""
+"And if you add content to it, <emphasis role='strong'>only do so if you are "
+"the author of it </emphasis>! Then please add your name here and release it "
+"under the GPL2 or later version."
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:33
+msgid "AboutDebianEdu"
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:34
+msgid "Welcome to <ulink url='/DebianEdu'>DebianEdu </ulink> / Skolelinux!"
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:37
+msgid "Architecture"
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:38
+msgid "nothing to see yet."
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:40
+msgid "Requirements"
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:46
+msgid "Installation"
+msgstr ""
+
+# type: Content of: <article><para><section><title>
+#: wikibook.xml:52
+msgid "HowTo"
+msgstr ""
+
+# type: Content of: <article><para><section><para>
+#: wikibook.xml:53
+msgid ""
+"The <ulink url='/HowTos'>HowTos </ulink> from <ulink "
+"url='http://wiki.debian.org/DebianEdu/HowTo/'>http://wiki.debian.org/DebianEdu/HowTo/ "
+"</ulink> are either user- or developer-specific. Let's move the "
+"user-specific <ulink url='/HowTos'>HowTos </ulink> over here!"
+msgstr ""
diff --git a/documentation/wikibook/wikibook.xml b/documentation/wikibook/wikibook.xml
new file mode 100644
index 0000000..e624301
--- /dev/null
+++ b/documentation/wikibook/wikibook.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0"?><article><articleinfo><title>DebianEdu/Documentation/Etch/AllInOne
+</title>
+</articleinfo><para><para/><section><title>Debian-Edu etch 3.0 Codename "Terra"
+</title><para>This will become the etch documentation. 
+</para><itemizedlist><listitem><para><ulink url='/DebianEdu/Documentation/Etch/CopyRight'>Copyright
+</ulink> and other basics 
+</para>
+</listitem><listitem><para><ulink url='/DebianEdu/Documentation/Etch/AboutDebianEdu'>About
+</ulink> Debian-Edu and Skolelinux 
+</para>
+</listitem><listitem><para><ulink url='/DebianEdu/Documentation/Etch/Architecture'>Architecture
+</ulink>  
+</para>
+</listitem><listitem><para><ulink url='/DebianEdu/Documentation/Etch/Requirements'>Requierements
+</ulink>  
+</para>
+</listitem><listitem><para><ulink url='/DebianEdu/Documentation/Etch/Installation'>Installation
+</ulink>  
+</para>
+</listitem><listitem><para><ulink url='/DebianEdu/Documentation/Etch/HowTo'>HowTo
+</ulink> - simple step by step Howtos 
+</para>
+</listitem>
+</itemizedlist><para>Special pages: <ulink url='/DebianEdu/Documentation/Etch'>Index page
+</ulink> - <ulink url='/DebianEdu/Documentation/Etch/AllInOne'>All in one page
+</ulink>  
+</para>
+</section> <para/><section><title>Copyright of this document
+</title><para>The whole document is copyrighted by Holger Levsen 2007 and released under the GPL2 or any later version. Enjoy! 
+</para><para>And if you add content to it, <emphasis role='strong'>only do so if you are the author of it
+</emphasis>! Then please add your name here and release it under the GPL2 or later version. 
+</para>
+</section> <para/><section><title>AboutDebianEdu
+</title><para>Welcome to <ulink url='/DebianEdu'>DebianEdu
+</ulink> / Skolelinux! 
+</para>
+</section> <para/><section><title>Architecture
+</title><para>nothing to see yet. 
+</para>
+</section> <para/><section><title>Requirements
+</title><itemizedlist><listitem>a computer or two 
+</listitem><listitem>8gb harddrive space 
+</listitem><listitem>whatnot 
+</listitem>
+</itemizedlist>
+</section> <para/><section><title>Installation
+</title><itemizedlist><listitem>where to download 
+</listitem><listitem>normal or expert mode 
+</listitem><listitem>choose a profile 
+</listitem>
+</itemizedlist>
+</section> <para/><section><title>HowTo
+</title><para>The <ulink url='/HowTos'>HowTos
+</ulink> from <ulink url='http://wiki.debian.org/DebianEdu/HowTo/'>http://wiki.debian.org/DebianEdu/HowTo/
+</ulink> are either user- or developer-specific. Let's move the user-specific <ulink url='/HowTos'>HowTos
+</ulink> over here! 
+</para>
+</section> 
+</para>
+</article>
\ No newline at end of file


hooks/post-receive
-- 
debian-edu-doc.git (Debian package debian-edu-doc)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "debian-edu-doc.git" (Debian package debian-edu-doc).




More information about the debian-edu-commits mailing list