CIT041X Index > Assignment 3 > Sample Files

Assignment 3
Sample Files

The following is a ski report document that is valid according to the specifications detailed in assignment 3. You may copy and paste it into a file of your own for testing purposes. It is also available as good_ski.xml

<ski-report>
	<date>2003-02-24</date>
	<entry>
		<name id="AM">Alpine Meadows</name>
		<address>
			<box>PO Box 5279</box>
			<city>Tahoe City</city>
			<state>CA</state>
			<zip>96145</zip>
		</address>
		<phone>540-581-8374</phone>
		<base units="in" min="77" max="140"/>
		<lifts>14</lifts>
		<open>09:00</open>
		<close>16:00</close>
		<info xmlns:h="http://www.w3.org/1999/xhtml">
			<h:p>
			Our lift prices are simply
			<h:em>spectacular</h:em>. Check these out:
			</h:p>
			<h:table>
			<h:tr>
				<h:th>Price</h:th><h:th>Age</h:th>
			</h:tr>
			<h:tr><h:td>$56</h:td><h:td>adults</h:td></h:tr>
			<h:tr><h:td>$42</h:td><h:td>teen 13-18</h:td></h:tr>
			<h:tr><h:td>$56</h:td><h:td>senior 65-69</h:td></h:tr>
			</h:table>
		</info>
	</entry>

	<entry>
		<name id="DP">Diamond Peak Ski Resort</name>
		<address>
			<street>1210 Ski Way</street>
			<city>Incline Village</city>
			<state>NV</state>
			<zip>89451-0123</zip>
		</address>
		<phone>775-832-1177</phone>
		<base units="in" min="92" max="130"/>
		<lifts>4</lifts>
		<open>08:30</open>
		<close>16:00</close>
		<info xmlns:html="http://www.w3.org/1999/xhtml">
			<html:p>
			Lodging rates:
			</html:p>
			<html:table>
			<html:tr>
				<html:th>Room</html:th>
				<html:th>Price</html:th>
			</html:tr>
			<html:tr>
				<html:th align="center"><html:p>Single</html:p></html:th>
				<html:th><html:p>$49</html:p></html:th>
			</html:tr>
			<html:tr>
				<html:th align="center"><html:p>Double</html:p></html:th>
				<html:th><html:p>$59</html:p></html:th>
			</html:tr>
			</html:table>
		</info>
	</entry>
</ski-report>

The following ski report document is invalid with respect to the specifications detailed in assignment 3. You may copy and paste it into a file of your own for testing purposes. It is also available as bad_ski.xml

<?xml version="1.0"?>
<ski-report>
	<date>2003-02-24</date>
	<entry>
		<name id="AM">Alpine Meadows</name>
		<address>
			<box>PO Box 5279</box>
			<city>Tahoe City</city>
			<state>CA</state>
			<zip>96145</zip>
		</address>
		<phone>540-581-8374</phone>

		<!-- invalid value for units attribute -->
		<base units="mm" min="77" max="140"/>
		<lifts>14</lifts>

		<!-- close and open are in wrong order -->
		<close>16:00</close>
		<open>09:00</open>

		<info xmlns:h="http://www.w3.org/1999/xhtml">
			<!-- emphasis must be inside paragraph, not outside -->
			<h:em><h:p>
			Our lift prices are simply
			spectacular. Check these out:
			</h:p></h:em>
			<h:table>
			<h:tr>
				<h:th>Price</h:th><h:th>Age</h:th>
			</h:tr>
			<h:tr><h:td>$56</h:td><h:td>adults</h:td></h:tr>
			<h:tr><h:td>$42</h:td><h:td>teen 13-18</h:td></h:tr>
			<h:tr><h:td>$56</h:td><h:td>senior 65-69</h:td></h:tr>
			</h:table>
		</info>
	</entry>

	<entry>
		<!-- duplicate ID for this entry -->
		<name id="AM">Diamond Peak Ski Resort</name>
		<address>
			<street>1210 Ski Way</street>
			<city>Incline Village</city>
			<state>NV</state>
			<zip>89451-01111</zip> <!-- zip is too long -->
		</address>
		<phone>775-832-1177</phone>
		<!-- missing maximum -->
		<base units="in" min="92"/>
		<lifts>4</lifts>

		<!-- impossible opening time -->
		<open>26:70</open>
		<close>16:00</close>
		<info xmlns:html="http://www.w3.org/1999/xhtml">
			<html:p>
			Lodging rates:
			</html:p>
			<html:table>
			<html:tr>
				<html:th>Room</html:th>
				<html:th>Price</html:th>
			</html:tr>
			<html:tr>
				<html:th align="center"><html:p>Single</html:p></html:th>
				<html:th><html:p>$49</html:p></html:th>
			</html:tr>
			<html:tr>
				<html:th align="center"><html:p>Double</html:p></html:th>
				<html:th><html:p>$59</html:p></html:th>
			</html:tr>
			</html:table>
		</info>
	</entry>
</ski-report>