File: 1.plist

package info (click to toggle)
libplist 1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,240 kB
  • ctags: 343
  • sloc: ansic: 2,196; cpp: 951; makefile: 23; sh: 7; python: 1
file content (35 lines) | stat: -rw-r--r-- 803 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>Some ASCII string</key>
	<string></string>
	<key>Some UTF8 strings</key>
	<array>
		<string></string>
		<string></string>
		<string></string>
		<string></string>
		<string></string>
		<string></string>
		<string></string>
		<string></string>
		<string></string>
	</array>
	<key>Boolean</key>
	<false/>
	<key>Another Boolean</key>
	<true/>
	<key>Some Int</key>
	<integer></integer>
	<key>Some Real</key>
	<real></real>
	<key>Some Date</key>
	<date></date>
	<key>Some Data</key>
	<data>
	</data>
	<key>Some Entities</key>
	<string>hellow world &amp; others &lt;nodes&gt; are &quot;fun!?&apos;</string>
</dict>
</plist>