diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-04-07 10:15:11 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:43 -0500 |
commit | 992f1e6b8f86b346fddd266b04d29cde69585633 (patch) | |
tree | 878573999a6831aa14cd6b8072263eb5d5910aa4 /docs/devel/dev-doc.xml | |
parent | 65c0fd59203a3d9c4cb685e3a739f29f6f0c4fd6 (diff) | |
download | samba-992f1e6b8f86b346fddd266b04d29cde69585633.tar.gz samba-992f1e6b8f86b346fddd266b04d29cde69585633.tar.bz2 samba-992f1e6b8f86b346fddd266b04d29cde69585633.zip |
Add all the source files from the old CVS tree,
add the 5 missing chapters from the HOWTO
and add jht's Samba by Example book.
(This used to be commit 9fb5bcb93e57c5162b3ee6f9c7d777dc0269d100)
Diffstat (limited to 'docs/devel/dev-doc.xml')
-rw-r--r-- | docs/devel/dev-doc.xml | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/docs/devel/dev-doc.xml b/docs/devel/dev-doc.xml new file mode 100644 index 0000000000..b97b3d8f86 --- /dev/null +++ b/docs/devel/dev-doc.xml @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [ +<!ENTITY % globalentities SYSTEM '../global.ent'> %globalentities; +<!ENTITY NetBIOS SYSTEM "NetBIOS.xml"> +<!ENTITY Architecture SYSTEM "architecture.xml"> +<!ENTITY debug SYSTEM "debug.xml"> +<!ENTITY internals SYSTEM "internals.xml"> +<!ENTITY parsing SYSTEM "parsing.xml"> +<!ENTITY unix-smb SYSTEM "unix-smb.xml"> +<!ENTITY CodingSuggestions SYSTEM "CodingSuggestions.xml"> +<!ENTITY Tracing SYSTEM "Tracing.xml"> +<!ENTITY cifsntdomain SYSTEM "cifsntdomain.xml"> +<!ENTITY printing SYSTEM "printing.xml"> +<!ENTITY wins SYSTEM "wins.xml"> +<!ENTITY sam SYSTEM "sam.xml"> +<!ENTITY encryption SYSTEM "encryption.xml"> +<!ENTITY rpc-plugin SYSTEM "rpc_plugin.xml"> +<!ENTITY modules SYSTEM "modules.xml"> +<!ENTITY packagers SYSTEM "packagers.xml"> +<!ENTITY contributing SYSTEM "contributing.xml"> +<!ENTITY vfs SYSTEM "vfs.xml"> +<!ENTITY windows-deb SYSTEM "windows-debug.xml"> +<!ENTITY registry SYSTEM "registry.xml"> +]> + +<book id="Samba-Developers-Guide"> + +<title>SAMBA Developers Guide</title> + +<bookinfo> +<authorgroup> + <editor>&person.jelmer;</editor> +</authorgroup> + +<abstract> +<para> +<emphasis>Last Update</emphasis> : Fri Oct 10 00:59:58 CEST 2003 +</para> + +<para> +This book is a collection of documents that might be useful for +people developing samba or those interested in doing so. +It's nothing more than a collection of documents written by samba developers about +the internals of various parts of samba and the SMB protocol. It's still (and will always be) incomplete. +The most recent version of this document +can be found at <ulink url="http://devel.samba.org/">http://devel.samba.org/</ulink>. +Please send updates to <ulink +url="mailto:jelmer@samba.org">Jelmer Vernooij</ulink>. +</para> + +<para> +This documentation is distributed under the GNU General Public License (GPL) +version 2. A copy of the license is included with the Samba source +distribution. A copy can be found on-line at <ulink +url="http://www.fsf.org/licenses/gpl.txt">http://www.fsf.org/licenses/gpl.txt</ulink> +</para> + +</abstract> + +</bookinfo> +<preface> + <title>Attributions</title> + + &attributions-dev; +</preface> + + +<!-- Contents --> +<toc/> + +<!-- Chapters --> +<part> + <title>The protocol</title> + + &NetBIOS; + &unix-smb; + &cifsntdomain; + +</part> + +<part> + <title>Samba Basics</title> + +&Architecture; +&debug; +&internals; +&CodingSuggestions; +&contributing; +&modules; +</part> + +<part> + <title>Samba Subsystems</title> + + &sam; + &rpc-plugin; + &vfs; + ®istry; + &parsing; + &wins; + &encryption; + +</part> + +<part> + <title>Debugging and tracing</title> + +&Tracing; +&windows-deb; +&printing; +</part> + +<part><title>Appendices</title> + &packagers; +</part> + +</book> |