summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/SwiftUserGuide')
-rw-r--r--Documentation/SwiftUserGuide/.gitignore5
-rw-r--r--Documentation/SwiftUserGuide/SConscript15
-rw-r--r--Documentation/SwiftUserGuide/Swift Users Guide.xml94
3 files changed, 114 insertions, 0 deletions
diff --git a/Documentation/SwiftUserGuide/.gitignore b/Documentation/SwiftUserGuide/.gitignore
new file mode 100644
index 0000000..6f7b520
--- /dev/null
+++ b/Documentation/SwiftUserGuide/.gitignore
@@ -0,0 +1,5 @@
+catalog.xml
+fop.cfg
+*.pdf
+*.html
+*.fo
diff --git a/Documentation/SwiftUserGuide/SConscript b/Documentation/SwiftUserGuide/SConscript
new file mode 100644
index 0000000..50f60bc
--- /dev/null
+++ b/Documentation/SwiftUserGuide/SConscript
@@ -0,0 +1,15 @@
+Import("env")
+
+env.Tool("DocBook", toolpath = ["#/BuildTools/DocBook/SCons"])
+
+################################################################################
+# Code generation helper
+################################################################################
+
+import sys, re, os.path
+
+################################################################################
+
+if "doc" in ARGUMENTS :
+ env.DocBook("Swift Users Guide.xml")
+
diff --git a/Documentation/SwiftUserGuide/Swift Users Guide.xml b/Documentation/SwiftUserGuide/Swift Users Guide.xml
new file mode 100644
index 0000000..7cbec60
--- /dev/null
+++ b/Documentation/SwiftUserGuide/Swift Users Guide.xml
@@ -0,0 +1,94 @@
+<?xml version="1.0" ?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+
+<book>
+ <title>Swift User Guide</title>
+
+ <chapter>
+ <title>Introduction</title>
+ <section>
+ <title>Swift</title>
+ <para>
+ Swift is a chat client using the XMPP protocol. This document describes use of the client for end users; for a further description of the protocol read
+ <citetitle>XMPP: The Definitive Guide</citetitle>
+ <citation><biblioref linkend="XMPP-TDG"/></citation>
+ or for development using XMPP see the
+ <citetitle>Swiften Developer's Guide</citetitle>
+ <citation><biblioref linkend="Swiften-Developers-Guide" /></citation>
+ </para>
+ </section>
+ </chapter>
+
+ <chapter>
+ <title>Getting Started</title>
+ <para>
+ </para>
+ </chapter>
+
+ <chapter>
+ <title>Managing Contacts</title>
+ <para>
+ </para>
+ </chapter>
+
+ <chapter>
+ <title>Chatting to Contacts</title>
+ <para>
+ </para>
+ </chapter>
+
+ <chapter>
+ <title>Chatting in Rooms (MUCs)</title>
+ <para>
+ </para>
+ </chapter>
+
+ <chapter>
+ <title>Room (MUC) Administration</title>
+ <para>
+ </para>
+ </chapter>
+
+ <chapter>
+ <title>Server Configuration</title>
+ <para>
+ </para>
+ </chapter>
+
+ <chapter>
+ <title>Eagle Mode</title>
+ <para>
+ </para>
+ </chapter>
+
+ <bibliography>
+ <title>Bibliography</title>
+
+ <biblioentry id="XMPP-TDG">
+ <abbrev>XMPP-TDG</abbrev>
+ <title><ulink url="http://oreilly.com/catalog/9780596157197/">XMPP: The
+ Definitive Guide</ulink></title>
+ <author>
+ <firstname>Peter</firstname>
+ <surname>Saint-Andre</surname>
+ </author>
+ <author>
+ <firstname>Kevin</firstname>
+ <surname>Smith</surname>
+ </author>
+ <author>
+ <firstname>Remko</firstname>
+ <surname>Tronçon</surname>
+ </author>
+ </biblioentry>
+
+ <biblioentry id='Swiften-Developers-Guide'>
+ <abbrev>Swiften-dev</abbrev>
+ <title><ulink url='http://swift.im/swiften/guide/'>Swiften Developer's Guide</ulink></title>
+ <author>
+ <firstname>Remko</firstname>
+ <surname>Tronçon</surname>
+ </author>
+ </biblioentry>
+ </bibliography>
+</book> \ No newline at end of file