You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2013/06/17 01:18:04 UTC

svn commit: r1493611 - /directory/site/trunk/content/apacheds/basic-ug/2.3.1-adding-schema-elements.mdtext

Author: elecharny
Date: Sun Jun 16 23:18:04 2013
New Revision: 1493611

URL: http://svn.apache.org/r1493611
Log:
Removed a space between ::: an text

Modified:
    directory/site/trunk/content/apacheds/basic-ug/2.3.1-adding-schema-elements.mdtext

Modified: directory/site/trunk/content/apacheds/basic-ug/2.3.1-adding-schema-elements.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/apacheds/basic-ug/2.3.1-adding-schema-elements.mdtext?rev=1493611&r1=1493610&r2=1493611&view=diff
==============================================================================
--- directory/site/trunk/content/apacheds/basic-ug/2.3.1-adding-schema-elements.mdtext (original)
+++ directory/site/trunk/content/apacheds/basic-ug/2.3.1-adding-schema-elements.mdtext Sun Jun 16 23:18:04 2013
@@ -96,7 +96,7 @@ The goal is to store ship entries in our
 
 Here is a sample entry for a ship in LDIF:
 
-    ::: text
+    :::text
     dn: cn=HMS Victory,ou=ships,o=sevenSeas
     objectClass: top
     objectClass: ship
@@ -111,7 +111,7 @@ A ship entry is comprised of a mandatory
 
 Here is the definition of our custom attribute type numberOfGuns formatted according to RFC 4512.
 
-    ::: text
+    :::text
     ( 1.3.6.1.4.1.18060.0.4.3.2.1 
      NAME 'numberOfGuns'  DESC 'Number of guns of a ship'
      EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 
@@ -122,7 +122,7 @@ Here is the definition of our custom att
 
 Custom object class ship is defined as follows
 
-    ::: text
+    :::text
     ( 1.3.6.1.4.1.18060.0.4.3.3.1 
      NAME 'ship' DESC 'An entry which represents a ship' 
      SUP top STRUCTURAL 
@@ -135,7 +135,7 @@ A very convenient way to add your own sc
 
 Our file sevenSeas.schema looks like this:
 
-    ::: text
+    :::text
     attributetype ( 1.3.6.1.4.1.18060.0.4.3.2.1 
             NAME 'numberOfGuns' 
             DESC 'Number of guns of a ship'
@@ -143,6 +143,7 @@ Our file sevenSeas.schema looks like thi
             SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 
             SINGLE-VALUE 
      )
+     
     objectclass ( 1.3.6.1.4.1.18060.0.4.3.3.1 
             NAME 'ship'
             DESC 'An entry which represents a ship'