diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-13 23:24:31 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-13 23:24:31 (GMT) |
commit | f15351d938e76c4b2a42a638825d67f108685140 (patch) | |
tree | d75a09f72c251d71a714f948f50392249bf91cd9 /Lib/test/xmltestdata | |
parent | 9451a1c6ae14cc31ea88eaaf68d5a8f946b82831 (diff) | |
download | cpython-f15351d938e76c4b2a42a638825d67f108685140.zip cpython-f15351d938e76c4b2a42a638825d67f108685140.tar.gz cpython-f15351d938e76c4b2a42a638825d67f108685140.tar.bz2 |
Merged revisions 78838-78839,78917,78919,78934,78937 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78838 | florent.xicluna | 2010-03-11 15:36:19 +0100 (jeu, 11 mar 2010) | 2 lines
Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too.
........
r78839 | florent.xicluna | 2010-03-11 16:55:11 +0100 (jeu, 11 mar 2010) | 2 lines
Fix repr of tree Element on windows.
........
r78917 | florent.xicluna | 2010-03-13 12:18:49 +0100 (sam, 13 mar 2010) | 2 lines
Move the xml test data to their own directory.
........
r78919 | florent.xicluna | 2010-03-13 13:41:48 +0100 (sam, 13 mar 2010) | 2 lines
Do not chdir when running test_xml_etree, and enhance the findfile helper.
........
r78934 | florent.xicluna | 2010-03-13 18:56:19 +0100 (sam, 13 mar 2010) | 2 lines
Update some parts of the xml.etree documentation.
........
r78937 | florent.xicluna | 2010-03-13 21:30:15 +0100 (sam, 13 mar 2010) | 3 lines
Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions.
Update the function, class and method signatures, according to the new convention.
........
Diffstat (limited to 'Lib/test/xmltestdata')
-rw-r--r-- | Lib/test/xmltestdata/simple-ns.xml | 7 | ||||
-rw-r--r-- | Lib/test/xmltestdata/simple.xml | 6 | ||||
-rw-r--r-- | Lib/test/xmltestdata/test.xml | 115 | ||||
-rw-r--r-- | Lib/test/xmltestdata/test.xml.out | 115 |
4 files changed, 243 insertions, 0 deletions
diff --git a/Lib/test/xmltestdata/simple-ns.xml b/Lib/test/xmltestdata/simple-ns.xml new file mode 100644 index 0000000..f1f34b2 --- /dev/null +++ b/Lib/test/xmltestdata/simple-ns.xml @@ -0,0 +1,7 @@ +<?pi data?> +<!-- comment --> +<root xmlns='namespace'> + <element key='value'>text</element> + <element>text</element>tail + <empty-element/> +</root> diff --git a/Lib/test/xmltestdata/simple.xml b/Lib/test/xmltestdata/simple.xml new file mode 100644 index 0000000..b88c2c7 --- /dev/null +++ b/Lib/test/xmltestdata/simple.xml @@ -0,0 +1,6 @@ +<!-- comment --> +<root> + <element key='value'>text</element> + <element>text</element>tail + <empty-element/> +</root> diff --git a/Lib/test/xmltestdata/test.xml b/Lib/test/xmltestdata/test.xml new file mode 100644 index 0000000..9af92fb --- /dev/null +++ b/Lib/test/xmltestdata/test.xml @@ -0,0 +1,115 @@ +<?xml version="1.0"?> +<HTML xmlns:pp="http://www.isogen.com/paul/post-processor"> +<TITLE>Introduction to XSL</TITLE> +<H1>Introduction to XSL</H1> + + + + <HR/> + <H2>Overview +</H2> + <UL> + + <LI>1.Intro</LI> + + <LI>2.History</LI> + + <LI>3.XSL Basics</LI> + + <LI>Lunch</LI> + + <LI>4.An XML Data Model</LI> + + <LI>5.XSL Patterns</LI> + + <LI>6.XSL Templates</LI> + + <LI>7.XSL Formatting Model +</LI> + + </UL> + + + + + + + <HR/> + <H2>Intro</H2> + <UL> + + <LI>Who am I?</LI> + + <LI>Who are you?</LI> + + <LI>Why are we here? +</LI> + + </UL> + + + + + + + <HR/> + <H2>History: XML and SGML</H2> + <UL> + + <LI>XML is a subset of SGML.</LI> + + <LI>SGML allows the separation of abstract content from formatting.</LI> + + <LI>Also one of XML's primary virtues (in the doc publishing domain). +</LI> + + </UL> + + + + + + + <HR/> + <H2>History: What are stylesheets?</H2> + <UL> + + <LI>Stylesheets specify the formatting of SGML/XML documents.</LI> + + <LI>Stylesheets put the "style" back into documents.</LI> + + <LI>New York Times content+NYT Stylesheet = NYT paper +</LI> + + </UL> + + + + + + + <HR/> + <H2>History: FOSI</H2> + <UL> + + <LI>FOSI: "Formatted Output Specification Instance" +<UL> + <LI>MIL-STD-28001 + </LI> + + <LI>FOSI's are SGML documents + </LI> + + <LI>A stylesheet for another document + </LI> +</UL></LI> + + <LI>Obsolete but implemented... +</LI> + + </UL> + + + + +</HTML> diff --git a/Lib/test/xmltestdata/test.xml.out b/Lib/test/xmltestdata/test.xml.out new file mode 100644 index 0000000..d4ab1ab --- /dev/null +++ b/Lib/test/xmltestdata/test.xml.out @@ -0,0 +1,115 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<HTML xmlns:pp="http://www.isogen.com/paul/post-processor"> +<TITLE>Introduction to XSL</TITLE> +<H1>Introduction to XSL</H1> + + + + <HR></HR> + <H2>Overview +</H2> + <UL> + + <LI>1.Intro</LI> + + <LI>2.History</LI> + + <LI>3.XSL Basics</LI> + + <LI>Lunch</LI> + + <LI>4.An XML Data Model</LI> + + <LI>5.XSL Patterns</LI> + + <LI>6.XSL Templates</LI> + + <LI>7.XSL Formatting Model +</LI> + + </UL> + + + + + + + <HR></HR> + <H2>Intro</H2> + <UL> + + <LI>Who am I?</LI> + + <LI>Who are you?</LI> + + <LI>Why are we here? +</LI> + + </UL> + + + + + + + <HR></HR> + <H2>History: XML and SGML</H2> + <UL> + + <LI>XML is a subset of SGML.</LI> + + <LI>SGML allows the separation of abstract content from formatting.</LI> + + <LI>Also one of XML's primary virtues (in the doc publishing domain). +</LI> + + </UL> + + + + + + + <HR></HR> + <H2>History: What are stylesheets?</H2> + <UL> + + <LI>Stylesheets specify the formatting of SGML/XML documents.</LI> + + <LI>Stylesheets put the "style" back into documents.</LI> + + <LI>New York Times content+NYT Stylesheet = NYT paper +</LI> + + </UL> + + + + + + + <HR></HR> + <H2>History: FOSI</H2> + <UL> + + <LI>FOSI: "Formatted Output Specification Instance" +<UL> + <LI>MIL-STD-28001 + </LI> + + <LI>FOSI's are SGML documents + </LI> + + <LI>A stylesheet for another document + </LI> +</UL></LI> + + <LI>Obsolete but implemented... +</LI> + + </UL> + + + + +</HTML>
\ No newline at end of file |