ac3b308f5f32b386a00b9b448b4e8cfd89e69715
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

1) ## translation metadata
Roger Dingledine looks like we never set the...

Roger Dingledine authored 13 years ago

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

Andrew Lewman authored 13 years ago

3) # Translation-Priority: 3-low
4) 
Sebastian Hahn Remove the ANNOUNCE_RSS hac...

Sebastian Hahn authored 12 years ago

5) #include "head.wmi" TITLE="Tor Project: Donate to Tor" CHARSET="UTF-8"
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

6) <div id="content" class="clearfix">
Andrew Lewman commit my div hacking for n...

Andrew Lewman authored 13 years ago

7)   <div id="breadcrumbs">
Andrew Lewman change all of the breadcrum...

Andrew Lewman authored 13 years ago

8)     <a href="<page index>">Home &raquo; </a>
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

9)     <a href="<page donate/donate>">Donate</a>
10)   </div>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

11) <div id="maincol">
12)   <h1>Make A Donation</h1>
Andrew Lewman fix the donation links.

Andrew Lewman authored 13 years ago

13)    <p><strong>Your support is critical to our success.</strong> The
Roger Dingledine r25737 was a revert of r256...

Roger Dingledine authored 11 years ago

14)    Tor Project is a US 501(c)(3) non-profit dedicated to research,
15)    development, and education about online anonymity and privacy. Donations
Andrew Lewman fix the donation links.

Andrew Lewman authored 13 years ago

16)    to The Tor Project may be tax deductible to persons who are in the
17)    US; or who pay taxes in countries with reciprocity with the US on
Andrew Lewman link to our guidestar page...

Andrew Lewman authored 13 years ago

18)    charitable donations. Our tax ID
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

19)    number is 20-8096820. We are listed on <a
Andrew Lewman link to our guidestar page...

Andrew Lewman authored 13 years ago

20)    href="http://www2.guidestar.org/organizations/20-8096820/tor-project.aspx">GuideStar</a>.
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

21)    We're happy to accept donations via:</p>
22)   <ul class="hlist">
Andrew Lewman make the list of ways to do...

Andrew Lewman authored 12 years ago

23)     <li><a href="#paypal">Paypal</a></li>
24)     <li><a href="#amazon">Amazon Payments</a></li>
Andrew Lewman add dwolla donation option.

Andrew Lewman authored 11 years ago

25)     <li><a href="#dwolla">Dwolla</a></li>
Andrew Lewman make the list of ways to do...

Andrew Lewman authored 12 years ago

26)     <li><a href="#givv">Givv.org</a></li>
Andrew Lewman redirect bitcoin donations...

Andrew Lewman authored 12 years ago

27)     <li><a href="#cash">checks, money orders, bank transfers, stock
28)     grants, or other more sophisticated transactions</a></li>
29)     <li class="last"><a href="#bitcoin">bitcoin</a></li>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

30)   </ul>
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

31)     <p>Contact us at donations@torproject.org for more donation
32) details.</p>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

33) <!-- BEGIN PAYPAL -->
Andrew Lewman patches to download page to...

Andrew Lewman authored 12 years ago

34) <script type="text/javascript" src="$(DOCROOT)/js/jquery.min.js"></script>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

35) <script type="text/javascript">
36) function displayVals() {
37)       var t3 = jQuery('#t3').val();
38)       var amount = jQuery('#amount').val();
39) 		var radioVal = jQuery('input[@name="amount"]:checked').val();
40)       if(t3 != 0){
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

41)        if( !amount ) {
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

42) 		    jQuery('#a3').val(radioVal);
43) 		 }else{
44) 		    jQuery('#a3').val(amount);
45) 		 }
46) 	    jQuery('#p3').val(1);
47) 		 jQuery('#cmd').val('_xclick-subscriptions');
48) 		 jQuery('#item_name').val('Tor Project Membership');
49) 		 jQuery('#ppinfo').replaceWith('<small id="ppinfo">Requires a PayPal Account</small>');
50) 	  }else{
51)   	  	jQuery('#a3').val(0);
52) 	  	jQuery('#p3').val(0);
53) 		jQuery('#cmd').val('_donations');
54)    	jQuery('#item_name').val('Donation to the Tor Project');
55) 		jQuery('#ppinfo').replaceWith('<small id="ppinfo">Does Not Require a PayPal Account</small>');
56) 	  }
57) 	  if( !t3 ) {
58)       jQuery('#cmd').val('_donations');
59)    	jQuery('#item_name').val('Donation to the Tor Project');
60) 		jQuery('#ppinfo').replaceWith('<small id="ppinfo">Does Not Require a PayPal Account</small>');
61)      }
62) }
63) 
64) jQuery(function(){
65)  	jQuery("input[@name='amount']:checked").change(displayVals);
66)  	jQuery("#amount").change(displayVals);
67)  	jQuery("#t3").change(displayVals);
68)  	displayVals();
69) 
70) });
71) </script>
72) 
73)   <div class="hundred toptwenty">
74) 	<div class="dbox donate">
75)     <a name="paypal"></a>
76) 		<h3>Donate via PayPal</h3>
77) 	   <form id="donate" action="https://www.paypal.com/cgi-bin/webscr" method="post">
78) 		  <p class="type">
79) 			<label for="type">Donation Type:</label>
80) 			<select id="t3" name="t3">
81) 			 <option value="0">One-time Donation</option>
82) 			 <option value="M">Monthly Subscription</option>
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

83) 			</select>
84) 			<small id="ppinfo">Does Not Require a PayPal
85) Account</small>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

86) 		  </p>
87) 	      <div class="drow">
88) 	 		 <div>
89) 	        <span>
90) 		      <select name="currency_code" class="cur">
91) 			    <option value="USD" selected="selected">$</option>
92) 			    <option value="EUR">&euro;</option>
93) 			    <option value="GBP">&pound;</option>
94) 			    <option value="YEN">&yen;</option>
95) 			   </select>
96) 			  </span>
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

97) 			  <ul class="amounts">
Andrew Lewman Add cta-buttons.jpg, change...

Andrew Lewman authored 12 years ago

98) 		      <li><input type="radio" class="radio" name="amount" value="2000.00"><label for="2000">2000</label></li>
99) 	  	      <li><input type="radio" class="radio" name="amount" value="1000.00"><label for="1000">1000</label></li>
100) 		      <li><input type="radio" class="radio" name="amount" value="500.00"><label for="500">500</label></li>
101) 		      <li><input type="radio" class="radio" name="amount" value="250.00"><label for="250">250</label></li>
Andrew Lewman try an experiment in donati...

Andrew Lewman authored 11 years ago

102) 		      <li><input type="radio" class="radio" name="amount" value="100.00" checked="checked"><label for="100">100</label></li>
Andrew Lewman Add cta-buttons.jpg, change...

Andrew Lewman authored 12 years ago

103) 		      <li><input type="radio" class="radio" name="amount" value="50.00"><label for="50">50</label></li>
Andrew Lewman try an experiment in donati...

Andrew Lewman authored 11 years ago

104) 		      <li><input type="radio" class="radio" name="amount" value="20.00"><label for="20">20</label></li>
Andrew Lewman Add cta-buttons.jpg, change...

Andrew Lewman authored 12 years ago

105) 		      <li><input type="radio" class="radio" name="amount" value="10.00"><label for="10">10</label></li>
106) 		      <li><input type="radio" class="radio" name="amount" value="5.00"><label for="5">5</label></li>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

107) 		    </ul>
108) 		   </div>
109) 		   <div>
110) 		    <label for="custom">or enter a donation amount:</label><input type="text" id="amount" class="amount" name="amount">
Andrew Lewman update the paypal image, fi...

Andrew Lewman authored 11 years ago

111) 			 <input type="hidden" id="a3" name="a3" value="0">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

112) 			 <input class="donate-btn" type="submit" name="donate" value="Donate" alt="Subscribe to Tor with PayPal - it's fast, free and secure!">
113) 	       <!-- <input type="image" src="../images/btn_donateCC_LG.gif" name="submit" alt="Subscribe to Tor with PayPal - it's fast, free and secure!"> -->
114) 		   </div>
115) 		     <input type="hidden" id="p3" name="p3" value="1">
Sebastian Hahn We decided to go with HTML...

Sebastian Hahn authored 13 years ago

116) 		     <input type="hidden" name="sra" value="1">
117) 		     <input type="hidden" name="src" value="1">
118) 		     <input type="hidden" name="no_shipping" value="1">
119) 		     <input type="hidden" name="no_note" value="1">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

120) 		     <input type="hidden" id="cmd" name="cmd" value="_donations">
Sebastian Hahn We decided to go with HTML...

Sebastian Hahn authored 13 years ago

121) 		     <input type="hidden" name="business" value="donations@torproject.org">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

122) 		     <input type="hidden" id="item_name" name="item_name" value="Donation to the Tor Project">
Andrew Lewman update the paypal image, fi...

Andrew Lewman authored 11 years ago

123) 		     <input type="hidden" name="return" value="https://www.torproject.org/donate/thankyou">
124) 		     <input type="hidden" name="cancel_return" value="https://www.torproject.org/getinvolved/volunteer">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

125) 		  </div>
126) 	 </form>
127) 	</div>
128)   </div>
129) <!-- END PAYPAL -->
130)   <div class="hundred toptwenty">
131) <!-- BEGIN AMAZON -->
132)     <a name="amazon"></a>
133) 	 <div class="dbox dsmall">
134) 		<h3>Donate via Amazon Payments</h3>
135) 	    <form action="https://authorize.payments.amazon.com/pba/paypipeline" method="post">
136) 	      <div class="drow toppad">
137) 		    <div>
138) 		     <label for="amazon">&#x24;</label>
139) 		     <input type="text" name="amount" size="6" value="20">
Andrew Lewman fix the wml for imgroot.

Andrew Lewman authored 11 years ago

140) 			  <input class="donate-btn" type="image" src="$(IMGROOT)/golden_small_donate_withmsg_whitebg.gif">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

141) 		    </div>
142) 		    <input type="hidden" name="immediateReturn" value="1">
143) 		    <input type="hidden" name="collectShippingAddress" value="0">
144) 		    <input type="hidden" name="minimumDonationAmount" value="USD 5">
145) 		    <input type="hidden" name="isDonationWidget" value="1">
146) 		    <input type="hidden" name="description" value="Supporting Online Anonymity &amp; Privacy">
147) 		    <input type="hidden" name="amazonPaymentsAccountId" value="XGSROLNTXRNC3N1P4TXKMNK14LN1D6SZUD8SN1">
Andrew Lewman patches to download page to...

Andrew Lewman authored 12 years ago

148) 		    <input type="hidden" name="returnUrl" value="https://www.torproject.org/donate/thankyou.html">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

149) 		    <input type="hidden" name="processImmediate" value="1">
150) 		    <input type="hidden" name="cobrandingStyle" value="logo">
Andrew Lewman patches to download page to...

Andrew Lewman authored 12 years ago

151) 		    <input type="hidden" name="abandonUrl" value="https://www.torproject.org/donate/donate.html">
Andrew Lewman closer, yet still wrong.

Andrew Lewman authored 13 years ago

152) 		  </div>
Runa A. Sandvik minor changes to make po4a...

Runa A. Sandvik authored 13 years ago

153) 		</form>
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

154) 		<small>Requires an Amazon Account</small>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

155) 	 </div>
156) <!-- END AMAZON -->
Andrew Lewman add dwolla donation option.

Andrew Lewman authored 11 years ago

157) <!-- BEGIN DWOLLA -->
158)     <a id="dwolla"></a>
159)     <div class="dbox dsmall dwolla">
160)       <h3>Donate via Dwolla</h3>
161)       <p>Dwolla is a peer to peer payment platform which allows users to
162) exchange money quickly, safely, at a lower cost.</p>
163)       <p style="text-align:center;"><strong><a
Andrew Lewman fix an erroroneous space in...

Andrew Lewman authored 11 years ago

164) href="https://www.dwolla.com/hub/thetorproject">Continue to Dwolla
Andrew Lewman add dwolla donation option.

Andrew Lewman authored 11 years ago

165) &raquo;</a></strong></p>
166)     </div>
167) <!-- END DWOLLA -->
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

168) <!-- BEGIN GIVV -->
Andrew Lewman move the anchors inside the...

Andrew Lewman authored 12 years ago

169)     <a id="givv"></a>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

170)     <div class="dbox dsmall givv">
171)       <h3>Donate via Givv.org</h3>
Andrew Lewman redirect bitcoin donations...

Andrew Lewman authored 12 years ago

172)       <p>Givv.org is a new way to think about making your impact. Make
173)       one monthly donation. To as many nonprofits as you like. Automatic,
174)       one-click giving. <strong>You stay anonymous to Tor and stay in
175)       control!</strong></p>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

176) 	   <p style="text-align:center;"><strong><a href="http://givv.org/recipients/the-tor-project">Continue to Givv.org &raquo;</a></strong></p>
177)     </div>
178) <!-- END GIVV -->
179)    </div>
180) <!-- BEGIN CHECK -->
181)    <a id="cash"></a>
182)    <div class="hundred toptwenty">
183)      <div class="dbox donate">
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

184)        <h3>Donate via Check, Cash, Money Order, Bank Transfer</h3>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

185)        <h4>You can send checks or money orders to:</h4>
Sebastian Hahn We decided to go with HTML...

Sebastian Hahn authored 13 years ago

186) 	    <p>The Tor Project, Inc<br>
187)         969 Main Street, Suite 206<br>
Andrew Lewman strip the US banking info f...

Andrew Lewman authored 13 years ago

188)         Walpole, MA 02081-2972 USA</p>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

189) <!-- END CHECK -->
Andrew Lewman redirect bitcoin donations...

Andrew Lewman authored 12 years ago

190) <!-- BEGIN TRANSFER -->
191)     	<h3 style="margin-top:20px;">Donate via Wire or Bank Transfer</h3>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

192)         <h4>US Transfers</h4>
Andrew Lewman strip the US banking info f...

Andrew Lewman authored 13 years ago

193)         <p>For US donations via wire or ACH transfer, please contact us for the relevant information.</p>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

194)         <h4>European Transfers</h4>
Andrew Lewman clean up and close ticket 2...

Andrew Lewman authored 11 years ago

195) 	<p><em>For European bank transfers, we have an arrangement with
196)         <a href="https://www.ccc.de/">CCC in Germany</a> to provide
197)         tax-deductible donations for Europeans:</em></p>
Sebastian Hahn We decided to go with HTML...

Sebastian Hahn authored 13 years ago

198)         <p>Wau Holland Stiftung<br>
Roger Dingledine replay r22875 (make our ccc...

Roger Dingledine authored 13 years ago

199)         IBAN DE03 5204 0021 0277 281202<br>
200)         SWIFT BIC COBADEFF520</p>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

201)         <h4>Classic style German account information is:</h4>
202)         <p>Konto: 2772812-02<br>
Sebastian Hahn We decided to go with HTML...

Sebastian Hahn authored 13 years ago

203)         Inhaber: Wau Holland Stiftung<br>
204)         Bank: Commerzbank Kassel<br>
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

205)         BLZ: 52040021</p>
206)         <ul>
Andrew Lewman minor fix from rransom.

Andrew Lewman authored 13 years ago

207)           <li>Residents from any of the 31 <a
208)           href="http://en.wikipedia.org/wiki/Single_Euro_Payments_Area">SEPA</a>
209)           member states can wire up to 50.000 Euro at the cost of
210)           a domestic transaction (i.e., usually free if submitted
211)           electronically).</li>
Moritz Bartl Donations within Europe now...

Moritz Bartl authored 11 years ago

212)           <li>European citizens can make a charitable contribution that
213)           is tax-deductible to a certain degree (Germany: max 20% of total income).
214)           </li>
Andrew Lewman minor fix from rransom.

Andrew Lewman authored 13 years ago

215)           <li>Corporate entities can deduct donations up to 4/1000 of
216)           their combined turnovers, wages and salaries. WHS issues
217)           a donation receipt upon request (if provided with address
218)           information).</li>
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

219)         </ul>
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

220)      </div>
221)    </div>
222) <!-- END TRANSFER -->
Andrew Lewman redirect bitcoin donations...

Andrew Lewman authored 12 years ago

223) <!-- BEGIN BITCOIN -->
224)    <a id="bitcoin"></a>
225)    <div class="hundred toptwenty">
226)     <div class="dbox donate">
227)     <h3>Bitcoins</h3>
Andrew Lewman add riseup to the list.

Andrew Lewman authored 11 years ago

228)     <p>Instead of donating bitcoins to Tor, please consider a donation to
Andrew Lewman tails now takes bitcoins.

Andrew Lewman authored 11 years ago

229)     <a href="https://www.torservers.net/donate.html">Torservers.net</a>,
Roger Dingledine Noisetor has started tellin...

Roger Dingledine authored 10 years ago

230)     <a href="http://noisetor.net/#bitcoin">NoiseTor</a>,
Andrew Lewman tails now takes bitcoins.

Andrew Lewman authored 11 years ago

231)     or <a href="https://tails.boum.org/contribute/how/donate/#bitcoin">Tails</a>
Andrew Lewman add riseup to the list.

Andrew Lewman authored 11 years ago

232)     which will turn your bitcoin donation into a faster, larger Tor
233)     Network for all.</p>
Andrew Lewman redirect bitcoin donations...

Andrew Lewman authored 12 years ago

234)     </div>
235)    </div>
236) <!-- END BITCOIN -->
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

237) <!-- END MAINCOL -->
Andrew Lewman closer, yet still wrong.

Andrew Lewman authored 13 years ago

238) </div>
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

239)   <div id = "sidecol">
Andrew Lewman roll out new pages for dona...

Andrew Lewman authored 12 years ago

240) #include "side-donate.wmi"
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

241) #include "info.wmi"
242)   </div>
243)   <!-- END SIDECOL -->
244) <!-- END CONTENT -->
Andrew Lewman fix up the divs to make the...

Andrew Lewman authored 13 years ago

245) </div>