Difference between revisions of "Talk:MIRC Overview - CTP and TFS"

From MircWiki
Jump to navigation Jump to search
 
Line 1: Line 1:
MIRC uses extensible markup language (XML) to encode configuration data, indexed information, and MIRCdocuments themselves. To use MIRC, an understanding of XML is not necessary, but administrators may find it helpful. To assist readers who are new to XML, the following description will provide enough background to understand the XML in the MIRC documentation.
 
  
An XML document is typically a text file, although it can also be a text stream obtained from a server via a network. Content in an XML document is contained in XML elements. An XML element is identified by a name enclosed in  __< >__ brackets. For example, an element called __MIRCdocument__ is coded as __<MIRCdocument>__. The notation __<elementname>__ is called a tag. Every element tag must be paired with a tag that defines its end. The end tag for __<MIRCdocument>__ is coded as __</MIRCdocument>__. The value of an element is the content between the element tag and its end tag.
 
 
An element may contain attributes. An attribute is coded within the element tag itself. An attribute consists of a name, an equals sign, and an attribute value. The attribute value is enclosed in quotes. The following is an example of an element with an attribute:
 
 
{code:none}
 
<MIRCdocument docref="http://www.somewhere.edu/mydocument.xml">
 
This text is the value of the element.
 
</MIRCdocument>
 
{code}
 
 
An element may be empty, meaning that it has no element value (although it may have attributes). Such an element is usually coded as:
 
 
{code:none}
 
<element attribute="attribute value"/>
 
{code}
 
 
(note the slash before the >), although the form:
 
 
{code:none}
 
<element attribute="attribute value"></element>
 
{code}
 
 
is equally acceptable.
 
 
When XML documents are processed, whitespace is often insignificant. For example, multiple elements and their contents may appear on one line, and multiple spaces, tabs, and newline characters are sometimes reduced to a single space.
 
 
The value of an element may contain other elements, thus allowing the nesting of elements in an XML document. A well-formed XML document must have exactly one top-level, or root, element, within which all other content is contained, and every element must be paired with its end tag within the value of which it is a part. For example, the following is well-formed:
 
 
{code:none}
 
topelement>
 
<p>This is a paragraph.</p>
 
<p>This is another paragraph.</p>
 
</topelement>
 
{code}
 
 
The following is not well-formed, and is rejected by XML parsers:
 
 
{code:none}
 
<topelement>
 
This text is one paragraph.
 
<p>
 
This is another paragraph.
 
</topelement>
 
{code}
 
 
The last example is a common sloppy use of HTML. When including HTML within XML elements, it is imperative to provide an end tag for each HTML element.
 
 
The following document is also not well-formed:
 
 
{code:none}
 
<topelement>
 
<element1> …
 
<element2> …
 
</element1>
 
</element2>
 
</topelement>
 
{code}
 
 
because __<element2>__, which is within __<element1>__, is not closed within the value of __<element1>__.
 
 
Whenever editing an XML file, it is imperative that it remain well-formed. An easy way to check that a document is well-formed is to open it in a web browser that parses XML documents. One such browser is Microsoft's Internet Explorer.
 

Revision as of 18:44, 30 June 2006