akifbilal / networkpx

Automatically exported from code.google.com/p/networkpx
0 stars 1 forks source link

What is the proper XML syntax for control keys? #469

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
Expect to use control keys (e.g. Home, Left, PageUp).  Can't determine XML
syntax.

What version of the product are you using? On what operating system
(iPhone/iPod Touch? Firmware version?)?
iKeyEx 3; iPod Touch 2G; firmware 3.1.2

Please provide any additional information below.
Here is a small part of my plist:

<key>shiftedTexts</key>
<array>
<array>
<string><App></string>
<string><Left></string>
<string><Right></string>
<string><Up></string>
<string><Down></string>
<string><Home></string>
<string><End></string>
<string><PageUp></string>
<string><PageDown></string>
<string><Del></string>
</array>

What is wrong?  What should each control key be surrounded by?  (I am tired
of trial and error.)

Original issue reported on code.google.com by paul.w.palm@gmail.com on 12 Dec 2009 at 7:04

GoogleCodeExporter commented 8 years ago
You use < and > to escape the angle brackets. Read: 
http://en.wikipedia.org/wiki/XML#Escaping

Original comment by kennytm@gmail.com on 13 Dec 2009 at 2:32