-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSZenMenuItems.js
58 lines (54 loc) · 1.8 KB
/
JSZenMenuItems.js
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
/* MENU STRUCTURE
item=['title', 'link', 'description', 'target','path_to_image_file', item, ..., item]
*/
/* fgfsmenu = menu([['home', '/']]); */
fgfsmenu = menu([
['Main', '/', 'Main Home Page', '_self', null,
['Home Page', '/'],
_split,
['Introduction', '/introduction.html'],
['Features', '/features.html'],
['Gallery v2.0', '/Gallery-v2.0/'],
_split,
['Announcements', '/announce.html'],
['Calendar', '/calendar.html'],
['Events', '/events.html']
],
['Get FlightGear',
['Download Central', '/Downloads/'],
_split,
[' Download Main Program', '/Downloads/binary.shtml'],
[' Download More Aircraft', '/Downloads/aircraft-2.0.0/'],
[' Download World Scenery', '/Downloads/scenery.html'],
[' Download Source Code', '/Downloads/source.shtml'],
_split,
['Purchase a DVD set', 'http://www.flightgear.org/dvd/'],
_split,
['Version Change Log', '/version.html'],
['Hardware Requirements', '/hardwarereq.html']
],
['Support',
['The Official Manual (html)', '/Docs/getstart/getstart.html'],
['Wiki Collaborative Documentation',
'http://wiki.flightgear.org/flightgear_wiki/index.php?title=Main_Page'],
['Frequently Asked Questions', '/Docs/FAQ.shtml'],
['Links to all Documentation', '/docs.html'],
['Mailing Lists, Forums, and IRC', '/mail.html']
],
['Links',
['Related Websites', '/links.html'],
['Related Projects', '/Projects/']
],
['Users',
['Live Multiplayer Map', 'http://mpmap02.flightgear.org'],
['Places to Fly', '/places.html']
],
['Developers',
['CVS Resource', '/cvs.html'],
['Source Code ', '/Downloads/source.shtml'],
['Goals/Wish list', '/goals.html'],
['Contributors', '/thanks.shtml'],
['Design Proposals', '/design.html']
],
['Search', '/search.html']
]);