Author: runa Date: 2011-03-27 17:55:22 +0000 (Sun, 27 Mar 2011) New Revision: 24462
Added: website/trunk/projects/ar/sidenav.wmi Log: adding sidenav.wmi for projects/ar so that the website can build
Added: website/trunk/projects/ar/sidenav.wmi =================================================================== --- website/trunk/projects/ar/sidenav.wmi (rev 0) +++ website/trunk/projects/ar/sidenav.wmi 2011-03-27 17:55:22 UTC (rev 24462) @@ -0,0 +1,55 @@ +#!/usr/bin/wml + +## translation metadata +# Revision: $Revision: 24436 $ +# Translation-Priority: 2-medium + +# this structure defines the side nav bar for the /projects pages +# and is the input for include/side.wmi + +# fields: +# +# name - the $WML_SRC_BASENAME of the file. It should uniquely identify the +# page because at build-time it is used to determine what view of the +# navigation menu to generate +# +# url - the path to the wml page, as used the the <page> tag. This tag ensures +# that links will point to the current language if supported, and alternately +# the english version +# +# txt - the link text to be displayed. Different translations will +# need to supply alternate txt + +<: + my $sidenav; + $sidenav = [ + {'url' => 'projects/projects', + 'txt' => 'Software & Services', + 'subelements' => [ + {'url' => 'torbutton/index', + 'txt' => 'TorButton', + }, + {'url' => 'projects/torbrowser', + 'txt' => 'Tor Browser Bundle', + }, + {'url' => 'projects/vidalia', + 'txt' => 'Vidalia', + }, + {'url' => 'projects/arm', + 'txt' => 'Arm', + }, + {'url' => 'https://guardianproject.info/apps/orbot/', + 'txt' => 'Orbot', + }, + {'url' => 'https://tails.boum.org/', + 'txt' => 'Tails', + }, + {'url' => 'http://torstatus.blutmagie.de/', + 'txt' => 'TorStatus', + }, + {'url' => 'https://metrics.torproject.org/', + 'txt' => 'Metrics Portal', + } + ] + }]; +:>
tor-commits@lists.torproject.org