File: xml.xml

package info (click to toggle)
qcodeeditor 1.0%2B1gitdc644d-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 520 kB
  • sloc: cpp: 2,502; xml: 731; python: 11; makefile: 9
file content (57 lines) | stat: -rw-r--r-- 2,024 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="myfile.xsl" ?>
<bookstore specialty="novel">
    <book style="autobiography">
        <author>
            <first-name>Joe</first-name>
            <last-name>Bob</last-name>
            <award>Trenton Literary Review Honorable Mention</award>
        </author>
        <price>12</price>
    </book>
    <book style="textbook">
        <author>
            <first-name>Mary</first-name>
            <last-name>Bob</last-name>
            <publication>Selected Short Stories of
                <first-name>Mary</first-name>
                <last-name>Bob</last-name>
            </publication>
        </author>
        <editor>
            <first-name>Britney</first-name>
            <last-name>Bob</last-name>
        </editor>
        <price>55</price>
    </book>
    <magazine style="glossy" frequency="monthly">
        <price>2.50</price>
        <subscription price="24" per="year"/>
    </magazine>
    <book style="novel" id="myfave">
        <author>
            <first-name>Toni</first-name>
            <last-name>Bob</last-name>
            <degree from="Trenton U">B.A.</degree>
            <degree from="Harvard">Ph.D.</degree>
            <award>Pulitzer</award>
            <publication>Still in Trenton</publication>
            <publication>Trenton Forever</publication>
        </author>
        <price intl="Canada" exchange="0.7">6.50</price>
        <excerpt>
            <p>It was a dark and stormy night.</p>
            <p>But then all nights in Trenton seem dark and
                stormy to someone who has gone through what
                <emph>I</emph> have.</p>
            <definition-list>
                <term>Trenton</term>
                <definition>misery</definition>
            </definition-list>
        </excerpt>
    </book>
    <my:book xmlns:my="uri:mynamespace" style="leather" price="29.50">
        <my:title>Who's Who in Trenton</my:title>
        <my:author>Robert Bob</my:author>
    </my:book>
</bookstore>