-- April 18 Thread
DTD
<?xml version="1.0" encoding="UTF-8"?>
<!ATTLIST weather_state raining CDATA "raining" cloudy CDATA "cloudy" partially_cloudy CDATA "Partially Cloudy" mainly_sunny CDATA "Mainly Sunny" sunny CDATA "Sunny">
<!ELEMENT temperature (degree, weather_state)>
<!ELEMENT degree (#PCDATA)>
<!ENTITY warm "Warm">
<!ENTITY hot "Hot">
<!ENTITY cool "Cool">
<!ENTITY scorching "Scorching">
<!ELEMENT weather_state (#PCDATA)>
XML
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE temperature SYSTEM "temperature.dtd">
<temperature>
<degree>&warm;</degree>
<weather_state sunny="true"></weather_state>
</temperature>
Possible URLs:
http://my-weather.com?weather_state=sunny&temperature=warm
http://my-weather.com?weather_state=raining&temperature=cool
http://my-weather.com?weather_state=sunny&temperature=scorching
DTD
<?xml version="1.0" encoding="UTF-8"?>
<!ATTLIST weather_state raining CDATA "raining" cloudy CDATA "cloudy" partially_cloudy CDATA "Partially Cloudy" mainly_sunny CDATA "Mainly Sunny" sunny CDATA "Sunny">
<!ELEMENT temperature (degree, weather_state)>
<!ELEMENT degree (#PCDATA)>
<!ENTITY warm "Warm">
<!ENTITY hot "Hot">
<!ENTITY cool "Cool">
<!ENTITY scorching "Scorching">
<!ELEMENT weather_state (#PCDATA)>
XML
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE temperature SYSTEM "temperature.dtd">
<temperature>
<degree>&warm;</degree>
<weather_state sunny="true"></weather_state>
</temperature>
Possible URLs:
http://my-weather.com?weather_state=sunny&temperature=warm
http://my-weather.com?weather_state=raining&temperature=cool
http://my-weather.com?weather_state=sunny&temperature=scorching