-
Notifications
You must be signed in to change notification settings - Fork 2
/
json_examples.txt
74 lines (73 loc) · 2.54 KB
/
json_examples.txt
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// $Id$
// Copyright (c) 2008 by Brian Manning <elspicyjack at gmail dot com>
// - these comments will most likely be stripped out of the parsed file
// - valid JavaScript syntax is what we're looking for here
// - don't get sloppy with punctionation like you can in perl; no extra commas
// after closing brackets/braces for example
// {
// "osname1": {
// "/first/path/on/filesystem": [
// "program1",
// "program2"
// ],
// "/second/path/on/filesystem": [
// "program1",
// "program2"
// ]
// },
// "osname2": {
// "/first/path/on/filesystem": [
// "program1",
// "program2"
// ]
// }
// }
// begin mapping of example files to platform
{
"MSWin32": {
"C:/perl/5.8.8/examples/Gnome2-Canvas": [ "canvas.pl" ],
"C:/perl/5.8.8/examples/Gtk2": [ "program1.pl" ],
"C:/perl/5.8.8/examples/Gtk2-Demo": [ "program1.pl" ],
"C:/perl/5.8.8/examples/": [
"gyroscope.pl",
"perl_swiss_army_knife.pl"
]
},
"cygwin": {
"/bin": [ "win32-gui-demos.pl" ],
"/usr/bin": [ "widget" ],
"/lib/perl5/vendor_perl/5.8/cygwin/Win32/GUI/demos": [
"program1.pl"
]
},
"linux": {
"/usr/bin": [ "widget" ],
"/home/demo/examples": [
"gyroscope.pl",
"perl_swiss_army_knife.pl"
],
"/home/demo/examples/Gnome2-Canvas": [ "canvas.pl" ],
"/home/demo/examples/Gtk2": [ "program1.pl" ],
"/home/demo/examples/Gtk2-Demo": [ "program1.pl" ],
"/usr/share/doc/libsdl-perl/test": [ "testmenu.pl" ],
"/usr/share/doc/libqt-perl/examples/dclock": [ "dclock.pl" ],
"/usr/share/doc/libqt-perl/examples/buttongroups": [
"buttongroups.pl"
],
"/home/demo/examples/UI-Dialog": [ "ascii.pl", "console.pl",
"gdialog.pl", "whiptail.pl", "xdialog.pl", "zenity.pl" ]
},
"darwin": {
"/opt/local/bin": [ "widget" ],
"/Users/brian/Files/Windows_Software/Gtk2Perl/examples": [
"gyroscope.pl",
"perl_swiss_army_knife.pl"
],
"/Users/brian/Files/Windows_Software/Gtk2Perl/examples/Gnome2-Canvas":
[ "canvas.pl" ],
"/Users/brian/Files/Windows_Software/Gtk2Perl/examples/Gtk2":
[ "program1.pl" ],
"/Users/brian/Files/Windows_Software/Gtk2Perl/examples/Gtk2-Demo":
[ "program1.pl" ]
}
} // fin vim: filetype=javascript