Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!DOCTYPE shop [
  3. <!ELEMENT shop (section+)>
  4. <!ELEMENT section (shelf+)>
  5. <!ELEMENT shelf (product*)>
  6. <!ELEMENT product (name, price)>
  7. <!ELEMENT price (#PCDATA)>
  8. <!ELEMENT name (#PCDATA)>
  9.  
  10. <!ATTLIST section domain CDATA #REQUIRED>
  11. <!ATTLIST shelf domain CDATA #REQUIRED>
  12. ]>
  13. <shop>
  14. <section domain="Spożywcze">
  15. <shelf domain="Nabiał" >
  16. <product>
  17. <name>Mleko</name>
  18. <price>1,89PLN</price>
  19. </product>
  20. <product>
  21. <name>Masło</name>
  22. <price>5,79 zł</price>
  23. </product>
  24. </shelf>
  25. <shelf domain="Pieczywo">
  26. <product>
  27. <name>Chleb</name>
  28. <price>2,99 zł</price>
  29. </product>
  30. <product>
  31. <name>Bułka</name>
  32. <price>0,59 zł</price>
  33. </product>
  34. </shelf>
  35. <shelf domain="Słodycze">
  36. <product>
  37. <name>Cukierki</name>
  38. <price>7,99 zł</price>
  39. </product>
  40. <product>
  41. <name>Czekolada</name>
  42. <price>3,99 zł</price>
  43. </product>
  44. </shelf>
  45. </section>
  46. <section domain="Artykuły biurowe">
  47. <shelf domain="Zeszyty">
  48. <product>
  49. <name>Zeszyt A5</name>
  50. <price>2,99 zł</price>
  51. </product>
  52. <product>
  53. <name>Zeszyt A4</name>
  54. <price>3,99 zł</price>
  55. </product>
  56. </shelf>
  57. <shelf domain="Przybory">
  58. <product>
  59. <name>Długopis</name>
  60. <price>3,50 zł</price>
  61. </product>
  62. <product>
  63. <name>Ołówek</name>
  64. <price>1,99 zł</price>
  65. </product>
  66. </shelf>
  67. </section>
  68. <section domain="Odzież">
  69. <shelf domain="Męska">
  70. <product>
  71. <name>Koszulka T-shirt</name>
  72. <price>30,00 zł</price>
  73. </product>
  74. <product>
  75. <name>Spodnie</name>
  76. <price>50,00 zł</price>
  77. </product>
  78. </shelf>
  79. <shelf domain="Damska">
  80. <product>
  81. <name>Sukienka</name>
  82. <price>30,00 zł</price>
  83. </product>
  84. </shelf>
  85. </section>
  86. <section domain="RTV/ADG">
  87. <shelf domain="RTV">
  88. <product>
  89. <name>Telewizor</name>
  90. <price>5,000 zł</price>
  91. </product>
  92. </shelf>
  93. <shelf domain="AGD">
  94. <product>
  95. <name>Odkurzacz</name>
  96. <price>300,00 zł</price>
  97. </product>
  98. </shelf>
  99. </section>
  100. </shop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement