<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.fictionbook.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.fictionbook.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Samaritan</id>
		<title>FictionBook - Вклад участника [ru]</title>
		<link rel="self" type="application/atom+xml" href="http://www.fictionbook.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Samaritan"/>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/%D0%A1%D0%BB%D1%83%D0%B6%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F:%D0%92%D0%BA%D0%BB%D0%B0%D0%B4/Samaritan"/>
		<updated>2026-04-25T17:58:57Z</updated>
		<subtitle>Вклад участника</subtitle>
		<generator>MediaWiki 1.22.15</generator>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:The_XML_Basics</id>
		<title>Eng:The XML Basics</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:The_XML_Basics"/>
				<updated>2006-06-27T10:27:31Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Well and what is all this for? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Toc-Right}}&lt;br /&gt;
XML is a markup language with rigidly set rules (all tags should be closed, etc.). Within the limits of these rules you have total freedom (specific names of tags, etc.). XML is simple in development and processing. &lt;br /&gt;
&lt;br /&gt;
== Why do I need XML? ==&lt;br /&gt;
&lt;br /&gt;
XML files can easily be used by many programs. The file can be displayed, transformed, catalogued very simply, etc. &lt;br /&gt;
Working with FictionBook, you most likely will avoid encounter with the XML code but understanding of the essense of your actions might be useful. &lt;br /&gt;
&lt;br /&gt;
== What is XML?  ==&lt;br /&gt;
&lt;br /&gt;
It is a universal '''markup''' language. There are others  but currently it may be considered as the most promising. &lt;br /&gt;
&lt;br /&gt;
== What distinguishes XML from other markup languages?  ==&lt;br /&gt;
&lt;br /&gt;
Its ease in creation and processing of files. XML was formulated as a format equally easily handled by program, browser and man. &lt;br /&gt;
&lt;br /&gt;
This ease is provided with several features of XML: &lt;br /&gt;
&lt;br /&gt;
# Intuitive ease and clarity; &lt;br /&gt;
# Strictness.&lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
You open an unknown file thet has arrived fron somewhere and understand what is what. For example, here is a file with the description of a PERL module: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 (The file was taken from ActiveState) &lt;br /&gt;
&lt;br /&gt;
I opened this file and corrected one string (&amp;lt;CODEBASE&amp;gt;). To do this I did not have to read manuals or download analyzer programs. Any XML document should meet this principle. &lt;br /&gt;
&lt;br /&gt;
=== Strictness ===&lt;br /&gt;
&lt;br /&gt;
# XML documents are marked by tags like in HTML - by markers between brackets &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;lt;table&amp;gt;). But unlike HTML, the XML document can use any tag (such as &amp;lt;my_cool-TAG&amp;gt;). &lt;br /&gt;
# Markups in XML documents is used to demarcate the structure, and merely for this purpose. The document description is completely taken out of the document and handled separately. For any XML document it is possible to create infinite set of descriptions ([http://xml.nsu.ru/xml/xml_display.xml CSS] and [http://xml.nsu.ru/xml/xml_xsl.xml XST] styles are used for this purpose).&lt;br /&gt;
# The structure of XML documents is rigidly determined and cannot be broken. For example, such combination of tags as &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt; &amp;lt;B&amp;gt; &amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt;&amp;lt;/nowiki&amp;gt; is acceptable (although incorrect) in HTML and will be adequately displayed in a browser for example. However in XML such combination of tags will cause an error message, and the document will not be handled. Any nested tag should be closed before its parent. &lt;br /&gt;
# Tags in XML are case-sensitive. That is &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; is not the same in XML. &lt;br /&gt;
# XML documents beside a correct nesting of tags (well-formed, correct XML) has one more degree of structuredness. It is possible to declare, for example, that the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; will appear only within &amp;lt;PARAGRAPH&amp;gt;, and &amp;lt;PARAGRAPH&amp;gt; can only include text and the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt;. Any document in which this rule will be broken, is considered invalid, and at its processing assumes no guarantees - at the best an error will be issued. It is possible to declare tags which should undoubtedly be in a specific place of the document. It is possible to define a set of tags of which only one can be used inside of a tag, or specify what tag should follow what.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Well and what is all this for? ==&lt;br /&gt;
&lt;br /&gt;
Due to such strictness, ease of XML support by various programs and reliability of data is achieved. Digital processing of XML documents is a quite trivial task, whether it be mapping, coercion to another standard (for example, conversion to HTML) or search and analysis of information. &lt;br /&gt;
&lt;br /&gt;
Such are the elements necessary for work with FictionBook. For more detailed information refer to specific web sites or literature. &lt;br /&gt;
&lt;br /&gt;
'''''Dmitry Gribov'''''&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
The information on a current state of the XML [http://www.w3.org/XML/ standard] on W3C site.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:The_XML_Basics</id>
		<title>Eng:The XML Basics</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:The_XML_Basics"/>
				<updated>2006-06-27T10:25:48Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Well and what is all this for? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Toc-Right}}&lt;br /&gt;
XML is a markup language with rigidly set rules (all tags should be closed, etc.). Within the limits of these rules you have total freedom (specific names of tags, etc.). XML is simple in development and processing. &lt;br /&gt;
&lt;br /&gt;
== Why do I need XML? ==&lt;br /&gt;
&lt;br /&gt;
XML files can easily be used by many programs. The file can be displayed, transformed, catalogued very simply, etc. &lt;br /&gt;
Working with FictionBook, you most likely will avoid encounter with the XML code but understanding of the essense of your actions might be useful. &lt;br /&gt;
&lt;br /&gt;
== What is XML?  ==&lt;br /&gt;
&lt;br /&gt;
It is a universal '''markup''' language. There are others  but currently it may be considered as the most promising. &lt;br /&gt;
&lt;br /&gt;
== What distinguishes XML from other markup languages?  ==&lt;br /&gt;
&lt;br /&gt;
Its ease in creation and processing of files. XML was formulated as a format equally easily handled by program, browser and man. &lt;br /&gt;
&lt;br /&gt;
This ease is provided with several features of XML: &lt;br /&gt;
&lt;br /&gt;
# Intuitive ease and clarity; &lt;br /&gt;
# Strictness.&lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
You open an unknown file thet has arrived fron somewhere and understand what is what. For example, here is a file with the description of a PERL module: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 (The file was taken from ActiveState) &lt;br /&gt;
&lt;br /&gt;
I opened this file and corrected one string (&amp;lt;CODEBASE&amp;gt;). To do this I did not have to read manuals or download analyzer programs. Any XML document should meet this principle. &lt;br /&gt;
&lt;br /&gt;
=== Strictness ===&lt;br /&gt;
&lt;br /&gt;
# XML documents are marked by tags like in HTML - by markers between brackets &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;lt;table&amp;gt;). But unlike HTML, the XML document can use any tag (such as &amp;lt;my_cool-TAG&amp;gt;). &lt;br /&gt;
# Markups in XML documents is used to demarcate the structure, and merely for this purpose. The document description is completely taken out of the document and handled separately. For any XML document it is possible to create infinite set of descriptions ([http://xml.nsu.ru/xml/xml_display.xml CSS] and [http://xml.nsu.ru/xml/xml_xsl.xml XST] styles are used for this purpose).&lt;br /&gt;
# The structure of XML documents is rigidly determined and cannot be broken. For example, such combination of tags as &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt; &amp;lt;B&amp;gt; &amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt;&amp;lt;/nowiki&amp;gt; is acceptable (although incorrect) in HTML and will be adequately displayed in a browser for example. However in XML such combination of tags will cause an error message, and the document will not be handled. Any nested tag should be closed before its parent. &lt;br /&gt;
# Tags in XML are case-sensitive. That is &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; is not the same in XML. &lt;br /&gt;
# XML documents beside a correct nesting of tags (well-formed, correct XML) has one more degree of structuredness. It is possible to declare, for example, that the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; will appear only within &amp;lt;PARAGRAPH&amp;gt;, and &amp;lt;PARAGRAPH&amp;gt; can only include text and the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt;. Any document in which this rule will be broken, is considered invalid, and at its processing assumes no guarantees - at the best an error will be issued. It is possible to declare tags which should undoubtedly be in a specific place of the document. It is possible to define a set of tags of which only one can be used inside of a tag, or specify what tag should follow what.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Well and what is all this for? =&lt;br /&gt;
&lt;br /&gt;
Due to such strictness, ease of XML support by various programs and reliability of data is achieved. Digital processing of XML documents is a quite trivial task, whether it be mapping, coercion to another standard (for example, conversion to HTML) or search and analysis of information. &lt;br /&gt;
&lt;br /&gt;
Such are the elements necessary for work with FictionBook. For more detailed information refer to specific web sites or literature. &lt;br /&gt;
&lt;br /&gt;
'''''Dmitry Gribov'''''&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
The information on a current state of the XML [http://www.w3.org/XML/ standard] on W3C site.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:The_XML_Basics</id>
		<title>Eng:The XML Basics</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:The_XML_Basics"/>
				<updated>2006-06-27T10:24:10Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Toc-Right}}&lt;br /&gt;
XML is a markup language with rigidly set rules (all tags should be closed, etc.). Within the limits of these rules you have total freedom (specific names of tags, etc.). XML is simple in development and processing. &lt;br /&gt;
&lt;br /&gt;
== Why do I need XML? ==&lt;br /&gt;
&lt;br /&gt;
XML files can easily be used by many programs. The file can be displayed, transformed, catalogued very simply, etc. &lt;br /&gt;
Working with FictionBook, you most likely will avoid encounter with the XML code but understanding of the essense of your actions might be useful. &lt;br /&gt;
&lt;br /&gt;
== What is XML?  ==&lt;br /&gt;
&lt;br /&gt;
It is a universal '''markup''' language. There are others  but currently it may be considered as the most promising. &lt;br /&gt;
&lt;br /&gt;
== What distinguishes XML from other markup languages?  ==&lt;br /&gt;
&lt;br /&gt;
Its ease in creation and processing of files. XML was formulated as a format equally easily handled by program, browser and man. &lt;br /&gt;
&lt;br /&gt;
This ease is provided with several features of XML: &lt;br /&gt;
&lt;br /&gt;
# Intuitive ease and clarity; &lt;br /&gt;
# Strictness.&lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
You open an unknown file thet has arrived fron somewhere and understand what is what. For example, here is a file with the description of a PERL module: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 (The file was taken from ActiveState) &lt;br /&gt;
&lt;br /&gt;
I opened this file and corrected one string (&amp;lt;CODEBASE&amp;gt;). To do this I did not have to read manuals or download analyzer programs. Any XML document should meet this principle. &lt;br /&gt;
&lt;br /&gt;
=== Strictness ===&lt;br /&gt;
&lt;br /&gt;
# XML documents are marked by tags like in HTML - by markers between brackets &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;lt;table&amp;gt;). But unlike HTML, the XML document can use any tag (such as &amp;lt;my_cool-TAG&amp;gt;). &lt;br /&gt;
# Markups in XML documents is used to demarcate the structure, and merely for this purpose. The document description is completely taken out of the document and handled separately. For any XML document it is possible to create infinite set of descriptions ([http://xml.nsu.ru/xml/xml_display.xml CSS] and [http://xml.nsu.ru/xml/xml_xsl.xml XST] styles are used for this purpose).&lt;br /&gt;
# The structure of XML documents is rigidly determined and cannot be broken. For example, such combination of tags as &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt; &amp;lt;B&amp;gt; &amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt;&amp;lt;/nowiki&amp;gt; is acceptable (although incorrect) in HTML and will be adequately displayed in a browser for example. However in XML such combination of tags will cause an error message, and the document will not be handled. Any nested tag should be closed before its parent. &lt;br /&gt;
# Tags in XML are case-sensitive. That is &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; is not the same in XML. &lt;br /&gt;
# XML documents beside a correct nesting of tags (well-formed, correct XML) has one more degree of structuredness. It is possible to declare, for example, that the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; will appear only within &amp;lt;PARAGRAPH&amp;gt;, and &amp;lt;PARAGRAPH&amp;gt; can only include text and the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt;. Any document in which this rule will be broken, is considered invalid, and at its processing assumes no guarantees - at the best an error will be issued. It is possible to declare tags which should undoubtedly be in a specific place of the document. It is possible to define a set of tags of which only one can be used inside of a tag, or specify what tag should follow what.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Well and what is all this for? ==&lt;br /&gt;
&lt;br /&gt;
Due to such strictness, ease of XML support by various programs and reliability of data is achieved. Digital processing of XML documents is a quite trivial task, whether it be mapping, coercion to another standard (for example, conversion to HTML) or search and analysis of information. &lt;br /&gt;
&lt;br /&gt;
Such are the elements necessary for work with FictionBook. For more detailed information refer to specific web sites or literature. &lt;br /&gt;
&lt;br /&gt;
'''''Dmitry Gribov'''''&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
The information on a current state of the XML [http://www.w3.org/XML/ standard] on W3C site.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:The_XML_Basics</id>
		<title>Eng:The XML Basics</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:The_XML_Basics"/>
				<updated>2006-06-27T10:18:05Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Strictness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Надо перевести на английский}}&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
XML is a markup language with rigidly set rules (all tags should be closed, etc.). Within the limits of these rules you have total freedom (specific names of tags, etc.). XML is simple in development and processing. &lt;br /&gt;
&lt;br /&gt;
== Why do I need XML? ==&lt;br /&gt;
&lt;br /&gt;
XML files can easily be used by many programs. The file can be displayed, transformed, catalogued very simply, etc. &lt;br /&gt;
Working with FictionBook, you most likely will avoid encounter with the XML code but understanding of the essense of your actions might be useful. &lt;br /&gt;
&lt;br /&gt;
== What is XML?  ==&lt;br /&gt;
&lt;br /&gt;
It is a universal '''markup''' language. There are others  but currently it may be considered as the most promising. &lt;br /&gt;
&lt;br /&gt;
== What distinguishes XML from other markup languages?  ==&lt;br /&gt;
&lt;br /&gt;
Its ease in creation and processing of files. XML was formulated as a format equally easily handled by program, browser and man. &lt;br /&gt;
&lt;br /&gt;
This ease is provided with several features of XML: &lt;br /&gt;
&lt;br /&gt;
# Intuitive ease and clarity; &lt;br /&gt;
# Strictness.&lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
You open an unknown file thet has arrived fron somewhere and understand what is what. For example, here is a file with the description of a PERL module: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 (The file was taken from ActiveState) &lt;br /&gt;
&lt;br /&gt;
I opened this file and corrected one string (&amp;lt;CODEBASE&amp;gt;). To do this I did not have to read manuals or download analyzer programs. Any XML document should meet this principle. &lt;br /&gt;
&lt;br /&gt;
=== Strictness ===&lt;br /&gt;
&lt;br /&gt;
# XML documents are marked by tags like in HTML - by markers between brackets &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;lt;table&amp;gt;). But unlike HTML, the XML document can use any tag (such as &amp;lt;my_cool-TAG&amp;gt;). &lt;br /&gt;
# Markups in XML documents is used to demarcate the structure, and merely for this purpose. The document description is completely taken out of the document and handled separately. For any XML document it is possible to create infinite set of descriptions ([http://xml.nsu.ru/xml/xml_display.xml CSS] and [http://xml.nsu.ru/xml/xml_xsl.xml XST] styles are used for this purpose).&lt;br /&gt;
# The structure of XML documents is rigidly determined and cannot be broken. For example, such combination of tags as &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt; &amp;lt;B&amp;gt; &amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt;&amp;lt;/nowiki&amp;gt; is acceptable (although incorrect) in HTML and will be adequately displayed in a browser for example. However in XML such combination of tags will cause an error message, and the document will not be handled. Any nested tag should be closed before its parent. &lt;br /&gt;
# Tags in XML are case-sensitive. That is &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; is not the same in XML. &lt;br /&gt;
# XML documents beside a correct nesting of tags (well-formed, correct XML) has one more degree of structuredness. It is possible to declare, for example, that the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; will appear only within &amp;lt;PARAGRAPH&amp;gt;, and &amp;lt;PARAGRAPH&amp;gt; can only include text and the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt;. Any document in which this rule will be broken, is considered invalid, and at its processing assumes no guarantees - at the best an error will be issued. It is possible to declare tags which should undoubtedly be in a specific place of the document. It is possible to define a set of tags of which only one can be used inside of a tag, or specify what tag should follow what.&lt;br /&gt;
&lt;br /&gt;
== Well and what is all this for?  ==&lt;br /&gt;
&lt;br /&gt;
Due to such strictness, ease of XML support by various programs and reliability of data is achieved. Digital processing of XML documents is a quite trivial task, whether it be mapping, coercion to another standard (for example, conversion to HTML) or search and analysis of information. &lt;br /&gt;
&lt;br /&gt;
Such are the elements necessary for work with FictionBook. For more detailed information refer to specific web sites or literature. &lt;br /&gt;
&lt;br /&gt;
'''''Dmitry Gribov'''''&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
The information on a current state of the XML [http://www.w3.org/XML/ standard] on W3C site.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:The_XML_Basics</id>
		<title>Eng:The XML Basics</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:The_XML_Basics"/>
				<updated>2006-06-27T10:17:28Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Intuitive clarity */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Надо перевести на английский}}&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
XML is a markup language with rigidly set rules (all tags should be closed, etc.). Within the limits of these rules you have total freedom (specific names of tags, etc.). XML is simple in development and processing. &lt;br /&gt;
&lt;br /&gt;
== Why do I need XML? ==&lt;br /&gt;
&lt;br /&gt;
XML files can easily be used by many programs. The file can be displayed, transformed, catalogued very simply, etc. &lt;br /&gt;
Working with FictionBook, you most likely will avoid encounter with the XML code but understanding of the essense of your actions might be useful. &lt;br /&gt;
&lt;br /&gt;
== What is XML?  ==&lt;br /&gt;
&lt;br /&gt;
It is a universal '''markup''' language. There are others  but currently it may be considered as the most promising. &lt;br /&gt;
&lt;br /&gt;
== What distinguishes XML from other markup languages?  ==&lt;br /&gt;
&lt;br /&gt;
Its ease in creation and processing of files. XML was formulated as a format equally easily handled by program, browser and man. &lt;br /&gt;
&lt;br /&gt;
This ease is provided with several features of XML: &lt;br /&gt;
&lt;br /&gt;
# Intuitive ease and clarity; &lt;br /&gt;
# Strictness.&lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
You open an unknown file thet has arrived fron somewhere and understand what is what. For example, here is a file with the description of a PERL module: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 (The file was taken from ActiveState) &lt;br /&gt;
&lt;br /&gt;
I opened this file and corrected one string (&amp;lt;CODEBASE&amp;gt;). To do this I did not have to read manuals or download analyzer programs. Any XML document should meet this principle. &lt;br /&gt;
&lt;br /&gt;
=== Strictness ===&lt;br /&gt;
&lt;br /&gt;
# XML documents are marked by tags like in HTML - by markers between brackets &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;lt;table&amp;gt;). But unlike HTML, the XML document can use any tag (such as &amp;lt;my_cool-TAG&amp;gt;). &lt;br /&gt;
# Markups in XML documents is used to demarcate the structure, and merely for this purpose. The document description is completely taken out of the document and handled separately. For any XML document it is possible to create infinite set of descriptions ([http://xml.nsu.ru/xml/xml_display.xml CSS] and [http://xml.nsu.ru/xml/xml_xsl.xml XST] styles are used for this purpose).&lt;br /&gt;
# The structure of XML documents is rigidly determined and cannot be broken. For example, such combination of tags as &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt; &amp;lt;B&amp;gt; &amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt;&amp;lt;/nowiki&amp;gt; is acceptable (although incorrect) in HTML and will be adequately displayed in a browser for example. However in XML such combination of tags will cause an error message, and the document will not be handled. Any nested tag should be closed before its parent. &lt;br /&gt;
# Tags in XML are case-sensitive. That is &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/nowiki&amp;gt; and &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; is not the same in XML. &lt;br /&gt;
# XML documents beside a correct nesting of tags (well-formed, correct XML) has one more degree of structuredness. It is possible to declare, for example, that the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; will appear only within &amp;lt;PARAGRAPH&amp;gt;, and &amp;lt;PARAGRAPH&amp;gt; can only include text and the tag &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt;. Any document in which this rule will be broken, is considered invalid, and at its processing assumes no guarantees - at the best an error will be issued. It is possible to declare tags which should undoubtedly be in a specific place of the document. It is possible to define a set of tags of which only one can be used inside of a tag, or specify what tag should follow what.&lt;br /&gt;
''Курсивный текст''''Курсивный текст''&lt;br /&gt;
&lt;br /&gt;
== Well and what is all this for?  ==&lt;br /&gt;
&lt;br /&gt;
Due to such strictness, ease of XML support by various programs and reliability of data is achieved. Digital processing of XML documents is a quite trivial task, whether it be mapping, coercion to another standard (for example, conversion to HTML) or search and analysis of information. &lt;br /&gt;
&lt;br /&gt;
Such are the elements necessary for work with FictionBook. For more detailed information refer to specific web sites or literature. &lt;br /&gt;
&lt;br /&gt;
'''''Dmitry Gribov'''''&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
The information on a current state of the XML [http://www.w3.org/XML/ standard] on W3C site.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:The_XML_Basics</id>
		<title>Eng:The XML Basics</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:The_XML_Basics"/>
				<updated>2006-06-27T09:49:24Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Надо перевести на английский}}&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
XML is a markup language with rigidly set rules (all tags should be closed, etc.). Within the limits of these rules you have total freedom (specific names of tags, etc.). XML is simple in development and processing. &lt;br /&gt;
&lt;br /&gt;
== Why do I need XML? ==&lt;br /&gt;
&lt;br /&gt;
XML files can easily be used by many programs. The file can be displayed, transformed, catalogued very simply, etc. &lt;br /&gt;
Working with FictionBook, you most likely will avoid encounter with the XML code but understanding of the essense of your actions might be useful. &lt;br /&gt;
&lt;br /&gt;
== What is XML?  ==&lt;br /&gt;
&lt;br /&gt;
It is a universal '''markup''' language. There are others  but currently it may be considered as the most promising. &lt;br /&gt;
&lt;br /&gt;
== What distinguishes XML from other markup languages?  ==&lt;br /&gt;
&lt;br /&gt;
Its ease in creation and processing of files. XML was formulated as a format equally easily handled by program, browser and man. &lt;br /&gt;
&lt;br /&gt;
This ease is provided with several features of XML: &lt;br /&gt;
&lt;br /&gt;
# Intuitive ease and clarity; &lt;br /&gt;
# Strictness.&lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
You open an unknown file thet has arrived fron somewhere and understand what is what. For example, here is a file with the description of a PERL module: &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 (The file was taken from ActiveState) &lt;br /&gt;
&lt;br /&gt;
I opened this file and corrected one string (&amp;lt;CODEBASE&amp;gt;). To do this I did not have to read manuals or download analyzer programs. Any XML document should meet this principle. &lt;br /&gt;
&lt;br /&gt;
=== Intuitive clarity ===&lt;br /&gt;
&lt;br /&gt;
# XML documents like in HTML are marked by tags - the markers between brackets &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;lt;table&amp;gt;). But unlike HTML, the XML document can use any tag (such as &amp;lt;my_cool-TAG&amp;gt;). &lt;br /&gt;
&lt;br /&gt;
# Markups in XML documents is used to demarcate the structure, and merely for this purpose. The document description is completely taken out of the document and handled separately. For any XML document it is possible to create infinite set of descriptions (CSS and XST styles are used for this purpose).&lt;br /&gt;
 &lt;br /&gt;
# The structure of XML documents is rigidly determined and cannot be broken. For example, such combination of tags as &amp;lt;I&amp;gt; &amp;lt;B&amp;gt; &amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt; is acceptable (although incorrect) in HTML and will be adequately displayed in a browser for example. However in XML such combination of tags will cause an error message, and the document will not be handled. Any nested tag should be closed before its parent. &lt;br /&gt;
&lt;br /&gt;
# Tags in XML are case-sensitive. That is &amp;lt;i&amp;gt; and &amp;lt;I&amp;gt; is not the same in XML. &lt;br /&gt;
&lt;br /&gt;
# Документы XML помимо корректной вложенности тегов (well-formed, правильный XML) имеет еще одну степень структурированности. Можно задать, например, что тег &amp;lt;I&amp;gt; будет встречаться только внутри тега &amp;lt;PARAGRAPH&amp;gt;, а внутри тега &amp;lt;PARAGRAPH&amp;gt; может находиться только текст и тег &amp;lt;I&amp;gt;. Любой документ, в котором это правило будет нарушено, считается невалидным и при его обработке никаких гарантий не дается - в лучшем случае будет выдана ошибка. Можно задать теги, которые должны обязательно присутствовать в конкретном месте документа. Можно задать набор тегов, только один из которых может быть использован внутри тега, или указать, какой тег за каким должен следовать. &lt;br /&gt;
&lt;br /&gt;
# XML documents beside a correct nesting of tags (well-formed, correct XML) has one more degree of structuredness. It is possible to declare, for example, that the tag &amp;lt;I&amp;gt; will appear only within &amp;lt;PARAGRAPH&amp;gt;, and &amp;lt;PARAGRAPH&amp;gt; can only include text and the tag &amp;lt;I&amp;gt;. Any document in which this rule will be broken, is considered invalid, and at its processing assumes no guarantees - at the best an error will be issued. It is possible to declare tags which should undoubtedly be in a specific place of the document. It is possible to define a set of tags of which only one can be used inside of a tag, or specify what tag should follow what. &lt;br /&gt;
  &lt;br /&gt;
&lt;br /&gt;
== Well and what is all this for?  ==&lt;br /&gt;
&lt;br /&gt;
Due to such strictness, ease of XML support by various programs and reliability of data is achieved. Digital processing of XML documents is a quite trivial task, whether it be mapping, coercion to another standard (for example, conversion to HTML) or search and analysis of information. &lt;br /&gt;
&lt;br /&gt;
Such are the elements necessary for work with FictionBook. For more detailed information refer to specific web sites or literature. &lt;br /&gt;
&lt;br /&gt;
'''''Dmitry Gribov'''''&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
The information on a current state of the XML [http://www.w3.org/XML/ standard] on W3C site.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/%D0%9A%D1%80%D0%B0%D1%82%D0%BA%D0%B8%D0%B9_%D0%BA%D1%83%D1%80%D1%81_XML</id>
		<title>Краткий курс XML</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/%D0%9A%D1%80%D0%B0%D1%82%D0%BA%D0%B8%D0%B9_%D0%BA%D1%83%D1%80%D1%81_XML"/>
				<updated>2006-06-27T07:11:25Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Так же смотрите: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Toc-Right}}&lt;br /&gt;
XML-язык разметки, с жестко заданными правилами (все теги должны быть закрыты и т.п.). В пределах этих правил вы получаете полную свободу (собственные имена тегов и т.п.) XML прост в создании и обработке.&lt;br /&gt;
&lt;br /&gt;
== Зачем мне XML? ==&lt;br /&gt;
&lt;br /&gt;
XML-файлы позднее могут быть с легкостью использованы многими программами. Файл можно очень просто отображать, преобразовывать, каталогизировать и т.п.&lt;br /&gt;
&lt;br /&gt;
При работе с FictionBook вам, вероятнее всего, удастся избежать столкновения с XML-кодом, но понимание смысла своих действий будет полезным.&lt;br /&gt;
&lt;br /&gt;
== Что есть XML? ==&lt;br /&gt;
&lt;br /&gt;
Это универсальный язык структурной '''разметки'''. Он не является единственным, но на данный момент может считаться наиболее перспективным.&lt;br /&gt;
&lt;br /&gt;
== Что отличает XML от других языков разметки? ==&lt;br /&gt;
&lt;br /&gt;
Его простота в создании и обработке. XML задуман как формат, одинаково легко обрабатываемый программой, браузером и человеком.&lt;br /&gt;
&lt;br /&gt;
Эта простота обеспечивается несколькими особенностями языка XML:&lt;br /&gt;
# Интуитивной простотой и понятностью;&lt;br /&gt;
# Строгостью.&lt;br /&gt;
&lt;br /&gt;
=== Интуитивная понятность ===&lt;br /&gt;
Вы открываете пришедший неизвестно откуда файл и понимаете, что к чему. Например, вот файл с описанием модуля PERL:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;SOFTPKG NAME=&amp;quot;DBD-mysql&amp;quot; VERSION=&amp;quot;1,2212,0,0&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;DBD-mysql&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
   &amp;lt;ABSTRACT&amp;gt;MySQL driver for the Perl5 Database Interface (DBI)&amp;lt;/ABSTRACT&amp;gt;&lt;br /&gt;
   &amp;lt;AUTHOR&amp;gt;Jochen Wiedmann (joe@ispsoft.de)&amp;lt;/AUTHOR&amp;gt;&lt;br /&gt;
   &amp;lt;IMPLEMENTATION&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;DBI&amp;quot; VERSION=&amp;quot;1,08,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-Dumper&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;DEPENDENCY NAME=&amp;quot;Data-ShowTable&amp;quot; VERSION=&amp;quot;0,0,0,0&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;OS NAME=&amp;quot;MSWin32&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;ARCHITECTURE NAME=&amp;quot;MSWin32-x86-multi-thread&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;CODEBASE HREF=&amp;quot;D:/My_WWW/MySQL/DBD-mysql-1.2212.x86.tar.gz&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/IMPLEMENTATION&amp;gt;&lt;br /&gt;
 &amp;lt;/SOFTPKG&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(файл взят с сайта activestate)&lt;br /&gt;
&lt;br /&gt;
Я открыл этот файл и исправил одну строку (&amp;lt;CODEBASE&amp;gt;). Мне не потребовалось для этого читать мануалы или скачивать программы-анализаторы. Любой документ XML должен соответствовать этому принципу.&lt;br /&gt;
&lt;br /&gt;
=== Строгость ===&lt;br /&gt;
&lt;br /&gt;
# XML документы, как и документы html, размечаются '''тегами''' - маркерами, окруженными знаками &amp;lt;&amp;gt; (&amp;lt;body&amp;gt;, &amp;amp;lt;table&amp;amp;gt;). Но в отличие от html, в документе xml можно использовать любые теги (типа &amp;lt;мой_кульный-тег&amp;gt;).&lt;br /&gt;
# Разметка в документе XML используется для выделения '''структуры''' и только для этого. '''Представление''' документа полностью выносится из документа и обрабатывается отдельно. Для любого документа XML можно создать бесконечное множество представлений (для этого используются [http://xml.nsu.ru/xml/xml_display.xml CSS] и [http://xml.nsu.ru/xml/xml_xsl.xml XST-стили]).&lt;br /&gt;
# Структура документа XML жестко задана и не может быть нарушена. Например, такое сочетание тегов, как &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt; &amp;lt;B&amp;gt;&amp;lt;/I&amp;gt; &amp;lt;/B&amp;gt;&amp;lt;/nowiki&amp;gt; является допустимым (хотя и ошибочным) в html и будет адекватно отображено в браузере (например). В XML же такое сочетание тегов вызовет сообщение об ошибке, и документ обработан '''не будет'''. Любой вложенный тег должен быть закрыт прежде, чем родительский.&lt;br /&gt;
# Теги в XML чувствительны к регистру. То есть &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt; и &amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; в XML - не одно и то же.&lt;br /&gt;
# Документы XML помимо корректной вложенности тегов (well-formed, правильный XML) имеет еще одну степень структурированности. Можно задать, например, что тег &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt; будет встречаться только внутри тега &amp;lt;PARAGRAPH&amp;gt;, а внутри тега &amp;lt;PARAGRAPH&amp;gt; может находиться только текст и тег &amp;lt;nowiki&amp;gt;&amp;lt;I&amp;gt;&amp;lt;/nowiki&amp;gt;. Любой документ, в котором это правило будет нарушено, считается невалидным и при его обработке никаких гарантий не дается - в лучшем случае будет выдана ошибка. Можно задать теги, которые должны '''обязательно присутствовать''' в конкретном месте документа. Можно задать набор тегов, только один из которых может быть использован внутри тега, или указать, какой тег за каким должен следовать.&lt;br /&gt;
&lt;br /&gt;
== Ну и зачем все это? ==&lt;br /&gt;
&lt;br /&gt;
Благодаря такой строгости достигается легкость поддержки XML в различных программах и надежность получаемых данных. Программная обработка документов XML является довольно тривиальной задачей, будь то отображение, приведение к другому стандарту (например, преобразование в html) или поиск и анализ информации.&lt;br /&gt;
&lt;br /&gt;
Здесь изложены азы, необходимые для работы с FictionBook, за более подробной информацией можно обратиться к специализированным сайтам или литературе.&lt;br /&gt;
&lt;br /&gt;
'''''Дмитрий Грибов'''''&lt;br /&gt;
&lt;br /&gt;
== Также смотрите: ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://xml.nsu.ru/xml/xml_home.xml Школа XML] - подробное русское описание XML в школе консорциума W3C (IE 5.5+)&lt;br /&gt;
&lt;br /&gt;
[http://www.raleigh.ru/XML/2001/10points.php XML в 10 тезисах] - перевод статьи [http://www.w3.org/XML/1999/XML-in-10-points XML in 10 points от W3C].&lt;br /&gt;
&lt;br /&gt;
Информация о текущем состоянии [http://www.w3.org/XML/ стандарта] на сайте W3C.&lt;br /&gt;
[[Категория:FB статьи]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Librarians</id>
		<title>Eng:Librarians</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Librarians"/>
				<updated>2006-06-26T11:09:40Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Programs for local libraries management|Russian]]&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Библиотекарь|screenshot=Изображение:Header.jpg|Header|description=A program for storage and search, classification of FB2 electronic books. The storage is based on FireBird v.1.5 (Books or just descriptions while storing the  books in the file system). Automatic adding of books to the library according to the book description. Display of covers, summaries and other information on the book. Search by author, keywords, series, title. Substring search by author, keywords, title, and genre. Storage of the additional information: the author?s biography, photograph, bibliography. An option to book description editing. An option to save a book file onto hard disk. Transfer of files to MS ActivSync devices. Export of library in the form of a catalogue tree like AUTHOR\Author-Book. An option to create a new library file, etc. Requirements: MSXML 4.0, Embedded FireBird 1.5 (included with the setup package), MS DAC 2.7 (not required for Windows XP). |standart=FB2|restrict=None|developer=Dmitry Poustovit, Oleg Knyazev|latest_release_version=1.0.0.12 RC2|latest_release_date=23.10.2005|platform=Windows|web-site=http: // fb2-library.redholl.com/index.php|licence=Donationware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Book2Shelf|screenshot=Изображение:BookShelf.png|BookShelf|description=A bookcase for those who prefer to keep books on HDD / CD / DVD. Supports search, import of text files (Any2FB required) and viewing/reading. The interface is simple enough, but the program possesses rather wide functionality. Since May 2005, the development has been suspended|standart=FB2|restrict=None|developer=Alexander Shabarshov|latest_release_version=0.9.56|latest_release_date=16.04.2005|platform=Windows |web-site=http: // unclshura.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Домашняя коллекция|screenshot=Изображение:Collect.jpg|Collect|description=This program is for people who have home collections of books, videos or CD large enough to keep in mind what they have, where it lies now, or to whom it was given. The program allows to keep quite detailed information on each edition (for books ? the publishing house, author, series, genre, contents... Besides, it is possible to update the bibliography on each author, or find any book by a specific prerequisite, or print out the catalogue.) | standart=FB2|restrict=None|developer=Michael  Danko|latest_release_version=1.4.1|latest_release_date=26.11.2005|platform=Windows |web-site=http: // homecollection.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=LibMaster|screenshot=Изображение:Libmast.jpg|Libmast|description=An autonomous base and FB2 parsing, that is install and enjoy - no extra components. | standart=FB2|restrict=None|developer=Makar4ik|latest_release_version=0.2.1.74 |latest_release_date=2005|platform=Windows|web-site=http: // lmaster2.narod.ru / | licence=Freeware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Librarians</id>
		<title>Eng:Librarians</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Librarians"/>
				<updated>2006-06-26T11:05:31Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Programs for local libraries management|Russian]]&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Библиотекарь|screenshot=Изображение:Header.jpg|Header|description=A program for storage and search, classification of FB2 electronic books. Storage basis - FireBird 1.5 (Books or just descriptions while storing the  books in the file system). Automatic adding of books to the library according to the book description. Display of covers, summaries and other information on the book. Search by author, keywords, series, title. Substring search by author, keywords, title, and genre. Storage of the additional information: the author?s biography, photograph, bibliography. An option to book description editing. An option to save a book file onto hard disk. Transfer of files to MS ActivSync devices. Export of library in the form of a catalogue tree like AUTHOR\Author-Book. An option to create a new library file, etc. Requirements: MSXML 4.0, Embedded FireBird 1.5 (included with the setup package), MS DAC 2.7 (not required for Windows XP). |standart=FB2|restrict=None|developer=Dmitry Poustovit, Oleg Knyazev|latest_release_version=1.0.0.12 RC2|latest_release_date=23.10.2005|platform=Windows|web-site=http: // fb2-library.redholl.com/index.php|licence=Donationware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Book2Shelf|screenshot=Изображение:BookShelf.png|BookShelf|description=A bookcase for those who prefer to keep books on HDD / CD / DVD. Supports search, import of text files (Any2FB required) and viewing/reading. The interface is simple enough, but the program possesses rather wide functionality. Since May 2005, the development has been suspended|standart=FB2|restrict=None|developer=Alexander Shabarshov|latest_release_version=0.9.56|latest_release_date=16.04.2005|platform=Windows |web-site=http: // unclshura.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Домашняя коллекция|screenshot=Изображение:Collect.jpg|Collect|description=This program is for people who have home collections of books, videos or CD large enough to keep in mind what they have, where it lies now, or to whom it was given. The program allows to keep quite detailed information on each edition (for books ? the publishing house, author, series, genre, contents... Besides, it is possible to update the bibliography on each author, or find any book by a specific prerequisite, or print out the catalogue.) | standart=FB2|restrict=None|developer=Michael  Danko|latest_release_version=1.4.1|latest_release_date=26.11.2005|platform=Windows |web-site=http: // homecollection.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=LibMaster|screenshot=Изображение:Libmast.jpg|Libmast|description=An autonomous base and FB2 parsing, that is install and enjoy - no extra components. | standart=FB2|restrict=None|developer=Makar4ik|latest_release_version=0.2.1.74 |latest_release_date=2005|platform=Windows|web-site=http: // lmaster2.narod.ru / | licence=Freeware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Librarians</id>
		<title>Eng:Librarians</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Librarians"/>
				<updated>2006-06-26T10:56:50Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Programs for local libraries management|Russian]]&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Библиотекарь|screenshot=Изображение:Header.jpg|Header|description=A program for storage, search, classification of electronic books in FB2 format. Storage basis - FireBird 1.5 (Books or only descriptionwhile storing the  books in the file system). Automatic adding of books to the library according to the book description. Display of covers, summaries and the other information on the book. Search by author, keywords, series, title. Substring search by author, keywords, title, and genre. Storage of the additional information: the author?s biography, photograph, bibliography. An option to book description editing. An option to save a book file onto hard disk. Transfer of files to MS ActivSync devices. Export of library in the form of a catalog tree like AUTHOR\Author-Book. An option to create a new library file, etc. Requirements: MSXML 4.0, Embedded FireBird 1.5 (included with the setup package), MS DAC 2.7 (not required for Windows XP). |standart=FB2|restrict=None|developer=Dmitry Poustovit, Oleg Knyazev|latest_release_version=1.0.0.12 RC2|latest_release_date=23.10.2005|platform=Windows|web-site=http: // fb2-library.redholl.com/index.php|licence=Donationware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Book2Shelf|screenshot=Изображение:BookShelf.png|BookShelf|description=A bookcase for those who prefer to keep books on HDD / CD / DVD. Supports search, import of text files (Any2FB required) and viewing/reading. The interface is simple enough, but the program possesses rather wide functionality. Since May 2005, the development has been suspended|standart=FB2|restrict=None|developer=Alexander  Shabarshov|latest_release_version=0.9.56|latest_release_date=16.04.2005|platform=Windows |web-site=http: // unclshura.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Домашняя коллекция|screenshot=Изображение:Collect.jpg|Collect|description=This program is for people who have home collections of books, videos or CD large enough to keep in mind what they have, where it lies now, or to whom it was given. The program allows to keep quite detailed information on each edition (for books ? the publishing house, author, series, genre, contents... Besides, it is possible to update the bibliography on each author, or find any book by a specific prerequisite, or print out the catalogue.) | standart=FB2|restrict=None|developer=Michael  Danko|latest_release_version=1.4.1|latest_release_date=26.11.2005|platform=Windows |web-site=http: // homecollection.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=LibMaster|screenshot=Изображение:Libmast.jpg|Libmast|description=An autonomous base and FB2 parsing, that is install and enjoy - no extra components. | standart=FB2|restrict=None|developer=Makar4ik|latest_release_version=0.2.1.74 |latest_release_date=2005|platform=Windows|web-site=http: // lmaster2.narod.ru / | licence=Freeware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Librarians</id>
		<title>Eng:Librarians</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Librarians"/>
				<updated>2006-06-26T10:55:15Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Programs for local libraries management|Russian]]&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Библиотекарь|screenshot=Изображение:Header.jpg|Header|description=A program for storage, search, classification of electronic books in FB2 format. Storage basis - FireBird 1.5 (Books or only descriptionwhile storing the  books in the file system). Automatic adding of books to the library according to the book description. Display of covers, summaries and the other information on the book. Search by author, keywords, series, title. Substring search by author, keywords, title, and genre. Storage of the additional information: the author?s biography, photograph, bibliography. An option to book description editing. An option to save a book file onto hard disk. Transfer of files to MS ActivSync devices. Export of library in the form of a catalog tree like AUTHOR\Author-Book. An option to create a new library file, etc. Requirements: MSXML 4.0, Embedded FireBird 1.5 (included with the setup package), MS DAC 2.7 (not required for Windows XP). |standart=FB2|restrict=Нет|developer=Dmitry Poustovit, Oleg Knyazev|latest_release_version=1.0.0.12 RC2|latest_release_date=23.10.2005|platform=Windows|web-site=http: // fb2-library.redholl.com/index.php|licence=Donationware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Book2Shelf|screenshot=Изображение:BookShelf.png|BookShelf|description=A bookcase for those who prefer to keep books on HDD / CD / DVD. Supports search, import of text files (Any2FB required) and viewing/reading. The interface is simple enough, but the program possesses rather wide functionality. Since May 2005, the development has been suspended|standart=FB2|restrict=Нет|developer=Alexander  Shabarshov|latest_release_version=0.9.56|latest_release_date=16.04.2005|platform=Windows |web-site=http: // unclshura.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=Домашняя коллекция|screenshot=Изображение:Collect.jpg|Collect|description=This program is for people who have home collections of books, videos or CD large enough to keep in mind what they have, where it lies now, or to whom it was given. The program allows to keep quite detailed information on each edition (for books ? the publishing house, author, series, genre, contents... Besides, it is possible to update the bibliography on each author, or find any book by a specific prerequisite, or print out the catalogue.) | standart=FB2|restrict=Нет|developer=Michael  Danko|latest_release_version=1.4.1|latest_release_date=26.11.2005|platform=Windows |web-site=http: // homecollection.narod.ru / | licence=Freeware}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Librarian|name=LibMaster|screenshot=Изображение:Libmast.jpg|Libmast|description=An autonomous base and FB2 parsing, that is install and enjoy - no extra components. | standart=FB2|restrict=Нет|developer=Makar4ik|latest_release_version=0.2.1.74 |latest_release_date=2005|platform=Windows|web-site=http: // lmaster2.narod.ru / | licence=Freeware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments</id>
		<title>Eng:FictionBook 2.0 - short comments</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments"/>
				<updated>2006-06-26T10:00:57Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* All this is too good... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[FictionBook 2.0 - краткая информация|Russian]]&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
&lt;br /&gt;
FictionBook is a set of strict rules for creation of electronic versions of fiction books for reading on various devices and easily manageable in libraries. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Who supports the standard?  ==&lt;br /&gt;
Some six developers of book related software are engaged in the development of this standard and about ten competent fans of book design.&lt;br /&gt;
Currently, the standard is actively developed by me (GribUser, [http://www.fictionbook.ru/ fictionbook.lib], [[Конвертеры (импорт/экспорт)|Any2FB]]) and Haali ([[Чтение|Haali Reader]], [[Редакторы|FBTools]]). There is also a community of concerned developers, users, owners of libraries and enthusiasts. &lt;br /&gt;
We?ve got no Microsoft behind us. The fingers on two hands will suffice to count active participants (as of 12.01.2004:). The standard is the leader among Russians reading under WinCE.&lt;br /&gt;
&lt;br /&gt;
== What is the standard?s essense? ==&lt;br /&gt;
The standard is done in the form of the [[XML схема FictionBook2.1|XML Schema]]. If you do not know what is [http://www.w3.org/XML/ XML] or [http://www.w3.org/XML/Schema XML Schema], we recommend to look up [[The XML Basics]], meanwhile to make it short ? the standard represents a set of strict rules describing the structure of documents - what &amp;lt;tag&amp;gt; should be where and what it should/should not contain (text/name of author/quotation/etc.). The standard also includes recommendations on its optimal usage. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Why such complexities? ==&lt;br /&gt;
There is already a huge amount of electronic texts on the Web, but they all are stored in diverse, often incompatible standards. It is difficult to find the text equally ready to reading on a desktop, pocket PC and e-book. The standard is to provide compatibility for any devices and formats. &lt;br /&gt;
&lt;br /&gt;
The XML allows to easily create documents ready for direct use and processing (converting, storage, management) in any environment.&lt;br /&gt;
&lt;br /&gt;
== Is all this too complicated? ==&lt;br /&gt;
One of the objectives in development of the standard is its maximum ease both for book makers and developers of applications. Unlike such standards as the XHTML or OEB, the FictionBook has a necessary and sufficient minimum of tags for creation of electronic books. To make quality books it is enough to familiarize with [[The XML Basics]] and to find a suitable program from the [[Programs]] list.&lt;br /&gt;
And if you read the [[FictionBook 2.0 Schema - comments to the scheme]], you will get complete information on the format.&lt;br /&gt;
&lt;br /&gt;
== What all this will be within a few years? ==&lt;br /&gt;
FictionBook will survive in any case. Even if this standard is replaced or totally rejected, the books made under its guidelines can be converted into any format (XHTML, OEB, DOCBOOK...) in just one click. FictionBook will be always more convenient in use and compatible than any of contemporary formats (TXT, DOC, HTML, LIT...). &lt;br /&gt;
&lt;br /&gt;
== All this is too good... ==&lt;br /&gt;
&lt;br /&gt;
This medal has a backside though. The making of a book to this standard will demand more effort than preparing a plain text file. But a book once created will be accessible and useful to a much greater number of users. Such a model of network libraries as a supplement to the existing ones, seems quite relevant.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments</id>
		<title>Eng:FictionBook 2.0 - short comments</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments"/>
				<updated>2006-06-26T09:59:01Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Is all this too complicated? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[FictionBook 2.0 - краткая информация|Russian]]&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
&lt;br /&gt;
FictionBook is a set of strict rules for creation of electronic versions of fiction books for reading on various devices and easily manageable in libraries. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Who supports the standard?  ==&lt;br /&gt;
Some six developers of book related software are engaged in the development of this standard and about ten competent fans of book design.&lt;br /&gt;
Currently, the standard is actively developed by me (GribUser, [http://www.fictionbook.ru/ fictionbook.lib], [[Конвертеры (импорт/экспорт)|Any2FB]]) and Haali ([[Чтение|Haali Reader]], [[Редакторы|FBTools]]). There is also a community of concerned developers, users, owners of libraries and enthusiasts. &lt;br /&gt;
We?ve got no Microsoft behind us. The fingers on two hands will suffice to count active participants (as of 12.01.2004:). The standard is the leader among Russians reading under WinCE.&lt;br /&gt;
&lt;br /&gt;
== What is the standard?s essense? ==&lt;br /&gt;
The standard is done in the form of the [[XML схема FictionBook2.1|XML Schema]]. If you do not know what is [http://www.w3.org/XML/ XML] or [http://www.w3.org/XML/Schema XML Schema], we recommend to look up [[The XML Basics]], meanwhile to make it short ? the standard represents a set of strict rules describing the structure of documents - what &amp;lt;tag&amp;gt; should be where and what it should/should not contain (text/name of author/quotation/etc.). The standard also includes recommendations on its optimal usage. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Why such complexities? ==&lt;br /&gt;
There is already a huge amount of electronic texts on the Web, but they all are stored in diverse, often incompatible standards. It is difficult to find the text equally ready to reading on a desktop, pocket PC and e-book. The standard is to provide compatibility for any devices and formats. &lt;br /&gt;
&lt;br /&gt;
The XML allows to easily create documents ready for direct use and processing (converting, storage, management) in any environment.&lt;br /&gt;
&lt;br /&gt;
== Is all this too complicated? ==&lt;br /&gt;
One of the objectives in development of the standard is its maximum ease both for book makers and developers of applications. Unlike such standards as the XHTML or OEB, the FictionBook has a necessary and sufficient minimum of tags for creation of electronic books. To make quality books it is enough to familiarize with [[The XML Basics]] and to find a suitable program from the [[Programs]] list.&lt;br /&gt;
And if you read the [[FictionBook 2.0 Schema - comments to the scheme]], you will get complete information on the format.&lt;br /&gt;
&lt;br /&gt;
== What all this will be within a few years? ==&lt;br /&gt;
FictionBook will survive in any case. Even if this standard is replaced or totally rejected, the books made under its guidelines can be converted into any format (XHTML, OEB, DOCBOOK...) in just one click. FictionBook will be always more convenient in use and compatible than any of contemporary formats (TXT, DOC, HTML, LIT...). &lt;br /&gt;
&lt;br /&gt;
== All this is too good... ==&lt;br /&gt;
&lt;br /&gt;
This medal has also a backside. The making of a book to this standard will demand more effort than preparing a plain text files. But a book once created will be accessible and useful to a much greater number of users. Such a model of network libraries to supplement the existing ones, seems quite relevant.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments</id>
		<title>Eng:FictionBook 2.0 - short comments</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments"/>
				<updated>2006-06-26T09:54:10Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: /* Who supports the standard? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[FictionBook 2.0 - краткая информация|Russian]]&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
&lt;br /&gt;
FictionBook is a set of strict rules for creation of electronic versions of fiction books for reading on various devices and easily manageable in libraries. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Who supports the standard?  ==&lt;br /&gt;
Some six developers of book related software are engaged in the development of this standard and about ten competent fans of book design.&lt;br /&gt;
Currently, the standard is actively developed by me (GribUser, [http://www.fictionbook.ru/ fictionbook.lib], [[Конвертеры (импорт/экспорт)|Any2FB]]) and Haali ([[Чтение|Haali Reader]], [[Редакторы|FBTools]]). There is also a community of concerned developers, users, owners of libraries and enthusiasts. &lt;br /&gt;
We?ve got no Microsoft behind us. The fingers on two hands will suffice to count active participants (as of 12.01.2004:). The standard is the leader among Russians reading under WinCE.&lt;br /&gt;
&lt;br /&gt;
== What is the standard?s essense? ==&lt;br /&gt;
The standard is done in the form of the [[XML схема FictionBook2.1|XML Schema]]. If you do not know what is [http://www.w3.org/XML/ XML] or [http://www.w3.org/XML/Schema XML Schema], we recommend to look up [[The XML Basics]], meanwhile to make it short ? the standard represents a set of strict rules describing the structure of documents - what &amp;lt;tag&amp;gt; should be where and what it should/should not contain (text/name of author/quotation/etc.). The standard also includes recommendations on its optimal usage. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Why such complexities? ==&lt;br /&gt;
There is already a huge amount of electronic texts on the Web, but they all are stored in diverse, often incompatible standards. It is difficult to find the text equally ready to reading on a desktop, pocket PC and e-book. The standard is to provide compatibility for any devices and formats. &lt;br /&gt;
&lt;br /&gt;
The XML allows to easily create documents ready for direct use and processing (converting, storage, management) in any environment.&lt;br /&gt;
&lt;br /&gt;
== Is all this too complicated? ==&lt;br /&gt;
One of the objectives in development of the standard is its maximum ease both for book makers and developers of applications. Unlike such standards as the XHTML or OEB, the FictionBook has a necessary and sufficient minimum of tags for creation of electronic books. For making of quality books it is enough to familiarize with [[The XML Basics]] and to find a suitable program from the [[Programs]] list.&lt;br /&gt;
And if you read the [[FictionBook 2.0 Schema - comments to the scheme]], you will get complete information on the format. &lt;br /&gt;
&lt;br /&gt;
== What all this will be within a few years? ==&lt;br /&gt;
FictionBook will survive in any case. Even if this standard is replaced or totally rejected, the books made under its guidelines can be converted into any format (XHTML, OEB, DOCBOOK...) in just one click. FictionBook will be always more convenient in use and compatible than any of contemporary formats (TXT, DOC, HTML, LIT...). &lt;br /&gt;
&lt;br /&gt;
== All this is too good... ==&lt;br /&gt;
&lt;br /&gt;
This medal has also a backside. The making of a book to this standard will demand more effort than preparing a plain text files. But a book once created will be accessible and useful to a much greater number of users. Such a model of network libraries to supplement the existing ones, seems quite relevant.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments</id>
		<title>Eng:FictionBook 2.0 - short comments</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:FictionBook_2.0_-_short_comments"/>
				<updated>2006-06-26T09:05:24Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: Full translation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[FictionBook 2.0 - краткая информация|Russian]]&lt;br /&gt;
{{Toc-Right}}&lt;br /&gt;
&lt;br /&gt;
FictionBook is a set of strict rules for creation of electronic versions of fiction books for reading on various devices and easily manageable in libraries. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Who supports the standard?  ==&lt;br /&gt;
Some six developers of book related software engaged in the development of this standard and about ten fans of competent book design.&lt;br /&gt;
Currently, the standard is actively developed by me (GribUser, [http://www.fictionbook.ru/ fictionbook.lib], [[Конвертеры (импорт/экспорт)|Any2FB]]) and Haali ([[Чтение|Haali Reader]], [[Редакторы|FBTools]]). There is also a community of concerned developers, users, owners of libraries and enthusiasts. &lt;br /&gt;
We?ve got no Microsoft behind us. The fingers on two hands will suffice to count active competent participants (as of 12.01.2004:). The standard is the leader among Russians reading under WinCE. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== What is the standard?s essense? ==&lt;br /&gt;
The standard is done in the form of the [[XML схема FictionBook2.1|XML Schema]]. If you do not know what is [http://www.w3.org/XML/ XML] or [http://www.w3.org/XML/Schema XML Schema], we recommend to look up [[The XML Basics]], meanwhile to make it short ? the standard represents a set of strict rules describing the structure of documents - what &amp;lt;tag&amp;gt; should be where and what it should/should not contain (text/name of author/quotation/etc.). The standard also includes recommendations on its optimal usage. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Why such complexities? ==&lt;br /&gt;
There is already a huge amount of electronic texts on the Web, but they all are stored in diverse, often incompatible standards. It is difficult to find the text equally ready to reading on a desktop, pocket PC and e-book. The standard is to provide compatibility for any devices and formats. &lt;br /&gt;
&lt;br /&gt;
The XML allows to easily create documents ready for direct use and processing (converting, storage, management) in any environment.&lt;br /&gt;
&lt;br /&gt;
== Is all this too complicated? ==&lt;br /&gt;
One of the objectives in development of the standard is its maximum ease both for book makers and developers of applications. Unlike such standards as the XHTML or OEB, the FictionBook has a necessary and sufficient minimum of tags for creation of electronic books. For making of quality books it is enough to familiarize with [[The XML Basics]] and to find a suitable program from the [[Programs]] list.&lt;br /&gt;
And if you read the [[FictionBook 2.0 Schema - comments to the scheme]], you will get complete information on the format. &lt;br /&gt;
&lt;br /&gt;
== What all this will be within a few years? ==&lt;br /&gt;
FictionBook will survive in any case. Even if this standard is replaced or totally rejected, the books made under its guidelines can be converted into any format (XHTML, OEB, DOCBOOK...) in just one click. FictionBook will be always more convenient in use and compatible than any of contemporary formats (TXT, DOC, HTML, LIT...). &lt;br /&gt;
&lt;br /&gt;
== All this is too good... ==&lt;br /&gt;
&lt;br /&gt;
This medal has also a backside. The making of a book to this standard will demand more effort than preparing a plain text files. But a book once created will be accessible and useful to a much greater number of users. Such a model of network libraries to supplement the existing ones, seems quite relevant.&lt;br /&gt;
[[Категория:Arts]]&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Readers</id>
		<title>Eng:Readers</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Readers"/>
				<updated>2006-06-26T07:29:55Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Чтение|Russian]]&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=HaaliReader for Windows|screenshot=Изображение:Haali.jpg|Haali|description=This excelent reader supports FB2 (version 2.0) and TXT, works with dictionaries and archeves ZIP/PRC. Freeware, OpenSource. It's a pity but FB2.1 is not supported yet.|standart=FB 2.0|restrict=tables|developer=Mike Matsnev|latest_release_version=2.0b249|latest_release_date=2005.01.04 02:33|platform=Windows|web-site=http://haali.cs.msu.ru/pocketpc/index.html.en|licence=OpenSource}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=HaaliReader for Pocket PC|screenshot=Изображение:Haaliw.png|Haaliw|description=This excelent reader supports FB2 (version 2.0) and TXT, works with dictionaries and archeves ZIP/PRC. Freeware, OpenSource. It's a pity but FB2.1 is not supported yet.|standart=FB 2.0|restrict=tables|developer=Mike Matsnev|latest_release_version=2.0b249|latest_release_date=2005.01.04 02:33|platform=Pocket PC, PocketPC 2002, WM2003|web-site=http://haali.cs.msu.ru/pocketpc/index.html.en|licence=OpenSource}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=Cool Reader|screenshot=Изображение:Coolreader.jpg|Coolreader|description=A Windows-based reader. Supports FB2, HTML, TXT, DOC, RTF. Unzips ZIP, RAR, HA, ARJ, LZH. Automatic recognition of text codepage and format. Screen font smoothing, smooth scroling, reading aloud, recording MP3 audio files, bookmarks, etc. FictionBook 2.1 support.|standart=FB 2.1|restrict=None|developer=Vadim Lopatin|latest_release_version=2.00.52a build 5335|latest_release_date=02.11.2005|platform=Windows|web-site=http://coolreader.org/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=pETR - Python e-text reader|screenshot=Изображение:Petr.jpg|Petr|description=This application is for reading FictionBook 2 and plain texts. pETR does not fully support FB2 but its development goes on.|standart=FB2|restrict=Tables. Style tables. Maybe something else:)|developer=Alexander Yevseyev|latest_release_version=0.5.3|latest_release_date=November 16, 2005|platform=Windows, Linux, BSD, etc.|web-site=http://altline.ru/~e-ai/index.shtml|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=Athenaeum|screenshot=Изображение:Athenaum.jpg|Athenaum|description=A multi-platform reader on the .NET basis. Good support of FB2 - works via DOM.|standart=FB2|restrict=None|developer=Gregory Nikionov|latest_release_version=2.0|latest_release_date=04.11.2004|platform=Windows |web-site=http://sourceforge.net/projects/athenaeum/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=AlReader Light|screenshot=Изображение:AlReader.jpg|AlReader|description=A reader for any device on Pocket PC and MS Smartphone. Supports FB2 (partially), TXT, HTML, RTF, PDB/PRC, TCR. Abundance of options, search, support of many character sets.|standart=FB2|restrict=None|developer=Alan|latest_release_version=1.10|latest_release_date=15.12.2005|platform=ms smartphone 2002, 2003, 2003SE, Pocket PC 2002, 2003, 2003SE, 2005(?)|web-site=http://alreader.kms.ru/|licence=Donationware}}&lt;br /&gt;
{{Шаблон:Reader|name=PyBookReader|screenshot=Изображение:Pybook.png|Pybook|description=A reader for Linux/FreeBSD/etc. Supports FB2. Auto scrolling, bookmarks, styles, images. Several text  converters. Everything for Unix.|standart=FB2|restrict=Нет|developer=Con Radchenko|latest_release_version=0.4.11|latest_release_date=07.03.2005|platform=Linux/FreeBSD/Unix |web-site=http://pybookreader.narod.ru/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=OrnamentBook|screenshot=Изображение:Ornam.jpg|Ornam|description=A reader for Linux/FreeBSD/e.t.c., with a common book-like display. Supports FB2. The project is in the initial steps of development.|standart=FB2|restrict=None|developer=Con Radchenko|latest_release_version=0.2.2|latest_release_date=07.03.2005|platform=Linux/FreeBSD/Unix |web-site=http://pybookreader.narod.ru/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=FBReader|screenshot=Изображение:Fbread.png|Fbread|description=The FBReader is created for Linux powered PDA. FB2.1 is supported with exception of styles (tag and attribute &amp;quot;style&amp;quot;) and tables. Can read HTML (no tables), TXT, Aportis doc (prc), zTxt (Weasel), Plucker (no tables), PRC (Psion). Program is under the active development. |standart=FB 2.1|restrict=custom styles, tables|developer=Nikolay Pultsin (Geometer)|latest_release_version=0.7.2|latest_release_date=2006-02-16|platform=Sharp Zaurus with Qtopia-based ROMs. Sharp Zaurus pdaXrom. &lt;br /&gt;
Sharp Zaurus OpenZaurus/Opie ROM. Siemens Simpad with Opensimpad 0.9.0/Opie ROM. Nokia 770 Internet Tablet (maemo). Linux desktop.|web-site=http://only.mawhrin.net/fbreader/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=PalmFiction|screenshot=Изображение:Pafi.jpg|Pafi|description=A reader for devices under PalmOS. Supported fomats: PalmDoc, zTXT, RTF, MS Word 2.x, 6.0/95, 2000-2003, plain text, text with HTML markup  (just removal of tags), TCR (full decompressing). In all the above formats only TEXT is displayed (no tables, hyperlinks, images, etc.)|standart=FB2|restrict=text-only|developer=PalmFiction|latest_release_version=0.12g|latest_release_date=06.11.2005|platform=PalmOS 3.5 and above|web-site=http://palmfiction.sourceforge.net/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=QReader|screenshot=Изображение:Qreader.jpg|Qreader|description=QReader allows to read texts on smartphones (electronic books - eBooks). It is the high quality book reader, easy and powerful.|standart=FB2|restrict=text-only|developer=QReader|latest_release_version=1.85|latest_release_date=01.12.2005|platform=Nokia Series 60 (Symbian OS)|web-site=http://www.qreader.com/|licence=Donationware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Readers</id>
		<title>Eng:Readers</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Readers"/>
				<updated>2006-06-26T07:26:09Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Чтение|Russian]]&lt;br /&gt;
{{Шаблон:Reader|name=HaaliReader for Windows|screenshot=Изображение:Haali.jpg|Haali|description=This excelent reader supports FB2 (version 2.0) and TXT, works with dictionaries and archeves ZIP/PRC. Freeware, OpenSource. It's a pity but FB2.1 is not supported yet.|standart=FB 2.0|restrict=tables|developer=Mike Matsnev|latest_release_version=2.0b249|latest_release_date=2005.01.04 02:33|platform=Windows|web-site=http://haali.cs.msu.ru/pocketpc/index.html.en|licence=OpenSource}}&lt;br /&gt;
{{Шаблон:Reader|name=HaaliReader for Pocket PC|screenshot=Изображение:Haaliw.png|Haaliw|description=This excelent reader supports FB2 (version 2.0) and TXT, works with dictionaries and archeves ZIP/PRC. Freeware, OpenSource. It's a pity but FB2.1 is not supported yet.|standart=FB 2.0|restrict=tables|developer=Mike Matsnev|latest_release_version=2.0b249|latest_release_date=2005.01.04 02:33|platform=Pocket PC, PocketPC 2002, WM2003|web-site=http://haali.cs.msu.ru/pocketpc/index.html.en|licence=OpenSource}}&lt;br /&gt;
{{Шаблон:Reader|name=Cool Reader|screenshot=Изображение:Coolreader.jpg|Coolreader|description=A Windows-based reader. Supports FB2, HTML, TXT, DOC, RTF. Unzips ZIP, RAR, HA, ARJ, LZH. Automatic recognition of text codepage and format. Screen font smoothing, smooth scroling, reading aloud, recording MP3 audio files, bookmarks, etc. FictionBook 2.1 support.|standart=FB 2.1|restrict=None|developer=Vadim Lopatin|latest_release_version=2.00.52a build 5335|latest_release_date=02.11.2005|platform=Windows|web-site=http://coolreader.org/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=pETR - Python e-text reader|screenshot=Изображение:Petr.jpg|Petr|description=The program for reading FictionBook 2 and common texts. pETR does not fully support FB2 but its development goes on.|standart=FB2|restrict=Tables. Style tables. Maybe something else:)|developer=Alexander Yevseyev|latest_release_version=0.5.3|latest_release_date=November 16, 2005|platform=Windows, Linux, BSD, etc.|web-site=http://altline.ru/~e-ai/index.shtml|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=Athenaeum|screenshot=Изображение:Athenaum.jpg|Athenaum|description=A multi-platform reader on the .NET basis. Good support of FB2 - works via DOM.|standart=FB2|restrict=None|developer=Gregory Nikionov|latest_release_version=2.0|latest_release_date=04.11.2004|platform=Windows |web-site=http://sourceforge.net/projects/athenaeum/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=AlReader Light|screenshot=Изображение:AlReader.jpg|AlReader|description=A reader for any device on Pocket PC and MS Smartphone. Supports FB2 (partially), TXT, HTML, RTF, PDB/PRC, TCR. Abundance of options, search, support of many character sets.|standart=FB2|restrict=None|developer=Alan|latest_release_version=1.10|latest_release_date=15.12.2005|platform=ms smartphone 2002, 2003, 2003SE, Pocket PC 2002, 2003, 2003SE, 2005(?)|web-site=http://alreader.kms.ru/|licence=Donationware}}&lt;br /&gt;
{{Шаблон:Reader|name=PyBookReader|screenshot=Изображение:Pybook.png|Pybook|description=A reader for Linux/FreeBSD/etc. Supports FB2. Auto scrolling, bookmarks, styles, images. Several text  converters. Everything for Unix.|standart=FB2|restrict=Нет|developer=Con Radchenko|latest_release_version=0.4.11|latest_release_date=07.03.2005|platform=Linux/FreeBSD/Unix |web-site=http://pybookreader.narod.ru/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=OrnamentBook|screenshot=Изображение:Ornam.jpg|Ornam|description=A reader for Linux/FreeBSD/e.t.c., with a common book-like display. Supports FB2. The project is in the initial steps of development.|standart=FB2|restrict=None|developer=Con Radchenko|latest_release_version=0.2.2|latest_release_date=07.03.2005|platform=Linux/FreeBSD/Unix |web-site=http://pybookreader.narod.ru/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=FBReader|screenshot=Изображение:Fbread.png|Fbread|description=The FBReader is created for Linux powered PDA. FB2.1 is supported with exception of styles (tag and attribute &amp;quot;style&amp;quot;) and tables. Can read HTML (no tables), TXT, Aportis doc (prc), zTxt (Weasel), Plucker (no tables), PRC (Psion). Program is under the active development. |standart=FB 2.1|restrict=custom styles, tables|developer=Nikolay Pultsin (Geometer)|latest_release_version=0.7.2|latest_release_date=2006-02-16|platform=Sharp Zaurus with Qtopia-based ROMs. Sharp Zaurus pdaXrom. &lt;br /&gt;
Sharp Zaurus OpenZaurus/Opie ROM. Siemens Simpad with Opensimpad 0.9.0/Opie ROM. Nokia 770 Internet Tablet (maemo). Linux desktop.|web-site=http://only.mawhrin.net/fbreader/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=PalmFiction|screenshot=Изображение:Pafi.jpg|Pafi|description=A reader for devices under PalmOS. Supported fomats: PalmDoc, zTXT, RTF, MS Word 2.x, 6.0/95, 2000-2003, plain text, text with HTML markup  (just removal of tags), TCR (full decompressing). In all the above formats only TEXT is displayed (no tables, hyperlinks, images, etc.)|standart=FB2|restrict=text-only|developer=PalmFiction|latest_release_version=0.12g|latest_release_date=06.11.2005|platform=PalmOS 3.5 and above|web-site=http://palmfiction.sourceforge.net/|licence=FreeWare}}&lt;br /&gt;
&lt;br /&gt;
{{Шаблон:Reader|name=QReader|screenshot=Изображение:Qreader.jpg|Qreader|description=QReader allows to read texts on smartphones (electronic books - eBooks). It is the high quality book reader, easy and powerful.|standart=FB2|restrict=text-only|developer=QReader|latest_release_version=1.85|latest_release_date=01.12.2005|platform=Nokia Series 60 (Symbian OS)|web-site=http://www.qreader.com/|licence=Donationware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:Readers</id>
		<title>Eng:Readers</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:Readers"/>
				<updated>2006-06-23T07:46:16Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Надо перевести на английский}}&lt;br /&gt;
[[Чтение|Russian]]&lt;br /&gt;
{{Шаблон:Reader|name=HaaliReader for Windows|screenshot=Изображение:Haali.jpg|Haali|description=This excelent reader supports FB2 (version 2.0) and TXT, works with dictionaries and archeves ZIP/PRC. Freeware, OpenSource. It's a pity but FB2.1 is not supported yet.|standart=FB 2.0|restrict=tables|developer=Mike Matsnev|latest_release_version=2.0b249|latest_release_date=2005.01.04 02:33|platform=Windows|web-site=http://haali.cs.msu.ru/pocketpc/index.html.en|licence=OpenSource}}&lt;br /&gt;
{{Шаблон:Reader|name=HaaliReader for Pocket PC|screenshot=Изображение:Haaliw.png|Haaliw|description=This excelent reader supports FB2 (version 2.0) and TXT, works with dictionaries and archeves ZIP/PRC. Freeware, OpenSource. It's a pity but FB2.1 is not supported yet.|standart=FB 2.0|restrict=tables|developer=Mike Matsnev|latest_release_version=2.0b249|latest_release_date=2005.01.04 02:33|platform=Pocket PC, PocketPC 2002, WM2003|web-site=http://haali.cs.msu.ru/pocketpc/index.html.en|licence=OpenSource}}&lt;br /&gt;
{{Шаблон:Reader|name=Cool Reader|screenshot=Изображение:Coolreader.jpg|Coolreader|description=A Windows-based reader. Supports FB2, HTML, TXT, DOC, RTF. Unzips ZIP, RAR, HA, ARJ, LZH. Automatic recognition of text codepage and format. Screen font smoothing, smooth scroling, reading aloud, recording MP3 audio files, bookmarks, etc. FictionBook 2.1 support.|standart=FB 2.1|restrict=None|developer=Vadim Lopatin|latest_release_version=2.00.52a build 5335|latest_release_date=02.11.2005|platform=Windows|web-site=http://coolreader.org/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=pETR - Python e-text reader|screenshot=Изображение:Petr.jpg|Petr|description=The program for reading FictionBook 2 and common texts. pETR does not fully support FB2 but its development goes on.|standart=FB2|restrict=Tables. Style tables. Maybe something else:)|developer=Alexander Yevseyev|latest_release_version=0.5.3|latest_release_date=November 16, 2005|platform=Windows, Linux, BSD, etc.|web-site=http://altline.ru/~e-ai/index.shtml|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=Athenaeum|screenshot=Изображение:Athenaum.jpg|Athenaum|description=A multi-platform reader on the .NET basis. Good support of FB2 - works via DOM.|standart=FB2|restrict=None|developer=Gregory Nikionov|latest_release_version=2.0|latest_release_date=04.11.2004|platform=Windows |web-site=http://sourceforge.net/projects/athenaeum/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=AlReader Light|screenshot=Изображение:AlReader.jpg|AlReader|description=A reader for any device on Pocket PC and MS Smartphone. Supports FB2 (partially), TXT, HTML, RTF, PDB/PRC, TCR. Abundance of options, search, support of many character sets.|standart=FB2|restrict=None|developer=Alan|latest_release_version=1.10|latest_release_date=15.12.2005|platform=ms smartphone 2002, 2003, 2003SE, Pocket PC 2002, 2003, 2003SE, 2005(?)|web-site=http://alreader.kms.ru/|licence=Donationware}}&lt;br /&gt;
{{Шаблон:Reader|name=PyBookReader|screenshot=Изображение:Pybook.png|Pybook|description=A reader for Linux/FreeBSD/etc. Supports FB2. Auto scrolling, bookmarks, styles, images. Several text  converters. Everything for Unix.|standart=FB2|restrict=Нет|developer=Con Radchenko|latest_release_version=0.4.11|latest_release_date=07.03.2005|platform=Linux/FreeBSD/Unix |web-site=http://pybookreader.narod.ru/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=OrnamentBook|screenshot=Изображение:Ornam.jpg|Ornam|description=Ридер под Linux/FreeBSD/e.t.c., имитирующий бумажную книгу. Поддерживает FB2. Проект в самом начале развития.|standart=FB2|restrict=Нет|developer=Con Radchenko|latest_release_version=0.2.2|latest_release_date=07.03.2005|platform=Linux/FreeBSD/Unix |web-site=http://pybookreader.narod.ru/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=FBReader|screenshot=Изображение:Fbread.png|Fbread|description=The FBReader is created for Linux powered PDA. FB2.1 is supported with exception of styles (tag and attribute &amp;quot;style&amp;quot;) and tables. Can read HTML (no tables), TXT, Aportis doc (prc), zTxt (Weasel), Plucker (no tables), PRC (Psion). Program is under the active development. |standart=FB 2.1|restrict=custom styles, tables|developer=Nikolay Pultsin (Geometer)|latest_release_version=0.7.2|latest_release_date=2006-02-16|platform=Sharp Zaurus with Qtopia-based ROMs. Sharp Zaurus pdaXrom. &lt;br /&gt;
Sharp Zaurus OpenZaurus/Opie ROM. Siemens Simpad with Opensimpad 0.9.0/Opie ROM. Nokia 770 Internet Tablet (maemo). Linux desktop.|web-site=http://only.mawhrin.net/fbreader/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=PalmFiction|screenshot=Изображение:Pafi.jpg|Pafi|description=Программа для чтения документов на устройствах под управлением PalmOS. Чтение документов в форматах: PalmDoc, zTXT, RTF, MS Word 2.x, 6.0/95, 2000-2003, обычный текст, текст с HTML разметкой (только удаление тегов), TCR (полная распаковка). Во всех перечисленных форматах документов, отображается только ТЕКСТ (без таблиц, гиперссылок, картинок и т.д.)|standart=FB2|restrict=text-only|developer=PalmFiction|latest_release_version=0.12g|latest_release_date=06.11.2005|platform=PalmOS 3.5 и выше|web-site=http://palmfiction.sourceforge.net/|licence=FreeWare}}&lt;br /&gt;
{{Шаблон:Reader|name=QReader|screenshot=Изображение:Qreader.jpg|Qreader|description=QReader allows to read texts on smartphones (electronic books - eBooks). It is the high quality book reader, easy and powerful.|standart=FB2|restrict=text-only|developer=QReader|latest_release_version=1.85|latest_release_date=01.12.2005|platform=Nokia Series 60 (Symbian OS)|web-site=http://www.qreader.com/|licence=Donationware}}&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	<entry>
		<id>http://www.fictionbook.org/index.php/Eng:FictionBook</id>
		<title>Eng:FictionBook</title>
		<link rel="alternate" type="text/html" href="http://www.fictionbook.org/index.php/Eng:FictionBook"/>
				<updated>2006-06-22T10:06:04Z</updated>
		
		<summary type="html">&lt;p&gt;Samaritan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[FictionBook|Russian]]&lt;br /&gt;
&lt;br /&gt;
==The objectives of the FictionBook community ==&lt;br /&gt;
&lt;br /&gt;
[[Изображение:Fb2-shema.jpg||right]]&lt;br /&gt;
&lt;br /&gt;
'''FictionBook''' is an [[:ru:xml|XML]] format for storage of books where each element of the book is described by tags. &lt;br /&gt;
&lt;br /&gt;
The main objective for storage of books in the FictionBook format is its accurate keeping of the book structure accompanied with the provision of effortless converting (including automatic) of FictionBook files to other popular formats: txt, doc, rtf, html and so on. Beside that, many reader applications allow to read the FictionBook format without converting. &lt;br /&gt;
&lt;br /&gt;
All this serves the convenience of reading. &lt;br /&gt;
&lt;br /&gt;
'''What's to be done:'''&lt;br /&gt;
# The description of the format. &lt;br /&gt;
# Software feasibility study: editors, readers, converters. &lt;br /&gt;
# Software development. &lt;br /&gt;
# Making quality books both in structure and contents. &lt;br /&gt;
&lt;br /&gt;
Another purpose is also achieved: on the basis of the data stored within the FictionBook file, one can easily create a book depot of any volume as a home or public (network) library. Such a depot requires much less processing time and effort, than storage of books of any other type. The FictionBook format is best fit for fiction. Special literature: scientific, technical, is yet hard to describe in this format. &lt;br /&gt;
&lt;br /&gt;
The basic information on this format can be found in the Navigation panel under '''[[Статьи|Articles]]'''  and '''[[Документы|Documents]]'''. The '''[[Программы|Programs]]'''  section describes various programs used for reading and making of books in the '''FictionBook''' format, librarian and other utilities. The [[Тестовая площадка|'''Testbench''']] is for testing of programs and error reports. &lt;br /&gt;
&lt;br /&gt;
If you wish to submit a comment or an article but do not know how to - you can find assistance in the '''[[FictionBook:Справка|Справка]]''' (Help) section. If you wish to help in translating articles into English read the article [[FictionBook:Переводчикам|For Translators]]  and go straight to the [[English]] section.&lt;/div&gt;</summary>
		<author><name>Samaritan</name></author>	</entry>

	</feed>