[Xfce4-commits] <xfce-utils:master> Build documentation during make dist.

Nick Schermer noreply at xfce.org
Sat Aug 28 16:14:01 CEST 2010


Updating branch refs/heads/master
         to 9f3173f279291d53af8ba0b383db0f2a1fd3a279 (commit)
       from 2c64f4c4ea1e25c28ee4dfeb3c38655866bfcdb1 (commit)

commit 9f3173f279291d53af8ba0b383db0f2a1fd3a279
Author: Nick Schermer <nick at xfce.org>
Date:   Sat Aug 28 13:27:25 2010 +0200

    Build documentation during make dist.
    
    Also merge and update the various manuals in this package.

 Makefile.am                                        |    3 +-
 configure.in.in                                    |   50 +-
 doc/Makefile.am                                    |   21 +-
 doc/index/C/Makefile.am                            |    7 -
 doc/index/C/index.html                             |   52 -
 doc/index/Makefile.am                              |    5 -
 doc/index/fr/Makefile.am                           |    7 -
 doc/index/fr/index.html                            |   53 -
 doc/index/it/Makefile.am                           |    7 -
 doc/index/it/index.html                            |   42 -
 doc/{xfce4-user-guide/C => manual}/BSD.xml         |    0
 doc/{xfce4-user-guide/C => manual}/GPL.xml         |    0
 doc/{xfce4-user-guide/C => manual}/LGPL.xml        |    0
 doc/manual/Makefile.am                             |  142 +++
 doc/manual/images/Makefile.am                      |   11 +
 .../C => manual}/images/about-dialog.png           |  Bin 39618 -> 39618 bytes
 .../C => manual}/images/default-session.png        |  Bin 85248 -> 85248 bytes
 doc/{xfce-utils/C => manual}/images/run-dialog.png |  Bin 8661 -> 8661 bytes
 doc/{ => manual/images}/xfce-mouse.png             |  Bin 1283 -> 1283 bytes
 doc/manual/po/Makefile.am                          |    7 +
 doc/manual/po/da.po                                | 1009 ++++++++++++++++++++
 doc/manual/po/xfce-utils.pot                       |  732 ++++++++++++++
 doc/{xfce.xsl => manual/xfce-utils-html.xsl}       |   21 +-
 doc/{xfce.css => manual/xfce-utils.css}            |    0
 .../xfce4-user-guide.xml => manual/xfce-utils.xml} |  721 +++++++++-----
 doc/xfce-chunk.css                                 |   14 -
 doc/xfce-nochunk.xsl                               |  270 ------
 doc/xfce-utils/C/Makefile.am                       |   15 -
 doc/xfce-utils/C/images/Makefile.am                |    9 -
 doc/xfce-utils/C/images/taskbar_settings.png       |  Bin 27959 -> 0 bytes
 doc/xfce-utils/C/xfce-utils.html                   |   75 --
 doc/xfce-utils/C/xfce-utils.xml                    |  259 -----
 doc/xfce-utils/Makefile.am                         |    5 -
 doc/xfce4-user-guide/C/BSD.html                    |   24 -
 doc/xfce4-user-guide/C/GPL.html                    |  301 ------
 doc/xfce4-user-guide/C/LGPL.html                   |  439 ---------
 doc/xfce4-user-guide/C/Makefile.am                 |   28 -
 doc/xfce4-user-guide/C/copyright.xml               |   19 -
 doc/xfce4-user-guide/C/images/Makefile.am          |    8 -
 doc/xfce4-user-guide/C/images/link_xfce.jpg        |  Bin 4268 -> 0 bytes
 doc/xfce4-user-guide/C/xfce4-components.html       |   37 -
 doc/xfce4-user-guide/C/xfce4-copyright.html        |    9 -
 doc/xfce4-user-guide/C/xfce4-install.html          |   48 -
 doc/xfce4-user-guide/C/xfce4-intro.html            |   24 -
 doc/xfce4-user-guide/C/xfce4-use.html              |  136 ---
 doc/xfce4-user-guide/C/xfce4-user-guide.html       |   19 -
 doc/xfce4-user-guide/Makefile.am                   |    5 -
 scripts/xfhelp4.in                                 |    2 +-
 48 files changed, 2418 insertions(+), 2218 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 81acf64..687f572 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -40,6 +40,7 @@ DISTCLEANFILES = \
 	$(desktop_DATA)
 
 DISTCHECK_CONFIGURE_FLAGS = \
-	--with-xsession-prefix=/tmp/$(PACKAGE)-distcheck
+	--with-xsession-prefix=/tmp/$(PACKAGE)-distcheck \
+	--enable-gen-doc
 
 # vi:set ts=8 sw=8 noet ai nocindent:
diff --git a/configure.in.in b/configure.in.in
index 80ea83b..f878f4f 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -116,6 +116,33 @@ AC_SUBST(XFCE_GLADE_CATALOG_PATH)
 AC_SUBST(XFCE_GLADE_PIXMAP_PATH)
 AC_SUBST(XFCE_GLADE_MODULE_PATH)
 
+dnl ***************************************************
+dnl *** Check if we need to build the documentation ***
+dnl ***************************************************
+AC_ARG_ENABLE([gen-doc], [AC_HELP_STRING([--enable-gen-doc], 
+              [Generate HTML documentation (requires xsltproc, xml2po and xmllint) [default=no]])],, [enable_gen_doc=no])
+if test x"$enable_gen_doc" = x"yes"; then
+    AC_PATH_PROG([XSLTPROC], [xsltproc], [no])
+    if test x"$XSLTPROC" = x"no"; then
+        enable_gen_doc=no
+    fi
+
+    AC_PATH_PROG([XML2PO], [xml2po], [no])
+    if test x"$XML2PO" = x"no"; then
+        enable_gen_doc=no
+    fi
+
+    AC_PATH_PROG([XMLLINT], [xmllint], [no])
+    if test x"$XML2PO" = x"no"; then
+        enable_gen_doc=no
+    fi
+
+    if test x"$enable_gen_doc" = x"no"; then
+        AC_MSG_ERROR([Compiling with --enable-gen-doc but one of xml2po, xsltproc or xmllint not found.])
+    fi
+fi
+AM_CONDITIONAL([GENERATE_DOCUMENTATION], [test x"$enable_gen_doc" = x"yes"])
+
 dnl Check for debugging support
 XDT_FEATURE_DEBUG
 
@@ -136,16 +163,9 @@ xfce-utils.spec
 Makefile
 po/Makefile.in
 doc/Makefile
-doc/index/Makefile
-doc/index/C/Makefile
-doc/index/fr/Makefile
-doc/index/it/Makefile
-doc/xfce-utils/Makefile
-doc/xfce-utils/C/Makefile
-doc/xfce-utils/C/images/Makefile
-doc/xfce4-user-guide/Makefile
-doc/xfce4-user-guide/C/Makefile
-doc/xfce4-user-guide/C/images/Makefile
+doc/manual/Makefile
+doc/manual/images/Makefile
+doc/manual/po/Makefile
 icons/Makefile
 icons/48x48/Makefile
 xfrun/Makefile
@@ -154,3 +174,13 @@ scripts/xinitrc.in
 xfce4-about/Makefile
 ])
 
+echo
+echo "Build Configuration:"
+if test x"$enable_gen_doc" = x"yes"; then
+echo "* Documentation:  yes (generate)"
+elif test -d "${srcdir}/doc/manual/html"; then
+echo "* Documentation: yes (in tarball)"
+else
+echo "* Documentation: no"
+fi
+echo
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 501e26a..a69e322 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,21 +1,2 @@
 SUBDIRS = \
-	index \
-	xfce4-user-guide \
-	xfce-utils
-
-noinst_DATA = \
-	xfce.xsl \
-	xfce-nochunk.xsl
-
-cssdir = $(datadir)/xfce4/doc
-
-css_DATA = \
-	xfce.css \
-	xfce-chunk.css \
-	xfce-mouse.png
-
-EXTRA_DIST = $(noinst_DATA) $(css_DATA)
-
-html: Makefile
-	make -C xfce4-user-guide html; \
-	make -C xfce-utils html
+	manual
diff --git a/doc/index/C/Makefile.am b/doc/index/C/Makefile.am
deleted file mode 100644
index d516ba4..0000000
--- a/doc/index/C/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-docdir=$(datadir)/xfce4/doc/C
-
-doc_DATA= \
-	index.html
-
-EXTRA_DIST = $(doc_DATA)
-
diff --git a/doc/index/C/index.html b/doc/index/C/index.html
deleted file mode 100644
index 2e3d935..0000000
--- a/doc/index/C/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<html>
-    <head>
-	<title>Xfce Documentation</title>
-	<link rel="stylesheet" href="../xfce-chunk.css" type="text/css">
-    </head>
-
-    
-    <body>
-	<h1>Xfce 4.4 Documentation</h1>
-
-	<p>The documentation for Xfce 4.4 is installed with the different 
-	components that make up the desktop environment. As a consequence, 
-	some of the documents listed here may not be available on your system.
-	</p>
-
-	<p> </p>
-
-	<hr />
-
-	<p> </p>
-
-	<h2>Guides</h2>
-
-	<p><a href="xfce4-user-guide.html">Xfce 4.4 User Guide</a></p>
-
-	<p> </p>
-
-	<h2>Manuals</h2>
-
-	<ul>
-	    <li><a href="xfce4-panel.html">Panel</a></li>
-	    <li><a href="xfwm4.html">Window Manager</a></li>
-	    <li><a href="xfce4-session.html">Session Manager</a></li>
-	    <li><a href="xfdesktop.html">Desktop Manager</a></li>
-	    <li><a href="xfce-utils.html">Utilities and Scripts</a></li>
-	    <li><a href="xfprint.html">Printing Management</a></li>
-	    <li><a href="xfce-mcs-manager.html">Settings Manager</a></li>
-	    <li><a href="xfce-mcs-plugins.html">Settings Manager Plugins</a></li>
-	    <li><a href="exo-preferred-applications.html">Preferred Applications</a></li>
-	    <li><a href="xffm.html">Filemanager</a></li>
-	    <li><a href="xfce4-appfinder.html">Application Finder</a></li>
-	</ul>
-
-	<p> </p>
-
-	<hr />
-
-	<div align="center"><img src="../xfce-mouse.png" /></div>
-    </body>
-</html>
-
-		
diff --git a/doc/index/Makefile.am b/doc/index/Makefile.am
deleted file mode 100644
index 1e87d12..0000000
--- a/doc/index/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-SUBDIRS = \
-	C \
-	fr \
-	it
-
diff --git a/doc/index/fr/Makefile.am b/doc/index/fr/Makefile.am
deleted file mode 100644
index a8235c1..0000000
--- a/doc/index/fr/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-docdir=$(datadir)/xfce4/doc/fr
-
-doc_DATA= \
-	index.html
-
-EXTRA_DIST = $(doc_DATA)
-
diff --git a/doc/index/fr/index.html b/doc/index/fr/index.html
deleted file mode 100644
index 4763bb8..0000000
--- a/doc/index/fr/index.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-    <head>
-	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-	<title>Documentation de Xfce 4.2</title>
-	<link rel="stylesheet" href="../xfce.css" type="text/css">
-    </head>
-
-
-    <body>
-	<h1>Documentation de Xfce 4.2</h1>
-
-	<p>La documentation de Xfce 4.2 est installée avec les différents éléments qui composent l'environnement 
-	de bureau. En conséquence, certains des documents listés ici peuvent ne pas être disponibles sur votre 
-	système.
-	</p>
-
-	<p> </p>
-
-	<hr />
-
-	<p> </p>
-
-	<h2>Guides</h2>
-
-	<p><a href="xfce4-user-guide.html">Le guide de l'utilisateur de Xfce 4.2</a></p>
-
-	<p> </p>
-
-	<h2>Manuels</h2>
-
-	<ul>
-	    <li><a href="xfce4-panel.html">Le panneau</a></li>
-	    <li><a href="xfwm4.html">Le gestionnaire de fenêtres</a></li>
-	    <li><a href="xfce4-session.html">Le gestionnaire de session</a></li>
-	    <li><a href="xfdesktop.html">Le gestionnaire de bureau</a></li>
-	    <li><a href="xfce-utils.html">Utilitaires et scripts</a></li>
-	    <li><a href="xfprint.html">Le gestionnaire d'impression</a></li>
-	    <li><a href="xfce-mcs-manager.html">Le gestionnaire de paramètres</a></li>
-	    <li><a href="xfce-mcs-plugins.html">Les plugins pour le gestionnaire de paramètres</a>
-	    </li>
-	    <li><a href="xffm.html">Le gestionnaire de fichiers</a></li>
-	    <li><a href="xfce4-appfinder.html">Le chercheur d'applications</a></li>
-	</ul>
-
-	<p> </p>
-
-	<hr />
-
-	<div align="center"><img src="../xfce-mouse.png" /></div>
-    </body>
-</html>
-
-
diff --git a/doc/index/it/Makefile.am b/doc/index/it/Makefile.am
deleted file mode 100644
index 71135b8..0000000
--- a/doc/index/it/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-docdir=$(datadir)/xfce4/doc/it
-
-doc_DATA= \
-	index.html
-
-EXTRA_DIST = $(doc_DATA)
-
diff --git a/doc/index/it/index.html b/doc/index/it/index.html
deleted file mode 100644
index a1b71a0..0000000
--- a/doc/index/it/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-    <head>
-	<title>Documentazione di XFce 4</title>
-	<link rel="stylesheet" href="../xfce.css" type="text/css">
-    </head>
-
-    
-    <body>
-	<h1>Documentazione di XFce 4</h1>
-
-	<p>La documentazione di XFce 4 è installata con componenti 
-	che possono differire dal tuo ambiente desktop. Come conseguenza, 
-	molti dei documenti qui inclusi, non sono disponibili per il tuo sistema.
-	</p>
-
-	<p>La versione on-line in inglese di questo documento è disponibile su 
-<a href="http://members.home.nl/xfce4/documentation/">http://www.xfce.org/documentation/</a>.</p>
-	
-	<p> </p>
-
-	<h2>Guide</h2>
-
-	<p><a href="xfce4-user-guide.html">Guida utente di XFce 4</a></p>
-
-	<p> </p>
-
-	<h2>Manuali</h2>
-
-	<ul>
-	    <li><a href="xfce4-panel.html">Pannello</a></li>
-	    <li><a href="xfwm4.html">Gestore delle Finestre</a></li>
-	    <li><a href="xfdesktop.html">Gestore del Desktop</a></li>
-	    <li><a href="xfce-utils.html">Utilità e Scripts</a></li>
-	    <li><a href="xfce-mcs-manager.html">Gestore delle Impostazioni</a></li>
-	    <li><a href="xfce-mcs-plugins.html">Plugins del Gestore delle Impostazioni</a>
-	    <li><a href="xffm.html">Gestore dei File</a></li>
-	    </li>
-	</ul>
-    </body>
-</html>
-
-		
diff --git a/doc/xfce4-user-guide/C/BSD.xml b/doc/manual/BSD.xml
similarity index 100%
rename from doc/xfce4-user-guide/C/BSD.xml
rename to doc/manual/BSD.xml
diff --git a/doc/xfce4-user-guide/C/GPL.xml b/doc/manual/GPL.xml
similarity index 100%
rename from doc/xfce4-user-guide/C/GPL.xml
rename to doc/manual/GPL.xml
diff --git a/doc/xfce4-user-guide/C/LGPL.xml b/doc/manual/LGPL.xml
similarity index 100%
rename from doc/xfce4-user-guide/C/LGPL.xml
rename to doc/manual/LGPL.xml
diff --git a/doc/manual/Makefile.am b/doc/manual/Makefile.am
new file mode 100644
index 0000000..5c8bf95
--- /dev/null
+++ b/doc/manual/Makefile.am
@@ -0,0 +1,142 @@
+SUBDIRS = \
+	images \
+	po
+
+STYLESHEET = $(PACKAGE)-html.xsl
+DOCUMENT = $(PACKAGE).xml
+LINGUAS = $(shell cd $(srcdir)/po && echo `/bin/ls *.po | sed 's,[.]po,,g'`)
+ALL_LINGUAS = C $(LINGUAS)
+INCLUDED_DOCUMENTS = BSD.xml LGPL.xml GPL.xml
+
+# install the html files to the destdir
+install-data-local:
+	for lang in $(ALL_LINGUAS); do \
+		if test -d $(srcdir)/html/$$lang; then \
+			dest=$(DESTDIR)$(docdir)/html/$$lang; \
+			$(mkinstalldirs) $$dest; \
+			installfiles=`echo $(srcdir)/html/$$lang/*`; \
+			for file in $$installfiles; do \
+				echo "--- Installing "$$file; \
+				$(INSTALL_DATA) $$file $$dest; \
+			done; \
+			if test x"$$lang" != x"C" -a ! -d $(srcdir)/images/$$lang; then \
+				echo "--- Creating symlink to C images for $$lang"; \
+				ln -sf $(docdir)/html/C/images $$dest/images; \
+			fi \
+		fi \
+	done;
+
+# remove installed files from the destdir
+uninstall-local:
+	for lang in $(ALL_LINGUAS); do \
+		dest=$(DESTDIR)$(docdir)/html/$$lang; \
+		if test -d $$dest; then \
+			if test -L $$dest/images; then \
+				rm -rf $$dest; \
+			else \
+				rm -f $$dest/*.html; \
+			fi \
+		fi \
+	done
+
+# remove generate html from the srcdir
+clean-local:
+	rm -rf $(srcdir)/html
+
+if GENERATE_DOCUMENTATION
+
+# regenerate po(t) files
+update-po:
+	rm -f $(srcdir)/po/$(GETTEXT_PACKAGE).pot; \
+	$(XML2PO) -o $(srcdir)/po/$(GETTEXT_PACKAGE).pot $(srcdir)/$(DOCUMENT); \
+	for lang in $(LINGUAS); do \
+		pofile=$(srcdir)/po/$$lang.po; \
+		$(XML2PO) -u $(srcdir)/po/$$lang.po $(srcdir)/$(DOCUMENT); \
+	done
+
+# build the translated help files
+doc-build.stamp: $(srcdir)/$(DOCUMENT) $(srcdir)/$(STYLESHEET)
+	@chmod -R u+w $(srcdir); \
+	rm -rf $(srcdir)/html; \
+	cleanupfiles=""; \
+	for file in $(INCLUDED_DOCUMENTS); do \
+		if test ! -f $$file; then \
+			cp $(srcdir)/$$file $$file; \
+			cleanupfiles="$$cleanupfiles $$file"; \
+		fi; \
+	done; \
+	echo; \
+	for lang in $(ALL_LINGUAS); do \
+		pofile=$(srcdir)/po/$$lang.po; \
+		echo "*** Generating $$lang documentation"; \
+		if test x"$$lang" = x"C"; then \
+			cp $(srcdir)/$(DOCUMENT) xgen-doc; \
+		else \
+			echo "Building the translated DocBook XML file"; \
+			$(XML2PO) -e -l $$lang -p $$pofile $(srcdir)/$(DOCUMENT) > xgen-doc; \
+			rm -f .xml2po.mo; \
+		fi; \
+		sed -e "s,\@PACKAGE_NAME\@,$(PACKAGE_NAME),g" \
+			-e "s,\@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g" \
+			-i xgen-doc; \
+		echo "Validating DocBook XML file"; \
+		$(XMLLINT) --noout --valid xgen-doc || exit 1; \
+		echo "Creating the HTML pages"; \
+		$(XSLTPROC) --nonet -o $(srcdir)/html/$$lang/ $(srcdir)/$(STYLESHEET) xgen-doc; \
+		chmod -R u+w $(srcdir)/html/$$lang; \
+		rm -f xgen-doc; \
+		echo; \
+	done; \
+	rm -f $$cleanupfiles; \
+	touch doc-build.stamp
+
+dist-check-doc: all
+
+else
+
+update-po:
+	@echo "*** You need to compile with --enable-gen-doc in order to make update-po"
+	@false
+
+doc-build.stamp:
+	@if test ! -d $(srcdir)/html; then \
+		echo; \
+		echo "*** No generated documentation found. If you want to"; \
+		echo "*** generate the (translated) documentation, run configure"; \
+		echo "*** with --enable-gen-doc."; \
+		echo; \
+	fi
+
+dist-check-doc:
+	@echo "*** You need to compile with --enable-gen-doc in order to make dist"
+	@false
+
+endif
+
+# always try to build (if compiling with --enable-build-doc) or print
+# a message if no html files were found in the tarball
+all: doc-build.stamp
+
+# include the html and man files in the dist
+dist-hook: dist-check-doc doc-build.stamp
+	for lang in $(ALL_LINGUAS); do \
+		if test -d $(srcdir)/html/$$lang; then \
+			mkdir -p $(distdir)/html/$$lang; \
+			cp $(srcdir)/html/$$lang/* $(distdir)/html/$$lang/; \
+		fi \
+	done
+
+# css file
+cssdir = $(docdir)/html
+css_DATA = \
+	xfce-utils.css
+
+EXTRA_DIST = \
+	$(css_DATA) \
+	$(STYLESHEET) \
+	$(DOCUMENT) \
+	$(INCLUDED_DOCUMENTS)
+
+CLEANFILES = \
+	xgen-doc \
+	doc-build.stamp
diff --git a/doc/manual/images/Makefile.am b/doc/manual/images/Makefile.am
new file mode 100644
index 0000000..b11791a
--- /dev/null
+++ b/doc/manual/images/Makefile.am
@@ -0,0 +1,11 @@
+imagesdir = $(docdir)/html/C/images
+images_DATA = \
+	xfce-mouse.png \
+	run-dialog.png \
+	default-session.png \
+	about-dialog.png
+
+EXTRA_DIST = \
+	$(images_DATA)
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/doc/xfce-utils/C/images/about-dialog.png b/doc/manual/images/about-dialog.png
similarity index 100%
rename from doc/xfce-utils/C/images/about-dialog.png
rename to doc/manual/images/about-dialog.png
diff --git a/doc/xfce4-user-guide/C/images/default-session.png b/doc/manual/images/default-session.png
similarity index 100%
rename from doc/xfce4-user-guide/C/images/default-session.png
rename to doc/manual/images/default-session.png
diff --git a/doc/xfce-utils/C/images/run-dialog.png b/doc/manual/images/run-dialog.png
similarity index 100%
rename from doc/xfce-utils/C/images/run-dialog.png
rename to doc/manual/images/run-dialog.png
diff --git a/doc/xfce-mouse.png b/doc/manual/images/xfce-mouse.png
similarity index 100%
rename from doc/xfce-mouse.png
rename to doc/manual/images/xfce-mouse.png
diff --git a/doc/manual/po/Makefile.am b/doc/manual/po/Makefile.am
new file mode 100644
index 0000000..7cde12b
--- /dev/null
+++ b/doc/manual/po/Makefile.am
@@ -0,0 +1,7 @@
+
+PO_FILES=$(shell cd $(srcdir) && echo `/bin/ls *.po`)
+EXTRA_DIST = \
+	$(PO_FILES) \
+	$(GETTEXT_PACKAGE).pot
+
+# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/doc/manual/po/da.po b/doc/manual/po/da.po
new file mode 100644
index 0000000..6d714e8
--- /dev/null
+++ b/doc/manual/po/da.po
@@ -0,0 +1,1009 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: xfce-utils 4.7.0\n"
+"POT-Creation-Date: 2010-08-28 16:12+0200\n"
+"PO-Revision-Date: 2009-01-21 11:52+0100\n"
+"Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
+"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Danish\n"
+"X-Poedit-Country: DENMARK\n"
+"X-Generator: KBabel 1.11.4\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#. When image changes, this message will be marked fuzzy or untranslated for you.
+#. It doesn't matter what you translate it to: it's not used at all.
+#: xfce-utils.xml:221(None)
+msgid ""
+"@@image: 'images/default-session.png'; md5=44695a28b431354c5e7ae9d172451007"
+msgstr ""
+
+#. When image changes, this message will be marked fuzzy or untranslated for you.
+#. It doesn't matter what you translate it to: it's not used at all.
+#: xfce-utils.xml:820(None)
+msgid "@@image: 'images/run-dialog.png'; md5=f2c3c1e622304bbd44f951f8e5ac7eee"
+msgstr ""
+
+#. When image changes, this message will be marked fuzzy or untranslated for you.
+#. It doesn't matter what you translate it to: it's not used at all.
+#: xfce-utils.xml:847(None)
+msgid ""
+"@@image: 'images/about-dialog.png'; md5=01d189f346aec15d60b9e13632799847"
+msgstr ""
+
+#: xfce-utils.xml:14(title)
+msgid "The Xfce Desktop Environment"
+msgstr ""
+
+#: xfce-utils.xml:21(title)
+msgid "Xfce Documentation"
+msgstr ""
+
+#: xfce-utils.xml:23(para)
+msgid ""
+"The documentation for Xfce is installed with the different components that "
+"make up the desktop environment. As a consequence, some of the documents "
+"listed here may not be available on your system."
+msgstr ""
+
+#: xfce-utils.xml:29(title)
+msgid "Guides"
+msgstr ""
+
+#: xfce-utils.xml:32(link) xfce-utils.xml:93(title)
+msgid "Xfce User Guide"
+msgstr ""
+
+#: xfce-utils.xml:37(title)
+msgid "Manuals"
+msgstr ""
+
+#: xfce-utils.xml:38(para)
+msgid ""
+"As a limitation to HTML only the English versions of the manuals are linked "
+"below."
+msgstr ""
+
+#: xfce-utils.xml:40(ulink) xfce-utils.xml:238(term)
+msgid "Panel"
+msgstr ""
+
+#: xfce-utils.xml:41(ulink) xfce-utils.xml:290(term)
+msgid "Window Manager"
+msgstr ""
+
+#: xfce-utils.xml:42(ulink)
+msgid "Session Manager"
+msgstr ""
+
+#: xfce-utils.xml:43(ulink) xfce-utils.xml:267(term)
+msgid "Desktop Manager"
+msgstr ""
+
+#: xfce-utils.xml:44(link)
+msgid "Utilities and Scripts"
+msgstr ""
+
+#: xfce-utils.xml:45(ulink)
+msgid "Preferred Applications"
+msgstr ""
+
+#: xfce-utils.xml:46(ulink)
+msgid "File Manager"
+msgstr ""
+
+#: xfce-utils.xml:54(year) xfce-utils.xml:763(year)
+msgid "2006"
+msgstr ""
+
+#: xfce-utils.xml:55(holder) xfce-utils.xml:763(holder)
+msgid "Jasper Huijsmans"
+msgstr ""
+
+#: xfce-utils.xml:59(para) xfce-utils.xml:771(para)
+msgid ""
+"Permission is granted to copy, distribute and/or modify this document under "
+"the terms of the GNU Free Documentation License, Version 1.1 or any later "
+"version published by the Free Software Foundation; with no Invariant "
+"Sections, with no Front-Cover Texts, and with no Back-Cover Texts. The "
+"complete license text is available from the <ulink type=\"http\" url="
+"\"http://www.gnu.org/\">Free Software Foundation</ulink>."
+msgstr ""
+
+#: xfce-utils.xml:71(firstname) xfce-utils.xml:784(firstname)
+msgid "Jasper"
+msgstr ""
+
+#: xfce-utils.xml:72(surname) xfce-utils.xml:784(surname)
+msgid "Huijsmans"
+msgstr ""
+
+#: xfce-utils.xml:75(email) xfce-utils.xml:786(email)
+msgid "jasper at xfce.org"
+msgstr ""
+
+#: xfce-utils.xml:80(firstname) xfce-utils.xml:791(firstname)
+msgid "Benedikt"
+msgstr ""
+
+#: xfce-utils.xml:81(surname) xfce-utils.xml:791(surname)
+msgid "Meurer"
+msgstr ""
+
+#: xfce-utils.xml:84(email)
+msgid "benny at xfce.org"
+msgstr ""
+
+#: xfce-utils.xml:89(releaseinfo)
+msgid "This manual describes version @PACKAGE_VERSION@ of Xfce."
+msgstr ""
+
+#: xfce-utils.xml:96(emphasis)
+msgid "... and mice fly ..."
+msgstr ""
+
+#: xfce-utils.xml:101(title)
+msgid "Preface"
+msgstr ""
+
+#: xfce-utils.xml:103(para)
+msgid ""
+"This document gives an overview of the Xfce Desktop Environment and explains "
+"how to perform several common tasks. It is meant to be a starting point for "
+"anyone who wants to use Xfce and it includes pointers to other sources of "
+"information."
+msgstr ""
+
+#: xfce-utils.xml:113(title) xfce-utils.xml:802(title)
+msgid "Introduction"
+msgstr ""
+
+#: xfce-utils.xml:115(para)
+msgid ""
+"Xfce is a lightweight desktop environment for unix-like operating systems. "
+"It aims to be fast and light on system resources, while still being visually "
+"appealing and easy to use."
+msgstr ""
+
+#: xfce-utils.xml:120(para)
+msgid ""
+"Xfce embodies the traditional UNIX philosophy of modularity and re-"
+"usability. All of Xfce's core components can be build and installed "
+"separately. Xfce 4 is based on the <ulink url=\"http://www.gtk.org\" type="
+"\"html\">GTK+ toolkit</ulink> version 2."
+msgstr ""
+
+#: xfce-utils.xml:127(para)
+msgid ""
+"Adhereance to standards is one of the main design goals of Xfce 4, "
+"specifically those defined at <ulink url=\"http://www.freedesktop.org\" type="
+"\"html\">Freedesktop.org</ulink>. This allows Xfce 4 to seamlessly "
+"interoperate with programs written for other desktop environments that "
+"follow these specifications."
+msgstr ""
+
+#: xfce-utils.xml:135(para)
+msgid ""
+"Xfce is all free software. The separate components are released under either "
+"the BSD license, the GNU LGPL or the GNU GPL (see <xref linkend=\"xfce4-"
+"copyright\"/> for details)."
+msgstr ""
+
+#: xfce-utils.xml:142(title)
+msgid "Resources"
+msgstr ""
+
+#: xfce-utils.xml:144(para)
+msgid ""
+"If you are looking for specific information about Xfce 4, chances are you "
+"can obtain it from one of the resources in this list:"
+msgstr ""
+
+#: xfce-utils.xml:151(ulink)
+msgid "Xfce website"
+msgstr ""
+
+#: xfce-utils.xml:154(ulink)
+msgid "User mailing list"
+msgstr ""
+
+#: xfce-utils.xml:157(ulink)
+msgid "Development mailing list"
+msgstr ""
+
+#: xfce-utils.xml:160(ulink)
+msgid "Xfce Forum"
+msgstr ""
+
+#: xfce-utils.xml:163(ulink)
+msgid "Bug tracker"
+msgstr ""
+
+#: xfce-utils.xml:171(title)
+msgid "Using Xfce4"
+msgstr ""
+
+#: xfce-utils.xml:174(title)
+msgid "Getting started"
+msgstr ""
+
+#: xfce-utils.xml:176(para)
+msgid ""
+"Use <application>startxfce4</application> to start an Xfce session, which "
+"includes the session manager, the panel, the window manager and the desktop "
+"manager."
+msgstr ""
+
+#: xfce-utils.xml:182(para)
+msgid ""
+"By default the Xfce session manager manages the startup of applications. It "
+"allows you to save your session when you quit Xfce, so that the next time "
+"you log in, the same applications will be started for you automatically."
+msgstr ""
+
+#: xfce-utils.xml:189(para)
+msgid ""
+"To customize the behaviour of <application>startxfce4</application>, copy "
+"the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to your "
+"personal <filename role=\"directory\">~/.config/xfce4/</filename> directory "
+"and edit that file. Depending on your installation method the location of "
+"the system <filename>xinitrc</filename> file may be different. If you "
+"install from source, <filename role=\"directory\">${sysconfdir}</filename> "
+"defaults to <filename role=\"directory\">/usr/local/etc/</filename>. For "
+"binary packages it is often set to <filename role=\"directory\">/etc/</"
+"filename>, <filename role=\"directory\">/etc/X11</filename>, <filename role="
+"\"directory\">/usr/pkg/etc</filename> or <filename role=\"directory\">/usr/"
+"X11R6/etc</filename>; you can use your package manager to find out."
+msgstr ""
+
+#: xfce-utils.xml:208(title)
+msgid "The Default Desktop"
+msgstr ""
+
+#: xfce-utils.xml:210(para)
+msgid ""
+"The Xfce Desktop Environment is not a single entity that provides all "
+"funtionality, but rather it tries to adhere to the old UNIX tradition of "
+"small tools that do one job and do it well. A default Xfce desktop with no "
+"applications running is shown in <xref linkend=\"default-session-fig\"/>."
+msgstr ""
+
+#: xfce-utils.xml:217(title)
+msgid "Default Xfce 4 session"
+msgstr ""
+
+#: xfce-utils.xml:224(phrase)
+msgid "Default Xfce session, with desktop manager and panel."
+msgstr ""
+
+#: xfce-utils.xml:231(para)
+msgid ""
+"When you run <application>startxfce4</application> for the first time, "
+"several applications are started by the Xfce session manager:"
+msgstr ""
+
+#: xfce-utils.xml:240(para)
+msgid ""
+"In a default session there is a full width panel at the top of the screen "
+"and a smaller one at the bottom. The <application>xfce4-panel</application> "
+"application manages all panels on the screen."
+msgstr ""
+
+#: xfce-utils.xml:246(para)
+msgid ""
+"The top panel shows a graphical pager with a miniature view of all "
+"workspaces, a task list showing all applications running on the current "
+"workspace and a system tray to show status icons that are used for example "
+"by some media players or instant messaging applications."
+msgstr ""
+
+#: xfce-utils.xml:253(para)
+msgid ""
+"The bottom panel contains several application launchers and a clock. You can "
+"right-click on any panel item to get a menu that allows you to change its "
+"properties, add or remove new items or to change the properties of the panel "
+"itself."
+msgstr ""
+
+#: xfce-utils.xml:259(para)
+msgid ""
+"For more information, have a look at the <ulink url=\"xfce4-panel.html\" "
+"type=\"html\">panel manual</ulink>."
+msgstr ""
+
+#: xfce-utils.xml:269(para)
+msgid ""
+"The desktop manager provides the desktop background image and two menus when "
+"you click on the desktop background. Optionally, it can show icons on the "
+"desktop, either for minimized applications or for files in the <filename>~/"
+"Desktop</filename> folder."
+msgstr ""
+
+#: xfce-utils.xml:275(para)
+msgid ""
+"The right mouse button opens a menu that allows you to start applications. "
+"Look at the <ulink url=\"xfdesktop.html\" type=\"html\">manual</ulink> to "
+"find out how to change the menu contents."
+msgstr ""
+
+#: xfce-utils.xml:282(para)
+msgid ""
+"The middle mouse button (or Shift + left click) opens a list of all "
+"applications that are currently running. You can activate an application by "
+"clicking on its menu entry."
+msgstr ""
+
+#: xfce-utils.xml:292(para)
+msgid ""
+"The window manager is responsible for placing the windows on the screen and "
+"provides the window borders and decorations. It allows you to move windows "
+"around by draggin the titlebar and provides title bar buttons, for example "
+"to close, minimize or maximize a window. Look at the <ulink url=\"xfwm4.html"
+"\" type=\"html\">manual</ulink> for a full explanation of the window manager "
+"settings."
+msgstr ""
+
+#: xfce-utils.xml:304(term)
+msgid "Settings Manager"
+msgstr ""
+
+#: xfce-utils.xml:306(para)
+msgid ""
+"The settings manager runs in the background and makes sure that all Xfce "
+"applications update their settings when the user changes something in the "
+"settings manager dialog (see following section) and it takes care of reading "
+"the configuration from disk at startup. Have a look at the <ulink url=\"xfce-"
+"mcs-manager.html\" type=\"html\">Settings Manager</ulink> and <ulink url="
+"\"xfce-mcs-plugins.html\" type=\"html\">Settings Plugins</ulink> manuals for "
+"a full explanation of the settings manager."
+msgstr ""
+
+#: xfce-utils.xml:322(title)
+msgid "Common Tasks"
+msgstr ""
+
+#: xfce-utils.xml:324(para)
+msgid ""
+"This section will explain how to perform several common tasks to quickly get "
+"you started working with Xfce 4. Because that is what Xfce 4 is designed "
+"for, to allow you to get work done."
+msgstr ""
+
+#: xfce-utils.xml:330(title)
+msgid "Running programs"
+msgstr ""
+
+#: xfce-utils.xml:334(term)
+msgid "Xfce Panel"
+msgstr ""
+
+#: xfce-utils.xml:336(para)
+msgid ""
+"The panel is designed to allow quick access to the most frequently used "
+"applications by putting them on the main panel. Less often used applications "
+"can be put in a launcher menu."
+msgstr ""
+
+#: xfce-utils.xml:344(term)
+msgid "Desktop Menu"
+msgstr ""
+
+#: xfce-utils.xml:346(para)
+msgid ""
+"Another method for starting applications is from the desktop mouse menu. "
+"Read the <ulink url=\"xfdesktop.html\" type=\"html\">Desktop Manager manual</"
+"ulink> for information on how to change the menu contents."
+msgstr ""
+
+#: xfce-utils.xml:355(term) xfce-utils.xml:813(title)
+msgid "Run Dialog"
+msgstr ""
+
+#: xfce-utils.xml:357(para)
+msgid ""
+"If you know the name of a program and it is not on the panel or in the "
+"desktop menu you can use the run dialog. To open the dialog type <keycap>Alt"
+"+F2</keycap> or choose the <guilabel>Run program...</guilabel> option from "
+"the desktop menu."
+msgstr ""
+
+#: xfce-utils.xml:363(para)
+msgid ""
+"The dialog will remeber the 10 last commands that were executed successfully."
+msgstr ""
+
+#: xfce-utils.xml:375(title)
+msgid "Managing windows and workspaces"
+msgstr ""
+
+#: xfce-utils.xml:380(term)
+msgid "Basic window operations"
+msgstr ""
+
+#: xfce-utils.xml:382(para)
+msgid ""
+"You can move windows around the screen by dragging their title bar. A window "
+"can be closed, hidden, maximized, shaded and made sticky — this means "
+"it will show up on all workspaces — by using the title bar buttons."
+msgstr ""
+
+#: xfce-utils.xml:387(para)
+msgid ""
+"Right clicking on the title bar will open a menu that gives access to all "
+"window operations."
+msgstr ""
+
+#: xfce-utils.xml:389(para)
+msgid ""
+"Shading a window, which means collapsing it to only show the title bar, can "
+"also be accomplished by using the mouse wheel over the title bar. Mouse "
+"wheel up is shade, mouse wheel down is unshade."
+msgstr ""
+
+#: xfce-utils.xml:394(para)
+msgid ""
+"If you want maximized windows to not cover the entire screen you can set "
+"workspace margins from the settings manager dialog (see below)."
+msgstr ""
+
+#: xfce-utils.xml:402(term)
+msgid "Application management"
+msgstr ""
+
+#: xfce-utils.xml:404(para)
+msgid ""
+"To find out what applications are currently running you can look at the task "
+"list on the top panel. Clicking on a button in the task list will focus the "
+"associated application. Clicking again will hide it."
+msgstr ""
+
+#: xfce-utils.xml:409(para)
+msgid ""
+"When you click with the middle mouse button on the desktop background a list "
+"of windows is shown, ordered by workspace. You can activate the application "
+"or change workspaces by choosing the appropriate menu entry."
+msgstr ""
+
+#: xfce-utils.xml:418(term)
+msgid "Workspaces"
+msgstr ""
+
+#: xfce-utils.xml:420(para)
+msgid ""
+"You can change workspaces by clicking on them in the graphical pager, either "
+"on the taskbar or on the panel. Pressing <keycap>Ctrl+Alt+LeftArrow</keycap> "
+"or <keycap>Ctrl+Alt+RightArrow</keycap> will cycle through the workspaces. "
+"Using the mousewheel over the pager or the desktop background has the same "
+"effect."
+msgstr ""
+
+#: xfce-utils.xml:427(para)
+msgid ""
+"To add or remove workspaces you can use the middle click desktop menu or the "
+"settings dialog (see below)."
+msgstr ""
+
+#: xfce-utils.xml:437(title)
+msgid "Using the settings manager dialog"
+msgstr ""
+
+#: xfce-utils.xml:439(para)
+msgid ""
+"The settings manager dialog provides access to the global preferences of "
+"many Xfce applications. You can run it by pressing its launcher on the "
+"panel, from the desktop mouse menu or by running <application>xfce-setting-"
+"show</application>."
+msgstr ""
+
+#: xfce-utils.xml:445(para)
+msgid ""
+"Dialogs to change many aspects of the Xfce Desktop Environment are "
+"available. See the separate manuals of the Xfce components for more "
+"information. It may be interesting to have a quick look at all the dialogs "
+"to find out what options are available that allow you to create the best "
+"possible working environment."
+msgstr ""
+
+#: xfce-utils.xml:455(title)
+msgid "Further Reading"
+msgstr ""
+
+#: xfce-utils.xml:457(para)
+msgid ""
+"This user guide has only given a very general overview of the Xfce Desktop "
+"Environment. More information is available in the <ulink url=\"index.html\" "
+"type=\"html\">manuals</ulink> of the separate components of Xfce."
+msgstr ""
+
+#: xfce-utils.xml:467(title)
+msgid "Components of Xfce"
+msgstr ""
+
+#: xfce-utils.xml:469(para)
+msgid ""
+"The Xfce components are packaged separately. This section contains a list of "
+"the available modules with a short description."
+msgstr ""
+
+#: xfce-utils.xml:476(term)
+msgid "libxfce4util"
+msgstr ""
+
+#: xfce-utils.xml:478(para)
+msgid "Library with non-graphical helper functions."
+msgstr ""
+
+#: xfce-utils.xml:483(term)
+msgid "libxfcegui4"
+msgstr ""
+
+#: xfce-utils.xml:485(para)
+msgid "Widget library and X Window System interaction."
+msgstr ""
+
+#: xfce-utils.xml:490(term)
+msgid "libexo"
+msgstr ""
+
+#: xfce-utils.xml:492(para)
+msgid ""
+"A library created for the Thunar file manager, containing many useful "
+"functions for applications designed for Xfce."
+msgstr ""
+
+#: xfce-utils.xml:499(term)
+msgid "libxfce4mcs"
+msgstr ""
+
+#: xfce-utils.xml:501(para)
+msgid "Settings management library used by many Xfce components."
+msgstr ""
+
+#: xfce-utils.xml:507(term)
+msgid "xfce-mcs-manager"
+msgstr ""
+
+#: xfce-utils.xml:509(para)
+msgid ""
+"Settings manager. Runs in the background and provides global settings "
+"information to other Xfce components. There is a main control panel to "
+"access the configuration dialogs of Xfce components."
+msgstr ""
+
+#: xfce-utils.xml:518(term)
+msgid "xfce-mcs-plugins"
+msgstr ""
+
+#: xfce-utils.xml:520(para)
+msgid ""
+"Settings manager plugins. These plugins provide settings dialogs for general "
+"items that are not part of a package, e.g. user interface settings (Gtk+ "
+"theme, icon theme, font settings), mouse settings, keyboard settings and "
+"display settings."
+msgstr ""
+
+#: xfce-utils.xml:529(term)
+msgid "xfce4-session"
+msgstr ""
+
+#: xfce-utils.xml:531(para)
+msgid ""
+"Session manager. The session manager controls the startup and shutdown of "
+"the Xfce Desktop Environment. On logout it can save the state of running "
+"applications (if the application supports it) and restore them properly "
+"again the next time you log in."
+msgstr ""
+
+#: xfce-utils.xml:540(term)
+msgid "xfwm4"
+msgstr ""
+
+#: xfce-utils.xml:542(para)
+msgid ""
+"The Xfce window mananger. Manages the placement of application windows on "
+"the screen, provides window decorations and manages workspaces."
+msgstr ""
+
+#: xfce-utils.xml:550(term)
+msgid "xfce4-panel"
+msgstr ""
+
+#: xfce-utils.xml:552(para)
+msgid ""
+"The Xfce panel. Provides program lauchers, a workspace switcher, a clock, "
+"menus and more."
+msgstr ""
+
+#: xfce-utils.xml:559(term)
+msgid "xfdesktop"
+msgstr ""
+
+#: xfce-utils.xml:561(para)
+msgid ""
+"Desktop background manager. This program sets the background image and/or "
+"color, and provides a root window menu, a menu panel plugin and a menu "
+"editor. Optionally, it can show icons on the desktop as well."
+msgstr ""
+
+#: xfce-utils.xml:570(term)
+msgid "xfce-utils"
+msgstr ""
+
+#: xfce-utils.xml:572(para)
+msgid ""
+"Essential utilities and scripts. Provides the Xfce about dialog, a run "
+"dialog, the startxfce4 script and several other important scripts. Also "
+"contains this user guide."
+msgstr ""
+
+#: xfce-utils.xml:580(term)
+msgid "Thunar"
+msgstr ""
+
+#: xfce-utils.xml:582(para)
+msgid "A fast and efficient file manager."
+msgstr ""
+
+#: xfce-utils.xml:587(term)
+msgid "xfprint"
+msgstr ""
+
+#: xfce-utils.xml:589(para)
+msgid ""
+"Printing support. Provides a graphical frontend for printing. Includes "
+"<application>xfprint4</application> and <application>xfprint-manager</"
+"application>."
+msgstr ""
+
+#: xfce-utils.xml:597(term)
+msgid "xfce4-appfinder"
+msgstr ""
+
+#: xfce-utils.xml:599(para)
+msgid ""
+"An application finder that allows you to search, launch and find information "
+"about applications installed on your system."
+msgstr ""
+
+#: xfce-utils.xml:606(term)
+msgid "orage"
+msgstr ""
+
+#: xfce-utils.xml:608(para)
+msgid "Simple calendar application with reminders."
+msgstr ""
+
+#: xfce-utils.xml:613(term)
+msgid "gtk-xfce-engine-2"
+msgstr ""
+
+#: xfce-utils.xml:615(para)
+msgid ""
+"Theme engine for GTK2. Not required for the desktop, but it's a nice theme "
+"engine so you might just as well give it a try."
+msgstr ""
+
+#: xfce-utils.xml:622(term)
+msgid "xfce4-icon-theme"
+msgstr ""
+
+#: xfce-utils.xml:624(para)
+msgid "Default icon theme for Xfce, called <emphasis>Rodent</emphasis>."
+msgstr ""
+
+#: xfce-utils.xml:632(title)
+msgid "Installing Xfce4"
+msgstr ""
+
+#: xfce-utils.xml:635(title)
+msgid "Binary packages"
+msgstr ""
+
+#: xfce-utils.xml:637(para)
+msgid ""
+"The Xfce project officially only releases source code for the desktop "
+"environment. However, binary packages may have been contributed by other "
+"people for your OS or distribution."
+msgstr ""
+
+#: xfce-utils.xml:642(para)
+msgid ""
+"Look at the Xfce site for <ulink url=\"http://xfce.org/index.php?"
+"page=download\" type=\"html\">download locations</ulink> and additional "
+"information about available binary packages. If you could not find binary "
+"packages for your OS, they may be available from your OS vendor or "
+"distributor, or you can install Xfce from source."
+msgstr ""
+
+#: xfce-utils.xml:652(title)
+msgid "Graphical installers"
+msgstr ""
+
+#: xfce-utils.xml:654(para)
+msgid ""
+"The easiest way to install Xfce from source is by using the <ulink url="
+"\"http://www.xfce.org/archive/xfce-4.4.0/installers/\" type=\"html"
+"\">graphical installers</ulink>. Documentation and instructions are "
+"available."
+msgstr ""
+
+#: xfce-utils.xml:662(title)
+msgid "Building from source"
+msgstr ""
+
+#: xfce-utils.xml:664(para)
+msgid ""
+"To compile Xfce manually, look at the Xfce site for <ulink url=\"http://xfce."
+"org/index.php?page=download\" type=\"html\">download locations</ulink>."
+msgstr ""
+
+#: xfce-utils.xml:672(programlisting)
+#, no-wrap
+msgid "./configure && make && make install"
+msgstr ""
+
+#: xfce-utils.xml:669(para)
+msgid ""
+"Building the packages should be a simple matter of unpacking the tarballs "
+"and, from the top source directory, typing: <placeholder-1/> Some package "
+"will have extra configure options available. You can find them by typing "
+"<command>./configure <option>--help</option></command>."
+msgstr ""
+
+#: xfce-utils.xml:678(para)
+msgid ""
+"Xfce @PACKAGE_VERSION@ depends on pkg-config and GTK+ >= 2.6. If you "
+"installed these from a binary package, make sure you have the corresponding "
+"<filename>-dev</filename> packages installed as well."
+msgstr ""
+
+#: xfce-utils.xml:683(para)
+msgid ""
+"Optionally you can install librsvg >= 2.2, for SVG icon support, "
+"libstartup-notification, to have a busy cursor when loading applications "
+"that support this standard and dbus for enhanced functionality, mainly in "
+"Thunar and xfdesktop."
+msgstr ""
+
+#: xfce-utils.xml:689(para)
+msgid ""
+"If you install into a different prefix from pkg-config, you have to set the "
+"PKG_CONFIG_PATH variable to include the path to the *.pc files installed by "
+"the Xfce 4 libraries, which is ${prefix}/lib/pkgconfig. For example:"
+msgstr ""
+
+#: xfce-utils.xml:695(programlisting)
+#, no-wrap
+msgid "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig"
+msgstr ""
+
+#: xfce-utils.xml:700(title)
+msgid "Using SVN"
+msgstr ""
+
+#: xfce-utils.xml:702(para)
+msgid ""
+"The latest development sources for Xfce 4 are available from subversion "
+"(SVN)."
+msgstr ""
+
+#: xfce-utils.xml:706(para)
+msgid ""
+"Look <ulink url=\"http://xfce.org/index.php?page=documentation&"
+"lang=en#install\" type=\"html\">here</ulink> for information on how to "
+"obtain the latest development updates from SVN. You can also browse the SVN "
+"tree through a web interface."
+msgstr ""
+
+#: xfce-utils.xml:716(title)
+msgid "Additional software"
+msgstr ""
+
+#: xfce-utils.xml:718(para)
+msgid ""
+"The <ulink url=\"http://goodies.xfce.org\" type=\"html\">Xfce Goodies</"
+"ulink> project collects third-party contributions for Xfce. There are some "
+"excellent panel plugins available that greatly enhance the functionality of "
+"Xfce."
+msgstr ""
+
+#: xfce-utils.xml:724(para)
+msgid ""
+"<ulink url=\"http://spuriousinterrupt.org/projects/xfmedia/\" type=\"html"
+"\">Xfmedia</ulink> is a lightweight media player for Xfce, based on the xine "
+"engine."
+msgstr ""
+
+#: xfce-utils.xml:730(para)
+msgid ""
+"<ulink url=\"http://terminal.os-cillation.com/\" type=\"html\">Terminal</"
+"ulink> is an easy to use terminal emulator for the Xfce Desktop Environment. "
+"It contains all feature you would expect from a modern terminal emulator."
+msgstr ""
+
+#: xfce-utils.xml:741(title)
+msgid "Copyright and Licences"
+msgstr ""
+
+#: xfce-utils.xml:743(para)
+msgid ""
+"Xfce 4 is copyright © Olivier Fourdan (<email>fourdan at xfce.org</"
+"email>). The different components are copyrighted by their respective "
+"authors."
+msgstr ""
+
+#: xfce-utils.xml:748(para)
+msgid ""
+"Three different licenses are used in the Xfce 4 project: <link linkend=\"BSD"
+"\">BSD</link>, <link linkend=\"LGPL\">LGPL</link> and <link linkend=\"GPL"
+"\">GPL</link>."
+msgstr ""
+
+#: xfce-utils.xml:752(para)
+msgid ""
+"Please, refer to the COPYING files included in the packages for the "
+"licensing terms of the separate Xfce 4 components."
+msgstr ""
+
+#: xfce-utils.xml:767(year)
+msgid "2004"
+msgstr ""
+
+#: xfce-utils.xml:767(holder)
+msgid "Benedikt Meurer"
+msgstr ""
+
+#: xfce-utils.xml:793(email)
+msgid "benedikt.meurer at unix-ag.uni-siegen.de"
+msgstr ""
+
+#: xfce-utils.xml:798(releaseinfo)
+msgid ""
+"This manual describes the @PACKAGE_NAME@ package, version @PACKAGE_VERSION at ."
+msgstr ""
+
+#: xfce-utils.xml:800(title)
+msgid "Xfce Utilities and Scripts"
+msgstr ""
+
+#: xfce-utils.xml:804(para)
+msgid ""
+"The <application>@PACKAGE_NAME@</application> package provides the general "
+"'About Xfce 4' dialog, a run dialog and several useful scripts that are also "
+"used by other Xfce components such as the panel and the desktop menu."
+msgstr ""
+
+#: xfce-utils.xml:816(title)
+msgid "Run dialog"
+msgstr ""
+
+#: xfce-utils.xml:824(phrase)
+msgid "Shows the run dialog."
+msgstr ""
+
+#: xfce-utils.xml:830(para)
+msgid ""
+"The run dialog allows the user to launch applications. Applications can be "
+"run in a Terminal emulator (Terminal by default, see xfterm4 script below). "
+"In a default Xfce environment, the Alt+F2 key combination will open the run "
+"dialog."
+msgstr ""
+
+#: xfce-utils.xml:840(title)
+msgid "About Dialog"
+msgstr ""
+
+#: xfce-utils.xml:843(title)
+msgid "About dialog"
+msgstr ""
+
+#: xfce-utils.xml:850(phrase)
+msgid "Shows the About Dialog displaying the credits page."
+msgstr ""
+
+#: xfce-utils.xml:857(para)
+msgid ""
+"The About Dialog is used to display information about Xfce 4, including a "
+"list of components, a credits page for all people who helped to create Xfce "
+"4 and license information."
+msgstr ""
+
+#: xfce-utils.xml:866(title)
+msgid "Scripts"
+msgstr ""
+
+#: xfce-utils.xml:870(term)
+msgid "startxfce4"
+msgstr ""
+
+#: xfce-utils.xml:872(para)
+msgid ""
+"The <application>startxfce4</application> is a convenient script to start an "
+"Xfce 4 session from the console. It will give you a session with two panels "
+"and with the desktop manager and window manager running."
+msgstr ""
+
+#: xfce-utils.xml:879(para)
+msgid ""
+"To customize the behaviour of <application>startxfce4</application>, copy "
+"the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to your "
+"personal <filename>~/.config/xfce4/</filename> directory and edit that file. "
+"If you install from source, <filename>${sysconfdir}</filename> defaults to "
+"<filename>/usr/local/etc</filename>; for binary packages it is usually set "
+"to <filename>/etc</filename>."
+msgstr ""
+
+#: xfce-utils.xml:889(para)
+msgid ""
+"With the inclusion of a session manager in Xfce 4.2, the preferred way to "
+"change startup behaviour is by using the \"Save session\" option in the "
+"logout dialog."
+msgstr ""
+
+#: xfce-utils.xml:898(term)
+msgid "xfhelp4"
+msgstr ""
+
+#: xfce-utils.xml:900(para)
+msgid ""
+"This script is used to open the local Xfce 4 documentation in a browser. By "
+"default it will try to use <application>exo-open</application> from the "
+"libexo library. You can change the preferred browser from the Xfce Settings "
+"Manager dialog. If <application>exo-open</application> is not available, the "
+"script will try a number of well-known browsers, like firefox, galeon or "
+"konqueror, but you can change that by setting the $BROWSER environment "
+"variable."
+msgstr ""
+
+#: xfce-utils.xml:911(para)
+msgid ""
+"If there is documentation installed in the language of your current locale, "
+"xfhelp4 will open that instead of the default English documentation."
+msgstr ""
+
+#: xfce-utils.xml:920(term)
+msgid "xflock4"
+msgstr ""
+
+#: xfce-utils.xml:922(para)
+msgid ""
+"This script is used by the panel to lock the screen using xscreensaver if "
+"available and falling back to xlock."
+msgstr ""
+
+#: xfce-utils.xml:933(title)
+msgid "About xfce-utils"
+msgstr ""
+
+#: xfce-utils.xml:935(para)
+msgid ""
+"<application>@PACKAGE_NAME@</application> was written by Jasper Huijsmans "
+"(<email>jasper at xfce.org</email>), Olivier Fourdan (<email>fourdan at xfce.org</"
+"email>) and Benedikt Meurer (<email>benny at xfce.org</email>). To find more "
+"information, visit the <ulink url=\"http://www.xfce.org\" type=\"http\">Xfce "
+"web site</ulink>."
+msgstr ""
+
+#: xfce-utils.xml:944(para)
+msgid ""
+"To report a bug or make a suggestion regarding this application or this "
+"manual, please use the bug tracking system at <ulink url=\"http://bugzilla."
+"xfce.org/\" type=\"http\">http://bugzilla.xfce.org/</ulink>."
+msgstr ""
+
+#: xfce-utils.xml:951(para)
+msgid ""
+"If you have questions about the use or installation of this package, ask on "
+"the <ulink url=\"http://lunar-linux.org/mailman/listinfo/xfce\" type=\"http"
+"\">xfce</ulink> mailing list. Development discussion takes place on the "
+"<ulink url=\"http://lunar-linux.org/mailman/listinfo/xfce4-dev\" type=\"http"
+"\">xfce4-dev</ulink> mailing list."
+msgstr ""
+
+#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
+#: xfce-utils.xml:0(None)
+msgid "translator-credits"
+msgstr ""
diff --git a/doc/manual/po/xfce-utils.pot b/doc/manual/po/xfce-utils.pot
new file mode 100644
index 0000000..a768372
--- /dev/null
+++ b/doc/manual/po/xfce-utils.pot
@@ -0,0 +1,732 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-08-28 16:12+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=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. When image changes, this message will be marked fuzzy or untranslated for you.
+#. It doesn't matter what you translate it to: it's not used at all.
+#: ./xfce-utils.xml:221(None)
+msgid "@@image: 'images/default-session.png'; md5=44695a28b431354c5e7ae9d172451007"
+msgstr ""
+
+#. When image changes, this message will be marked fuzzy or untranslated for you.
+#. It doesn't matter what you translate it to: it's not used at all.
+#: ./xfce-utils.xml:820(None)
+msgid "@@image: 'images/run-dialog.png'; md5=f2c3c1e622304bbd44f951f8e5ac7eee"
+msgstr ""
+
+#. When image changes, this message will be marked fuzzy or untranslated for you.
+#. It doesn't matter what you translate it to: it's not used at all.
+#: ./xfce-utils.xml:847(None)
+msgid "@@image: 'images/about-dialog.png'; md5=01d189f346aec15d60b9e13632799847"
+msgstr ""
+
+#: ./xfce-utils.xml:14(title)
+msgid "The Xfce Desktop Environment"
+msgstr ""
+
+#: ./xfce-utils.xml:21(title)
+msgid "Xfce Documentation"
+msgstr ""
+
+#: ./xfce-utils.xml:23(para)
+msgid "The documentation for Xfce is installed with the different components that make up the desktop environment. As a consequence, some of the documents listed here may not be available on your system."
+msgstr ""
+
+#: ./xfce-utils.xml:29(title)
+msgid "Guides"
+msgstr ""
+
+#: ./xfce-utils.xml:32(link) ./xfce-utils.xml:93(title)
+msgid "Xfce User Guide"
+msgstr ""
+
+#: ./xfce-utils.xml:37(title)
+msgid "Manuals"
+msgstr ""
+
+#: ./xfce-utils.xml:38(para)
+msgid "As a limitation to HTML only the English versions of the manuals are linked below."
+msgstr ""
+
+#: ./xfce-utils.xml:40(ulink) ./xfce-utils.xml:238(term)
+msgid "Panel"
+msgstr ""
+
+#: ./xfce-utils.xml:41(ulink) ./xfce-utils.xml:290(term)
+msgid "Window Manager"
+msgstr ""
+
+#: ./xfce-utils.xml:42(ulink)
+msgid "Session Manager"
+msgstr ""
+
+#: ./xfce-utils.xml:43(ulink) ./xfce-utils.xml:267(term)
+msgid "Desktop Manager"
+msgstr ""
+
+#: ./xfce-utils.xml:44(link)
+msgid "Utilities and Scripts"
+msgstr ""
+
+#: ./xfce-utils.xml:45(ulink)
+msgid "Preferred Applications"
+msgstr ""
+
+#: ./xfce-utils.xml:46(ulink)
+msgid "File Manager"
+msgstr ""
+
+#: ./xfce-utils.xml:54(year) ./xfce-utils.xml:763(year)
+msgid "2006"
+msgstr ""
+
+#: ./xfce-utils.xml:55(holder) ./xfce-utils.xml:763(holder)
+msgid "Jasper Huijsmans"
+msgstr ""
+
+#: ./xfce-utils.xml:59(para) ./xfce-utils.xml:771(para)
+msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. The complete license text is available from the <ulink type=\"http\" url=\"http://www.gnu.org/\">Free Software Foundation</ulink>."
+msgstr ""
+
+#: ./xfce-utils.xml:71(firstname) ./xfce-utils.xml:784(firstname)
+msgid "Jasper"
+msgstr ""
+
+#: ./xfce-utils.xml:72(surname) ./xfce-utils.xml:784(surname)
+msgid "Huijsmans"
+msgstr ""
+
+#: ./xfce-utils.xml:75(email) ./xfce-utils.xml:786(email)
+msgid "jasper at xfce.org"
+msgstr ""
+
+#: ./xfce-utils.xml:80(firstname) ./xfce-utils.xml:791(firstname)
+msgid "Benedikt"
+msgstr ""
+
+#: ./xfce-utils.xml:81(surname) ./xfce-utils.xml:791(surname)
+msgid "Meurer"
+msgstr ""
+
+#: ./xfce-utils.xml:84(email)
+msgid "benny at xfce.org"
+msgstr ""
+
+#: ./xfce-utils.xml:89(releaseinfo)
+msgid "This manual describes version @PACKAGE_VERSION@ of Xfce."
+msgstr ""
+
+#: ./xfce-utils.xml:96(emphasis)
+msgid "... and mice fly ..."
+msgstr ""
+
+#: ./xfce-utils.xml:101(title)
+msgid "Preface"
+msgstr ""
+
+#: ./xfce-utils.xml:103(para)
+msgid "This document gives an overview of the Xfce Desktop Environment and explains how to perform several common tasks. It is meant to be a starting point for anyone who wants to use Xfce and it includes pointers to other sources of information."
+msgstr ""
+
+#: ./xfce-utils.xml:113(title) ./xfce-utils.xml:802(title)
+msgid "Introduction"
+msgstr ""
+
+#: ./xfce-utils.xml:115(para)
+msgid "Xfce is a lightweight desktop environment for unix-like operating systems. It aims to be fast and light on system resources, while still being visually appealing and easy to use."
+msgstr ""
+
+#: ./xfce-utils.xml:120(para)
+msgid "Xfce embodies the traditional UNIX philosophy of modularity and re-usability. All of Xfce's core components can be build and installed separately. Xfce 4 is based on the <ulink url=\"http://www.gtk.org\" type=\"html\">GTK+ toolkit</ulink> version 2."
+msgstr ""
+
+#: ./xfce-utils.xml:127(para)
+msgid "Adhereance to standards is one of the main design goals of Xfce 4, specifically those defined at <ulink url=\"http://www.freedesktop.org\" type=\"html\">Freedesktop.org</ulink>. This allows Xfce 4 to seamlessly interoperate with programs written for other desktop environments that follow these specifications."
+msgstr ""
+
+#: ./xfce-utils.xml:135(para)
+msgid "Xfce is all free software. The separate components are released under either the BSD license, the GNU LGPL or the GNU GPL (see <xref linkend=\"xfce4-copyright\"/> for details)."
+msgstr ""
+
+#: ./xfce-utils.xml:142(title)
+msgid "Resources"
+msgstr ""
+
+#: ./xfce-utils.xml:144(para)
+msgid "If you are looking for specific information about Xfce 4, chances are you can obtain it from one of the resources in this list:"
+msgstr ""
+
+#: ./xfce-utils.xml:151(ulink)
+msgid "Xfce website"
+msgstr ""
+
+#: ./xfce-utils.xml:154(ulink)
+msgid "User mailing list"
+msgstr ""
+
+#: ./xfce-utils.xml:157(ulink)
+msgid "Development mailing list"
+msgstr ""
+
+#: ./xfce-utils.xml:160(ulink)
+msgid "Xfce Forum"
+msgstr ""
+
+#: ./xfce-utils.xml:163(ulink)
+msgid "Bug tracker"
+msgstr ""
+
+#: ./xfce-utils.xml:171(title)
+msgid "Using Xfce4"
+msgstr ""
+
+#: ./xfce-utils.xml:174(title)
+msgid "Getting started"
+msgstr ""
+
+#: ./xfce-utils.xml:176(para)
+msgid "Use <application>startxfce4</application> to start an Xfce session, which includes the session manager, the panel, the window manager and the desktop manager."
+msgstr ""
+
+#: ./xfce-utils.xml:182(para)
+msgid "By default the Xfce session manager manages the startup of applications. It allows you to save your session when you quit Xfce, so that the next time you log in, the same applications will be started for you automatically."
+msgstr ""
+
+#: ./xfce-utils.xml:189(para)
+msgid "To customize the behaviour of <application>startxfce4</application>, copy the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to your personal <filename role=\"directory\">~/.config/xfce4/</filename> directory and edit that file. Depending on your installation method the location of the system <filename>xinitrc</filename> file may be different. If you install from source, <filename role=\"directory\">${sysconfdir}</filename> defaults to <filename role=\"directory\">/usr/local/etc/</filename>. For binary packages it is often set to <filename role=\"directory\">/etc/</filename>, <filename role=\"directory\">/etc/X11</filename>, <filename role=\"directory\">/usr/pkg/etc</filename> or <filename role=\"directory\">/usr/X11R6/etc</filename>; you can use your package manager to find out."
+msgstr ""
+
+#: ./xfce-utils.xml:208(title)
+msgid "The Default Desktop"
+msgstr ""
+
+#: ./xfce-utils.xml:210(para)
+msgid "The Xfce Desktop Environment is not a single entity that provides all funtionality, but rather it tries to adhere to the old UNIX tradition of small tools that do one job and do it well. A default Xfce desktop with no applications running is shown in <xref linkend=\"default-session-fig\"/>."
+msgstr ""
+
+#: ./xfce-utils.xml:217(title)
+msgid "Default Xfce 4 session"
+msgstr ""
+
+#: ./xfce-utils.xml:224(phrase)
+msgid "Default Xfce session, with desktop manager and panel."
+msgstr ""
+
+#: ./xfce-utils.xml:231(para)
+msgid "When you run <application>startxfce4</application> for the first time, several applications are started by the Xfce session manager:"
+msgstr ""
+
+#: ./xfce-utils.xml:240(para)
+msgid "In a default session there is a full width panel at the top of the screen and a smaller one at the bottom. The <application>xfce4-panel</application> application manages all panels on the screen."
+msgstr ""
+
+#: ./xfce-utils.xml:246(para)
+msgid "The top panel shows a graphical pager with a miniature view of all workspaces, a task list showing all applications running on the current workspace and a system tray to show status icons that are used for example by some media players or instant messaging applications."
+msgstr ""
+
+#: ./xfce-utils.xml:253(para)
+msgid "The bottom panel contains several application launchers and a clock. You can right-click on any panel item to get a menu that allows you to change its properties, add or remove new items or to change the properties of the panel itself."
+msgstr ""
+
+#: ./xfce-utils.xml:259(para)
+msgid "For more information, have a look at the <ulink url=\"xfce4-panel.html\" type=\"html\">panel manual</ulink>."
+msgstr ""
+
+#: ./xfce-utils.xml:269(para)
+msgid "The desktop manager provides the desktop background image and two menus when you click on the desktop background. Optionally, it can show icons on the desktop, either for minimized applications or for files in the <filename>~/Desktop</filename> folder."
+msgstr ""
+
+#: ./xfce-utils.xml:275(para)
+msgid "The right mouse button opens a menu that allows you to start applications. Look at the <ulink url=\"xfdesktop.html\" type=\"html\">manual</ulink> to find out how to change the menu contents."
+msgstr ""
+
+#: ./xfce-utils.xml:282(para)
+msgid "The middle mouse button (or Shift + left click) opens a list of all applications that are currently running. You can activate an application by clicking on its menu entry."
+msgstr ""
+
+#: ./xfce-utils.xml:292(para)
+msgid "The window manager is responsible for placing the windows on the screen and provides the window borders and decorations. It allows you to move windows around by draggin the titlebar and provides title bar buttons, for example to close, minimize or maximize a window. Look at the <ulink url=\"xfwm4.html\" type=\"html\">manual</ulink> for a full explanation of the window manager settings."
+msgstr ""
+
+#: ./xfce-utils.xml:304(term)
+msgid "Settings Manager"
+msgstr ""
+
+#: ./xfce-utils.xml:306(para)
+msgid "The settings manager runs in the background and makes sure that all Xfce applications update their settings when the user changes something in the settings manager dialog (see following section) and it takes care of reading the configuration from disk at startup. Have a look at the <ulink url=\"xfce-mcs-manager.html\" type=\"html\">Settings Manager</ulink> and <ulink url=\"xfce-mcs-plugins.html\" type=\"html\">Settings Plugins</ulink> manuals for a full explanation of the settings manager."
+msgstr ""
+
+#: ./xfce-utils.xml:322(title)
+msgid "Common Tasks"
+msgstr ""
+
+#: ./xfce-utils.xml:324(para)
+msgid "This section will explain how to perform several common tasks to quickly get you started working with Xfce 4. Because that is what Xfce 4 is designed for, to allow you to get work done."
+msgstr ""
+
+#: ./xfce-utils.xml:330(title)
+msgid "Running programs"
+msgstr ""
+
+#: ./xfce-utils.xml:334(term)
+msgid "Xfce Panel"
+msgstr ""
+
+#: ./xfce-utils.xml:336(para)
+msgid "The panel is designed to allow quick access to the most frequently used applications by putting them on the main panel. Less often used applications can be put in a launcher menu."
+msgstr ""
+
+#: ./xfce-utils.xml:344(term)
+msgid "Desktop Menu"
+msgstr ""
+
+#: ./xfce-utils.xml:346(para)
+msgid "Another method for starting applications is from the desktop mouse menu. Read the <ulink url=\"xfdesktop.html\" type=\"html\">Desktop Manager manual</ulink> for information on how to change the menu contents."
+msgstr ""
+
+#: ./xfce-utils.xml:355(term) ./xfce-utils.xml:813(title)
+msgid "Run Dialog"
+msgstr ""
+
+#: ./xfce-utils.xml:357(para)
+msgid "If you know the name of a program and it is not on the panel or in the desktop menu you can use the run dialog. To open the dialog type <keycap>Alt+F2</keycap> or choose the <guilabel>Run program...</guilabel> option from the desktop menu."
+msgstr ""
+
+#: ./xfce-utils.xml:363(para)
+msgid "The dialog will remeber the 10 last commands that were executed successfully."
+msgstr ""
+
+#: ./xfce-utils.xml:375(title)
+msgid "Managing windows and workspaces"
+msgstr ""
+
+#: ./xfce-utils.xml:380(term)
+msgid "Basic window operations"
+msgstr ""
+
+#: ./xfce-utils.xml:382(para)
+msgid "You can move windows around the screen by dragging their title bar. A window can be closed, hidden, maximized, shaded and made sticky — this means it will show up on all workspaces — by using the title bar buttons."
+msgstr ""
+
+#: ./xfce-utils.xml:387(para)
+msgid "Right clicking on the title bar will open a menu that gives access to all window operations."
+msgstr ""
+
+#: ./xfce-utils.xml:389(para)
+msgid "Shading a window, which means collapsing it to only show the title bar, can also be accomplished by using the mouse wheel over the title bar. Mouse wheel up is shade, mouse wheel down is unshade."
+msgstr ""
+
+#: ./xfce-utils.xml:394(para)
+msgid "If you want maximized windows to not cover the entire screen you can set workspace margins from the settings manager dialog (see below)."
+msgstr ""
+
+#: ./xfce-utils.xml:402(term)
+msgid "Application management"
+msgstr ""
+
+#: ./xfce-utils.xml:404(para)
+msgid "To find out what applications are currently running you can look at the task list on the top panel. Clicking on a button in the task list will focus the associated application. Clicking again will hide it."
+msgstr ""
+
+#: ./xfce-utils.xml:409(para)
+msgid "When you click with the middle mouse button on the desktop background a list of windows is shown, ordered by workspace. You can activate the application or change workspaces by choosing the appropriate menu entry."
+msgstr ""
+
+#: ./xfce-utils.xml:418(term)
+msgid "Workspaces"
+msgstr ""
+
+#: ./xfce-utils.xml:420(para)
+msgid "You can change workspaces by clicking on them in the graphical pager, either on the taskbar or on the panel. Pressing <keycap>Ctrl+Alt+LeftArrow</keycap> or <keycap>Ctrl+Alt+RightArrow</keycap> will cycle through the workspaces. Using the mousewheel over the pager or the desktop background has the same effect."
+msgstr ""
+
+#: ./xfce-utils.xml:427(para)
+msgid "To add or remove workspaces you can use the middle click desktop menu or the settings dialog (see below)."
+msgstr ""
+
+#: ./xfce-utils.xml:437(title)
+msgid "Using the settings manager dialog"
+msgstr ""
+
+#: ./xfce-utils.xml:439(para)
+msgid "The settings manager dialog provides access to the global preferences of many Xfce applications. You can run it by pressing its launcher on the panel, from the desktop mouse menu or by running <application>xfce-setting-show</application>."
+msgstr ""
+
+#: ./xfce-utils.xml:445(para)
+msgid "Dialogs to change many aspects of the Xfce Desktop Environment are available. See the separate manuals of the Xfce components for more information. It may be interesting to have a quick look at all the dialogs to find out what options are available that allow you to create the best possible working environment."
+msgstr ""
+
+#: ./xfce-utils.xml:455(title)
+msgid "Further Reading"
+msgstr ""
+
+#: ./xfce-utils.xml:457(para)
+msgid "This user guide has only given a very general overview of the Xfce Desktop Environment. More information is available in the <ulink url=\"index.html\" type=\"html\">manuals</ulink> of the separate components of Xfce."
+msgstr ""
+
+#: ./xfce-utils.xml:467(title)
+msgid "Components of Xfce"
+msgstr ""
+
+#: ./xfce-utils.xml:469(para)
+msgid "The Xfce components are packaged separately. This section contains a list of the available modules with a short description."
+msgstr ""
+
+#: ./xfce-utils.xml:476(term)
+msgid "libxfce4util"
+msgstr ""
+
+#: ./xfce-utils.xml:478(para)
+msgid "Library with non-graphical helper functions."
+msgstr ""
+
+#: ./xfce-utils.xml:483(term)
+msgid "libxfcegui4"
+msgstr ""
+
+#: ./xfce-utils.xml:485(para)
+msgid "Widget library and X Window System interaction."
+msgstr ""
+
+#: ./xfce-utils.xml:490(term)
+msgid "libexo"
+msgstr ""
+
+#: ./xfce-utils.xml:492(para)
+msgid "A library created for the Thunar file manager, containing many useful functions for applications designed for Xfce."
+msgstr ""
+
+#: ./xfce-utils.xml:499(term)
+msgid "libxfce4mcs"
+msgstr ""
+
+#: ./xfce-utils.xml:501(para)
+msgid "Settings management library used by many Xfce components."
+msgstr ""
+
+#: ./xfce-utils.xml:507(term)
+msgid "xfce-mcs-manager"
+msgstr ""
+
+#: ./xfce-utils.xml:509(para)
+msgid "Settings manager. Runs in the background and provides global settings information to other Xfce components. There is a main control panel to access the configuration dialogs of Xfce components."
+msgstr ""
+
+#: ./xfce-utils.xml:518(term)
+msgid "xfce-mcs-plugins"
+msgstr ""
+
+#: ./xfce-utils.xml:520(para)
+msgid "Settings manager plugins. These plugins provide settings dialogs for general items that are not part of a package, e.g. user interface settings (Gtk+ theme, icon theme, font settings), mouse settings, keyboard settings and display settings."
+msgstr ""
+
+#: ./xfce-utils.xml:529(term)
+msgid "xfce4-session"
+msgstr ""
+
+#: ./xfce-utils.xml:531(para)
+msgid "Session manager. The session manager controls the startup and shutdown of the Xfce Desktop Environment. On logout it can save the state of running applications (if the application supports it) and restore them properly again the next time you log in."
+msgstr ""
+
+#: ./xfce-utils.xml:540(term)
+msgid "xfwm4"
+msgstr ""
+
+#: ./xfce-utils.xml:542(para)
+msgid "The Xfce window mananger. Manages the placement of application windows on the screen, provides window decorations and manages workspaces."
+msgstr ""
+
+#: ./xfce-utils.xml:550(term)
+msgid "xfce4-panel"
+msgstr ""
+
+#: ./xfce-utils.xml:552(para)
+msgid "The Xfce panel. Provides program lauchers, a workspace switcher, a clock, menus and more."
+msgstr ""
+
+#: ./xfce-utils.xml:559(term)
+msgid "xfdesktop"
+msgstr ""
+
+#: ./xfce-utils.xml:561(para)
+msgid "Desktop background manager. This program sets the background image and/or color, and provides a root window menu, a menu panel plugin and a menu editor. Optionally, it can show icons on the desktop as well."
+msgstr ""
+
+#: ./xfce-utils.xml:570(term)
+msgid "xfce-utils"
+msgstr ""
+
+#: ./xfce-utils.xml:572(para)
+msgid "Essential utilities and scripts. Provides the Xfce about dialog, a run dialog, the startxfce4 script and several other important scripts. Also contains this user guide."
+msgstr ""
+
+#: ./xfce-utils.xml:580(term)
+msgid "Thunar"
+msgstr ""
+
+#: ./xfce-utils.xml:582(para)
+msgid "A fast and efficient file manager."
+msgstr ""
+
+#: ./xfce-utils.xml:587(term)
+msgid "xfprint"
+msgstr ""
+
+#: ./xfce-utils.xml:589(para)
+msgid "Printing support. Provides a graphical frontend for printing. Includes <application>xfprint4</application> and <application>xfprint-manager</application>."
+msgstr ""
+
+#: ./xfce-utils.xml:597(term)
+msgid "xfce4-appfinder"
+msgstr ""
+
+#: ./xfce-utils.xml:599(para)
+msgid "An application finder that allows you to search, launch and find information about applications installed on your system."
+msgstr ""
+
+#: ./xfce-utils.xml:606(term)
+msgid "orage"
+msgstr ""
+
+#: ./xfce-utils.xml:608(para)
+msgid "Simple calendar application with reminders."
+msgstr ""
+
+#: ./xfce-utils.xml:613(term)
+msgid "gtk-xfce-engine-2"
+msgstr ""
+
+#: ./xfce-utils.xml:615(para)
+msgid "Theme engine for GTK2. Not required for the desktop, but it's a nice theme engine so you might just as well give it a try."
+msgstr ""
+
+#: ./xfce-utils.xml:622(term)
+msgid "xfce4-icon-theme"
+msgstr ""
+
+#: ./xfce-utils.xml:624(para)
+msgid "Default icon theme for Xfce, called <emphasis>Rodent</emphasis>."
+msgstr ""
+
+#: ./xfce-utils.xml:632(title)
+msgid "Installing Xfce4"
+msgstr ""
+
+#: ./xfce-utils.xml:635(title)
+msgid "Binary packages"
+msgstr ""
+
+#: ./xfce-utils.xml:637(para)
+msgid "The Xfce project officially only releases source code for the desktop environment. However, binary packages may have been contributed by other people for your OS or distribution."
+msgstr ""
+
+#: ./xfce-utils.xml:642(para)
+msgid "Look at the Xfce site for <ulink url=\"http://xfce.org/index.php?page=download\" type=\"html\">download locations</ulink> and additional information about available binary packages. If you could not find binary packages for your OS, they may be available from your OS vendor or distributor, or you can install Xfce from source."
+msgstr ""
+
+#: ./xfce-utils.xml:652(title)
+msgid "Graphical installers"
+msgstr ""
+
+#: ./xfce-utils.xml:654(para)
+msgid "The easiest way to install Xfce from source is by using the <ulink url=\"http://www.xfce.org/archive/xfce-4.4.0/installers/\" type=\"html\">graphical installers</ulink>. Documentation and instructions are available."
+msgstr ""
+
+#: ./xfce-utils.xml:662(title)
+msgid "Building from source"
+msgstr ""
+
+#: ./xfce-utils.xml:664(para)
+msgid "To compile Xfce manually, look at the Xfce site for <ulink url=\"http://xfce.org/index.php?page=download\" type=\"html\">download locations</ulink>."
+msgstr ""
+
+#: ./xfce-utils.xml:672(programlisting)
+#, no-wrap
+msgid "./configure && make && make install"
+msgstr ""
+
+#: ./xfce-utils.xml:669(para)
+msgid "Building the packages should be a simple matter of unpacking the tarballs and, from the top source directory, typing: <placeholder-1/> Some package will have extra configure options available. You can find them by typing <command>./configure <option>--help</option></command>."
+msgstr ""
+
+#: ./xfce-utils.xml:678(para)
+msgid "Xfce @PACKAGE_VERSION@ depends on pkg-config and GTK+ >= 2.6. If you installed these from a binary package, make sure you have the corresponding <filename>-dev</filename> packages installed as well."
+msgstr ""
+
+#: ./xfce-utils.xml:683(para)
+msgid "Optionally you can install librsvg >= 2.2, for SVG icon support, libstartup-notification, to have a busy cursor when loading applications that support this standard and dbus for enhanced functionality, mainly in Thunar and xfdesktop."
+msgstr ""
+
+#: ./xfce-utils.xml:689(para)
+msgid "If you install into a different prefix from pkg-config, you have to set the PKG_CONFIG_PATH variable to include the path to the *.pc files installed by the Xfce 4 libraries, which is ${prefix}/lib/pkgconfig. For example:"
+msgstr ""
+
+#: ./xfce-utils.xml:695(programlisting)
+#, no-wrap
+msgid "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig"
+msgstr ""
+
+#: ./xfce-utils.xml:700(title)
+msgid "Using SVN"
+msgstr ""
+
+#: ./xfce-utils.xml:702(para)
+msgid "The latest development sources for Xfce 4 are available from subversion (SVN)."
+msgstr ""
+
+#: ./xfce-utils.xml:706(para)
+msgid "Look <ulink url=\"http://xfce.org/index.php?page=documentation&lang=en#install\" type=\"html\">here</ulink> for information on how to obtain the latest development updates from SVN. You can also browse the SVN tree through a web interface."
+msgstr ""
+
+#: ./xfce-utils.xml:716(title)
+msgid "Additional software"
+msgstr ""
+
+#: ./xfce-utils.xml:718(para)
+msgid "The <ulink url=\"http://goodies.xfce.org\" type=\"html\">Xfce Goodies</ulink> project collects third-party contributions for Xfce. There are some excellent panel plugins available that greatly enhance the functionality of Xfce."
+msgstr ""
+
+#: ./xfce-utils.xml:724(para)
+msgid "<ulink url=\"http://spuriousinterrupt.org/projects/xfmedia/\" type=\"html\">Xfmedia</ulink> is a lightweight media player for Xfce, based on the xine engine."
+msgstr ""
+
+#: ./xfce-utils.xml:730(para)
+msgid "<ulink url=\"http://terminal.os-cillation.com/\" type=\"html\">Terminal</ulink> is an easy to use terminal emulator for the Xfce Desktop Environment. It contains all feature you would expect from a modern terminal emulator."
+msgstr ""
+
+#: ./xfce-utils.xml:741(title)
+msgid "Copyright and Licences"
+msgstr ""
+
+#: ./xfce-utils.xml:743(para)
+msgid "Xfce 4 is copyright © Olivier Fourdan (<email>fourdan at xfce.org</email>). The different components are copyrighted by their respective authors."
+msgstr ""
+
+#: ./xfce-utils.xml:748(para)
+msgid "Three different licenses are used in the Xfce 4 project: <link linkend=\"BSD\">BSD</link>, <link linkend=\"LGPL\">LGPL</link> and <link linkend=\"GPL\">GPL</link>."
+msgstr ""
+
+#: ./xfce-utils.xml:752(para)
+msgid "Please, refer to the COPYING files included in the packages for the licensing terms of the separate Xfce 4 components."
+msgstr ""
+
+#: ./xfce-utils.xml:767(year)
+msgid "2004"
+msgstr ""
+
+#: ./xfce-utils.xml:767(holder)
+msgid "Benedikt Meurer"
+msgstr ""
+
+#: ./xfce-utils.xml:793(email)
+msgid "benedikt.meurer at unix-ag.uni-siegen.de"
+msgstr ""
+
+#: ./xfce-utils.xml:798(releaseinfo)
+msgid "This manual describes the @PACKAGE_NAME@ package, version @PACKAGE_VERSION at ."
+msgstr ""
+
+#: ./xfce-utils.xml:800(title)
+msgid "Xfce Utilities and Scripts"
+msgstr ""
+
+#: ./xfce-utils.xml:804(para)
+msgid "The <application>@PACKAGE_NAME@</application> package provides the general 'About Xfce 4' dialog, a run dialog and several useful scripts that are also used by other Xfce components such as the panel and the desktop menu."
+msgstr ""
+
+#: ./xfce-utils.xml:816(title)
+msgid "Run dialog"
+msgstr ""
+
+#: ./xfce-utils.xml:824(phrase)
+msgid "Shows the run dialog."
+msgstr ""
+
+#: ./xfce-utils.xml:830(para)
+msgid "The run dialog allows the user to launch applications. Applications can be run in a Terminal emulator (Terminal by default, see xfterm4 script below). In a default Xfce environment, the Alt+F2 key combination will open the run dialog."
+msgstr ""
+
+#: ./xfce-utils.xml:840(title)
+msgid "About Dialog"
+msgstr ""
+
+#: ./xfce-utils.xml:843(title)
+msgid "About dialog"
+msgstr ""
+
+#: ./xfce-utils.xml:850(phrase)
+msgid "Shows the About Dialog displaying the credits page."
+msgstr ""
+
+#: ./xfce-utils.xml:857(para)
+msgid "The About Dialog is used to display information about Xfce 4, including a list of components, a credits page for all people who helped to create Xfce 4 and license information."
+msgstr ""
+
+#: ./xfce-utils.xml:866(title)
+msgid "Scripts"
+msgstr ""
+
+#: ./xfce-utils.xml:870(term)
+msgid "startxfce4"
+msgstr ""
+
+#: ./xfce-utils.xml:872(para)
+msgid "The <application>startxfce4</application> is a convenient script to start an Xfce 4 session from the console. It will give you a session with two panels and with the desktop manager and window manager running."
+msgstr ""
+
+#: ./xfce-utils.xml:879(para)
+msgid "To customize the behaviour of <application>startxfce4</application>, copy the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to your personal <filename>~/.config/xfce4/</filename> directory and edit that file. If you install from source, <filename>${sysconfdir}</filename> defaults to <filename>/usr/local/etc</filename>; for binary packages it is usually set to <filename>/etc</filename>."
+msgstr ""
+
+#: ./xfce-utils.xml:889(para)
+msgid "With the inclusion of a session manager in Xfce 4.2, the preferred way to change startup behaviour is by using the \"Save session\" option in the logout dialog."
+msgstr ""
+
+#: ./xfce-utils.xml:898(term)
+msgid "xfhelp4"
+msgstr ""
+
+#: ./xfce-utils.xml:900(para)
+msgid "This script is used to open the local Xfce 4 documentation in a browser. By default it will try to use <application>exo-open</application> from the libexo library. You can change the preferred browser from the Xfce Settings Manager dialog. If <application>exo-open</application> is not available, the script will try a number of well-known browsers, like firefox, galeon or konqueror, but you can change that by setting the $BROWSER environment variable."
+msgstr ""
+
+#: ./xfce-utils.xml:911(para)
+msgid "If there is documentation installed in the language of your current locale, xfhelp4 will open that instead of the default English documentation."
+msgstr ""
+
+#: ./xfce-utils.xml:920(term)
+msgid "xflock4"
+msgstr ""
+
+#: ./xfce-utils.xml:922(para)
+msgid "This script is used by the panel to lock the screen using xscreensaver if available and falling back to xlock."
+msgstr ""
+
+#: ./xfce-utils.xml:933(title)
+msgid "About xfce-utils"
+msgstr ""
+
+#: ./xfce-utils.xml:935(para)
+msgid "<application>@PACKAGE_NAME@</application> was written by Jasper Huijsmans (<email>jasper at xfce.org</email>), Olivier Fourdan (<email>fourdan at xfce.org</email>) and Benedikt Meurer (<email>benny at xfce.org</email>). To find more information, visit the <ulink url=\"http://www.xfce.org\" type=\"http\">Xfce web site</ulink>."
+msgstr ""
+
+#: ./xfce-utils.xml:944(para)
+msgid "To report a bug or make a suggestion regarding this application or this manual, please use the bug tracking system at <ulink url=\"http://bugzilla.xfce.org/\" type=\"http\">http://bugzilla.xfce.org/</ulink>."
+msgstr ""
+
+#: ./xfce-utils.xml:951(para)
+msgid "If you have questions about the use or installation of this package, ask on the <ulink url=\"http://lunar-linux.org/mailman/listinfo/xfce\" type=\"http\">xfce</ulink> mailing list. Development discussion takes place on the <ulink url=\"http://lunar-linux.org/mailman/listinfo/xfce4-dev\" type=\"http\">xfce4-dev</ulink> mailing list."
+msgstr ""
+
+#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2
+#: ./xfce-utils.xml:0(None)
+msgid "translator-credits"
+msgstr ""
+
diff --git a/doc/xfce.xsl b/doc/manual/xfce-utils-html.xsl
similarity index 95%
rename from doc/xfce.xsl
rename to doc/manual/xfce-utils-html.xsl
index b43969c..9f107ad 100644
--- a/doc/xfce.xsl
+++ b/doc/manual/xfce-utils-html.xsl
@@ -4,15 +4,19 @@
                 xmlns="http://www.w3.org/TR/xhtml1/transitional"
                 exclude-result-prefixes="#default">
 
-<!-- Load chunks.xsl stylesheet 
-     TODO: how can I put a location independent link here?
-This should work. The url can be translated to a local one in the catalog
-file"
--->
 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
 
+<xsl:param name="suppress.navigation">1</xsl:param>
+
+<xsl:param name="generate.toc">
+article   nop
+sect1     toc,title
+</xsl:param>
+
+<xsl:param name="generate.section.toc.level" select="2"></xsl:param>
+
 <!-- Use stylesheet -->
-<xsl:param name="html.stylesheet" select="'../xfce-chunk.css'"/>
+<xsl:param name="html.stylesheet" select="'../xfce-utils.css'"/>
 
 <!-- labels and numbering -->
 <xsl:param name="autotoc.label.separator" select="'. '"/>
@@ -26,6 +30,7 @@ file"
 
 <xsl:template match="releaseinfo" mode="titlepage.mode">
   <span class="{name(.)}">
+    <br/>
     <xsl:apply-templates mode="titlepage.mode"/>
     <br/>
   </span>
@@ -45,11 +50,9 @@ file"
 
 <xsl:param name="graphic.default.extension" select="png"/>
 
-<!-- Addition by Jasper Huijsmans to be able to set background color -->
-<!-- and cell attributes. -->
 <!-- This requires an adapted template for tgroup (see end of stylesheet) -->
 <xsl:attribute-set name="table.style">
-	<xsl:attribute name="bgcolor">#F8F9FD</xsl:attribute>
+	<xsl:attribute name="bgcolor">#fdf9f8</xsl:attribute>
 	<xsl:attribute name="cellspacing">0</xsl:attribute>
 	<xsl:attribute name="cellpadding">4</xsl:attribute>
 </xsl:attribute-set>
diff --git a/doc/xfce.css b/doc/manual/xfce-utils.css
similarity index 100%
rename from doc/xfce.css
rename to doc/manual/xfce-utils.css
diff --git a/doc/xfce4-user-guide/C/xfce4-user-guide.xml b/doc/manual/xfce-utils.xml
similarity index 60%
rename from doc/xfce4-user-guide/C/xfce4-user-guide.xml
rename to doc/manual/xfce-utils.xml
index e7d34cc..7875f04 100644
--- a/doc/xfce4-user-guide/C/xfce4-user-guide.xml
+++ b/doc/manual/xfce-utils.xml
@@ -1,56 +1,76 @@
-<?xml version='1.0'?> 
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
+<?xml version='1.0'?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
           "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
-  <!ENTITY copyright SYSTEM "copyright.xml"> 
-  <!ENTITY BSD SYSTEM "BSD.xml"> 
-  <!ENTITY GPL SYSTEM "GPL.xml"> 
-  <!ENTITY LGPL SYSTEM "LGPL.xml"> 
-  <!ENTITY manrevision "3.0"> 
-  <!ENTITY date "December 2006"> 
-  <!ENTITY appversion "4.4"> 
+  <!ENTITY BSD SYSTEM "BSD.xml">
+  <!ENTITY GPL SYSTEM "GPL.xml">
+  <!ENTITY LGPL SYSTEM "LGPL.xml">
+  <!ENTITY date "December 2006">
+  <!ENTITY appversion "@PACKAGE_VERSION@">
+  <!ENTITY app "@PACKAGE_NAME@">
 ]>
 
-<article id="xfce4-user-guide" lang="en">
+<article id="index" lang="en">
+  <articleinfo>
+    <title>The Xfce Desktop Environment</title>
 
-<!-- Header -->
-<articleinfo>
 
-<title>
-  The Xfce Desktop Environment
-</title>
 
-<subtitle>
-  <inlinegraphic fileref="images/link_xfce.jpg"/>
-  <emphasis>... and mice fly ...</emphasis>
-</subtitle>
+</articleinfo>
 
-  <copyright>
-    <year>2006</year> 
-    <holder>Jasper Huijsmans</holder>
-  </copyright>
+<sect1 id="manuals">
+  <title>Xfce Documentation</title>
 
-<!-- translators: uncomment this:
+  <para>The documentation for Xfce is installed with the different
+	components that make up the desktop environment. As a consequence,
+	some of the documents listed here may not be available on your system.
+	</para>
 
-  <copyright>
-   <year>2002</year> <holder>ME-THE-TRANSLATOR (Latin
-   translation)</holder>
-  </copyright>
+  <sect2>
+    <title>Guides</title>
+
+    <itemizedlist>
+      <listitem><para><link linkend="xfce-user-guide">Xfce User Guide</link></para></listitem>
+    </itemizedlist>
+  </sect2>
 
- -->
+  <sect2>
+    <title>Manuals</title>
+    <para>As a limitation to HTML only the English versions of the manuals are linked below.</para>
+    <itemizedlist>
+      <listitem><para><ulink url="../../../xfce4-panel/html/C/index.html">Panel</ulink></para></listitem>
+      <listitem><para><ulink url="../../../xfwm4/html/C/index.html">Window Manager</ulink></para></listitem>
+      <listitem><para><ulink url="../../../xfce4-session/html/C/index.html">Session Manager</ulink></para></listitem>
+      <listitem><para><ulink url="../../../xfdesktop/html/C/index.html">Desktop Manager</ulink></para></listitem>
+      <listitem><para><link linkend="xfce-utils">Utilities and Scripts</link></para></listitem>
+      <listitem><para><ulink url="../../../exo/html/C/index.html">Preferred Applications</ulink></para></listitem>
+      <listitem><para><ulink url="../../../Thunar/html/C/index.html">File Manager</ulink></para></listitem>
+    </itemizedlist>
+  </sect2>
+</sect1>
 
-  <legalnotice id="legalnotice">
-    <para>
-      This document is provided under the terms of the GNU GPL, version
-      2 or (at your option) any later version.
-    </para>
-  </legalnotice>
-  
-<authorgroup>
+<sect1 id="xfce-user-guide">
+  <sect1info>
+  <copyright>
+      <year>2006</year>
+      <holder>Jasper Huijsmans</holder>
+    </copyright>
+
+    <legalnotice id="legalnotice2">
+      <para>
+        Permission is granted to copy, distribute and/or modify this document
+        under the terms of the GNU Free Documentation License, Version 1.1 or
+        any later version published by the Free Software Foundation; with no
+        Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+        Texts. The complete license text is available from the <ulink
+        type="http" url="http://www.gnu.org/">Free Software Foundation</ulink>.
+      </para>
+    </legalnotice>
+    <authorgroup>
 
 <author>
   <firstname>Jasper</firstname>
   <surname>Huijsmans</surname>
- 
+
   <affiliation>
     <address><email>jasper at xfce.org</email></address>
   </affiliation>
@@ -59,107 +79,66 @@
 <author>
   <firstname>Benedikt</firstname>
   <surname>Meurer</surname>
- 
+
   <affiliation>
     <address><email>benny at xfce.org</email></address>
   </affiliation>
 </author>
-  
 </authorgroup>
 
-</articleinfo>
+<releaseinfo>
+      This manual describes version &appversion; of Xfce.
+    </releaseinfo>
+  </sect1info>
+  <title>Xfce User Guide</title>
+  <subtitle>
+      <inlinegraphic fileref="images/xfce-mouse.png"/>
+      <emphasis>... and mice fly ...</emphasis>
+  </subtitle>
+
+<sect2 id="preface">
 
-<!-- 
-
-  Outline of the Xfce 4 User Guide
-  ================================
-
-  Preface
-  ~~~~~~~
-  This document gives an overview of the Xfce 4 Desktop Environment and
-  explains how to perform several common tasks.
-
-  Introduction
-  ~~~~~~~~~~~~
-  - General info
-  - History
-  - Resources
-
-  Components
-  ~~~~~~~~~~
-  Short description of all Xfce components.
-  
-  Installation
-  ~~~~~~~~~~~~
-  - binary packages
-  - sources
-  - CVS
-
-  Using Xfce 4
-  ~~~~~~~~~~~~
-  - Starting: startxfce4, customizing
-  - Default desktop: components
-  - How to: 
-	* start programs (panel and root menu)
-	* manage windows and workspaces (wm and taskbar)
-	* use the settings manager
-  
-  Copyright and Licence
-  ~~~~~~~~~~~~~~~~~~~~~
-  - copyright
-  - BSD, GPL, LGPL
-
--->
-
-<sect1 id="preface">
-  
   <title>Preface</title>
 
   <para>
     This document gives an overview of the Xfce Desktop Environment and explains
-    how to perform several common tasks. It is meant to be a starting point for 
-    anyone who wants to use Xfce and it includes pointers to other sources of 
+    how to perform several common tasks. It is meant to be a starting point for
+    anyone who wants to use Xfce and it includes pointers to other sources of
     information.
   </para>
 
-  <para>
-    The latest version of this document can always be found at 
-    <ulink url="http://www.loculus.nl/xfce/documentation/" 
-           type="html">this location</ulink>.
-  </para>
-  
-</sect1>
+</sect2>
 
-<sect1 id="xfce4-intro">
+<sect2 id="xfce4-intro">
   <title>Introduction</title>
 
   <para>Xfce is a lightweight desktop environment for unix-like operating
-    systems. It aims to be fast and light on system resources, while still 
+    systems. It aims to be fast and light on system resources, while still
     being visually appealing and easy to use.
   </para>
 
   <para>
-    Xfce embodies the traditional UNIX philosophy of modularity and 
-    re-usability. All of Xfce's core components can be build and installed 
-    separately. Xfce 4 is based on the 
+    Xfce embodies the traditional UNIX philosophy of modularity and
+    re-usability. All of Xfce's core components can be build and installed
+    separately. Xfce 4 is based on the
     <ulink url="http://www.gtk.org" type="html">GTK+ toolkit</ulink> version 2.
   </para>
 
   <para>
-    Adhereance to standards is one of the main design goals of Xfce 4, 
-    specifically those defined at 
+    Adhereance to standards is one of the main design goals of Xfce 4,
+    specifically those defined at
     <ulink url="http://www.freedesktop.org" type="html">Freedesktop.org</ulink>.
-    This allows Xfce 4 to seamlessly interoperate with programs written for 
+    This allows Xfce 4 to seamlessly interoperate with programs written for
     other desktop environments that follow these specifications.
   </para>
 
   <para>
     Xfce is all free software. The separate components are released under either
-    the BSD license, the GNU LGPL or the GNU GPL (see 
+    the BSD license, the GNU LGPL or the GNU GPL (see
     <xref linkend="xfce4-copyright"/> for details).
   </para>
 
-  <sect2 id="xfce4-resources">
+  <sect3 id="xfce4-resources">
     <title>Resources</title>
 
     <para>
@@ -168,79 +147,79 @@
     </para>
 
     <itemizedlist>
-      <listitem><ulink url="http://www.xfce.org" 
+      <listitem><para><ulink url="http://www.xfce.org"
 	  type="http">Xfce website</ulink>
-      </listitem>
-      <listitem><ulink url="http://xfce.org/mailman/listinfo/xfce" 
+      </para></listitem>
+      <listitem><para><ulink url="http://xfce.org/mailman/listinfo/xfce"
 	  type="http">User mailing list</ulink>
-      </listitem>
-      <listitem><ulink url="http://xfce.org/mailman/listinfo/xfce4-dev" 
+      </para></listitem>
+      <listitem><para><ulink url="http://xfce.org/mailman/listinfo/xfce4-dev"
 	  type="http">Development mailing list</ulink>
-      </listitem>
-      <listitem><ulink url="http://forum.xfce.org" 
+      </para></listitem>
+      <listitem><para><ulink url="http://forum.xfce.org"
 	  type="http">Xfce Forum</ulink>
-      </listitem>
-      <listitem><ulink url="http://bugzilla.xfce.org" 
+      </para></listitem>
+      <listitem><para><ulink url="http://bugzilla.xfce.org"
 	  type="http">Bug tracker</ulink>
-      </listitem>
+      </para></listitem>
     </itemizedlist>
-  </sect2>
-  
-</sect1>
+  </sect3>
+
+</sect2>
 
-<sect1 id="xfce4-use">
+<sect2 id="xfce4-use">
   <title>Using Xfce4</title>
 
-  <sect2 id="xfce4-getting-started">
+  <sect3 id="xfce4-getting-started">
     <title>Getting started</title>
 
     <para>
       Use <application>startxfce4</application> to start an Xfce session, which
-      includes the session manager, the panel, the window manager and the 
+      includes the session manager, the panel, the window manager and the
       desktop manager.
     </para>
 
     <para>
-      By default the Xfce session manager manages the startup of applications. 
-      It allows you to save your session when you quit Xfce, so that the next 
-      time you log in, the same applications will be started for you 
+      By default the Xfce session manager manages the startup of applications.
+      It allows you to save your session when you quit Xfce, so that the next
+      time you log in, the same applications will be started for you
       automatically.
     </para>
 
     <para>
-      To customize the behaviour of <application>startxfce4</application>, 
-      copy the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to 
-      your personal <filename role="directory">~/.config/xfce4/</filename> 
-      directory and edit that file.  Depending on your installation method the 
-      location of the system <filename>xinitrc</filename> file may be 
-      different. If you install from source, 
-      <filename role="directory">${sysconfdir}</filename> defaults to 
-      <filename role="directory">/usr/local/etc/</filename>. For binary 
-      packages it is often set to 
-      <filename role="directory">/etc/</filename>, 
+      To customize the behaviour of <application>startxfce4</application>,
+      copy the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to
+      your personal <filename role="directory">~/.config/xfce4/</filename>
+      directory and edit that file.  Depending on your installation method the
+      location of the system <filename>xinitrc</filename> file may be
+      different. If you install from source,
+      <filename role="directory">${sysconfdir}</filename> defaults to
+      <filename role="directory">/usr/local/etc/</filename>. For binary
+      packages it is often set to
+      <filename role="directory">/etc/</filename>,
       <filename role="directory">/etc/X11</filename>,
       <filename role="directory">/usr/pkg/etc</filename> or
       <filename role="directory">/usr/X11R6/etc</filename>;
       you can use your package manager to find out.
     </para>
-  </sect2>
+  </sect3>
 
-  <sect2 id="default-desktop">
+  <sect3 id="default-desktop">
     <title>The Default Desktop</title>
 
-    <para>The Xfce Desktop Environment is not a single entity that provides all 
-      funtionality, but rather it tries to adhere to the old UNIX tradition of 
-      small tools that do one job and do it well. A default Xfce desktop with no 
+    <para>The Xfce Desktop Environment is not a single entity that provides all
+      funtionality, but rather it tries to adhere to the old UNIX tradition of
+      small tools that do one job and do it well. A default Xfce desktop with no
       applications running is shown in <xref linkend="default-session-fig"/>.
     </para>
-    
+
     <figure id="default-session-fig">
-      <title>Default Xfce 4 session</title> 
+      <title>Default Xfce 4 session</title>
       <screenshot>
 	<mediaobject>
 	  <imageobject>
 	    <imagedata fileref="images/default-session.png" format="PNG"/>
-	  </imageobject> 
+	  </imageobject>
 	  <textobject>
 	    <phrase>Default Xfce session, with desktop manager and panel.
 	    </phrase>
@@ -259,26 +238,26 @@
 	<term>Panel</term>
 	<listitem>
           <para>
-            In a default session there is a full width panel at the top of the 
-            screen and a smaller one at the bottom. The 
-            <application>xfce4-panel</application> application manages all 
+            In a default session there is a full width panel at the top of the
+            screen and a smaller one at the bottom. The
+            <application>xfce4-panel</application> application manages all
             panels on the screen.
           </para>
 	  <para>
             The top panel shows a graphical pager with a miniature view of all
-            workspaces, a task list showing all applications running on the 
-            current workspace and a system tray to show status icons that are 
-            used for example by some media players or instant messaging 
+            workspaces, a task list showing all applications running on the
+            current workspace and a system tray to show status icons that are
+            used for example by some media players or instant messaging
             applications.
 	  </para>
 	  <para>
             The bottom panel contains several application launchers and a clock.
-            You can right-click on any panel item to get a menu that allows you 
+            You can right-click on any panel item to get a menu that allows you
             to change its properties, add or remove new items or to change the
             properties of the panel itself.
 	  </para>
 	  <para>
-            For more information, have a look at the 
+            For more information, have a look at the
             <ulink url="xfce4-panel.html" type="html">panel manual</ulink>.
 	  </para>
 	</listitem>
@@ -288,16 +267,16 @@
 	<term>Desktop Manager</term>
 	<listitem>
 	  <para>
-            The desktop manager provides the desktop background image and two 
-            menus when you click on the desktop background. Optionally, it can 
-            show icons on the desktop, either for minimized applications or for 
+            The desktop manager provides the desktop background image and two
+            menus when you click on the desktop background. Optionally, it can
+            show icons on the desktop, either for minimized applications or for
             files in the <filename>~/Desktop</filename> folder.
 	  </para>
 	  <para>
-            The right mouse button opens a menu that allows you to start 
-	    applications. Look at the 
-            <ulink url="xfdesktop.html" 
-	           type="html">manual</ulink> to find out how to change the 
+            The right mouse button opens a menu that allows you to start
+	    applications. Look at the
+            <ulink url="xfdesktop.html"
+	           type="html">manual</ulink> to find out how to change the
             menu contents.
 	  </para>
 	  <para>The middle mouse button (or Shift + left click) opens a list of
@@ -314,8 +293,8 @@
 	    the screen and provides the window borders and decorations. It
 	    allows you to move windows around by draggin the titlebar and
 	    provides title bar buttons, for example to close, minimize or
-	    maximize a window. Look at the 
-            <ulink url="xfwm4.html" type="html">manual</ulink> for a full 
+	    maximize a window. Look at the
+            <ulink url="xfwm4.html" type="html">manual</ulink> for a full
             explanation of the window manager settings.
 	  </para>
 	</listitem>
@@ -326,10 +305,10 @@
 	<listitem>
 	  <para>
             The settings manager runs in the background and makes sure that all
-            Xfce applications update their settings when the user changes 
+            Xfce applications update their settings when the user changes
             something in the settings manager dialog (see following section) and
-            it takes care of reading the configuration from disk at startup. 
-            Have a look at the <ulink url="xfce-mcs-manager.html" 
+            it takes care of reading the configuration from disk at startup.
+            Have a look at the <ulink url="xfce-mcs-manager.html"
             type="html">Settings Manager</ulink> and <ulink
             url="xfce-mcs-plugins.html" type="html">Settings Plugins</ulink>
             manuals for a full explanation of the settings manager.
@@ -337,17 +316,17 @@
 	</listitem>
       </varlistentry>
     </variablelist>
-  </sect2>
+  </sect3>
 
-  <sect2 id="common-tasks">
+  <sect3 id="common-tasks">
     <title>Common Tasks</title>
 
-    <para>This section will explain how to perform several common tasks to 
+    <para>This section will explain how to perform several common tasks to
       quickly get you started working with Xfce 4. Because that is what
       Xfce 4 is designed for, to allow you to get work done.
     </para>
 
-    <sect3 id="common-run-programs">
+    <sect4 id="common-run-programs">
       <title>Running programs</title>
 
       <variablelist>
@@ -384,15 +363,15 @@
 	    <para>
               The dialog will remeber the 10 last commands that were
 	      executed successfully.
-	    </para>	      
+	    </para>
 	  </listitem>
 	</varlistentry>
 
       </variablelist>
-      
-    </sect3>
 
-    <sect3 id="common-managing-windows">
+    </sect4>
+
+    <sect4 id="common-managing-windows">
       <title>Managing windows and workspaces</title>
 
       <variablelist>
@@ -409,7 +388,7 @@
 	      access to all window operations.</para>
 	    <para>Shading a window, which means collapsing it to only show the
 	      title bar, can also be accomplished by using the mouse wheel
-	      over the title bar. Mouse wheel up is shade, mouse wheel down 
+	      over the title bar. Mouse wheel up is shade, mouse wheel down
               is unshade.
 	    </para>
 	    <para>If you want maximized windows to not cover the entire screen
@@ -423,13 +402,13 @@
 	  <term>Application management</term>
 	  <listitem>
 	    <para>To find out what applications are currently running you can
-	      look at the task list on the top panel. Clicking on a button in 
-              the task list will focus the associated application. Clicking 
+	      look at the task list on the top panel. Clicking on a button in
+              the task list will focus the associated application. Clicking
               again will hide it.
 	    </para>
-	    <para>When you click with the middle mouse button on the desktop 
-	      background a list of windows is shown, ordered by workspace. 
-	      You can activate the application or change workspaces by 
+	    <para>When you click with the middle mouse button on the desktop
+	      background a list of windows is shown, ordered by workspace.
+	      You can activate the application or change workspaces by
 	      choosing the appropriate menu entry.
 	    </para>
 	  </listitem>
@@ -439,7 +418,7 @@
 	  <term>Workspaces</term>
 	  <listitem>
 	    <para>You can change workspaces by clicking on them in the
-	      graphical pager, either on the taskbar or on the panel. Pressing 
+	      graphical pager, either on the taskbar or on the panel. Pressing
 	      <keycap>Ctrl+Alt+LeftArrow</keycap> or
               <keycap>Ctrl+Alt+RightArrow</keycap> will cycle through the
 	      workspaces. Using the mousewheel over the pager or the desktop
@@ -452,61 +431,61 @@
 	</varlistentry>
       </variablelist>
 
-    </sect3>
+    </sect4>
 
-    <sect3 id="common-settings">
+    <sect4 id="common-settings">
       <title>Using the settings manager dialog</title>
 
-      <para>The settings manager dialog provides access to the global 
+      <para>The settings manager dialog provides access to the global
         preferences of many Xfce applications. You can run it by pressing its
         launcher on the panel, from the desktop mouse menu or by running
 	<application>xfce-setting-show</application>.
       </para>
 
-      <para>Dialogs to change many aspects of the Xfce Desktop Environment are 
-        available. See the separate manuals of the Xfce components for more 
-        information. It may be interesting to have a quick look at all the 
+      <para>Dialogs to change many aspects of the Xfce Desktop Environment are
+        available. See the separate manuals of the Xfce components for more
+        information. It may be interesting to have a quick look at all the
         dialogs to find out what options are available that allow you to create
         the best possible working environment.
       </para>
-    </sect3>
-  </sect2>
+    </sect4>
+  </sect3>
 
-  <sect2 id="further-reading">
+  <sect3 id="further-reading">
     <title>Further Reading</title>
 
     <para>This user guide has only given a very general overview of the Xfce
-      Desktop Environment. More information is  available in the 
+      Desktop Environment. More information is  available in the
       <ulink url="index.html" type="html">manuals</ulink> of the separate
       components of Xfce.
     </para>
-  </sect2>
-  
-</sect1>
+  </sect3>
+
+</sect2>
 
-<sect1 id="xfce4-components">
+<sect2 id="xfce4-components">
   <title>Components of Xfce</title>
-  
+
   <para>The Xfce components are packaged separately. This section contains a
     list of the available modules with a short description.
   </para>
-     
+
   <variablelist>
-    
+
     <varlistentry>
       <term>libxfce4util</term>
       <listitem>
 	<para>Library with non-graphical helper functions.</para>
       </listitem>
     </varlistentry>
-	  
+
     <varlistentry>
       <term>libxfcegui4</term>
       <listitem>
 	<para>Widget library and X Window System interaction.</para>
       </listitem>
     </varlistentry>
-	  
+
     <varlistentry>
       <term>libexo</term>
       <listitem>
@@ -515,7 +494,7 @@
 	</para>
       </listitem>
     </varlistentry>
-	
+
     <varlistentry>
       <term>libxfce4mcs</term>
       <listitem>
@@ -523,7 +502,7 @@
 	</para>
       </listitem>
     </varlistentry>
-	
+
     <varlistentry>
       <term>xfce-mcs-manager</term>
       <listitem>
@@ -534,18 +513,18 @@
 	</para>
       </listitem>
     </varlistentry>
-	  
+
     <varlistentry>
       <term>xfce-mcs-plugins</term>
       <listitem>
-	<para>Settings manager plugins. These plugins provide settings 
-	  dialogs for general items that are not part of a package, e.g. 
+	<para>Settings manager plugins. These plugins provide settings
+	  dialogs for general items that are not part of a package, e.g.
 	  user interface settings (Gtk+ theme, icon theme, font settings),
           mouse settings, keyboard settings and display settings.
 	</para>
       </listitem>
     </varlistentry>
-	      
+
     <varlistentry>
       <term>xfce4-session</term>
       <listitem>
@@ -556,17 +535,17 @@
 	</para>
       </listitem>
     </varlistentry>
-    
+
     <varlistentry>
       <term>xfwm4</term>
       <listitem>
-	<para>The Xfce window mananger. Manages the placement of 
-	  application windows on the screen, provides window decorations 
+	<para>The Xfce window mananger. Manages the placement of
+	  application windows on the screen, provides window decorations
 	  and manages workspaces.
 	</para>
       </listitem>
     </varlistentry>
-	      
+
     <varlistentry>
       <term>xfce4-panel</term>
       <listitem>
@@ -575,23 +554,23 @@
 	</para>
       </listitem>
     </varlistentry>
-	      
+
     <varlistentry>
       <term>xfdesktop</term>
       <listitem>
-	<para>Desktop background manager. This program sets the background 
+	<para>Desktop background manager. This program sets the background
 	  image and/or color, and provides a root window menu, a menu panel
-	  plugin and a menu editor. Optionally, it can show icons on the 
+	  plugin and a menu editor. Optionally, it can show icons on the
           desktop as well.
 	</para>
       </listitem>
     </varlistentry>
-	      
+
     <varlistentry>
       <term>xfce-utils</term>
       <listitem>
-	<para>Essential utilities and scripts. Provides the Xfce about dialog, 
-          a run dialog, the startxfce4 script and several other important 
+	<para>Essential utilities and scripts. Provides the Xfce about dialog,
+          a run dialog, the startxfce4 script and several other important
           scripts. Also contains this user guide.
 	</para>
       </listitem>
@@ -608,7 +587,7 @@
       <term>xfprint</term>
       <listitem>
 	<para>Printing support. Provides a graphical frontend for printing.
-	  Includes <application>xfprint4</application> and 
+	  Includes <application>xfprint4</application> and
 	  <application>xfprint-manager</application>.
 	</para>
       </listitem>
@@ -617,7 +596,7 @@
     <varlistentry>
       <term>xfce4-appfinder</term>
       <listitem>
-	<para>An application finder that allows you to search, launch and 
+	<para>An application finder that allows you to search, launch and
 	  find information about applications installed on your system.
 	</para>
       </listitem>
@@ -629,16 +608,16 @@
 	<para>Simple calendar application with reminders.</para>
       </listitem>
     </varlistentry>
-    
+
     <varlistentry>
       <term>gtk-xfce-engine-2</term>
       <listitem>
-	<para>Theme engine for GTK2. Not required for the desktop, but it's a 
+	<para>Theme engine for GTK2. Not required for the desktop, but it's a
           nice theme engine so you might just as well give it a try.
 	</para>
       </listitem>
     </varlistentry>
-	    
+
     <varlistentry>
       <term>xfce4-icon-theme</term>
       <listitem>
@@ -647,65 +626,65 @@
     </varlistentry>
   </variablelist>
 
-</sect1>
+</sect2>
 
-<sect1 id="xfce4-install">
+<sect2 id="xfce4-install">
   <title>Installing Xfce4</title>
-  
-  <sect2 id="binary-packages">
+
+  <sect3 id="binary-packages">
     <title>Binary packages</title>
 
-    <para>The Xfce project officially only releases source code for the desktop 
-      environment. However, binary packages may have been contributed by other 
+    <para>The Xfce project officially only releases source code for the desktop
+      environment. However, binary packages may have been contributed by other
       people for your OS or distribution.
     </para>
-    
-    <para>Look at the Xfce site for 
-      <ulink url="http://xfce.org/index.php?page=download" 
+
+    <para>Look at the Xfce site for
+      <ulink url="http://xfce.org/index.php?page=download"
 	type="html">download locations</ulink> and additional information
-      about available binary packages.  If you could not find binary packages 
-      for your OS, they may be available from your OS vendor or distributor, 
+      about available binary packages.  If you could not find binary packages
+      for your OS, they may be available from your OS vendor or distributor,
       or you can install Xfce from source.
     </para>
-  </sect2>
+  </sect3>
 
-  <sect2 id="graphical-installers">
+  <sect3 id="graphical-installers">
     <title>Graphical installers</title>
 
     <para>The easiest way to install Xfce from source is by using the
-      <ulink url="http://www.xfce.org/archive/xfce-4.4.0/installers/" 
-	type="html">graphical installers</ulink>. Documentation and 
+      <ulink url="http://www.xfce.org/archive/xfce-4.4.0/installers/"
+	type="html">graphical installers</ulink>. Documentation and
       instructions are available.
     </para>
-  </sect2>
-    
-  <sect2 id="install-source">
+  </sect3>
+
+  <sect3 id="install-source">
     <title>Building from source</title>
 
-    <para>To compile Xfce manually, look at the Xfce site for 
-      <ulink url="http://xfce.org/index.php?page=download" 
+    <para>To compile Xfce manually, look at the Xfce site for
+      <ulink url="http://xfce.org/index.php?page=download"
 	type="html">download locations</ulink>.
     </para>
 
     <para>Building the packages should be a simple matter of unpacking the
       tarballs and, from the top source directory, typing:
-    
+
 <programlisting>./configure && make && make install</programlisting>
 
-      Some package will have extra configure options available. You can find 
+      Some package will have extra configure options available. You can find
       them by typing <command>./configure <option>--help</option></command>.
     </para>
 
-    <para>Xfce &appversion; depends on pkg-config and GTK+ >= 2.6. If you 
-      installed these from a binary package, make sure you have the 
+    <para>Xfce &appversion; depends on pkg-config and GTK+ >= 2.6. If you
+      installed these from a binary package, make sure you have the
       corresponding <filename>-dev</filename> packages installed as well.
     </para>
 
-    <para>Optionally you can install librsvg >= 2.2, for SVG icon support, 
+    <para>Optionally you can install librsvg >= 2.2, for SVG icon support,
       libstartup-notification, to have a busy cursor when loading applications
-      that support this standard and dbus for enhanced functionality, mainly in 
+      that support this standard and dbus for enhanced functionality, mainly in
       Thunar and xfdesktop.
-    </para> 
+    </para>
 
     <para>If you install into a different prefix from pkg-config, you have to
       set the PKG_CONFIG_PATH variable to include the path to the *.pc files
@@ -715,25 +694,25 @@
 
 <programlisting>export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig</programlisting>
 
-  </sect2>
+  </sect3>
 
-  <sect2 id="using-svn">
+  <sect3 id="using-svn">
     <title>Using SVN</title>
 
-    <para>The latest development sources for Xfce 4 are available from 
+    <para>The latest development sources for Xfce 4 are available from
       subversion (SVN).
     </para>
-    
-    <para>Look <ulink 
-      url="http://xfce.org/index.php?page=documentation&lang=en#install" 
+
+    <para>Look <ulink
+      url="http://xfce.org/index.php?page=documentation&lang=en#install"
       type="html">here</ulink> for information on how to obtain the latest
       development updates from SVN. You can also browse the SVN tree through a
       web interface.
     </para>
 
-  </sect2>
-  
-  <sect2 id="additional-software">
+  </sect3>
+
+  <sect3 id="additional-software">
     <title>Additional software</title>
 
     <para>
@@ -743,23 +722,245 @@
     </para>
 
     <para>
-      <ulink url="http://spuriousinterrupt.org/projects/xfmedia/" 
-             type="html">Xfmedia</ulink> is a lightweight media player for Xfce, 
+      <ulink url="http://spuriousinterrupt.org/projects/xfmedia/"
+             type="html">Xfmedia</ulink> is a lightweight media player for Xfce,
       based on the xine engine.
     </para>
 
     <para>
-      <ulink url="http://terminal.os-cillation.com/" 
-             type="html">Terminal</ulink> is an easy to use terminal emulator 
-      for the Xfce Desktop Environment. It contains all feature you would expect 
+      <ulink url="http://terminal.os-cillation.com/"
+             type="html">Terminal</ulink> is an easy to use terminal emulator
+      for the Xfce Desktop Environment. It contains all feature you would expect
       from a modern terminal emulator.
     </para>
-  </sect2>
-   
+  </sect3>
+
+</sect2>
+
+<sect2 id="xfce4-copyright">
+  <title>Copyright and Licences</title>
+
+  <para>Xfce 4 is copyright © Olivier Fourdan
+    (<email>fourdan at xfce.org</email>). The different components are
+    copyrighted by their respective authors.
+  </para>
+
+  <para>Three different licenses are used in the Xfce 4 project: <link linkend="BSD">BSD</link>, <link linkend="LGPL">LGPL</link>
+    and <link linkend="GPL">GPL</link>.
+  </para>
+
+  <para>
+    Please, refer to the COPYING files included in the packages for
+    the licensing terms of the separate Xfce 4 components.
+  </para>
+
+</sect2>
 </sect1>
 
-©right;
+<sect1 id ="xfce-utils" lang="en">
+<sect1info>
+ <copyright>
+    <year>2006</year> <holder>Jasper Huijsmans</holder>
+  </copyright>
+
+  <copyright>
+    <year>2004</year> <holder>Benedikt Meurer</holder>
+  </copyright>
+
+  <legalnotice id="legalnotice">
+      <para>
+        Permission is granted to copy, distribute and/or modify this document
+        under the terms of the GNU Free Documentation License, Version 1.1 or
+        any later version published by the Free Software Foundation; with no
+        Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+        Texts. The complete license text is available from the <ulink
+        type="http" url="http://www.gnu.org/">Free Software Foundation</ulink>.
+      </para>
+    </legalnotice>
+
+  <authorgroup>
+
+    <author>
+      <firstname>Jasper</firstname> <surname>Huijsmans</surname>
+      <affiliation>
+	      <address><email>jasper at xfce.org</email></address>
+      </affiliation>
+    </author>
+
+    <author>
+      <firstname>Benedikt</firstname> <surname>Meurer</surname>
+      <affiliation>
+        <address><email>benedikt.meurer at unix-ag.uni-siegen.de</email></address>
+      </affiliation>
+    </author>
+
+  </authorgroup>
+  <releaseinfo>This manual describes the &app; package, version &appversion;.  </releaseinfo>
+</sect1info>
+<title>Xfce Utilities and Scripts</title>
+<sect2 id="utils-intro">
+  <title>Introduction</title>
+
+  <para>
+    The <application>&app;</application> package provides the general 'About Xfce 4' dialog, a run dialog
+    and several useful scripts that are also used by other Xfce components such
+    as the panel and the desktop menu.
+  </para>
+
+</sect2>
+
+<sect2 id="utils-run">
+  <title>Run Dialog</title>
+
+  <figure id="run-dialog-fig">
+    <title>Run dialog</title>
+    <screenshot>
+      <mediaobject>
+        <imageobject>
+          <imagedata fileref="images/run-dialog.png" format="PNG" />
+        </imageobject>
+
+        <textobject>
+          <phrase>Shows the run dialog.</phrase>
+        </textobject>
+      </mediaobject>
+    </screenshot>
+  </figure>
+
+  <para>
+    The run dialog allows the user to launch applications. Applications can be
+    run in a Terminal emulator (Terminal by default, see xfterm4 script below).
+    In a default Xfce environment, the Alt+F2 key combination will open the run
+    dialog.
+  </para>
+
+</sect2>
+
+<sect2 id="utils-about">
+  <title>About Dialog</title>
+
+  <figure id="about-dialog-fig">
+    <title>About dialog</title>
+    <screenshot>
+      <mediaobject>
+        <imageobject>
+          <imagedata fileref="images/about-dialog.png" format="PNG" />
+        </imageobject>
+        <textobject>
+          <phrase>Shows the About Dialog displaying the credits page.
+          </phrase>
+        </textobject>
+      </mediaobject>
+    </screenshot>
+  </figure>
+
+  <para>
+    The About Dialog is used to display information about Xfce 4, including a
+    list of components, a credits page for all people who helped to create
+    Xfce 4 and license information.
+  </para>
+
+</sect2>
+
+<sect2 id="utils-scripts">
+  <title>Scripts</title>
+
+  <variablelist>
+    <varlistentry>
+      <term>startxfce4</term>
+      <listitem>
+	<para>
+          The <application>startxfce4</application> is a convenient script to
+          start an Xfce 4 session from the console. It will give you a session
+          with two panels and with the desktop manager and window manager
+          running.
+	</para>
+
+	<para>
+          To customize the behaviour of <application>startxfce4</application>,
+          copy the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to
+          your personal <filename>~/.config/xfce4/</filename> directory and edit
+          that file. If you install from source,
+          <filename>${sysconfdir}</filename> defaults to
+          <filename>/usr/local/etc</filename>; for binary packages it is usually
+          set to <filename>/etc</filename>.
+	</para>
+
+	<para>
+          With the inclusion of a session manager in Xfce 4.2, the preferred way
+          to change startup behaviour is by using the "Save session" option in
+          the logout dialog.
+	</para>
+      </listitem>
+    </varlistentry>
+
+    <varlistentry>
+      <term>xfhelp4</term>
+      <listitem>
+	<para>
+          This script is used to open the local Xfce 4 documentation in a
+          browser. By default it will try to use
+          <application>exo-open</application> from the libexo library. You
+          can change the preferred browser from the Xfce Settings Manager
+          dialog. If <application>exo-open</application> is not available, the
+          script will try a number of well-known browsers, like firefox, galeon
+          or konqueror, but you can change that by setting the $BROWSER
+          environment variable.
+	</para>
+
+	<para>
+          If there is documentation installed in the language of your current
+          locale, xfhelp4 will open that instead of the default English
+          documentation.
+	</para>
+      </listitem>
+    </varlistentry>
+
+    <varlistentry>
+      <term>xflock4</term>
+      <listitem>
+	<para>
+          This script is used by the panel to lock the screen using xscreensaver
+          if available and falling back to xlock.
+	</para>
+      </listitem>
+    </varlistentry>
+  </variablelist>
+
+</sect2>
+
+<sect2 id="utils-copyright">
+  <title>About xfce-utils</title>
+
+  <para>
+    <application>&app;</application> was written by
+    Jasper Huijsmans (<email>jasper at xfce.org</email>),
+    Olivier Fourdan (<email>fourdan at xfce.org</email>) and
+    Benedikt Meurer (<email>benny at xfce.org</email>).
+    To find more information, visit the
+    <ulink url="http://www.xfce.org" type="http">Xfce web site</ulink>.
+  </para>
+
+  <para>
+    To report a bug or make a suggestion regarding this application or this
+    manual, please use the bug tracking system at
+    <ulink url="http://bugzilla.xfce.org/"
+           type="http">http://bugzilla.xfce.org/</ulink>.
+  </para>
+
+  <para>
+    If you have questions about the use or installation of this package, ask on
+    the <ulink url="http://lunar-linux.org/mailman/listinfo/xfce"
+               type="http">xfce</ulink> mailing list. Development discussion
+    takes place on the
+    <ulink url="http://lunar-linux.org/mailman/listinfo/xfce4-dev"
+           type="http">xfce4-dev</ulink> mailing list.
+  </para>
+
+</sect2>
+</sect1>
 
+<!-- included licenses we don't want to be translatable -->
 &BSD;
 
 &GPL;
diff --git a/doc/xfce-chunk.css b/doc/xfce-chunk.css
deleted file mode 100644
index bd251cb..0000000
--- a/doc/xfce-chunk.css
+++ /dev/null
@@ -1,14 +0,0 @@
-body 		{ font: "Vera Sans", "Arial", "Helvetica", "sans-serif"; 
-    		  margin: 2em; background-color: #F3F4F8}
-h1,h2,h3,h4	{ color: #11375F; }
-h3              { margin-top: 1em; margin-bottom: 0; }
-dt              { margin-top: 0.2em; }
-a		{ font-weight: bold; text-decoration: none; }
-a:link,a:active { color: #1A5593; }
-a:visited	{ color: #1A5593; }
-a:hover		{ color: #3366FF; text-decoration: underline; }
-hr		{ background-color: #11375F; border-style: solid; }
-li		{ list-style-type: square; }
-dt		{ font-weight: bold; }
-.programlisting { background-color: #F8F9FD; border-color: #8593B3;
-		  border-width: 1px; border-style: solid; padding: 0.5em; }
diff --git a/doc/xfce-nochunk.xsl b/doc/xfce-nochunk.xsl
deleted file mode 100644
index 3dae476..0000000
--- a/doc/xfce-nochunk.xsl
+++ /dev/null
@@ -1,270 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version='1.0'
-                xmlns="http://www.w3.org/TR/xhtml1/transitional"
-                exclude-result-prefixes="#default">
-
-<!-- Load onechunk.xsl stylesheet 
-     TODO: how can I put a location independent link here?
-This should work. The url can be translated to a local one in the catalog
-file"
--->
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/onechunk.xsl"/>
-
-<xsl:param name="suppress.navigation">1</xsl:param>
-
-<!-- Use stylesheet -->
-<xsl:param name="html.stylesheet" select="'../xfce.css'"/>
-
-<!-- labels and numbering -->
-<xsl:param name="autotoc.label.separator" select="'. '"/>
-<xsl:param name="chapter.autolabel" select="1"/>
-
-<!-- Don't force the use of index.html as root filename -->
-<xsl:param name="root.filename" select="''"/>
-
-<!--  Use element id (if present) as file name  -->
-<xsl:variable name="use.id.as.filename">1</xsl:variable>
-
-<xsl:template match="releaseinfo" mode="titlepage.mode">
-  <span class="{name(.)}">
-    <xsl:apply-templates mode="titlepage.mode"/>
-    <br/>
-  </span>
-</xsl:template>
-
-<!-- Use graphics in admonitions (note, warning, etc)  -->
-<xsl:variable name="admon.graphics">0</xsl:variable>
-
-<xsl:param name="admon.style">
-	<xsl:text>text-align: left;</xsl:text></xsl:param>
-
-<xsl:variable name="admon.graphics.path">stylesheet-images/</xsl:variable>
-
-<xsl:variable name="admon.graphics.extension">.gif</xsl:variable>
-
-<xsl:param name="table.border.thickness" select="'0.2pt'"/>
-
-<xsl:param name="graphic.default.extension" select="png"/>
-
-<xsl:attribute-set name="shade.verbatim.style">
-	<xsl:attribute name="border">0</xsl:attribute>
-	<xsl:attribute name="bgcolor">#F3F4F8</xsl:attribute>
-	<xsl:attribute name="width">100%</xsl:attribute>
-</xsl:attribute-set>
-
-<!-- Addition by Jasper Huijsmans to be able to set background color -->
-<!-- and cell attributes. -->
-<!-- This requires an adapted template for tgroup (see end of stylesheet) -->
-<xsl:attribute-set name="table.style">
-  	<xsl:attribute name="bgcolor">#F8F9FD</xsl:attribute>
-	<xsl:attribute name="cellspacing">0</xsl:attribute>
-	<xsl:attribute name="cellpadding">4</xsl:attribute> 
-</xsl:attribute-set>
-
-
-<xsl:param name="generate.legalnotice.link" select="0"/>
-
-<xsl:param name="shade.verbatim" select="1"/>
-
-<!-- set font styles for various tags   -->
-<xsl:template match="guibutton">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guiicon">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guilabel">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guimenu">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guimenuitem">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="guisubmenu">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<xsl:template match="application">
-<xsl:call-template name="inline.boldmonoseq"/>
-</xsl:template>
-
-<xsl:template match="caption">
-<xsl:call-template name="inline.boldseq"/>
-</xsl:template>
-
-<!-- Adapted template for tgroup. The only change is the addition of -->
-<!-- table.style attributes -->
-<xsl:template match="tgroup">
-  <table xsl:use-attribute-sets="table.style">
-    <xsl:choose>
-      <!-- If there's a <?dbhtml table-summary="foo"?> PI, use it for
-           the HTML table summary attribute -->
-      <xsl:when test="processing-instruction('dbhtml')">
-        <xsl:variable name="summary">
-          <xsl:call-template name="dbhtml-attribute">
-            <xsl:with-param name="pis"
-                            select="processing-instruction('dbhtml')[1]"/>
-            <xsl:with-param name="attribute" select="'table-summary'"/>
-          </xsl:call-template>
-        </xsl:variable>
-        <xsl:if test="$summary != ''">
-          <xsl:attribute name="summary">
-            <xsl:value-of select="$summary"/>
-          </xsl:attribute>
-        </xsl:if>
-      </xsl:when>
-      <!-- Otherwise, if there's a title, use that -->
-      <xsl:when test="../title">
-        <xsl:attribute name="summary">
-          <xsl:value-of select="string(../title)"/>
-        </xsl:attribute>
-      </xsl:when>
-      <!-- Otherwise, forget the whole idea -->
-      <xsl:otherwise><!-- nevermind --></xsl:otherwise>
-    </xsl:choose>
-
-    <xsl:if test="../@pgwide=1">
-      <xsl:attribute name="width">100%</xsl:attribute>
-    </xsl:if>
-
-    <xsl:choose>
-      <xsl:when test="../@frame='none'">
-        <xsl:attribute name="border">0</xsl:attribute>
-      </xsl:when>
-      <xsl:when test="$table.borders.with.css != 0">
-        <xsl:attribute name="border">0</xsl:attribute>
-        <xsl:choose>
-          <xsl:when test="../@frame='topbot' or ../@frame='top'">
-            <xsl:attribute name="style">
-              <xsl:call-template name="border">
-                <xsl:with-param name="side" select="'top'"/>
-              </xsl:call-template>
-            </xsl:attribute>
-          </xsl:when>
-          <xsl:when test="../@frame='sides'">
-            <xsl:attribute name="style">
-              <xsl:call-template name="border">
-                <xsl:with-param name="side" select="'left'"/>
-              </xsl:call-template>
-              <xsl:call-template name="border">
-                <xsl:with-param name="side" select="'right'"/>
-              </xsl:call-template>
-            </xsl:attribute>
-          </xsl:when>
-        </xsl:choose>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:attribute name="border">1</xsl:attribute>
-      </xsl:otherwise>
-    </xsl:choose>
-
-    <xsl:variable name="colgroup">
-      <colgroup>
-        <xsl:call-template name="generate.colgroup">
-          <xsl:with-param name="cols" select="@cols"/>
-        </xsl:call-template>
-      </colgroup>
-    </xsl:variable>
-
-    <xsl:variable name="explicit.table.width">
-      <xsl:call-template name="dbhtml-attribute">
-        <xsl:with-param name="pis"
-                        select="../processing-instruction('dbhtml')[1]"/>
-        <xsl:with-param name="attribute" select="'table-width'"/>
-      </xsl:call-template>
-    </xsl:variable>
-
-    <xsl:variable name="table.width">
-      <xsl:choose>
-        <xsl:when test="$explicit.table.width != ''">
-          <xsl:value-of select="$explicit.table.width"/>
-        </xsl:when>
-        <xsl:when test="$default.table.width = ''">
-          <xsl:text>100%</xsl:text>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select="$default.table.width"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-
-    <xsl:if test="$default.table.width != ''
-                  or $explicit.table.width != ''">
-      <xsl:attribute name="width">
-        <xsl:choose>
-          <xsl:when test="contains($table.width, '%')">
-            <xsl:value-of select="$table.width"/>
-          </xsl:when>
-          <xsl:when test="$use.extensions != 0
-                          and $tablecolumns.extension != 0">
-            <xsl:choose>
-              <xsl:when test="function-available('stbl:convertLength')">
-                <xsl:value-of select="stbl:convertLength($table.width)"/>
-              </xsl:when>
-              <xsl:when test="function-available('xtbl:convertLength')">
-                <xsl:value-of select="xtbl:convertLength($table.width)"/>
-              </xsl:when>
-              <xsl:otherwise>
-                <xsl:message terminate="yes">
-                  <xsl:text>No convertLength function available.</xsl:text>
-                </xsl:message>
-              </xsl:otherwise>
-            </xsl:choose>
-          </xsl:when>
-          <xsl:otherwise>
-            <xsl:value-of select="$table.width"/>
-          </xsl:otherwise>
-        </xsl:choose>
-      </xsl:attribute>
-    </xsl:if>
-
-    <xsl:choose>
-      <xsl:when test="$use.extensions != 0
-                      and $tablecolumns.extension != 0">
-        <xsl:choose>
-          <xsl:when test="function-available('stbl:adjustColumnWidths')">
-            <xsl:copy-of select="stbl:adjustColumnWidths($colgroup)"/>
-          </xsl:when>
-          <xsl:when test="function-available('xtbl:adjustColumnWidths')">
-            <xsl:copy-of select="xtbl:adjustColumnWidths($colgroup)"/>
-          </xsl:when>
-          <xsl:otherwise>
-            <xsl:message terminate="yes">
-              <xsl:text>No adjustColumnWidths function available.</xsl:text>
-            </xsl:message>
-          </xsl:otherwise>
-        </xsl:choose>
-      </xsl:when>
-      <xsl:otherwise>
-        <xsl:copy-of select="$colgroup"/>
-      </xsl:otherwise>
-    </xsl:choose>
-
-    <xsl:apply-templates select="thead"/>
-    <xsl:apply-templates select="tbody"/>
-    <xsl:apply-templates select="tfoot"/>
-
-    <xsl:if test=".//footnote">
-      <tbody class="footnotes">
-        <tr>
-          <td colspan="{@cols}">
-            <xsl:apply-templates select=".//footnote" 
-                                 mode="table.footnote.mode"/>
-          </td>
-        </tr>
-      </tbody>
-    </xsl:if>
-  </table>
-</xsl:template>
-
-
-</xsl:stylesheet>
-
diff --git a/doc/xfce-utils/C/Makefile.am b/doc/xfce-utils/C/Makefile.am
deleted file mode 100644
index 6fd0cd3..0000000
--- a/doc/xfce-utils/C/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-SUBDIRS = \
-  	 images
-
-noinst_DATA = \
-	xfce-utils.xml
-
-docdir=$(datadir)/xfce4/doc/C
-
-doc_DATA= \
-	xfce-utils.html
-
-EXTRA_DIST = $(noinst_DATA) $(doc_DATA)
-
-html: $(srcdir)/xfce-utils.xml
-	xsltproc $(top_srcdir)/doc/xfce-nochunk.xsl $(srcdir)/xfce-utils.xml
diff --git a/doc/xfce-utils/C/images/Makefile.am b/doc/xfce-utils/C/images/Makefile.am
deleted file mode 100644
index dfdecef..0000000
--- a/doc/xfce-utils/C/images/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-imagesdir = $(datadir)/xfce4/doc/C/images
-
-images_DATA =								\
-	about-dialog.png						\
-	run-dialog.png							\
-	taskbar_settings.png
-
-EXTRA_DIST =								\
-	$(images_DATA)
diff --git a/doc/xfce-utils/C/images/taskbar_settings.png b/doc/xfce-utils/C/images/taskbar_settings.png
deleted file mode 100644
index 1568452..0000000
Binary files a/doc/xfce-utils/C/images/taskbar_settings.png and /dev/null differ
diff --git a/doc/xfce-utils/C/xfce-utils.html b/doc/xfce-utils/C/xfce-utils.html
deleted file mode 100644
index 3f5e77c..0000000
--- a/doc/xfce-utils/C/xfce-utils.html
+++ /dev/null
@@ -1,75 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Xfce Utilities and Scripts</title><link rel="stylesheet" href="../xfce.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="#xfce-utils" title="Xfce Utilities and Scripts"><link rel="next" href="#utils-intro" title="Introduction"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="article" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="xfce-utils"></a>Xfce Utilities and Scripts</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Jasper</span> <span class="surname">Huijsmans</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a href="mailto:jasper at xfce.org">jasper at xfce.org</a>></code></p></div></div></div><div class="author"><h3 class="author"><span class="firstname">Benedik
 t</span> <span class="surname">Meurer</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a href="mailto:benedikt.meurer at unix-ag.uni-siegen.de">benedikt.meurer at unix-ag.uni-siegen.de</a>></code></p></div></div></div></div></div><div><span xmlns="http://www.w3.org/TR/xhtml1/transitional" class="releaseinfo">This manual describes the <strong xmlns="" class="application"><code>xfce-utils</code></strong> package, version 4.4.
-  <br></br></span></div><div><p class="copyright">Copyright © 2006 Jasper Huijsmans</p></div><div><p class="copyright">Copyright © 2004 Benedikt Meurer</p></div><div><div class="legalnotice"><a name="legalnotice"></a><p>
-      This document is provided under the terms of the GNU GPL, version
-      2 or (at your option) any later version.
-    </p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="#utils-intro">Introduction</a></span></dt><dt><span class="sect1"><a href="#utils-run">Run Dialog</a></span></dt><dt><span class="sect1"><a href="#utils-about">About Dialog</a></span></dt><dt><span class="sect1"><a href="#utils-scripts">Scripts</a></span></dt><dt><span class="sect1"><a href="#utils-copyright">About xfce-utils</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="utils-intro"></a>Introduction</h2></div></div></div><p>
-    The <strong class="application"><code>xfce-utils</code></strong> package provides the general 'About Xfce 4' dialog, a run dialog 
-    and several useful scripts that are also used by other Xfce components such
-    as the panel and the desktop menu.
-  </p></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="utils-run"></a>Run Dialog</h2></div></div></div><div class="figure"><a name="run-dialog-fig"></a><p class="title"><b>Figure 1. Run dialog</b></p><div class="figure-contents"><div class="screenshot"><div class="mediaobject"><img src="images/run-dialog.png" alt="Shows the run dialog."></div></div></div></div><br class="figure-break"><p>
-    The run dialog allows the user to launch applications. Applications can be 
-    run in a Terminal emulator (Terminal by default, see xfterm4 script below).
-    In a default Xfce environment, the Alt+F2 key combination will open the run
-    dialog.
-  </p></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="utils-about"></a>About Dialog</h2></div></div></div><div class="figure"><a name="about-dialog-fig"></a><p class="title"><b>Figure 2. About dialog</b></p><div class="figure-contents"><div class="screenshot"><div class="mediaobject"><img src="images/about-dialog.png" alt="Shows the About Dialog displaying the credits page."></div></div></div></div><br class="figure-break"><p>
-    The About Dialog is used to display information about Xfce 4, including a 
-    list of components, a credits page for all people who helped to create 
-    Xfce 4 and license information.
-  </p></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="utils-scripts"></a>Scripts</h2></div></div></div><div class="variablelist"><dl><dt><span class="term">startxfce4</span></dt><dd><p>
-          The <strong class="application"><code>startxfce4</code></strong> is a convenient script to 
-          start an Xfce 4 session from the console. It will give you a session 
-          with two panels and with the desktop manager and window manager 
-          running.
-	</p><p>
-          To customize the behaviour of <strong class="application"><code>startxfce4</code></strong>, 
-          copy the file <code class="filename">${sysconfdir}/xdg/xfce4/xinitrc</code> to 
-          your personal <code class="filename">~/.config/xfce4/</code> directory and edit 
-          that file. If you install from source, 
-          <code class="filename">${sysconfdir}</code> defaults to 
-          <code class="filename">/usr/local/etc</code>; for binary packages it is usually
-          set to <code class="filename">/etc</code>.
-	</p><p>
-          With the inclusion of a session manager in Xfce 4.2, the preferred way 
-          to change startup behaviour is by using the "Save session" option in 
-          the logout dialog.
-	</p></dd><dt><span class="term">xfhelp4</span></dt><dd><p>
-          This script is used to open the local Xfce 4 documentation in a 
-          browser. By default it will try to use 
-          <strong class="application"><code>exo-open</code></strong> from the libexo library. You 
-          can change the preferred browser from the Xfce Settings Manager
-          dialog. If <strong class="application"><code>exo-open</code></strong> is not available, the 
-          script will try a number of well-known browsers, like firefox, galeon
-          or konqueror, but you can change that by setting the $BROWSER 
-          environment variable.
-	</p><p>
-          If there is documentation installed in the language of your current 
-          locale, xfhelp4 will open that instead of the default English 
-          documentation.
-	</p></dd><dt><span class="term">xflock4</span></dt><dd><p>
-          This script is used by the panel to lock the screen using xscreensaver
-          if available and falling back to xlock.
-	</p></dd></dl></div></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="utils-copyright"></a>About xfce-utils</h2></div></div></div><p>
-    <strong class="application"><code>xfce-utils</code></strong> was written by 
-    Jasper Huijsmans (<code class="email"><<a href="mailto:jasper at xfce.org">jasper at xfce.org</a>></code>), 
-    Olivier Fourdan (<code class="email"><<a href="mailto:fourdan at xfce.org">fourdan at xfce.org</a>></code>) and 
-    Benedikt Meurer (<code class="email"><<a href="mailto:benny at xfce.org">benny at xfce.org</a>></code>).
-    To find more information, visit the 
-    <a href="http://www.xfce.org" target="_top">Xfce web site</a>. 
-  </p><p>
-    To report a bug or make a suggestion regarding this application or this 
-    manual, please use the bug tracking system at 
-    <a href="http://bugzilla.xfce.org/" target="_top">http://bugzilla.xfce.org/</a>. 
-  </p><p>
-    If you have questions about the use or installation of this package, ask on 
-    the <a href="http://lunar-linux.org/mailman/listinfo/xfce" target="_top">xfce</a> mailing list. Development discussion 
-    takes place on the 
-    <a href="http://lunar-linux.org/mailman/listinfo/xfce4-dev" target="_top">xfce4-dev</a> mailing list.
-  </p><p> 
-    This program is distributed under the terms of the GNU General Public 
-    License as published by the Free Software Foundation; either version 2 of 
-    the License, or (at your option) any later version.
-  </p><p>
-    You should have received a copy of the GNU General Public License along 
-    with this program; if not, write to the Free Software Foundation, Inc., 
-    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-  </p></div></div></body></html>
diff --git a/doc/xfce-utils/C/xfce-utils.xml b/doc/xfce-utils/C/xfce-utils.xml
deleted file mode 100644
index 07c910d..0000000
--- a/doc/xfce-utils/C/xfce-utils.xml
+++ /dev/null
@@ -1,259 +0,0 @@
-<?xml version='1.0'?> 
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
-          "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
-  <!ENTITY date "December 2006"> 
-  <!ENTITY appversion "4.4"> 
-  <!ENTITY app "<application>xfce-utils</application>"> 
-]>
-
-<article id="xfce-utils" lang="en">
-
-<!-- Header --> 
-<articleinfo>
-
-  <title>Xfce Utilities and Scripts</title>
-  
-  <copyright>
-    <year>2006</year> <holder>Jasper Huijsmans</holder>
-  </copyright>
-
-  <copyright>
-    <year>2004</year> <holder>Benedikt Meurer</holder>
-  </copyright>
-
-<!-- translators: uncomment this:
-
-  <copyright>
-   <year>2002</year> <holder>ME-THE-TRANSLATOR (Latin
-   translation)</holder>
-  </copyright>
-
- -->
-
-  <legalnotice id="legalnotice">
-    <para>
-      This document is provided under the terms of the GNU GPL, version
-      2 or (at your option) any later version.
-    </para>
-  </legalnotice>
-  
-  <authorgroup>
-
-    <author>
-      <firstname>Jasper</firstname> <surname>Huijsmans</surname>
-      <affiliation>
-	      <address><email>jasper at xfce.org</email></address>
-      </affiliation>
-    </author>
-
-    <author>
-      <firstname>Benedikt</firstname> <surname>Meurer</surname>
-      <affiliation>
-        <address><email>benedikt.meurer at unix-ag.uni-siegen.de</email></address>
-      </affiliation>
-    </author>
-
-<!-- This is appropriate place for other contributors: translators,
-maintainers, etc. Commented out by default.
-
-    <othercredit role="translator">
-      <firstname>Latin</firstname> <surname>Translator 1</surname>
-      <affiliation>
-	<orgname>Latin Translation Team</orgname>
-	<address><email>translator at gnome.org</email> </address>
-      </affiliation> <contrib>Latin translation</contrib>
-    </othercredit>
--->
-
-  </authorgroup>
-
-  <!--
-  <revhistory>
-    <revision>
-      <revnumber>0.3</revnumber> 
-      <date>May 2003</date>
-      <authorinitials>jbh</authorinitials>
-    </revision>
-  </revhistory>
-  -->
-
-  <releaseinfo>This manual describes the &app; package, version &appversion;.
-  </releaseinfo>
-
-</articleinfo>
-
-<sect1 id="utils-intro">
-  <title>Introduction</title>
-
-  <para>
-    The &app; package provides the general 'About Xfce 4' dialog, a run dialog 
-    and several useful scripts that are also used by other Xfce components such
-    as the panel and the desktop menu.
-  </para>
-
-</sect1>
-
-<sect1 id="utils-run">
-  <title>Run Dialog</title>
-
-  <figure id="run-dialog-fig">
-    <title>Run dialog</title>
-    <screenshot>
-      <mediaobject>
-        <imageobject>
-          <imagedata fileref="images/run-dialog.png" format="PNG" />
-        </imageobject>
-
-        <textobject>
-          <phrase>Shows the run dialog.</phrase>
-        </textobject>
-      </mediaobject>
-    </screenshot>
-  </figure>
-
-  <para>
-    The run dialog allows the user to launch applications. Applications can be 
-    run in a Terminal emulator (Terminal by default, see xfterm4 script below).
-    In a default Xfce environment, the Alt+F2 key combination will open the run
-    dialog.
-  </para>
-
-</sect1>
-
-<sect1 id="utils-about">
-  <title>About Dialog</title>
-
-  <figure id="about-dialog-fig">
-    <title>About dialog</title>
-    <screenshot>
-      <mediaobject>
-        <imageobject>
-          <imagedata fileref="images/about-dialog.png" format="PNG" />
-        </imageobject>
-        <textobject>
-          <phrase>Shows the About Dialog displaying the credits page.
-          </phrase>
-        </textobject>
-      </mediaobject>
-    </screenshot>
-  </figure>
-
-  <para>
-    The About Dialog is used to display information about Xfce 4, including a 
-    list of components, a credits page for all people who helped to create 
-    Xfce 4 and license information.
-  </para>
-
-</sect1>
-
-<sect1 id="utils-scripts">
-  <title>Scripts</title>
-
-  <variablelist>
-    <varlistentry>
-      <term>startxfce4</term>
-      <listitem>
-	<para>
-          The <application>startxfce4</application> is a convenient script to 
-          start an Xfce 4 session from the console. It will give you a session 
-          with two panels and with the desktop manager and window manager 
-          running.
-	</para>
-
-	<para>
-          To customize the behaviour of <application>startxfce4</application>, 
-          copy the file <filename>${sysconfdir}/xdg/xfce4/xinitrc</filename> to 
-          your personal <filename>~/.config/xfce4/</filename> directory and edit 
-          that file. If you install from source, 
-          <filename>${sysconfdir}</filename> defaults to 
-          <filename>/usr/local/etc</filename>; for binary packages it is usually
-          set to <filename>/etc</filename>.
-	</para>
-
-	<para>
-          With the inclusion of a session manager in Xfce 4.2, the preferred way 
-          to change startup behaviour is by using the "Save session" option in 
-          the logout dialog.
-	</para>
-      </listitem>
-    </varlistentry>
-    
-    <varlistentry>
-      <term>xfhelp4</term>
-      <listitem>
-	<para>
-          This script is used to open the local Xfce 4 documentation in a 
-          browser. By default it will try to use 
-          <application>exo-open</application> from the libexo library. You 
-          can change the preferred browser from the Xfce Settings Manager
-          dialog. If <application>exo-open</application> is not available, the 
-          script will try a number of well-known browsers, like firefox, galeon
-          or konqueror, but you can change that by setting the $BROWSER 
-          environment variable.
-	</para>
-	
-	<para>
-          If there is documentation installed in the language of your current 
-          locale, xfhelp4 will open that instead of the default English 
-          documentation.
-	</para>
-      </listitem>
-    </varlistentry>
-    
-    <varlistentry>
-      <term>xflock4</term>
-      <listitem>
-	<para>
-          This script is used by the panel to lock the screen using xscreensaver
-          if available and falling back to xlock.
-	</para>
-      </listitem>
-    </varlistentry>
-  </variablelist>
-  
-</sect1>
-
-<sect1 id="utils-copyright">
-  <title>About xfce-utils</title>
-
-  <para>
-    &app; was written by 
-    Jasper Huijsmans (<email>jasper at xfce.org</email>), 
-    Olivier Fourdan (<email>fourdan at xfce.org</email>) and 
-    Benedikt Meurer (<email>benny at xfce.org</email>).
-    To find more information, visit the 
-    <ulink url="http://www.xfce.org" type="http">Xfce web site</ulink>. 
-  </para>
-
-  <para>
-    To report a bug or make a suggestion regarding this application or this 
-    manual, please use the bug tracking system at 
-    <ulink url="http://bugzilla.xfce.org/" 
-           type="http">http://bugzilla.xfce.org/</ulink>. 
-  </para>
-
-  <para>
-    If you have questions about the use or installation of this package, ask on 
-    the <ulink url="http://lunar-linux.org/mailman/listinfo/xfce"
-               type="http">xfce</ulink> mailing list. Development discussion 
-    takes place on the 
-    <ulink url="http://lunar-linux.org/mailman/listinfo/xfce4-dev"
-           type="http">xfce4-dev</ulink> mailing list.
-  </para>
-    
-  <para> 
-    This program is distributed under the terms of the GNU General Public 
-    License as published by the Free Software Foundation; either version 2 of 
-    the License, or (at your option) any later version.
-  </para>
-
-  <para>
-    You should have received a copy of the GNU General Public License along 
-    with this program; if not, write to the Free Software Foundation, Inc., 
-    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-  </para>
-
-</sect1>
-
-</article>
-
diff --git a/doc/xfce-utils/Makefile.am b/doc/xfce-utils/Makefile.am
deleted file mode 100644
index a291427..0000000
--- a/doc/xfce-utils/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-SUBDIRS = \
-	C
-
-html: Makefile
-	make -C C html
diff --git a/doc/xfce4-user-guide/C/BSD.html b/doc/xfce4-user-guide/C/BSD.html
deleted file mode 100644
index 25f9e67..0000000
--- a/doc/xfce4-user-guide/C/BSD.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>BSD License</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="xfce4-copyright.html" title="Copyright and Licences"><link rel="next" href="GPL.html" title="GNU General Public License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">BSD License</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="xfce4-copyright.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="GPL.html">Next</a></td></tr></table><hr></
 div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="BSD"></a>BSD License</h2></div></div></div><pre class="programlisting">
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- 1. Redistributions of source code must retain the above copyright
-    notice, this list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in the
-    documentation and/or other materials provided with the distribution.
-
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-</pre></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="xfce4-copyright.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="GPL.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Copyright and Licences </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> GNU General Public License</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/GPL.html b/doc/xfce4-user-guide/C/GPL.html
deleted file mode 100644
index 7556e93..0000000
--- a/doc/xfce4-user-guide/C/GPL.html
+++ /dev/null
@@ -1,301 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>GNU General Public License</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="BSD.html" title="BSD License"><link rel="next" href="LGPL.html" title="GNU Library General Public License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">GNU General Public License</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="BSD.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="LGPL.html">Next</a></td></tr></table><
 hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="GPL"></a>GNU General Public License</h2></div></div></div><pre class="programlisting">
-                         GNU GENERAL PUBLIC LICENSE
-     
-                            Version 2, June 1991
-     
-     Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-     
-     59 Temple Place, Suite 330, Boston, MA
-     
-     02111-1307 USA
-     
-     Everyone is permitted to copy and distribute verbatim copies of
-     this license document, but changing it is not allowed.
-     
-                                  Preamble
-     
-     The licenses for most software are designed to take away your
-     freedom to share and change it. By contrast, the GNU General Public
-     License is intended to guarantee your freedom to share and change
-     free software--to make sure the software is free for all its users.
-     This General Public License applies to most of the Free Software
-     Foundation's software and to any other program whose authors commit
-     to using it. (Some other Free Software Foundation software is
-     covered by the GNU Library General Public License instead.) You can
-     apply it to your programs, too.
-     
-     When we speak of free software, we are referring to freedom, not
-     price. Our General Public Licenses are designed to make sure that
-     you have the freedom to distribute copies of free software (and
-     charge for this service if you wish), that you receive source code
-     or can get it if you want it, that you can change the software or
-     use pieces of it in new free programs; and that you know you can do
-     these things.
-     
-     To protect your rights, we need to make restrictions that forbid
-     anyone to deny you these rights or to ask you to surrender the
-     rights. These restrictions translate to certain responsibilities
-     for you if you distribute copies of the software, or if you modify
-     it.
-     
-     For example, if you distribute copies of such a program, whether
-     gratis or for a fee, you must give the recipients all the rights
-     that you have. You must make sure that they, too, receive or can
-     get the source code. And you must show them these terms so they
-     know their rights.
-     
-     We protect your rights with two steps: (1) copyright the software,
-     and (2) offer you this license which gives you legal permission to
-     copy, distribute and/or modify the software.
-     
-     Also, for each author's protection and ours, we want to make
-     certain that everyone understands that there is no warranty for
-     this free software. If the software is modified by someone else and
-     passed on, we want its recipients to know that what they have is
-     not the original, so that any problems introduced by others will
-     not reflect on the original authors' reputations.
-     
-     Finally, any free program is threatened constantly by software
-     patents. We wish to avoid the danger that redistributors of a free
-     program will individually obtain patent licenses, in effect making
-     the program proprietary. To prevent this, we have made it clear
-     that any patent must be licensed for everyone's free use or not
-     licensed at all.
-     
-     The precise terms and conditions for copying, distribution and
-     modification follow.
-     
-                         GNU GENERAL PUBLIC LICENSE
-     
-       TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-     
-     0. This License applies to any program or other work which contains
-     a notice placed by the copyright holder saying it may be
-     distributed under the terms of this General Public License. The
-     "Program", below, refers to any such program or work, and a "work
-     based on the Program" means either the Program or any derivative
-     work under copyright law: that is to say, a work containing the
-     Program or a portion of it, either verbatim or with modifications
-     and/or translated into another language. (Hereinafter, translation
-     is included without limitation in the term "modification".) Each
-     licensee is addressed as "you".
-     
-     Activities other than copying, distribution and modification are
-     not covered by this License; they are outside its scope. The act of
-     running the Program is not restricted, and the output from the
-     Program is covered only if its contents constitute a work based on
-     the Program (independent of having been made by running the
-     Program). Whether that is true depends on what the Program does.
-     
-     1. You may copy and distribute verbatim copies of the Program's
-     source code as you receive it, in any medium, provided that you
-     conspicuously and appropriately publish on each copy an appropriate
-     copyright notice and disclaimer of warranty; keep intact all the
-     notices that refer to this License and to the absence of any
-     warranty; and give any other recipients of the Program a copy of
-     this License along with the Program.
-     
-     You may charge a fee for the physical act of transferring a copy,
-     and you may at your option offer warranty protection in exchange
-     for a fee.
-     
-     2. You may modify your copy or copies of the Program or any portion
-     of it, thus forming a work based on the Program, and copy and
-     distribute such modifications or work under the terms of Section 1
-     above, provided that you also meet all of these conditions:
-     
-     a) You must cause the modified files to carry prominent notices
-     stating that you changed the files and the date of any change.
-     
-     b) You must cause any work that you distribute or publish, that in
-     whole or in part contains or is derived from the Program or any
-     part thereof, to be licensed as a whole at no charge to all third
-     parties under the terms of this License.
-     
-     c) If the modified program normally reads commands interactively
-     when run, you must cause it, when started running for such
-     interactive use in the most ordinary way, to print or display an
-     announcement including an appropriate copyright notice and a notice
-     that there is no warranty (or else, saying that you provide a
-     warranty) and that users may redistribute the program under these
-     conditions, and telling the user how to view a copy of this
-     License. (Exception: if the Program itself is interactive but does
-     not normally print such an announcement, your work based on the
-     Program is not required to print an announcement.)
-     
-     These requirements apply to the modified work as a whole. If
-     identifiable sections of that work are not derived from the
-     Program, and can be reasonably considered independent and separate
-     works in themselves, then this License, and its terms, do not apply
-     to those sections when you distribute them as separate works. But
-     when you distribute the same sections as part of a whole which is a
-     work based on the Program, the distribution of the whole must be on
-     the terms of this License, whose permissions for other licensees
-     extend to the entire whole, and thus to each and every part
-     regardless of who wrote it.
-     
-     Thus, it is not the intent of this section to claim rights or
-     contest your rights to work written entirely by you; rather, the
-     intent is to exercise the right to control the distribution of
-     derivative or collective works based on the Program.
-     
-     In addition, mere aggregation of another work not based on the
-     Program with the Program (or with a work based on the Program) on a
-     volume of a storage or distribution medium does not bring the other
-     work under the scope of this License.
-     
-     3. You may copy and distribute the Program (or a work based on it,
-     under Section 2) in object code or executable form under the terms
-     of Sections 1 and 2 above provided that you also do one of the
-     following:
-     
-     a) Accompany it with the complete corresponding machine-readable
-     source code, which must be distributed under the terms of Sections
-     1 and 2 above on a medium customarily used for software
-     interchange; or,
-     
-     b) Accompany it with a written offer, valid for at least three
-     years, to give any third party, for a charge no more than your cost
-     of physically performing source distribution, a complete
-     machine-readable copy of the corresponding source code, to be
-     distributed under the terms of Sections 1 and 2 above on a medium
-     customarily used for software interchange; or,
-     
-     c) Accompany it with the information you received as to the offer
-     to distribute corresponding source code. (This alternative is
-     allowed only for noncommercial distribution and only if you
-     received the program in object code or executable form with such an
-     offer, in accord with Subsection b above.)
-     
-     The source code for a work means the preferred form of the work for
-     making modifications to it. For an executable work, complete source
-     code means all the source code for all modules it contains, plus
-     any associated interface definition files, plus the scripts used to
-     control compilation and installation of the executable. However, as
-     a special exception, the source code distributed need not include
-     anything that is normally distributed (in either source or binary
-     form) with the major components (compiler, kernel, and so on) of
-     the operating system on which the executable runs, unless that
-     component itself accompanies the executable.
-     
-     If distribution of executable or object code is made by offering
-     access to copy from a designated place, then offering equivalent
-     access to copy the source code from the same place counts as
-     distribution of the source code, even though third parties are not
-     compelled to copy the source along with the object code.
-     
-     4. You may not copy, modify, sublicense, or distribute the Program
-     except as expressly provided under this License. Any attempt
-     otherwise to copy, modify, sublicense or distribute the Program is
-     void, and will automatically terminate your rights under this
-     License. However, parties who have received copies, or rights, from
-     you under this License will not have their licenses terminated so
-     long as such parties remain in full compliance.
-     
-     5. You are not required to accept this License, since you have not
-     signed it. However, nothing else grants you permission to modify or
-     distribute the Program or its derivative works. These actions are
-     prohibited by law if you do not accept this License. Therefore, by
-     modifying or distributing the Program (or any work based on the
-     Program), you indicate your acceptance of this License to do so,
-     and all its terms and conditions for copying, distributing or
-     modifying the Program or works based on it.
-     
-     6. Each time you redistribute the Program (or any work based on the
-     Program), the recipient automatically receives a license from the
-     original licensor to copy, distribute or modify the Program subject
-     to these terms and conditions. You may not impose any further
-     restrictions on the recipients' exercise of the rights granted
-     herein. You are not responsible for enforcing compliance by third
-     parties to this License.
-     
-     7. If, as a consequence of a court judgment or allegation of patent
-     infringement or for any other reason (not limited to patent
-     issues), conditions are imposed on you (whether by court order,
-     agreement or otherwise) that contradict the conditions of this
-     License, they do not excuse you from the conditions of this
-     License. If you cannot distribute so as to satisfy simultaneously
-     your obligations under this License and any other pertinent
-     obligations, then as a consequence you may not distribute the
-     Program at all. For example, if a patent license would not permit
-     royalty-free redistribution of the Program by all those who receive
-     copies directly or indirectly through you, then the only way you
-     could satisfy both it and this License would be to refrain entirely
-     from distribution of the Program.
-     
-     If any portion of this section is held invalid or unenforceable
-     under any particular circumstance, the balance of the section is
-     intended to apply and the section as a whole is intended to apply
-     in other circumstances.
-     
-     It is not the purpose of this section to induce you to infringe any
-     patents or other property right claims or to contest validity of
-     any such claims; this section has the sole purpose of protecting
-     the integrity of the free software distribution system, which is
-     implemented by public license practices. Many people have made
-     generous contributions to the wide range of software distributed
-     through that system in reliance on consistent application of that
-     system; it is up to the author/donor to decide if he or she is
-     willing to distribute software through any other system and a
-     licensee cannot impose that choice.
-     
-     This section is intended to make thoroughly clear what is believed
-     to be a consequence of the rest of this License.
-     
-     8. If the distribution and/or use of the Program is restricted in
-     certain countries either by patents or by copyrighted interfaces,
-     the original copyright holder who places the Program under this
-     License may add an explicit geographical distribution limitation
-     excluding those countries, so that distribution is permitted only
-     in or among countries not thus excluded. In such case, this License
-     incorporates the limitation as if written in the body of this
-     License.
-     
-     9. The Free Software Foundation may publish revised and/or new
-     versions of the General Public License from time to time. Such new
-     versions will be similar in spirit to the present version, but may
-     differ in detail to address new problems or concerns.
-     
-     Each version is given a distinguishing version number. If the
-     Program specifies a version number of this License which applies to
-     it and "any later version", you have the option of following the
-     terms and conditions either of that version or of any later version
-     published by the Free Software Foundation. If the Program does not
-     specify a version number of this License, you may choose any
-     version ever published by the Free Software Foundation.
-     
-     10. If you wish to incorporate parts of the Program into other free
-     programs whose distribution conditions are different, write to the
-     author to ask for permission. For software which is copyrighted by
-     the Free Software Foundation, write to the Free Software
-     Foundation; we sometimes make exceptions for this. Our decision
-     will be guided by the two goals of preserving the free status of
-     all derivatives of our free software and of promoting the sharing
-     and reuse of software generally.
-     
-     NO WARRANTY
-     
-     11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
-     WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
-     LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS
-     AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-     OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
-     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-     FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
-     PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
-     DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR
-     OR CORRECTION.
-     
-     12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-     WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY
-     MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE
-     LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
-     INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
-     INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-     DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU
-     OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY
-     OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
-     ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-     
-                         END OF TERMS AND CONDITIONS
-</pre></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="BSD.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="LGPL.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">BSD License </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> GNU Library General Public License</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/LGPL.html b/doc/xfce4-user-guide/C/LGPL.html
deleted file mode 100644
index e03514c..0000000
--- a/doc/xfce4-user-guide/C/LGPL.html
+++ /dev/null
@@ -1,439 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>GNU Library General Public License</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="GPL.html" title="GNU General Public License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">GNU Library General Public License</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="GPL.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title"
  style="clear: both"><a name="LGPL"></a>GNU Library General Public License</h2></div></div></div><pre class="programlisting">
-		  GNU LIBRARY GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1991 Free Software Foundation, Inc.
-    		    59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the library GPL.  It is
- numbered 2 because it goes with version 2 of the ordinary GPL.]
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Library General Public License, applies to some
-specially designated Free Software Foundation software, and to any
-other libraries whose authors decide to use it.  You can use it for
-your libraries, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if
-you distribute copies of the library, or if you modify it.
-
-  For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you.  You must make sure that they, too, receive or can get the source
-code.  If you link a program with the library, you must provide
-complete object files to the recipients so that they can relink them
-with the library, after making changes to the library and recompiling
-it.  And you must show them these terms so they know their rights.
-
-  Our method of protecting your rights has two steps: (1) copyright
-the library, and (2) offer you this license which gives you legal
-permission to copy, distribute and/or modify the library.
-
-  Also, for each distributor's protection, we want to make certain
-that everyone understands that there is no warranty for this free
-library.  If the library is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original
-version, so that any problems introduced by others will not reflect on
-the original authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that companies distributing free
-software will individually obtain patent licenses, thus in effect
-transforming the program into proprietary software.  To prevent this,
-we have made it clear that any patent must be licensed for everyone's
-free use or not licensed at all.
-
-  Most GNU software, including some libraries, is covered by the ordinary
-GNU General Public License, which was designed for utility programs.  This
-license, the GNU Library General Public License, applies to certain
-designated libraries.  This license is quite different from the ordinary
-one; be sure to read it in full, and don't assume that anything in it is
-the same as in the ordinary license.
-
-  The reason we have a separate public license for some libraries is that
-they blur the distinction we usually make between modifying or adding to a
-program and simply using it.  Linking a program with a library, without
-changing the library, is in some sense simply using the library, and is
-analogous to running a utility program or application program.  However, in
-a textual and legal sense, the linked executable is a combined work, a
-derivative of the original library, and the ordinary General Public License
-treats it as such.
-
-  Because of this blurred distinction, using the ordinary General
-Public License for libraries did not effectively promote software
-sharing, because most developers did not use the libraries.  We
-concluded that weaker conditions might promote sharing better.
-
-  However, unrestricted linking of non-free programs would deprive the
-users of those programs of all benefit from the free status of the
-libraries themselves.  This Library General Public License is intended to
-permit developers of non-free programs to use free libraries, while
-preserving your freedom as a user of such programs to change the free
-libraries that are incorporated in them.  (We have not seen how to achieve
-this as regards changes in header files, but we have achieved it as regards
-changes in the actual functions of the Library.)  The hope is that this
-will lead to faster development of free libraries.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.  Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library".  The
-former contains code derived from the library, while the latter only
-works together with the library.
-
-  Note that it is possible for a library to be covered by the ordinary
-General Public License rather than by this special one.
-
-		  GNU LIBRARY GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any software library which
-contains a notice placed by the copyright holder or other authorized
-party saying it may be distributed under the terms of this Library
-General Public License (also called "this License").  Each licensee is
-addressed as "you".
-
-  A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-  The "Library", below, refers to any such software library or work
-which has been distributed under these terms.  A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language.  (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-  "Source code" for a work means the preferred form of the work for
-making modifications to it.  For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-  Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it).  Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-  
-  1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-  You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-  2. You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) The modified work must itself be a software library.
-
-    b) You must cause the files modified to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    c) You must cause the whole of the work to be licensed at no
-    charge to all third parties under the terms of this License.
-
-    d) If a facility in the modified Library refers to a function or a
-    table of data to be supplied by an application program that uses
-    the facility, other than as an argument passed when the facility
-    is invoked, then you must make a good faith effort to ensure that,
-    in the event an application does not supply such function or
-    table, the facility still operates, and performs whatever part of
-    its purpose remains meaningful.
-
-    (For example, a function in a library to compute square roots has
-    a purpose that is entirely well-defined independent of the
-    application.  Therefore, Subsection 2d requires that any
-    application-supplied function or table used by this function must
-    be optional: if the application does not supply it, the square
-    root function must still compute square roots.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library.  To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License.  (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.)  Do not make any other change in
-these notices.
-
-  Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-  This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-  4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-  If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library".  Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-  However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library".  The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-  When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library.  The
-threshold for this to be true is not precisely defined by law.
-
-  If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work.  (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-  Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-  6. As an exception to the Sections above, you may also compile or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-  You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License.  You must supply a copy of this License.  If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License.  Also, you must do one
-of these things:
-
-    a) Accompany the work with the complete corresponding
-    machine-readable source code for the Library including whatever
-    changes were used in the work (which must be distributed under
-    Sections 1 and 2 above); and, if the work is an executable linked
-    with the Library, with the complete machine-readable "work that
-    uses the Library", as object code and/or source code, so that the
-    user can modify the Library and then relink to produce a modified
-    executable containing the modified Library.  (It is understood
-    that the user who changes the contents of definitions files in the
-    Library will not necessarily be able to recompile the application
-    to use the modified definitions.)
-
-    b) Accompany the work with a written offer, valid for at
-    least three years, to give the same user the materials
-    specified in Subsection 6a, above, for a charge no more
-    than the cost of performing this distribution.
-
-    c) If distribution of the work is made by offering access to copy
-    from a designated place, offer equivalent access to copy the above
-    specified materials from the same place.
-
-    d) Verify that the user has already received a copy of these
-    materials or that you have already sent this user a copy.
-
-  For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it.  However, as a special exception,
-the source code distributed need not include anything that is normally
-distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-  It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system.  Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-  7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
-    a) Accompany the combined library with a copy of the same work
-    based on the Library, uncombined with any other library
-    facilities.  This must be distributed under the terms of the
-    Sections above.
-
-    b) Give prominent notice with the combined library of the fact
-    that part of it is a work based on the Library, and explaining
-    where to find the accompanying uncombined form of the same work.
-
-  8. You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License.  Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License.  However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-  9. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Library or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-  10. Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  11. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  12. If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded.  In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-  13. The Free Software Foundation may publish revised and/or new
-versions of the Library General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation.  If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-  14. If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission.  For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this.  Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-			    NO WARRANTY
-
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-</pre></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="GPL.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">GNU General Public License </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/Makefile.am b/doc/xfce4-user-guide/C/Makefile.am
deleted file mode 100644
index a26d561..0000000
--- a/doc/xfce4-user-guide/C/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-SUBDIRS = \
-  	 images
-
-noinst_DATA = \
-	BSD.xml \
-	copyright.xml \
-	GPL.xml \
-	LGPL.xml \
-	xfce4-user-guide.xml
-
-docdir=$(datadir)/xfce4/doc/C
-
-doc_DATA= \
-	BSD.html \
-	GPL.html \
-	LGPL.html \
-	xfce4-user-guide.html \
-	xfce4-intro.html \
-	xfce4-use.html \
-	xfce4-components.html \
-	xfce4-copyright.html \
-	xfce4-install.html
-
-EXTRA_DIST = $(noinst_DATA) $(doc_DATA)
-
-html: $(srcdir)/xfce4-user-guide.xml
-	xsltproc $(top_srcdir)/doc/xfce.xsl $(srcdir)/xfce4-user-guide.xml
-
diff --git a/doc/xfce4-user-guide/C/copyright.xml b/doc/xfce4-user-guide/C/copyright.xml
deleted file mode 100644
index 16b2a02..0000000
--- a/doc/xfce4-user-guide/C/copyright.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<sect1 id="xfce4-copyright">
-  <title>Copyright and Licences</title>
-  
-  <para>Xfce 4 is copyright © Olivier Fourdan 
-    (<email>fourdan at xfce.org</email>). The different components are
-    copyrighted by their respective authors.
-  </para>
-
-  <para>Three different licenses are used in the Xfce 4 project: BSD, LGPL 
-    and GPL.
-  </para>
-
-  <para>
-    Please, refer to the COPYING files included in the packages for 
-    the licensing terms of the separate Xfce 4 components.
-  </para>
-  
-</sect1>
-
diff --git a/doc/xfce4-user-guide/C/images/Makefile.am b/doc/xfce4-user-guide/C/images/Makefile.am
deleted file mode 100644
index e7ed813..0000000
--- a/doc/xfce4-user-guide/C/images/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-imagesdir = $(datadir)/xfce4/doc/C/images
-
-images_DATA =								\
-	default-session.png						\
-	link_xfce.jpg
-
-EXTRA_DIST =								\
-	$(images_DATA)
diff --git a/doc/xfce4-user-guide/C/images/link_xfce.jpg b/doc/xfce4-user-guide/C/images/link_xfce.jpg
deleted file mode 100644
index 11ddee8..0000000
Binary files a/doc/xfce4-user-guide/C/images/link_xfce.jpg and /dev/null differ
diff --git a/doc/xfce4-user-guide/C/xfce4-components.html b/doc/xfce4-user-guide/C/xfce4-components.html
deleted file mode 100644
index 535f916..0000000
--- a/doc/xfce4-user-guide/C/xfce4-components.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Components of Xfce</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="xfce4-use.html" title="Using Xfce4"><link rel="next" href="xfce4-install.html" title="Installing Xfce4"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Components of Xfce</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="xfce4-use.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="xfce4-install.html">Next</a></td></tr></table><hr><
 /div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="xfce4-components"></a>Components of Xfce</h2></div></div></div><p>The Xfce components are packaged separately. This section contains a
-    list of the available modules with a short description.
-  </p><div class="variablelist"><dl><dt><span class="term">libxfce4util</span></dt><dd><p>Library with non-graphical helper functions.</p></dd><dt><span class="term">libxfcegui4</span></dt><dd><p>Widget library and X Window System interaction.</p></dd><dt><span class="term">libexo</span></dt><dd><p>A library created for the Thunar file manager, containing many
-          useful functions for applications designed for Xfce.
-	</p></dd><dt><span class="term">libxfce4mcs</span></dt><dd><p>Settings management library used by many Xfce components.
-	</p></dd><dt><span class="term">xfce-mcs-manager</span></dt><dd><p>Settings manager. Runs in the background and provides global
-	  settings information to other Xfce components. There is a main
-	  control panel to access the configuration dialogs of Xfce
-	  components.
-	</p></dd><dt><span class="term">xfce-mcs-plugins</span></dt><dd><p>Settings manager plugins. These plugins provide settings 
-	  dialogs for general items that are not part of a package, e.g. 
-	  user interface settings (Gtk+ theme, icon theme, font settings),
-          mouse settings, keyboard settings and display settings.
-	</p></dd><dt><span class="term">xfce4-session</span></dt><dd><p>Session manager. The session manager controls the startup and
-	  shutdown of the Xfce Desktop Environment. On logout it can save the
-	  state of running applications (if the application supports it) and
-          restore them properly again the next time you log in.
-	</p></dd><dt><span class="term">xfwm4</span></dt><dd><p>The Xfce window mananger. Manages the placement of 
-	  application windows on the screen, provides window decorations 
-	  and manages workspaces.
-	</p></dd><dt><span class="term">xfce4-panel</span></dt><dd><p>The Xfce panel. Provides program lauchers, a workspace
-	  switcher, a clock, menus and more.
-	</p></dd><dt><span class="term">xfdesktop</span></dt><dd><p>Desktop background manager. This program sets the background 
-	  image and/or color, and provides a root window menu, a menu panel
-	  plugin and a menu editor. Optionally, it can show icons on the 
-          desktop as well.
-	</p></dd><dt><span class="term">xfce-utils</span></dt><dd><p>Essential utilities and scripts. Provides the Xfce about dialog, 
-          a run dialog, the startxfce4 script and several other important 
-          scripts. Also contains this user guide.
-	</p></dd><dt><span class="term">Thunar</span></dt><dd><p>A fast and efficient file manager.</p></dd><dt><span class="term">xfprint</span></dt><dd><p>Printing support. Provides a graphical frontend for printing.
-	  Includes <strong class="application"><code>xfprint4</code></strong> and 
-	  <strong class="application"><code>xfprint-manager</code></strong>.
-	</p></dd><dt><span class="term">xfce4-appfinder</span></dt><dd><p>An application finder that allows you to search, launch and 
-	  find information about applications installed on your system.
-	</p></dd><dt><span class="term">orage</span></dt><dd><p>Simple calendar application with reminders.</p></dd><dt><span class="term">gtk-xfce-engine-2</span></dt><dd><p>Theme engine for GTK2. Not required for the desktop, but it's a 
-          nice theme engine so you might just as well give it a try.
-	</p></dd><dt><span class="term">xfce4-icon-theme</span></dt><dd><p>Default icon theme for Xfce, called <span class="emphasis"><em>Rodent</em></span>.</p></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="xfce4-use.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="xfce4-install.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Using Xfce4 </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> Installing Xfce4</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/xfce4-copyright.html b/doc/xfce4-user-guide/C/xfce4-copyright.html
deleted file mode 100644
index 022d4a2..0000000
--- a/doc/xfce4-user-guide/C/xfce4-copyright.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Copyright and Licences</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="xfce4-install.html" title="Installing Xfce4"><link rel="next" href="BSD.html" title="BSD License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Copyright and Licences</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="xfce4-install.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="BSD.html">Next</a></td></tr></table><hr></div
 ><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="xfce4-copyright"></a>Copyright and Licences</h2></div></div></div><p>Xfce 4 is copyright © Olivier Fourdan 
-    (<code class="email"><<a href="mailto:fourdan at xfce.org">fourdan at xfce.org</a>></code>). The different components are
-    copyrighted by their respective authors.
-  </p><p>Three different licenses are used in the Xfce 4 project: BSD, LGPL 
-    and GPL.
-  </p><p>
-    Please, refer to the COPYING files included in the packages for 
-    the licensing terms of the separate Xfce 4 components.
-  </p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="xfce4-install.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="BSD.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Installing Xfce4 </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> BSD License</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/xfce4-install.html b/doc/xfce4-user-guide/C/xfce4-install.html
deleted file mode 100644
index 5289dfe..0000000
--- a/doc/xfce4-user-guide/C/xfce4-install.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Installing Xfce4</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="xfce4-components.html" title="Components of Xfce"><link rel="next" href="xfce4-copyright.html" title="Copyright and Licences"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Installing Xfce4</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="xfce4-components.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="xfce4-copyright.html">Next
 </a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="xfce4-install"></a>Installing Xfce4</h2></div></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="binary-packages"></a>Binary packages</h3></div></div></div><p>The Xfce project officially only releases source code for the desktop 
-      environment. However, binary packages may have been contributed by other 
-      people for your OS or distribution.
-    </p><p>Look at the Xfce site for 
-      <a href="http://xfce.org/index.php?page=download" target="_top">download locations</a> and additional information
-      about available binary packages.  If you could not find binary packages 
-      for your OS, they may be available from your OS vendor or distributor, 
-      or you can install Xfce from source.
-    </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="graphical-installers"></a>Graphical installers</h3></div></div></div><p>The easiest way to install Xfce from source is by using the
-      <a href="http://www.xfce.org/archive/xfce-4.4.0/installers/" target="_top">graphical installers</a>. Documentation and 
-      instructions are available.
-    </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="install-source"></a>Building from source</h3></div></div></div><p>To compile Xfce manually, look at the Xfce site for 
-      <a href="http://xfce.org/index.php?page=download" target="_top">download locations</a>.
-    </p><p>Building the packages should be a simple matter of unpacking the
-      tarballs and, from the top source directory, typing:
-    
-</p><pre class="programlisting">./configure && make && make install</pre><p>
-
-      Some package will have extra configure options available. You can find 
-      them by typing <span><strong class="command">./configure <code class="option">--help</code></strong></span>.
-    </p><p>Xfce 4.4 depends on pkg-config and GTK+ >= 2.6. If you 
-      installed these from a binary package, make sure you have the 
-      corresponding <code class="filename">-dev</code> packages installed as well.
-    </p><p>Optionally you can install librsvg >= 2.2, for SVG icon support, 
-      libstartup-notification, to have a busy cursor when loading applications
-      that support this standard and dbus for enhanced functionality, mainly in 
-      Thunar and xfdesktop.
-    </p><p>If you install into a different prefix from pkg-config, you have to
-      set the PKG_CONFIG_PATH variable to include the path to the *.pc files
-      installed by the Xfce 4 libraries, which is ${prefix}/lib/pkgconfig. For
-      example:
-    </p><pre class="programlisting">export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig</pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="using-svn"></a>Using SVN</h3></div></div></div><p>The latest development sources for Xfce 4 are available from 
-      subversion (SVN).
-    </p><p>Look <a href="http://xfce.org/index.php?page=documentation&lang=en#install" target="_top">here</a> for information on how to obtain the latest
-      development updates from SVN. You can also browse the SVN tree through a
-      web interface.
-    </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="additional-software"></a>Additional software</h3></div></div></div><p>
-      The <a href="http://goodies.xfce.org" target="_top">Xfce Goodies</a>
-      project collects third-party contributions for Xfce. There are some excellent
-      panel plugins available that greatly enhance the functionality of Xfce.
-    </p><p>
-      <a href="http://spuriousinterrupt.org/projects/xfmedia/" target="_top">Xfmedia</a> is a lightweight media player for Xfce, 
-      based on the xine engine.
-    </p><p>
-      <a href="http://terminal.os-cillation.com/" target="_top">Terminal</a> is an easy to use terminal emulator 
-      for the Xfce Desktop Environment. It contains all feature you would expect 
-      from a modern terminal emulator.
-    </p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="xfce4-components.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="xfce4-copyright.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Components of Xfce </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> Copyright and Licences</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/xfce4-intro.html b/doc/xfce4-user-guide/C/xfce4-intro.html
deleted file mode 100644
index 1a02308..0000000
--- a/doc/xfce4-user-guide/C/xfce4-intro.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Introduction</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="next" href="xfce4-use.html" title="Using Xfce4"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Introduction</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="xfce4-user-guide.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="xfce4-use.html">Next</a></td></tr></table
 ><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="xfce4-intro"></a>Introduction</h2></div></div></div><p>Xfce is a lightweight desktop environment for unix-like operating
-    systems. It aims to be fast and light on system resources, while still 
-    being visually appealing and easy to use.
-  </p><p>
-    Xfce embodies the traditional UNIX philosophy of modularity and 
-    re-usability. All of Xfce's core components can be build and installed 
-    separately. Xfce 4 is based on the 
-    <a href="http://www.gtk.org" target="_top">GTK+ toolkit</a> version 2.
-  </p><p>
-    Adhereance to standards is one of the main design goals of Xfce 4, 
-    specifically those defined at 
-    <a href="http://www.freedesktop.org" target="_top">Freedesktop.org</a>.
-    This allows Xfce 4 to seamlessly interoperate with programs written for 
-    other desktop environments that follow these specifications.
-  </p><p>
-    Xfce is all free software. The separate components are released under either
-    the BSD license, the GNU LGPL or the GNU GPL (see 
-    <a href="xfce4-copyright.html" title="Copyright and Licences">the section called “Copyright and Licences”</a> for details).
-  </p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="xfce4-resources"></a>Resources</h3></div></div></div><p>
-      If you are looking for specific information about Xfce 4, chances are you
-      can obtain it from one of the resources in this list:
-    </p><div class="itemizedlist"><ul type="disc"><li><a href="http://www.xfce.org" target="_top">Xfce website</a></li><li><a href="http://xfce.org/mailman/listinfo/xfce" target="_top">User mailing list</a></li><li><a href="http://xfce.org/mailman/listinfo/xfce4-dev" target="_top">Development mailing list</a></li><li><a href="http://forum.xfce.org" target="_top">Xfce Forum</a></li><li><a href="http://bugzilla.xfce.org" target="_top">Bug tracker</a></li></ul></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="xfce4-user-guide.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="xfce4-use.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">
-  The Xfce Desktop Environment
- </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> Using Xfce4</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/xfce4-use.html b/doc/xfce4-user-guide/C/xfce4-use.html
deleted file mode 100644
index af3a194..0000000
--- a/doc/xfce4-user-guide/C/xfce4-use.html
+++ /dev/null
@@ -1,136 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Using Xfce4</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="up" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="prev" href="xfce4-intro.html" title="Introduction"><link rel="next" href="xfce4-components.html" title="Components of Xfce"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Using Xfce4</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="xfce4-intro.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="xfce4-components.html">Next</a></td></tr></table><hr></
 div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="xfce4-use"></a>Using Xfce4</h2></div></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="xfce4-getting-started"></a>Getting started</h3></div></div></div><p>
-      Use <strong class="application"><code>startxfce4</code></strong> to start an Xfce session, which
-      includes the session manager, the panel, the window manager and the 
-      desktop manager.
-    </p><p>
-      By default the Xfce session manager manages the startup of applications. 
-      It allows you to save your session when you quit Xfce, so that the next 
-      time you log in, the same applications will be started for you 
-      automatically.
-    </p><p>
-      To customize the behaviour of <strong class="application"><code>startxfce4</code></strong>, 
-      copy the file <code class="filename">${sysconfdir}/xdg/xfce4/xinitrc</code> to 
-      your personal <code class="filename">~/.config/xfce4/</code> 
-      directory and edit that file.  Depending on your installation method the 
-      location of the system <code class="filename">xinitrc</code> file may be 
-      different. If you install from source, 
-      <code class="filename">${sysconfdir}</code> defaults to 
-      <code class="filename">/usr/local/etc/</code>. For binary 
-      packages it is often set to 
-      <code class="filename">/etc/</code>, 
-      <code class="filename">/etc/X11</code>,
-      <code class="filename">/usr/pkg/etc</code> or
-      <code class="filename">/usr/X11R6/etc</code>;
-      you can use your package manager to find out.
-    </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="default-desktop"></a>The Default Desktop</h3></div></div></div><p>The Xfce Desktop Environment is not a single entity that provides all 
-      funtionality, but rather it tries to adhere to the old UNIX tradition of 
-      small tools that do one job and do it well. A default Xfce desktop with no 
-      applications running is shown in <a href="xfce4-use.html#default-session-fig" title="Figure 1. Default Xfce 4 session">Figure 1, “Default Xfce 4 session”</a>.
-    </p><div class="figure"><a name="default-session-fig"></a><p class="title"><b>Figure 1. Default Xfce 4 session</b></p><div class="figure-contents"><div class="screenshot"><div class="mediaobject"><img src="images/default-session.png" alt="Default Xfce session, with desktop manager and panel."></div></div></div></div><br class="figure-break"><p>
-      When you run <strong class="application"><code>startxfce4</code></strong> for the first
-      time, several applications are started by the Xfce session manager:
-    </p><div class="variablelist"><dl><dt><span class="term">Panel</span></dt><dd><p>
-            In a default session there is a full width panel at the top of the 
-            screen and a smaller one at the bottom. The 
-            <strong class="application"><code>xfce4-panel</code></strong> application manages all 
-            panels on the screen.
-          </p><p>
-            The top panel shows a graphical pager with a miniature view of all
-            workspaces, a task list showing all applications running on the 
-            current workspace and a system tray to show status icons that are 
-            used for example by some media players or instant messaging 
-            applications.
-	  </p><p>
-            The bottom panel contains several application launchers and a clock.
-            You can right-click on any panel item to get a menu that allows you 
-            to change its properties, add or remove new items or to change the
-            properties of the panel itself.
-	  </p><p>
-            For more information, have a look at the 
-            <a href="xfce4-panel.html" target="_top">panel manual</a>.
-	  </p></dd><dt><span class="term">Desktop Manager</span></dt><dd><p>
-            The desktop manager provides the desktop background image and two 
-            menus when you click on the desktop background. Optionally, it can 
-            show icons on the desktop, either for minimized applications or for 
-            files in the <code class="filename">~/Desktop</code> folder.
-	  </p><p>
-            The right mouse button opens a menu that allows you to start 
-	    applications. Look at the 
-            <a href="xfdesktop.html" target="_top">manual</a> to find out how to change the 
-            menu contents.
-	  </p><p>The middle mouse button (or Shift + left click) opens a list of
-	    all applications that are currently running. You can activate an
-	    application by clicking on its menu entry.
-	  </p></dd><dt><span class="term">Window Manager</span></dt><dd><p>The window manager is responsible for placing the windows on
-	    the screen and provides the window borders and decorations. It
-	    allows you to move windows around by draggin the titlebar and
-	    provides title bar buttons, for example to close, minimize or
-	    maximize a window. Look at the 
-            <a href="xfwm4.html" target="_top">manual</a> for a full 
-            explanation of the window manager settings.
-	  </p></dd><dt><span class="term">Settings Manager</span></dt><dd><p>
-            The settings manager runs in the background and makes sure that all
-            Xfce applications update their settings when the user changes 
-            something in the settings manager dialog (see following section) and
-            it takes care of reading the configuration from disk at startup. 
-            Have a look at the <a href="xfce-mcs-manager.html" target="_top">Settings Manager</a> and <a href="xfce-mcs-plugins.html" target="_top">Settings Plugins</a>
-            manuals for a full explanation of the settings manager.
-	  </p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="common-tasks"></a>Common Tasks</h3></div></div></div><p>This section will explain how to perform several common tasks to 
-      quickly get you started working with Xfce 4. Because that is what
-      Xfce 4 is designed for, to allow you to get work done.
-    </p><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="common-run-programs"></a>Running programs</h4></div></div></div><div class="variablelist"><dl><dt><span class="term">Xfce Panel</span></dt><dd><p>The panel is designed to allow quick access to the most
-	      frequently used applications by putting them on the main panel.
-	      Less often used applications can be put in a launcher menu.
-	    </p></dd><dt><span class="term">Desktop Menu</span></dt><dd><p>Another method for starting applications is from the desktop
-	      mouse menu. Read the <a href="xfdesktop.html" target="_top">Desktop Manager manual</a> for
-	      information on how to change the menu contents.
-	    </p></dd><dt><span class="term">Run Dialog</span></dt><dd><p>
-              If you know the name of a program and it is not on the panel
-	      or in the desktop menu you can use the run dialog. To open the
-	      dialog type <span><strong class="keycap">Alt+F2</strong></span> or choose the <span><strong class="guilabel">Run
-	      program...</strong></span> option from the desktop menu.
-	    </p><p>
-              The dialog will remeber the 10 last commands that were
-	      executed successfully.
-	    </p></dd></dl></div></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="common-managing-windows"></a>Managing windows and workspaces</h4></div></div></div><div class="variablelist"><dl><dt><span class="term">Basic window operations</span></dt><dd><p>You can move windows around the screen by dragging their
-	      title bar. A window can be closed, hidden, maximized, shaded and
-	      made sticky — this means it will show up on all workspaces
-	      — by using the title bar buttons.
-	    </p><p>Right clicking on the title bar will open a menu that gives
-	      access to all window operations.</p><p>Shading a window, which means collapsing it to only show the
-	      title bar, can also be accomplished by using the mouse wheel
-	      over the title bar. Mouse wheel up is shade, mouse wheel down 
-              is unshade.
-	    </p><p>If you want maximized windows to not cover the entire screen
-	      you can set workspace margins from the settings manager dialog
-	      (see below).
-	    </p></dd><dt><span class="term">Application management</span></dt><dd><p>To find out what applications are currently running you can
-	      look at the task list on the top panel. Clicking on a button in 
-              the task list will focus the associated application. Clicking 
-              again will hide it.
-	    </p><p>When you click with the middle mouse button on the desktop 
-	      background a list of windows is shown, ordered by workspace. 
-	      You can activate the application or change workspaces by 
-	      choosing the appropriate menu entry.
-	    </p></dd><dt><span class="term">Workspaces</span></dt><dd><p>You can change workspaces by clicking on them in the
-	      graphical pager, either on the taskbar or on the panel. Pressing 
-	      <span><strong class="keycap">Ctrl+Alt+LeftArrow</strong></span> or
-              <span><strong class="keycap">Ctrl+Alt+RightArrow</strong></span> will cycle through the
-	      workspaces. Using the mousewheel over the pager or the desktop
-	      background has the same effect.
-	    </p><p>To add or remove workspaces you can use the middle click
-	      desktop menu or the settings dialog (see below).
-	    </p></dd></dl></div></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="common-settings"></a>Using the settings manager dialog</h4></div></div></div><p>The settings manager dialog provides access to the global 
-        preferences of many Xfce applications. You can run it by pressing its
-        launcher on the panel, from the desktop mouse menu or by running
-	<strong class="application"><code>xfce-setting-show</code></strong>.
-      </p><p>Dialogs to change many aspects of the Xfce Desktop Environment are 
-        available. See the separate manuals of the Xfce components for more 
-        information. It may be interesting to have a quick look at all the 
-        dialogs to find out what options are available that allow you to create
-        the best possible working environment.
-      </p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="further-reading"></a>Further Reading</h3></div></div></div><p>This user guide has only given a very general overview of the Xfce
-      Desktop Environment. More information is  available in the 
-      <a href="index.html" target="_top">manuals</a> of the separate
-      components of Xfce.
-    </p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="xfce4-intro.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="xfce4-components.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Introduction </td><td width="20%" align="center"><a accesskey="h" href="xfce4-user-guide.html">Home</a></td><td width="40%" align="right" valign="top"> Components of Xfce</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/C/xfce4-user-guide.html b/doc/xfce4-user-guide/C/xfce4-user-guide.html
deleted file mode 100644
index ea25155..0000000
--- a/doc/xfce4-user-guide/C/xfce4-user-guide.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>The Xfce Desktop Environment</title><link rel="stylesheet" href="../xfce-chunk.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.71.1"><link rel="start" href="xfce4-user-guide.html" title="The Xfce Desktop Environment"><link rel="next" href="xfce4-intro.html" title="Introduction"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">
-  The Xfce Desktop Environment
-</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="xfce4-intro.html">Next</a></td></tr></table><hr></div><div class="article" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="xfce4-user-guide"></a>
-  The Xfce Desktop Environment
-</h1></div><div><h3 class="subtitle"><i>
-  <img src="images/link_xfce.jpg">
-  <span class="emphasis"><em>... and mice fly ...</em></span>
-</i></h3></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Jasper</span> <span class="surname">Huijsmans</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a href="mailto:jasper at xfce.org">jasper at xfce.org</a>></code></p></div></div></div><div class="author"><h3 class="author"><span class="firstname">Benedikt</span> <span class="surname">Meurer</span></h3><div class="affiliation"><div class="address"><p><code class="email"><<a href="mailto:benny at xfce.org">benny at xfce.org</a>></code></p></div></div></div></div></div><div><p class="copyright">Copyright © 2006 Jasper Huijsmans</p></div><div><div class="legalnotice"><a name="legalnotice"></a><p>
-      This document is provided under the terms of the GNU GPL, version
-      2 or (at your option) any later version.
-    </p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="xfce4-user-guide.html#preface">Preface</a></span></dt><dt><span class="sect1"><a href="xfce4-intro.html">Introduction</a></span></dt><dd><dl><dt><span class="sect2"><a href="xfce4-intro.html#xfce4-resources">Resources</a></span></dt></dl></dd><dt><span class="sect1"><a href="xfce4-use.html">Using Xfce4</a></span></dt><dd><dl><dt><span class="sect2"><a href="xfce4-use.html#xfce4-getting-started">Getting started</a></span></dt><dt><span class="sect2"><a href="xfce4-use.html#default-desktop">The Default Desktop</a></span></dt><dt><span class="sect2"><a href="xfce4-use.html#common-tasks">Common Tasks</a></span></dt><dt><span class="sect2"><a href="xfce4-use.html#further-reading">Further Reading</a></span></dt></dl></dd><dt><span class="sect1"><a href="xfce4-components.html">Components of Xfce</a></span></dt><dt><span class="sect1"><a href="xfce4-install.html">
 Installing Xfce4</a></span></dt><dd><dl><dt><span class="sect2"><a href="xfce4-install.html#binary-packages">Binary packages</a></span></dt><dt><span class="sect2"><a href="xfce4-install.html#graphical-installers">Graphical installers</a></span></dt><dt><span class="sect2"><a href="xfce4-install.html#install-source">Building from source</a></span></dt><dt><span class="sect2"><a href="xfce4-install.html#using-svn">Using SVN</a></span></dt><dt><span class="sect2"><a href="xfce4-install.html#additional-software">Additional software</a></span></dt></dl></dd><dt><span class="sect1"><a href="xfce4-copyright.html">Copyright and Licences</a></span></dt><dt><span class="sect1"><a href="BSD.html">BSD License</a></span></dt><dt><span class="sect1"><a href="GPL.html">GNU General Public License</a></span></dt><dt><span class="sect1"><a href="LGPL.html">GNU Library General Public License</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="tit
 le" style="clear: both"><a name="preface"></a>Preface</h2></div></div></div><p>
-    This document gives an overview of the Xfce Desktop Environment and explains
-    how to perform several common tasks. It is meant to be a starting point for 
-    anyone who wants to use Xfce and it includes pointers to other sources of 
-    information.
-  </p><p>
-    The latest version of this document can always be found at 
-    <a href="http://www.loculus.nl/xfce/documentation/" target="_top">this location</a>.
-  </p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="xfce4-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Introduction</td></tr></table></div></body></html>
diff --git a/doc/xfce4-user-guide/Makefile.am b/doc/xfce4-user-guide/Makefile.am
deleted file mode 100644
index a291427..0000000
--- a/doc/xfce4-user-guide/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-SUBDIRS = \
-	C
-
-html: Makefile
-	make -C C html
diff --git a/scripts/xfhelp4.in b/scripts/xfhelp4.in
index cb81dab..1b3b3fa 100644
--- a/scripts/xfhelp4.in
+++ b/scripts/xfhelp4.in
@@ -20,7 +20,7 @@
 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 #
 
-HELP_DIR="@_datadir_@/xfce4/doc"
+HELP_DIR="@_datadir_@/doc"
 
 if [ ! x"$1" = x"" ]; then
     HELP_FILE="$1"



More information about the Xfce4-commits mailing list