⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc2596.txt

📁 RFC 的详细文档!
💻 TXT
📖 第 1 页 / 共 2 页
字号:






Network Working Group                                            M. Wahl
Request for Comments: 2596                  Innosoft International, Inc.
Category: Standards Track                                       T. Howes
                                           Netscape Communications Corp.
                                                                May 1999


                     Use of Language Codes in LDAP


Status of this Memo

   This document specifies an Internet standards track protocol for the
   Internet community, and requests discussion and suggestions for
   improvements.  Please refer to the current edition of the "Internet
   Official Protocol Standards" (STD 1) for the standardization state
   and status of this protocol.  Distribution of this memo is unlimited.

Copyright Notice

   Copyright (C) The Internet Society (1999).  All Rights Reserved.

1. Abstract

   The Lightweight Directory Access Protocol [1] provides a means for
   clients to interrogate and modify information stored in a distributed
   directory system.  The information in the directory is maintained as
   attributes [2] of entries.  Most of these attributes have syntaxes
   which are human-readable strings, and it is desirable to be able to
   indicate the natural language associated with attribute values.

   This document describes how language codes [3] are carried in LDAP
   and are to be interpreted by LDAP servers.  All implementations MUST
   be prepared to accept language codes in the LDAP protocols.  Servers
   may or may not be capable of storing attributes with language codes
   in the directory.  This document does not specify how to determine
   whether particular attributes can or cannot have language codes.

   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", "SHOULD NOT", "RECOMMENDED",  "MAY", and "OPTIONAL" in this
   document are to be interpreted as described in RFC 2119 [4].

2. Language Codes

   Section 2 of RFC 1766 [3] describes the language code format which is
   used in LDAP.  Briefly, it is a string of ASCII alphabetic characters
   and hyphens.  Examples include "fr", "en-US" and "ja-JP".




Wahl & Howes                Standards Track                     [Page 1]

RFC 2596             Use of Language Codes in LDAP              May 1999


   Language codes are case insensitive.  For example, the language code
   "en-us" is the same as "EN-US" and "en-US".

   Implementations MUST NOT otherwise interpret the structure of the
   code when comparing two codes, and MUST treat them as simply strings
   of characters. Client and server implementations MUST allow any
   arbitrary string which follows the patterns given in RFC 1766 to be
   used as a language code.

3. Use of Language Codes in LDAP

   This section describes how LDAP implementations MUST interpret
   language codes in performing operations.

   In general, an attribute with a language code is to be treated as a
   subtype of the attribute without a language code.  If a server does
   not support storing language codes with attribute values in the DIT,
   then it MUST always treat an attribute with a language code as an
   unrecognized attribute.

3.1. Attribute Description

   An attribute consists of a type, a list of options for that type, and
   a set of one or more values.  In LDAP, the type and the options are
   combined into the AttributeDescription, defined in section 4.1.5 of
   [1]. This is represented as an attribute type name and a possibly-
   empty list of options.  One of these options associates a natural
   language with values for that attribute.

        language-option = "lang-" lang-code

        lang-code = printable-ascii ; a code as defined in RFC 1766

   Multiple language options may be present on a particular value.

   The language code has no effect on the character set encoding for
   string representations of DirectoryString syntax values; the UTF-8
   representation of UniversalString (ISO 10646) is always used.

   Examples of valid AttributeDescription:
        givenName;lang-en-US
        CN;lang-ja

   In LDAP and in examples in this document, a directory attribute is
   represented as an AttributeDescription with a list of values.  Note
   that the data could be stored in the LDAP server in a different
   representation.




Wahl & Howes                Standards Track                     [Page 2]

RFC 2596             Use of Language Codes in LDAP              May 1999


3.2. Distinguished Names and Relative Distinguished Names

   No attribute description options are permitted in Distinguished Names
   or Relative Distinguished Names.  Thus language codes MUST NOT be
   used in forming DNs.

3.3. Search Filter

   If a language code is present in an AttributeDescription in a search
   filter, then only attribute values in the directory which match the
   base attribute type or its subtype, the language code and the
   assertion value match this filter.

   Thus for example a filter of an equality match of type "name;lang-
   en-US" and assertion value "Billy Ray", against the following
   directory entry

   objectclass: top                     DOES NOT MATCH (wrong type)
   objectclass: person                  DOES NOT MATCH (wrong type)
   name;lang-EN-US: Billy Ray           MATCHES
   name;lang-EN-US: Billy Bob           DOES NOT MATCH (wrong value)
   CN;lang-en-us: Billy Ray                MATCHES
   CN;lang-EN-US;dynamic: Billy Ray     MATCHES
   CN;lang-en;dynamic: Billy Ray        DOES NOT MATCH (differing lang-)
   name: Billy Ray                      DOES NOT MATCH (no lang-)
   SN: Ray                              DOES NOT MATCH (wrong value)

   (Note that "CN" and "SN" are subtypes of "name".)

   Client implementors should however note that providing a language
   code in a search filter AttributeDescription will often filter out
   desirable values where the language code does not match exactly.  For
   example, the filter (name;lang-en=Billy Ray) does NOT match the
   attribute "name;lang-en-US: Billy Ray".

   If the server does not support storing language codes with attribute
   values in the DIT, then any filter which includes a language code
   will always fail to match, as it is an unrecognized attribute type.
   No error would be returned because of this; a presence filter would
   evaluate to FALSE and all other forms to Undefined.

   If no language code is specified in the search filter, then only the
   base attribute type and the assertion value need match the value in
   the directory.

   Thus for example a filter of an equality match of type "name" and
   assertion value "Billy Ray", against the following directory entry




Wahl & Howes                Standards Track                     [Page 3]

RFC 2596             Use of Language Codes in LDAP              May 1999


   objectclass: top                     DOES NOT MATCH (wrong type)
   objectclass: person                  DOES NOT MATCH (wrong type)
   name;lang-EN-US: Billy Ray           MATCHES
   name;lang-EN-US: Billy Bob           DOES NOT MATCH (wrong value)
   CN;lang-EN-US;dynamic: Billy Ray     MATCHES
   CN;lang-en;dynamic: Billy Ray        MATCHES
   name: Billy Ray                      MATCHES
   SN: Ray                              DOES NOT MATCH (wrong value)

   Thus in general, clients SHOULD NOT use the language code option in
   AttributeDescription fields in search filters.

3.4. Compare

   A language code can be present in an AttributeDescription used in a
   compare request AttributeValueAssertion.  This is to be treated by
   servers the same as the use of language codes in a search filter with
   an equality match, as described in the previous section.  If there is
   no attribute in the entry with the same subtype and language code,
   the noSuchAttributeType error will be returned.

   Thus for example a compare request of type "name" and assertion value
   "Johann", against an entry with all the following directory entry

   objectclass: top
   objectclass: person
   givenName;lang-de-DE: Johann
   CN: Johann Sibelius
   SN: Sibelius

   will cause the server to return compareTrue.

   However, if the client issued a compare request of type "name;lang-
   de" and assertion value "Johann" against the above entry, the request
   would fail with the noSuchAttributeType error.

   If the server does not support storing language codes with attribute
   values in the DIT, then any comparison which includes a language code
   will always fail to locate an attribute type, and noSuchAttributeType
   will be returned.

   Thus in general, clients SHOULD NOT use the language code option in
   AttributeDescription fields in the compare request.

3.5. Requested Attributes in Search

   Clients MAY provide language codes in AttributeDescription in the
   requested attribute list in a search request.



Wahl & Howes                Standards Track                     [Page 4]

RFC 2596             Use of Language Codes in LDAP              May 1999


   If a language code is provided in an attribute description, then only
   attribute values in a directory entry which have the same language
   code as that provided are to be returned. Thus if a client requests
   an attribute "description;lang-en", the server MUST NOT return values
   of an attribute "description" or "description;lang-fr".

   Clients MAY provide in the attribute list multiple
   AttributeDescription which have the same base attribute type but
   different options. For example a client MAY provide both "name;lang-
   en" and "name;lang-fr", and this would permit an attribute with
   either language code to be returned.  Note there would be no need to
   provide both "name" and "name;lang-en" since all subtypes of name
   would match "name".

   If a server does not support storing language codes with attribute
   values in the DIT, then any attribute descriptions in the list which
   include language codes are to be ignored, just as if they were
   unknown attribute types.

   If a request is made specifying all attributes or an attribute is
   requested without providing a language code, then all attribute
   values regardless of their language code are returned.

   For example, if the client requests a "description" attribute, and a

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -