You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2010/08/09 22:55:43 UTC

svn commit: r983819 - in /directory/sandbox/seelmann/apacheds-docs: ./ src/ src/main/ src/main/docbook-stylesheet/ src/main/docbook-stylesheet/fo/ src/main/docbook/ src/main/docbook/howToBegin/ src/main/docbook/howToBegin/images/ src/main/docbook/image...

Author: seelmann
Date: Mon Aug  9 20:55:43 2010
New Revision: 983819

URL: http://svn.apache.org/viewvc?rev=983819&view=rev
Log:
My own experiments with docbkx

Added:
    directory/sandbox/seelmann/apacheds-docs/pom.xml
    directory/sandbox/seelmann/apacheds-docs/src/
    directory/sandbox/seelmann/apacheds-docs/src/main/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/fo/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/fo/docbook.xsl
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/images/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/images/fromX500toLDAP.png   (with props)
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/someBackground.xml
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/whatApacheDirectoryServerIs.xml
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/images/
    directory/sandbox/seelmann/apacheds-docs/src/main/docbook/index.xml
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/css/
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/css/book.css
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/icons/
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/images/
    directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/images/fromX500toLDAP.png   (with props)

Added: directory/sandbox/seelmann/apacheds-docs/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/pom.xml?rev=983819&view=auto
==============================================================================
--- directory/sandbox/seelmann/apacheds-docs/pom.xml (added)
+++ directory/sandbox/seelmann/apacheds-docs/pom.xml Mon Aug  9 20:55:43 2010
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.directory.server</groupId>
+    <artifactId>apacheds-parent</artifactId>
+    <version>1.5.8-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>documentation-tutorial</artifactId>
+  <name>Apache Directory Server Tutorial</name>
+  <packaging>jar</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>com.agilejava.docbkx</groupId>
+        <artifactId>docbkx-maven-plugin</artifactId>
+        <version>2.0.10</version>
+        <executions>
+          <execution>
+            <id>documentation identifier</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>generate-pdf</goal>
+              <goal>generate-html</goal>
+              <goal>generate-eclipse</goal>
+              <goal>generate-javahelp</goal>
+            </goals>
+            <configuration>
+              <chunkedOutput>true</chunkedOutput>
+              <includes>index.xml</includes>
+              <draftMode>no</draftMode>
+            </configuration>
+          </execution>
+        </executions>
+        <configuration>
+          <sourceDirectory>${basedir}/src/main/docbook</sourceDirectory>
+
+          <generatedSourceDirectory>${project.build.directory}/docbkx/generated</generatedSourceDirectory>
+          <xincludeSupported>true</xincludeSupported>
+          <paperType>A4</paperType>
+          <fop1Extensions>1</fop1Extensions>
+
+          <foCustomization>src/main/docbook-stylesheet/fo/docbook.xsl</foCustomization>
+
+          <customizationParameters>
+            <!-- additional XSLT parameters-->
+            <parameter>
+              <name>key</name>
+              <value>value</value>
+            </parameter>
+          </customizationParameters>
+        </configuration>
+      </plugin>
+    </plugins>
+  
+  </build>
+  
+
+</project>

Added: directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/fo/docbook.xsl
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/fo/docbook.xsl?rev=983819&view=auto
==============================================================================
--- directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/fo/docbook.xsl (added)
+++ directory/sandbox/seelmann/apacheds-docs/src/main/docbook-stylesheet/fo/docbook.xsl Mon Aug  9 20:55:43 2010
@@ -0,0 +1,16 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+  <!-- imports the original docbook stylesheet -->
+  <xsl:import href="urn:docbkx:stylesheet"/>
+
+  <!-- set bellow all your custom xsl configuration -->
+
+  
+
+  <!--
+    Important links:
+    - http://www.sagehill.net/docbookxsl/
+    - http://docbkx-tools.sourceforge.net/
+  -->
+
+</xsl:stylesheet>
\ No newline at end of file

Added: directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/images/fromX500toLDAP.png
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/images/fromX500toLDAP.png?rev=983819&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/images/fromX500toLDAP.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/someBackground.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/someBackground.xml?rev=983819&view=auto
==============================================================================
--- directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/someBackground.xml (added)
+++ directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/someBackground.xml Mon Aug  9 20:55:43 2010
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<section version="5.0" xmlns="http://docbook.org/ns/docbook"
+         xmlns:xlink="http://www.w3.org/1999/xlink"
+         xmlns:xi="http://www.w3.org/2001/XInclude"
+         xmlns:ns5="http://www.w3.org/2000/svg"
+         xmlns:ns4="http://www.w3.org/1998/Math/MathML"
+         xmlns:ns3="http://www.w3.org/1999/xhtml"
+         xmlns:db="http://docbook.org/ns/docbook">
+
+	<title>
+		Some Background. Directories, directory services and LDAP
+	</title>
+
+	<para>
+		This section provides a brief overview about directories,
+		directory services and LDAP. Furthermore you find links to
+		different resources (books, online resources, ...), which may
+		act as introduction to the topic. If you are already an LDAP
+		expert, you'll probably skip this section.
+	</para>
+
+	<section>
+		<title>Directories and directory services</title>
+
+		<para>
+			Generally speaking, a directory is a collection or list of
+			data. Real world examples are telephone books (public or
+			within organizations), church/land registers and listings of
+			works (e.g. the Koechel-index, which lists all compositions
+			of Mozart). All these examples have the purpose to preserve
+			information and to make it available on demand to whom it
+			may concern.
+		</para>
+
+		<para>
+			Within information technology the term
+			<emphasis>directory</emphasis>
+			is used for a special kind of data storage. It allows the
+			structured storage and efficient retrieval of objects which
+			are often derived from the real world (e.g. persons, IT
+			equipment). Characteristic:
+			<itemizedlist mark='bullet'>
+				<listitem>
+					<para>
+						all data is stored in so called
+						<emphasis>entries</emphasis>
+					</para>
+				</listitem>
+				<listitem>
+					<para>
+						the set of entries within a directory forms a
+						tree (hierarchical database)
+					</para>
+				</listitem>
+			</itemizedlist>
+		</para>
+
+		<para>
+			A
+			<emphasis>directory service</emphasis>
+			is a solution which offers users access to the information
+			stored in the directory. A directory assistance (call center
+			agent) is a good real world example for such a service.
+			Within information technologies, such services are normally
+			provided by software components. Directory services provide
+			access to the content of a directory via a well-defined
+			interface. If a network is used, an appropriate protocol has
+			to be defined. LDAP (see below) is such a protocol.
+		</para>
+
+		<para>
+			The real world examples mentioned above may be stored in
+			such a directory, although other types of storage systems
+			can be more appropriate (this depends on
+			circumstance/requirements). At first sight directories
+			compete thereby as data storage with the established
+			relational data bases. However in the most large enterprises
+			and organizations both directory services and relational
+			databases are actually used. Read how Vikas Mahajan
+			describes directories and databases as complementary, not
+			competitive, solutions in his excellent article "Should I
+			Use a Directory, a Database, or Both?".
+
+			<!-- TODO: Link -->
+		</para>
+
+	</section>
+
+	<section>
+		<title>LDAP – the Lightweight Directory Access Protocol</title>
+
+		<simplesect>
+			<title>What is it? Some history.</title>
+
+			<para>
+				The comprehensive standard
+				<emphasis>X.500</emphasis>
+				, finalized in 1988, builds the foundation for many of
+				today's directory solutions. Within this standard, the
+				client accesses the server via the Directory Access
+				Protocol (
+				<emphasis>DAP</emphasis>
+				), which is OSI protocol stack based. With the Internet
+				boom in the nineties, the accessibility of directories
+				via TCP/IP became more and more important. Hence a
+				TCP/IP-based access method, which in functionality was a
+				subset of DAP, was standardized in 1993: the
+				<emphasis>
+					Lightweight Directory Access Protocol (LDAP)
+				</emphasis>
+				. First LDAP implementations were gateway solutions,
+				they mediated between LDAP clients and X.500 servers. In
+				1995 the University of Michigan presented the first
+				native LDAP server; in the meantime the work is
+				continued by the OpenLDAP project. 1996 Netscape
+				followed with the first commercial LDAP server (Netscape
+				Directory Server, foundation of several later LDAP
+				servers). Other examples (among many others) include
+				Microsoft Active Directory and Novell eDirectory. The
+				figure below shows the development of directory
+				protocols from X.500/DAP to LDAP.
+			</para>
+
+  <mediaobject>
+    <imageobject>
+      <imagedata scale="75" fileref="images/fromX500toLDAP.png"></imagedata>
+    </imageobject>
+  </mediaobject>
+
+		</simplesect>
+
+		<simplesect>
+			<title>Information model primer</title>
+
+			<para>
+				Within the information model of LDAP, data is stored in
+				entries, which build up a hierarchical, tree like
+				structure. Each entry has a unique name (
+				<emphasis>DN, Distinguished Name</emphasis>
+				), which depicts its position within the tree. An entry
+				consists of key/value pairs, the
+				<emphasis>attributes</emphasis>
+				. Some attributes may occur more than once within an
+				entry (single or multi valued, e.g. a person can have
+				more than one telephone number). So called
+				<emphasis>object classes</emphasis>
+				define, which attributes an entry may have, and which of
+				them are required. The classes build up a hierarchy with
+				<emphasis>top</emphasis>
+				as root; there is a parallelism to the object oriented
+				world. top forces only the attribute objectclass, which
+				assigns an entry its object classes. A
+				<emphasis>schema</emphasis>
+				consists object classes and attribute types, and
+				therefore defines, what kind of entries can be stored
+				within the directory. Directory servers ship a schema
+				out-of-the-box, often with elements standardized by
+				RFCs. In addition, most directory solutions allow you to
+				define custom object classes and attributes. But in
+				practice, the pre-defined elements are used. Sometimes
+				they get extended according to special requirements.
+			</para>
+		</simplesect>
+
+		<simplesect>
+			<title>Common applications of LDAP based directories</title>
+
+			<para>
+				LDAP operations include entry creation, modification,
+				deletion and search. As a general rule, LDAP directories
+				are optimized for read and search operations, at the
+				cost of write performance. Data, which will be modified
+				often, therefore better suits in a relational database,
+				which offers better support for transactions and
+				referential integrity as well. Directories are rather
+				used if comparatively stable data has to be provided
+				centrally. Common examples are network resources
+				(printers, services) and user data (including
+				credentials and rights for the resources). As a notable
+				feature, many directory products offer replicas, which
+				permit better access times and higher availability
+				especially in geographically dispersed organizations.
+				Not for nothing, the most common LDAP application is the
+				enterprise phone book. That even Microsoft Outlook may
+				be an LDAP client in this case - most average users
+				probably don't know.
+			</para>
+		</simplesect>
+
+		<simplesect>
+			<title>
+				Examples of software components which support LDAP
+			</title>
+
+			<para>
+				Very different types of software products may act as
+				LDAP clients, consuming data for authentication,
+				authorization or data presentation etc.
+				<itemizedlist mark='bullet'>
+					<listitem>
+						<para>
+							E-Mail clients (e.g. Mozilla Thunderbird)
+						</para>
+					</listitem>
+					<listitem>
+						<para>
+							LDAP tools (e.g. Apache Directory Studio)
+						</para>
+					</listitem>
+					<listitem>
+						<para>
+							Web servers or application servers (e.g.
+							Apache Tomcat, Apache HTTP Server)
+						</para>
+					</listitem>
+					<listitem>
+						<para>Mail servers (e.g. Apache James)</para>
+					</listitem>
+					<listitem>
+						<para>...</para>
+					</listitem>
+				</itemizedlist>
+
+				Configuration details for several of these programs in
+				conjunction with ApacheDS are described in later
+				sections or special HowTos.
+			</para>
+		</simplesect>
+
+	</section>
+
+	<section>
+		<title>LDAP resources</title>
+		<para>...</para>
+	</section>
+
+
+
+</section>

Added: directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/whatApacheDirectoryServerIs.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/whatApacheDirectoryServerIs.xml?rev=983819&view=auto
==============================================================================
--- directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/whatApacheDirectoryServerIs.xml (added)
+++ directory/sandbox/seelmann/apacheds-docs/src/main/docbook/howToBegin/whatApacheDirectoryServerIs.xml Mon Aug  9 20:55:43 2010
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<section version="5.0" xmlns="http://docbook.org/ns/docbook"
+         xmlns:xlink="http://www.w3.org/1999/xlink"
+         xmlns:xi="http://www.w3.org/2001/XInclude"
+         xmlns:ns5="http://www.w3.org/2000/svg"
+         xmlns:ns4="http://www.w3.org/1998/Math/MathML"
+         xmlns:ns3="http://www.w3.org/1999/xhtml"
+         xmlns:db="http://docbook.org/ns/docbook">
+	<title>What Apache Directory Server is</title>
+	<para>
+		This section describes what Apache Directory Server (abbreviated
+		ApacheDS) is, and where it comes from.
+	</para>
+</section>

Added: directory/sandbox/seelmann/apacheds-docs/src/main/docbook/index.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/docbook/index.xml?rev=983819&view=auto
==============================================================================
--- directory/sandbox/seelmann/apacheds-docs/src/main/docbook/index.xml (added)
+++ directory/sandbox/seelmann/apacheds-docs/src/main/docbook/index.xml Mon Aug  9 20:55:43 2010
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<book version="5.0" xmlns="http://docbook.org/ns/docbook"
+      xmlns:xlink="http://www.w3.org/1999/xlink"
+      xmlns:xi="http://www.w3.org/2001/XInclude"
+      xmlns:ns5="http://www.w3.org/1999/xhtml"
+      xmlns:ns4="http://www.w3.org/1998/Math/MathML"
+      xmlns:ns3="http://www.w3.org/2000/svg"
+      xmlns:db="http://docbook.org/ns/docbook">
+  <!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+  <info>
+    <title>Apache Directory Server Tutorial</title>
+
+    <subtitle>Getting started</subtitle>
+
+    <releaseinfo>Version<?eval ${project.version} ?></releaseinfo>
+
+    <copyright>
+      <year>2010</year>
+
+      <holder>Apache Software Foundation</holder>
+    </copyright>
+
+    <legalnotice>
+      <literallayout class="monospaced">
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  <link
+            xlink:href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</link>
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.</literallayout>
+    </legalnotice>
+  </info>
+
+  <chapter>
+    <title>How to begin</title>
+
+    <para>About this chapter ...</para>
+
+    <xi:include href="howToBegin/whatApacheDirectoryServerIs.xml" />
+
+    <xi:include href="howToBegin/someBackground.xml" />
+  </chapter>
+</book>

Added: directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/css/book.css
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/css/book.css?rev=983819&view=auto
==============================================================================
--- directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/css/book.css (added)
+++ directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/css/book.css Mon Aug  9 20:55:43 2010
@@ -0,0 +1,113 @@
+
+P.Code {
+	display: block;
+	text-align: left;
+	text-indent: 0.00pt;
+	margin-top: 0.000000pt;
+	margin-bottom: 0.000000pt;
+	margin-right: 0.000000pt;
+	margin-left: 15pt;
+	font-size: 10.000000pt;
+	font-weight: normal;
+	font-style: normal;
+	color: #4444CC;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+	font-family: "Courier New", Courier, monospace;
+}
+H6.CaptionFigColumn {
+	display: block;
+	text-align: left;
+	text-indent: 0.000000pt;
+	margin-top: 3.000000pt;
+	margin-bottom: 11.000000pt;
+	margin-right: 0.000000pt;
+	margin-left: 0.000000pt;
+	font-size: 9.000000pt;
+	font-weight: bold;
+	font-style: Italic;
+	color: #000000;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+}
+P.Note {
+	display: block;
+	text-align: left;
+	text-indent: 0pt;
+	margin-top: 19.500000pt;
+	margin-bottom: 19.500000pt;
+	margin-right: 0.000000pt;
+	margin-left: 30pt;
+	font-size: 11.000000pt;
+	font-weight: normal;
+	font-style: Italic;
+	color: #000000;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+}
+EM.UILabel {
+	font-weight: Bold;
+	font-style: normal;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+}
+EM.CodeName {
+	font-weight: Bold;
+	font-style: normal;
+	text-decoration: none;
+	vertical-align: baseline;
+	text-transform: none;
+	font-family: "Courier New", Courier, monospace;
+}
+
+body, html { border: 0px }
+
+
+/* following font face declarations need to be removed for DBCS */
+
+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-family: Arial, Helvetica, sans-serif; color: #000000}
+pre				{ font-family: "Courier New", Courier, monospace;}
+
+/* end font face declarations */
+
+/* following font size declarations should be OK for DBCS */
+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-size: 10pt; }
+pre				{ font-size: 10pt}
+
+/* end font size declarations */
+
+body	     { background: #FFFFFF; margin-bottom: 1em }
+h1           { font-size: 18pt; margin-top: 5; margin-bottom: 1 }	
+h2           { font-size: 14pt; margin-top: 25; margin-bottom: 3 }
+h3           { font-size: 11pt; margin-top: 20; margin-bottom: 3 }
+h4           { font-size: 10pt; margin-top: 20; margin-bottom: 3; font-style: italic }
+p            { margin-top: 10px; margin-bottom: 10px }
+pre          { margin-left: 6; font-size: 9pt; color: #4444CC } 
+a:link	     { color: #0000FF }
+a:hover	     { color: #000080 }
+a:visited    { text-decoration: underline }
+ul	     { margin-top: 10px; margin-bottom: 10px; }
+li	     { margin-top: 5px; margin-bottom: 5px; } 
+li p	     { margin-top: 5px; margin-bottom: 5px; }
+ol	     { margin-top: 10px; margin-bottom: 10px; }
+dl	     { margin-top: 10px; margin-bottom: 10px; }
+dt	     { margin-top: 5px; margin-bottom: 5px; font-weight: bold; }
+dd	     { margin-top: 5px; margin-bottom: 5px; }
+strong	     { font-weight: bold}
+em	     { font-style: italic}
+var	     { font-style: italic}
+div.revision { border-left-style: solid; border-left-width: thin; 
+				   border-left-color: #7B68EE; padding-left:5 }
+th	     { font-weight: bold }
+
+a.command-link {
+}
+a.command-link img {
+	border-width: 0px;
+	border-style: none;
+	vertical-align: middle;
+}
\ No newline at end of file

Added: directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/images/fromX500toLDAP.png
URL: http://svn.apache.org/viewvc/directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/images/fromX500toLDAP.png?rev=983819&view=auto
==============================================================================
Binary file - no diff available.

Propchange: directory/sandbox/seelmann/apacheds-docs/src/main/resources/html/images/fromX500toLDAP.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream