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 2007/04/24 22:05:42 UTC

svn commit: r532064 - /directory/apacheds/trunk/schema-bootstrap/src/main/schema/apachemeta.schema

Author: elecharny
Date: Tue Apr 24 13:05:41 2007
New Revision: 532064

URL: http://svn.apache.org/viewvc?view=rev&rev=532064
Log:
Added a m-length AT to be able to accept syntaxes with a length part

Modified:
    directory/apacheds/trunk/schema-bootstrap/src/main/schema/apachemeta.schema

Modified: directory/apacheds/trunk/schema-bootstrap/src/main/schema/apachemeta.schema
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/schema-bootstrap/src/main/schema/apachemeta.schema?view=diff&rev=532064&r1=532063&r2=532064
==============================================================================
--- directory/apacheds/trunk/schema-bootstrap/src/main/schema/apachemeta.schema (original)
+++ directory/apacheds/trunk/schema-bootstrap/src/main/schema/apachemeta.schema Tue Apr 24 13:05:41 2007
@@ -73,6 +73,7 @@
 #         | 1.3.6.1.4.1.18060.0.4.0.2.34 | x-humanReadible             |
 #         | 1.3.6.1.4.1.18060.0.4.0.2.37 | m-disabled                  |
 #         | 1.3.6.1.4.1.18060.0.4.0.2.38 | m-dependencies              |
+#         | 1.3.6.1.4.1.18060.0.4.0.2.39 | m-length                    |
 #         +------------------------------+-----------------------------+
 #
 #         +------------------------------+-----------------------------+
@@ -170,7 +171,7 @@
     STRUCTURAL
     MAY ( m-name $ m-obsolete $ m-supAttributeType $ m-equality $ m-ordering $ 
           m-substr $ m-syntax $ m-singleValue $ m-collective $
-          m-noUserModification $ m-usage )
+          m-noUserModification $ m-usage $ m-length )
 )
 
 # --- metaSyntax objectclass --------------------------------------------------
@@ -562,5 +563,13 @@
     DESC 'The dependencies of a schema: other schema names.'
     EQUALITY caseIgnoreMatch
     SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+)
+
+# --- m-length AttributeType -----------------------------------
+attributetype ( 1.3.6.1.4.1.18060.0.4.0.2.39 NAME 'm-length'
+    DESC 'The maximum length for an attribute value.'
+    EQUALITY caseIgnoreMatch
+    SYNTAX 1.3.6.1.4.1.18060.0.4.0.0.4
+    SINGLE-VALUE
 )