From b025dbd8cb97b000fe34ae72f488b2c060712da4 Mon Sep 17 00:00:00 2001 From: TheDmitry Date: Mon, 9 Feb 2015 09:30:45 +0300 Subject: [xml/ru] Translating First Description --- ru-ru/xml-ru.html.markdown | 129 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 ru-ru/xml-ru.html.markdown (limited to 'ru-ru') diff --git a/ru-ru/xml-ru.html.markdown b/ru-ru/xml-ru.html.markdown new file mode 100644 index 00000000..65de9049 --- /dev/null +++ b/ru-ru/xml-ru.html.markdown @@ -0,0 +1,129 @@ +--- +language: xml +filename: learnxml-ru.xml +contributors: + - ["João Farias", "https://github.com/JoaoGFarias"] +translators: + - ["Dmitry Bessonov", "https://github.com/TheDmitry"] +lang: ru-ru +--- + +XML - это язык разметки, предназначеный для хранения и передачи данных. + +В отличие от HTML, XML не определяет, как отображать или формировать данные, он только содержит их. + +* XML Синтаксис + +```xml + + + + + + Everyday Italian + Giada De Laurentiis + 2005 + 30.00 + + + Harry Potter + J K. Rowling + 2005 + 29.99 + + + Learning XML + Erik T. Ray + 2003 + 39.95 + + + + + + + + + + +computer.gif + + +``` + +* Well-Formated Document x Validation + +A XML document is well-formated if it is syntactically correct. +However, it is possible to inject more constraints in the document, +using document definitions, such as DTD and XML Schema. + +A XML document which follows a document definition is called valid, +regarding that document. + +With this tool, you can check the XML data outside the application logic. + +```xml + + + + + + + + Everyday Italian + 30.00 + + + + + + + + + + +]> + + + + + + + + + + + + + +]> + + + + Everyday Italian + 30.00 + + +``` \ No newline at end of file -- cgit v1.2.3