Encountered unknown ampersand-escape sequence

Hello,

I’ trying to find out what is meant by this message in DevonAgent while creating a new plugin.

The “original” next page looks like this and I wonder what I’m doing wrong:

So I created:


<string>http://www.ebay.de/sch/Uhren-Schmuck-/281/i.html?_from=R40&LH_ItemCondition=1000%7C1500&_nkw=_agentQuery_&_pgn=_agentOffset_&rt=nc</string>

It’s working when I replace the agentQuery and Offset with real terms:

http://www.ebay.de/sch/Uhren-Schmuck-/281/i.html?_from=R40&LH_ItemCondition=1000|1500&_nkw=Tiffany&_pgn=1&rt=nc

Plugin Beta:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>Description</key>
	<string>Durchsucht eBay Tiffany</string>
	<key>EngineUrl</key>
	<string>http://www.ebay.de/sch/Uhren-Schmuck-/281/i.html?_from=R40&LH_ItemCondition=1000%7C1500&_nkw=_agentQuery_&_pgn=_agentOffset_&rt=nc</string>
	<key>Identifier</key>
	<string>.ebay.de.tiffany</string>
	<key>Info</key>
	<string>eBay Plugin</string>
	<key>Keyword</key>
	<array>
		<string>ebay</string>
	</array>
	<key>LinksMatching</key>
	<string>*www.ebay.de/itm/*</string>
	<key>Name</key>
	<string>3 eBay Tiffany</string>
	<key>OffsetPerPage</key>
	<integer>1</integer>
	<key>Operators</key>
	<integer>0</integer>
	<key>ResultsPerPage</key>
	<integer>25</integer>
	<key>Start</key>
	<integer>1</integer>
	<key>Version</key>
	<string>1.0</string>
</dict>
</plist>

Just replace & with &


<string>http://www.ebay.de/sch/Uhren-Schmuck-/281/i.html?_from=R40&amp;LH_ItemCondition=1000%7C1500&amp;_nkw=_agentQuery_&amp;_pgn=_agentOffset_&amp;rt=nc</string>