<?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%2FIntroduction</id>
		<title>XML Tutorial/Introduction/Introduction - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML_Tutorial%2FIntroduction%2FIntroduction"/>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Introduction&amp;action=history"/>
		<updated>2026-04-05T16:27:09Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Introduction&amp;diff=10497&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML_Tutorial/Introduction/Introduction&amp;diff=10497&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/Introduction&amp;diff=10496&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/Introduction&amp;diff=10496&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;== Elements, Attributes, and Values==&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;
XML uses the same building blocks that HTML does: elements, attributes, and values. &lt;br /&gt;
An XML element is the most basic unit of your document. &lt;br /&gt;
An XML element can contain other elements and text. &lt;br /&gt;
An element has an opening tag with a name ( written between &amp;lt; and &amp;gt; ) and sometimes attributes. &lt;br /&gt;
The name should describe the element&amp;quot;s purpose. &lt;br /&gt;
XML is self-describing &lt;br /&gt;
&amp;lt;name&amp;gt; &lt;br /&gt;
    &amp;lt;first&amp;gt;Bond&amp;lt;/first&amp;gt; &lt;br /&gt;
    &amp;lt;last&amp;gt;James&amp;lt;/last&amp;gt; &lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
Hierarchies in XML &lt;br /&gt;
&amp;lt;name&amp;gt; &lt;br /&gt;
    &amp;lt;first&amp;gt;Bond&amp;lt;/first&amp;gt;&lt;br /&gt;
    &amp;lt;middle&amp;gt;JK&amp;lt;/middle&amp;gt;&lt;br /&gt;
    &amp;lt;last&amp;gt;James&amp;lt;/last&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
&amp;lt;name&amp;gt; is parent of &amp;lt;first&amp;gt;, &amp;lt;middle&amp;gt; and &amp;lt;last&amp;gt;.&lt;br /&gt;
&amp;lt;first&amp;gt;, &amp;lt;middle&amp;gt; and &amp;lt;last&amp;gt; are sibling.&lt;br /&gt;
Text is a child of the element. &lt;br /&gt;
The text Bond is a child of &amp;lt;first&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;name&amp;gt; &lt;br /&gt;
    &amp;lt;first&amp;gt;Bond&amp;lt;/first&amp;gt;&lt;br /&gt;
    &amp;lt;middle&amp;gt;JK&amp;lt;/middle&amp;gt;&lt;br /&gt;
    &amp;lt;last&amp;gt;James&amp;lt;/last&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;name&amp;gt; element has only other elements, and not text, then it is said to have element content. &lt;br /&gt;
&amp;lt;first&amp;gt;, &amp;lt;middle&amp;gt;, and &amp;lt;last&amp;gt; have only text as children, they are said to have simple content. &lt;br /&gt;
&lt;br /&gt;
Elements can contain both text and other elements(mixed content)&lt;br /&gt;
&amp;lt;doc&amp;gt; &lt;br /&gt;
    &amp;lt;parent&amp;gt;this is some &amp;lt;em&amp;gt;text&amp;lt;/em&amp;gt; in my element&amp;lt;/parent&amp;gt; &lt;br /&gt;
&amp;lt;/doc&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;parent&amp;gt;has three children: &lt;br /&gt;
A text child containing the text &amp;quot;this is some&amp;quot; and an &amp;lt;em&amp;gt;child.&lt;br /&gt;
Another text child containing the text inmyelement.&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Text content==&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;name&amp;gt; &lt;br /&gt;
    &amp;lt;first&amp;gt;Bond&amp;lt;/first&amp;gt;&lt;br /&gt;
    &amp;lt;middle&amp;gt;JK&amp;lt;/middle&amp;gt;&lt;br /&gt;
    &amp;lt;last&amp;gt;James&amp;lt;/last&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
Data from the beginning of a start-tag to the end of an end-tag is called an element. &lt;br /&gt;
&amp;lt;first&amp;gt;is a start-tag&lt;br /&gt;
&amp;lt;/first&amp;gt;is an end-tag &lt;br /&gt;
&amp;lt;first&amp;gt;John&amp;lt;/first&amp;gt;is an element &lt;br /&gt;
The text between the start-tag and end-tag of an element is called the element content. &lt;br /&gt;
If the content is just data, not other elements, the element content is referred to as parsed character data, or PCDATA.&lt;br /&gt;
PCDATA is also referred as with &amp;quot;text content&amp;quot; or &amp;quot;text node.&amp;quot; &lt;br /&gt;
You can include a space before the closing &amp;gt; of a tag&lt;br /&gt;
&amp;lt;name&amp;gt; &lt;br /&gt;
    &amp;lt;first &amp;gt;Bond&amp;lt;/first &amp;gt;&lt;br /&gt;
    &amp;lt;middle&amp;gt;JK&amp;lt;/middle&amp;gt;&lt;br /&gt;
    &amp;lt;last&amp;gt;James&amp;lt;/last&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
or &lt;br /&gt;
&amp;lt;name&amp;gt; &lt;br /&gt;
&amp;lt;first &amp;gt;Bond&amp;lt;/first &amp;gt;&lt;br /&gt;
&amp;lt;middle&amp;gt;JK&amp;lt;/middle&amp;gt;&lt;br /&gt;
&amp;lt;last&amp;gt;James&amp;lt;/last&amp;gt;&lt;br /&gt;
&amp;lt;/name&amp;gt; &lt;br /&gt;
You cannot put a space after the opening &amp;lt; character in a tag, or the / character in an end-tag&lt;br /&gt;
Therefore, the following is not proper XML syntax: &lt;br /&gt;
&amp;lt; first &amp;gt;Bond&amp;lt; /first &amp;gt; &lt;br /&gt;
Neither is this: &lt;br /&gt;
&amp;lt; first &amp;gt;Bond&amp;lt; / first &amp;gt;&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
			</entry>

	</feed>