<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML_Tutorial%2FIntroduction%2FWell_Formed</id>
		<title>XML Tutorial/Introduction/Well Formed - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML_Tutorial%2FIntroduction%2FWell_Formed"/>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Well_Formed&amp;action=history"/>
		<updated>2026-04-04T10:49:14Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Well_Formed&amp;diff=10505&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Well_Formed&amp;diff=10505&amp;oldid=prev"/>
				<updated>2010-05-26T08:26:41Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 08:26, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Well_Formed&amp;diff=10504&amp;oldid=prev</id>
		<title> в 18:22, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Well_Formed&amp;diff=10504&amp;oldid=prev"/>
				<updated>2010-05-25T18:22:32Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Case Sensitivity==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;first&amp;gt; is different from &amp;lt;FIRST&amp;gt;, which is different from &amp;lt;First&amp;gt;. &lt;br /&gt;
It&amp;quot;s a good idea to pick a naming style and stick to it. &lt;br /&gt;
Some examples of common styles are as follows: &lt;br /&gt;
&amp;lt;first_name&amp;gt; &lt;br /&gt;
&amp;lt;firstName&amp;gt; &lt;br /&gt;
&amp;lt;first-name&amp;gt; &lt;br /&gt;
&amp;lt;FirstName&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Empty Elements==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
Sometimes an element has no PCDATA. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;name nickname=&amp;quot;007&amp;quot;&amp;gt; &lt;br /&gt;
    &amp;lt;first&amp;gt;James&amp;lt;/first&amp;gt; &lt;br /&gt;
    &amp;lt;middle&amp;gt;&amp;lt;/middle &amp;lt;!--James does not have middle name --&amp;gt;  &amp;gt; &lt;br /&gt;
    &amp;lt;last&amp;gt;Bond&amp;lt;/last&amp;gt; &lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
You can write this element using a self-closing tag: &lt;br /&gt;
&amp;lt;middle/&amp;gt; &lt;br /&gt;
The / and &amp;gt; always have to be together&lt;br /&gt;
&amp;lt;middle /&amp;gt; or this  &amp;lt;middle/&amp;gt; &lt;br /&gt;
but not like this &amp;lt;middle/ &amp;gt; or this &amp;lt;middle / &amp;gt; &lt;br /&gt;
Empty elements are used for elements with no PCDATA but attributes. &lt;br /&gt;
&amp;lt;name first=&amp;quot;Bond&amp;quot; &lt;br /&gt;
      middle=&amp;quot;James&amp;quot; &lt;br /&gt;
      last=&amp;quot;Last&amp;quot;/&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Nesting Elements==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
None of your sets of tags should overlap any other set.&lt;br /&gt;
Each interior set should be completely enclosed within the next larger set. &lt;br /&gt;
You can nest as many levels of elements as you like.&lt;br /&gt;
&amp;lt;animal&amp;gt;&lt;br /&gt;
  &amp;lt;animal&amp;gt;&lt;br /&gt;
    &amp;lt;name&amp;gt;T1&amp;lt;/name&amp;gt;&lt;br /&gt;
    &amp;lt;project&amp;gt;project1&amp;lt;/project&amp;gt;&lt;br /&gt;
    &amp;lt;weight&amp;gt;3 points&amp;lt;/weight&amp;gt;&lt;br /&gt;
  &amp;lt;/animal&amp;gt;&lt;br /&gt;
&amp;lt;/animal&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Writing Non-Empty Elements==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
A simple XML element comprises an opening tag, content, and a closing tag whose only difference with the opening tag is an initial forward slash. &lt;br /&gt;
&amp;lt;animal&amp;gt;&lt;br /&gt;
    &amp;lt;animal&amp;gt;T1&amp;lt;/animal&amp;gt;&lt;br /&gt;
&amp;lt;/animal&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
The closing tag is not optional.&lt;br /&gt;
The rules for naming regular elements: case matters; names must begin with a letter, underscore or colon; names may contain letters, digits, underscores, hyphens, periods, and colons; colons are generally only used for specifying namespaces; and names that begin with the letters x, m, and l (in any combination of upper-and lowercase) are reserved by the W3C.&lt;br /&gt;
Names need not be in English or even the Latin alphabet.&lt;br /&gt;
You define which tags are allowed in an XML document by using a schema.&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== XML documents must adhere to certain rules to be well formed.==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
Every start-tag must have a matching end-tag, or be a self-closing tag. &lt;br /&gt;
Every element must have a closing tag. &lt;br /&gt;
Empty tags can either use an all-in-one opening and closing tag with a slash before the final &amp;gt; or a separate closing tag.&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;animal&amp;gt;&lt;br /&gt;
    &amp;lt;name&amp;gt;T1&amp;lt;/name&amp;gt;&lt;br /&gt;
    &amp;lt;picture filename=&amp;quot;tiger.jpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/animal&amp;gt;&lt;br /&gt;
Tags can&amp;quot;t overlap and elements must be properly nested. &lt;br /&gt;
XML documents can have only one root element. &lt;br /&gt;
The only pieces of XML allowed outside (preceding) the root element are comments and processing instructions.&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br /&gt;
&amp;lt;animal&amp;gt;&lt;br /&gt;
    &amp;lt;name&amp;gt;T1&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;/animal&amp;gt;&lt;br /&gt;
Element names must obey XML naming conventions. &lt;br /&gt;
XML is case sensitive. &lt;br /&gt;
The namel, Name, and NAME elements are considered completely separate and unrelated.&lt;br /&gt;
&amp;lt;name&amp;gt;T1&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;Name&amp;gt;T1&amp;lt;/Name&amp;gt;&lt;br /&gt;
&amp;lt;NAME&amp;gt;T1&amp;lt;/NAME&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== XML Naming Conventions==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
Names can start with letters including non-Latin characters.&lt;br /&gt;
Names can start with dash (-) character.&lt;br /&gt;
Names cannot start with numbers or other punctuation characters. &lt;br /&gt;
After the first character, numbers, hyphens, and periods are allowed. &lt;br /&gt;
Names can&amp;quot;t contain spaces. &lt;br /&gt;
Names can&amp;quot;t contain the colon (:) character. &lt;br /&gt;
Names can&amp;quot;t start with the letters xml, in uppercase, lowercase, or mixed.&lt;br /&gt;
There can&amp;quot;t be a space after the opening &amp;lt;&lt;br /&gt;
There can be space before the closing &amp;gt; character. &lt;br /&gt;
Here are some examples of valid names: &amp;lt;first.name&amp;gt; &lt;br /&gt;
Following are some examples of invalid names: &lt;br /&gt;
&amp;lt;xml-element&amp;gt; which starts with xml, &lt;br /&gt;
&amp;lt;123&amp;gt; which starts with a number, &lt;br /&gt;
&amp;lt;your=xml&amp;gt; because the equals sign (=)sign is illegal, and &lt;br /&gt;
&amp;lt;your element&amp;gt; which contains a space.&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
			</entry>

	</feed>