Home > Articles > Web Services > XML

Miscellaneous Tagging in XML

When developing your own XML schema or writing localization tools, it is important to address the different types of information encountered in XML documents. This chapter presents three such types and explains their uses.
This chapter is from the book

Several text properties are common to all types of XML documents, regardless of their final purpose. These characteristics occur so frequently that the various XML standards often include special provisions for them.

These properties cover the following challenges:

  • How to identify the language of the content—For example, how to distinguish a paragraph in German from one in Czech.

  • How to handle white spaces—Basically, how to note the difference between spaces that are meant to make the structure of the document more readable (spaces such as indentations and empty lines), and the ones that are meaningful.

  • How to represent date and time information—In our case especially, how to display this information both from locale-specific and from locale-neutral viewpoints.

Language Settings

To address language identification, XML provides a default attribute to specify the language of any element: xml:lang. In many respects this attribute can also be seen as a locale.

A locale is, roughly, the combination of a language and a region. The classic example is the difference between French, the language, and the two locales: French for France, and Canadian French (Québécois). Many other examples exist: the various flavors of Spanish, Brazilian versus Portuguese, and so forth.

In addition to linguistic differences, the locale also often indicates possible variations on how to process data: Currency, numbers, date/time formatting, sorting, and character uppercasing and lowercasing are some of the locale-specific areas. Sometimes the locale even goes beyond and points to deeper differences such as the type of writing system (for example, Classical Mongolian versus Cyrillic Mongolian, or Azerbaijani Arabic versus Azerbaijani Cyrillic).

NOTE

A good example of a language where differences are clear between locales is Spanish.

Spanish is spoken in many countries and therefore comes in many different varieties. When localizing for a specific market you must decide which flavor you need.

For example, Spaniards use "utilidades" for "utility programs," Argentines use "utilitiarios," and Mexicans use "utilerías." Another example is the term "computer." Spaniards use the word "ordenador" but all Latin Americans use "computadora" instead. Such discrepancies cause a few dilemmas when you want to have only one Spanish translation for all markets.

To reduce costs, companies often try to use a "neutral" or "international" Spanish. This is an artificial creation, as is "Latin American Spanish."

Finally, to avoid confusion, you might want to refer to the Spanish spoken in Spain as "Iberian Spanish" rather than "Castilian Spanish," the term "Castellano" being often used in South America to refer to the Spanish spoken there.

When defining your own XML vocabulary, you should use xml:lang as your attribute to specify the locale information, rather than come up with your own attribute. There are a couple of good reasons for this.

First, xml:lang will be understood immediately by any XML user. And second, it will allow you to take advantage of interoperability among the various XML-related technologies such as XSL or CSS.

If you use a DTD to specify your format, xml:lang must still be declared, just as with any other attribute. For example:

<!ATTLIST p
 xml:lang NMTOKEN #IMPLIED >

Language Codes

The values of the xml:lang attribute should conform to the language tags defined in the XML specifications, as shown in Listing 3.1.

Listing 3.1Definition of the Value for the xml:lang Attribute

LangValue ::= Langcode ('-' Subcode)*
Langcode  ::= ISO639Code | IanaCode | UserCode
ISO639Code ::= ([a-z] | [A-Z]) ([a-z] | [A-Z])
IanaCode  ::= ('i' | 'I') '-' ([a-z] | [A-Z])+
UserCode  ::= ('x' | 'X') '-' ([a-z] | [A-Z])+
Subcode  ::= ([a-z] | [A-Z])+

In addition, according to RFC1766, the part on the right of the '-' can be up to 8 characters long.

Currently the language codes use ISO 639 2-letter codes, but as of January 2001, RFC1766 has been superseded by RFC3066, which introduces the use of ISO 639 3-letter codes.

According to this last RFC, if a language can be identified with both types of code, the 2-letter code must be used. The 3-letter codes should be used only for representing languages that do not have 2-letter codes. For example, the code for Korean must always be ko and never kor.

In addition, there are 2 types of 3-letter codes: Terminology and Bibliography. Currently none of the languages that should be using a 3-letter code have a discrepancy between the Terminology form and the Bibliography form. If such a conflict occurs in the future, the Terminology code should be used.

Finally, if a language has both an ISO code and an IANA code, the ISO code must be used.

Table 3.1 Use of ISO Codes

Languages

639-1

639-2/T

639-2/B

xml:lang

French

fr

fra

fre

fr

German

de

deu

ger

de

Manipuri

 

mni

mni

mni

Navajo

nv

nav

nav

nv


NOTE

Normally, attribute values in XML are case sensitive. However, for simplification purposes and to match the RFC3066 standard, the values of the xml:lang attribute are not case sensitive. For example, the four values "pt-BR", "PT-BR", "pt-br", and "PT-br" (Brazilian Portuguese) are considered identical.

Usually the language code is represented in lowercase and the country code in uppercase, but this is not a rule.

User-Defined Codes

In some cases the list of variant codes you can build from the predefined language and region codes is not enough.

For instance, as we have seen already, you might have to localize a document in two types of Spanish: one for the audience in Spain (Iberian Spanish) and the other for the Latin American market. The first should be coded "es-ES", or simply "es" because Spain is the default country for Spanish. For the second, however, no country code corresponds to "Latin America." To solve this you can create your own locale codes as defined by UserCode in Listing 3.1. For example, you could use something such as "x-es-LatAm" for your Latin-American Spanish document.

A special kind of user-defined code exists: the one registered to the IANA. Most of them start with the prefix i-. The list of these language tags is updated regularly and you can find it at http://www.iana.org/assignments/languages.

NOTE

Be aware that some localization tools might be programmed to handle only 4-letter codes, and might not be able to process IANA or user-defined codes correctly.

For a detailed list of language codes, see Appendix D.

Multilingual Documents

As you saw in Chapter 2, "Character Representation," one characteristic of XML is its capability to handle content in different languages when necessary.

For example, as shown in Listing 3.2, a SOAP data file could store description of an item in several languages.

Listing 3.2 Soap1.xml—SOAP Envelope with Multilingual Entries

<!-- SOAP excerpt -->
<Envelope
 xmlns="http://schemas.xmlsoap.org/soap/envelope/"
 encodingStyle="http://schemas.xmlsoap.org/soap/envelope/">
 <Body>
 <d:GetItem xmlns:d="uri:myData" xml:lang="en">
  <d:PartNum>NCD-67543</d:PartNum>
  <d:InStock>5</d:InStock>
  <d:Desc>Manual water pump</d:Desc>
  <d:Desc xml:lang="fr">Pompe à eau manuelle</d:Desc>
  <d:Desc xml:lang="ja">éËìÆÉEÉHÅ[É^Å[ÅEÉ|ÉìÉv</d:Desc>
 </d:GetItem>
 </Body>
</Envelope>

The default language from the <d:GetItem> element level is set to en (English). The child elements inherit the property, so the first <d:Desc> element does not need to repeat the attribute. However, because the second one contains the description in French, you need to override the default xml:lang attribute.

Always keep in mind that XML element and attribute names can have non-ASCII characters as well. In such occurrences, the language specifications work the same. Listing 3.3 shows the same SOAP envelope, but this time with the user data marked up with a Russian vocabulary. The data are identical and the xml:lang mechanism is expected to behave the same: It applies to the content, not to the tags.

Listing 3.3 Soap2.xml—SOAP Envelope with Multilingual Entries and Some Non-ASCII Elements

<!-- SOAP excerpt -->
<Envelope
 xmlns="http://schemas.xmlsoap.org/soap/envelope/"
 encodingStyle="http://schemas.xmlsoap.org/soap/envelope/">
 <Body>
 <_:_____________ 
xmlns:_="uri:%D0%9C%D0%BE%D0%B8%D0%94%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5" 
xml:lang="en">
  <_:____________>NCD-67543</_:____________>
  <_:________>5</_:________>
  <_:________>Manual water pump</_:________>
  <_:________ xml:lang="fr">Pompe à eau manuelle</_:________>
  <_:________ xml:lang="ja">éËìÆÉEÉHÅ[É^Å[ÅEÉ|ÉìÉv</_:________>
 </_:_____________>
 </Body>
</Envelope>

Note the value of the xmlns attribute: The namespace prefix _ is associated to a URI reference (_________), but here the URI has already been coded into its UTF-8/escaped form as described in Chapter 2.

The lang Attribute in XHTML

For historical reasons, in addition to xml:lang, XHTML also allows the attribute lang to specify language switch. Both have exactly the same significance.

In case the same element has both xml:lang and lang with two different values, xml:lang takes precedence over lang.

NOTE

Using xml:lang or lang has no direct impact on the way the text is rendered. For example, specifying a paragraph as Arabic does not trigger right-to-left display. You must use the style sheets and the various internationalization elements and attributes such as <bdo>, <dir>, and <ruby> for XHTML to indicate to the user-agent how the text should be displayed.

However, take into account that language is important in some cases: for example, to select an appropriate font. If a document is encoded in UTF-8 or UTF-16, there is no easy way to distinguish Chinese from Japanese, because most ideographs have been unified.

The lang() Function in XPath

XPath is the language used in various XML applications to specify a "path notation" that allows you to navigate through the hierarchical structure of any XML document. It is also used to test whether the node of a document instance matches a given pattern. XPath is used, for example, in conjunction with XPointer and XSLT.

XPath designers have wisely provided a function to match languages: lang().

The function uses the xml:lang attribute to match a given parameter. This is very useful because, following the XML specifications, the function is not case sensitive and allows you to match a language value very simply.

When you specify only a language code rather than a locale code (for example, en versus en-GB), the function returns true for any attributes where the first part of its value matches the argument. The separator between both parts of the value is '-'. Consider the following XSL statement:

<xsl:for-each select="lang('es')">

When this command is used on the XML document shown in Listing 3.4, it will return true for all the following elements:

<p xml:lang="es">Spanish text</p>
<p xml:lang="ES">Spanish text</p>
<p xml:lang="es-ES">Iberian Spanish text</p>
<p xml:lang='es-mx'>Mexican Spanish text</p>

Listing 3.4 Spanish.xml— Multilingual Document with Different Spanish Flavors

<?xml version="1.0" ?>
<document>
 <p xml:lang="es">Spanish text</p>
 <p xml:lang="fr">French text</p>
 <p xml:lang="ES">Spanish text</p>
 <p xml:lang="CA-es">Catalan text</p>
 <p xml:lang="es-ES">Iberian Spanish text</p>
 <p xml:lang="es-mx">Mexican Spanish text</p>
</document>

Keep in mind that not all XSL processors support all XSL features yet. The lang() function is not supported in all browsers, for example.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020