Skip to main content

Use of Language Codes in LDAP
draft-ietf-ldapext-lang-01

The information below is for an old version of the document that is already published as an RFC.
Document Type
This is an older version of an Internet-Draft that was ultimately published as RFC 2596.
Authors Tim Howes , Mark Wahl
Last updated 2013-03-02 (Latest revision 1998-07-17)
RFC stream Internet Engineering Task Force (IETF)
Intended RFC status Proposed Standard
Formats
Additional resources Mailing list discussion
Stream WG state (None)
Document shepherd (None)
IESG IESG state Became RFC 2596 (Proposed Standard)
Consensus boilerplate Unknown
Telechat date (None)
Responsible AD (None)
Send notices to (None)
draft-ietf-ldapext-lang-01
Network Working Group                                            M. Wahl
INTERNET-DRAFT                              Innosoft International, Inc.
                                                                T. Howes
                                           Netscape Communications Corp.
Expires in six months from                                  17 July 1998
Intended Category: Standards Track

                     Use of Language Codes in LDAP
                    <draft-ietf-ldapext-lang-01.txt>

1. Status of this Memo

   This document is an Internet-Draft.  Internet-Drafts are working 
   documents of the Internet Engineering Task Force (IETF), its areas,and
   its working groups.  Note that other groups may also distribute 
   working documents as Internet-Drafts.
 
   Internet-Drafts are draft documents valid for a maximum of six months
   and may be updated, replaced, or obsoleted by other documents at any
   time.  It is inappropriate to use Internet-Drafts as reference 
   material or to cite them other than as "work in progress."
 
   To learn the current status of any Internet-Draft, please check the
   "1id-abstracts.txt" listing  contained in the Internet-Drafts Shadow
   Directories on ftp.ietf.org (US East Coast), nic.nordu.net (Europe),
   ftp.isi.edu (US West Coast), or munnari.oz.au (Pacific Rim).

Copyright Notice

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

2. 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].

Wahl, Howes                  Internet Draft                     [Page 1]
                    draft-ietf-ldapext-lang-01.txt             July 1998

3. 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". 

   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.

4. 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.

4.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

Wahl, Howes                  Internet Draft                     [Page 2]
                    draft-ietf-ldapext-lang-01.txt             July 1998

   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.

4.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.

4.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.  

Wahl, Howes                  Internet Draft                     [Page 3]
                    draft-ietf-ldapext-lang-01.txt             July 1998

   Thus for example a filter of an equality match of type "name" 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;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.

4.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.

4.5. Requested Attributes in Search

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

Wahl, Howes                  Internet Draft                     [Page 4]
                    draft-ietf-ldapext-lang-01.txt             July 1998

   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 
   matching entry contains 

   objectclass: top
   objectclass: organization
   O: Software GmbH
   description: software  
   description;lang-en: software products
   description;lang-de: Softwareprodukte
   postalAddress: Berlin 8001 Germany
   postalAddress;lang-de: Berlin 8001 Deutschland

   The server will return: 

   description: software
   description;lang-en: software products
   description;lang-de: Softwareprodukte
   
4.6. Add Operation

   Clients MAY provide language codes in AttributeDescription in 
   attributes of a new entry to be created, subject to the limitation 
   that the client MUST NOT use language codes in the attribute value or
   values which form the RDN of the entry.

   A client MAY provide multiple attributes with the same attribute type 
   and value, so long as each attribute has a different language code, 
   and at most one attribute does not have a language code option.

Wahl, Howes                  Internet Draft                     [Page 5]
                    draft-ietf-ldapext-lang-01.txt             July 1998

   Servers which support storing language codes in the DIT MUST allow any
   attribute it recognizes that has the Directory String syntax to have a 
   language option associated with it. Servers SHOULD allow language 
   options to be associated with other attributes.

   For example, the following is a legal request.

   objectclass: top
   objectclass: person
   objectclass: residentialPerson
   name: John Smith
   CN: John Smith
   CN;lang-en: John Smith
   SN: Smith
   streetAddress: 1 University Street
   streetAddress;lang-en: 1 University Street
   streetAddress;lang-fr: 1 rue Universite
   houseIdentifier;lang-fr: 9e etage

   If a server does not support storing language codes with attribute 
   values in the DIT, then it MUST treat an AttributeDescription with a 
   language code as an unrecognized attribute. If the server forbids the 
   addition of unrecognized attributes then it MUST fail the add request 
   with the appropriate result code.

4.7. Modify Operation

   A client MAY provide a language code in an AttributeDescription as 
   part of a modification element in the modify operation.  

   Attribute types and language codes MUST match exactly against values 
   stored in the directory.  For example, if the modification is a 
   "delete", then if the stored values to be deleted have a language 
   code, the language code MUST be provided in the modify operation, and 
   if the stored values to be deleted do not have a language code, then 
   no language code is to be provided.

   If the server does not support storing language codes with attribute 
   values in the DIT, then it MUST treat an AttributeDescription with a 
   language code as an unrecognized attribute, and MUST fail the request 
   with an appropriate result code.

4.8. Diagnostic Messages

   Servers SHOULD use only printable ASCII characters in the errorMessage 
   field, as not all clients will be able to display the full range of 
   Unicode.

5. Differences from X.500(1997)

   X.500(1997) defines a different mechanism, contexts, as the means of
   representing language tags.  This section summarizes the major 
   differences in approach. 

Wahl, Howes                  Internet Draft                     [Page 6]
                    draft-ietf-ldapext-lang-01.txt             July 1998

   a) An X.500 operation which has specified a language code on a 
      value matches a value in the directory without a language code.
   b) LDAP references RFC 1766, which allows for IANA registration of
      new tags.
   c) LDAP does not allow language codes in distinguished names.
   d) X.500 describes subschema administration procedures to allow
      language codes to be associated with particular attributes types.

6. Security Considerations

   There are no known security considerations for this document.  See
   the security considerations sections of [1] and [2] for security
   considerations of LDAP in general.

7. Acknowledgements

   This document is a product of the IETF ASID and LDAPEXT working groups.
   Martin Duerst provided many valuable comments on an earlier version of
   this document.

8. Bibliography

   [1] M.Wahl, T. Howes, S. Kille, "Lightweight Directory Access Protocol
       (v3)", RFC 2251.

   [2] M. Wahl, A. Coulbeck, T. Howes, S. Kille, "Lightweight X.500 
       Directory Access Protocol Attribute Syntax Definitions", 
       RFC 2252.

   [3] H. Alvestrand, "Tags for the Identification of Languages",
       RFC 1766.

   [4] S. Bradner, "Key words for use in RFCs to Indicate Requirement
       Levels", RFC 2119.

9. Authors Addresses

       Mark Wahl
       Innosoft International, Inc.
       8911 Capital of Texas Hwy Suite 4140
       Austin, TX 78759 USA

       EMail:  M.Wahl@innosoft.com

       Tim Howes
       Netscape Communications Corp.
       501 E. Middlefield Rd
       Mountain View, CA 94043 USA
       
       Phone:  +1 650 937-3419
       EMail:   howes@netscape.com

Wahl, Howes                  Internet Draft                     [Page 7]
                    draft-ietf-ldapext-lang-01.txt             July 1998

Full Copyright Statement

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

   This document and translations of it may be copied and furnished to
   others, and derivative works that comment on or otherwise explain it
   or assist in its implementation may be prepared, copied, published
   and distributed, in whole or in part, without restriction of any
   kind, provided that the above copyright notice and this paragraph are
   included on all such copies and derivative works.  However, this
   document itself may not be modified in any way, such as by removing
   the copyright notice or references to the Internet Society or other
   Internet organizations, except as needed for the purpose of
   developing Internet standards in which case the procedures for
   copyrights defined in the Internet Standards process must be
   followed, or as required to translate it into languages other than
   English.

   The limited permissions granted above are perpetual and will not be
   revoked by the Internet Society or its successors or assigns.

   This document and the information contained herein is provided on an
   "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
   TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
   BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
   HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
   MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.

<draft-ietf-ldapext-lang-01.txt> Expires: January 1999          [Page 8]