XML Error, can't find

Chris S

Retired
Messages
2,055
Reaction score
1
Points
38
I have the following code below and when I try to run it, i get the error

Code:
XML Parsing Error: mismatched tag. Expected: </key>.
Location: http://localhost/ebook/index.xml
Line Number 242, Column 8:	    </dict>
--------------^

Code:
<dict>
	    <key>bundleIdentifier</key>
	      <string>org.brandonsgames.com</string>
	    <key>category</key>
	      <string>eBooks by Chris</string>
	    <key>contact</key>
	      <string>chrissterling.c@gmail.com</string>
	    <key>date</key>
	      <string>1195266946</string>
	    <key>description</key>
	      <string>"Fire shot from its open mouth, its eyes flashed and its muzzle, throat and neck were covered in flames. I could never have imagined anything as savage as the dark shape and the snarling face that charged out of that bank of fog. When Sir Charles Baskerville is found dead in peculiar circumstances, Sherlock Holmes and Dr. Watson are called to investigate. Does the death have anything to do with the terrifying hound said to haunt the Baskerville family? Holmes and Watson must risk their lives to solve the mystery.</string>
	    <key>location</key>
	      <string>http://www.brandonsgames.com/chriss/books/theHound.zip</string>
	    <key>maintainer</key>
	      <string>Chris Sterling</string>
	    <key>name</key>
	      <string>The Hound of the Baskervilles</string>
	    <key>scripts</key>
	    <dict>
	      <key>install</key>
	      <array>
	        <array>
	          <string>CopyPath</string>
	          <string>Book/</string>
	          <string>/var/root/Media/EBooks/The Hound of the Baskervilles</string>
	        </array>
	      </array>
	      <key>uninstall</key>
	      <array>
	        <array>
	          <string>RemovePath</string>
	          <string>/var/root/Media/EBooks/The Hound of the Baskervilles</string>
	        </array>
	      </array>
	      <key>update</key>
	      <array>
	        <array>
	          <string>CopyPath</string>
	          <string>Book/</string>
	          <string>/var/root/Media/EBooks/The Hound of the Baskervilles</string>
	        </array>
	      </array> 
	    </dict>
	    <key>size</key>
	      <string>250089</string>
	    <key>
	      <string>http://brandonsgames.com/chriss/theHound.php</string>
	    <key>version</key>
	      <string>1.0 FINAL</string>
	    </dict>

The entire code can be found here
 
Top