3f84840095bbc7640cd6a0c9ff30fbdd2c10b2d3
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

1) #!/usr/bin/wml
2) 
3) ## translation metadata
Roger Dingledine somewhere along the line we...

Roger Dingledine authored 13 years ago

4) # Revision: $Revision$
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

5) # Translation-Priority: 2-medium
6) 
Runa A. Sandvik fix comments in sidenav.wmi

Runa A. Sandvik authored 13 years ago

7) # this structure defines the side nav bar for the /projects pages
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

8) # and is the input for include/side.wmi
9) 
10) # fields:
11) #
12) # name - the $WML_SRC_BASENAME of the file. It should uniquely identify the
13) # page because at build-time it is used to determine what view of the
14) # navigation menu to generate
15) #
16) # url - the path to the wml page, as used the the <page> tag. This tag ensures
17) # that links will point to the current language if supported, and alternately
18) # the english version 
19) #
20) # txt - the link text to be displayed. Different translations will
21) # need to supply alternate txt 
22)  
23) <:
24)   my $sidenav;
25)   $sidenav = [
Andrew Lewman kill the dead project pages...

Andrew Lewman authored 13 years ago

26)       {'url'  => 'projects/projects',
27)        'txt'  => 'Software &amp; Services',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

28)        'subelements' => [
Andrew Lewman torbutton section builds cl...

Andrew Lewman authored 13 years ago

29)           {'url'  => 'torbutton/index',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

30)            'txt'  => 'TorButton',
Andrew Lewman make the sidenav work like...

Andrew Lewman authored 13 years ago

31)           },
32)           {'url' => 'projects/torbrowser',
33)            'txt' => 'Tor Browser Bundle',
34)           },
35)           {'url' => 'projects/vidalia',
36)            'txt' => 'Vidalia',
Damian Johnson Fixes sent to tor-assistant...

Damian Johnson authored 13 years ago

37)           },
38)           {'url'  => 'projects/arm',
Andrew Lewman make the sidenav work like...

Andrew Lewman authored 13 years ago

39)            'txt'  => 'Arm',
40)           },
Damian Johnson Fixing the projects page si...

Damian Johnson authored 13 years ago

41)           {'url'  => 'https://guardianproject.info/apps/orbot/',
42)            'txt'  => 'Orbot',
Andrew Lewman fix the order of torcheck a...

Andrew Lewman authored 13 years ago

43)           },
Damian Johnson Fixing the projects page si...

Damian Johnson authored 13 years ago

44)           {'url'  => 'https://tails.boum.org/',
45)            'txt'  => 'Tails',
Andrew Lewman create the gettor projects...

Andrew Lewman authored 13 years ago

46)           },
Damian Johnson Adding TorBirdy to the proj...

Damian Johnson authored 10 years ago

47)           {'url'  => 'https://trac.torproject.org/projects/tor/wiki/torbirdy',
48)            'txt'  => 'TorBirdy',
49)           },
Karsten Loesing Fix links and update projec...

Karsten Loesing authored 12 years ago

50)           {'url'  => 'projects/onionoo',
Karsten Loesing Turn TorStatus project page...

Karsten Loesing authored 12 years ago

51)            'txt'  => 'Onionoo',
Damian Johnson Fixing the projects page si...

Damian Johnson authored 13 years ago

52)           },
53)           {'url'  => 'https://metrics.torproject.org/',
54)            'txt'  => 'Metrics Portal',
Roger Dingledine add obfsproxy as a project

Roger Dingledine authored 12 years ago

55)           },
Roger Dingledine looks like nobody added tor...

Roger Dingledine authored 12 years ago

56)           {'url'  => 'https://cloud.torproject.org/',
57)            'txt'  => 'Tor Cloud',
Roger Dingledine add obfsproxy as a project

Roger Dingledine authored 12 years ago

58)           },
59)           {'url'  => 'projects/obfsproxy',
60)            'txt'  => 'Obfsproxy',
Andrew Lewman fix up the tor2web text, ad...

Andrew Lewman authored 12 years ago

61)           },
62)           {'url' => 'https://shadow.cs.umn.edu/',
63)            'txt' => 'Shadow',
64)           },
65)           {'url' => 'http://wiki.tor2web.org/',
66)            'txt' => 'Tor2Web',
Roger Dingledine looks like nobody added tor...

Roger Dingledine authored 12 years ago

67)           }
Damian Johnson Fixes sent to tor-assistant...

Damian Johnson authored 13 years ago

68)           ]
Andrew Lewman fix up projects sidenav, re...

Andrew Lewman authored 13 years ago

69)         }];