Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: pages/donate.html

Issue 29337834: #1683 - Fixed encoding of paypal donation form on adblockplus.org (Closed)
Patch Set: Added charset to default template and dynamically created form Created March 1, 2016, 1:29 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | templates/default.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 title=Donate to Adblock Plus 1 title=Donate to Adblock Plus
2 2
3 <head> 3 <head>
4 <style type="text/css"> 4 <style type="text/css">
5 h2 5 h2
6 { 6 {
7 padding-top: 20px; 7 padding-top: 20px;
8 border-top: 1px solid #ccc; 8 border-top: 1px solid #ccc;
9 } 9 }
10 10
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 "paypal": function() 309 "paypal": function()
310 { 310 {
311 if (verify(priceValue)) 311 if (verify(priceValue))
312 return; 312 return;
313 313
314 var recurrence = recurrenceValue.get({ 314 var recurrence = recurrenceValue.get({
315 "monthly": "M" 315 "monthly": "M"
316 }); 316 });
317 317
318 var fields = { 318 var fields = {
319 charset: "utf-8",
319 business: "till@adblockplus.org", 320 business: "till@adblockplus.org",
320 item_name: formValues.name, 321 item_name: formValues.name,
321 currency_code: currencyValue.get(), 322 currency_code: currencyValue.get(),
322 page_style: "paypal", 323 page_style: "paypal",
323 cpp_header_image: "https://adblockplus.org/paypal_header.png", 324 cpp_header_image: "https://adblockplus.org/paypal_header.png",
324 cpp_payflow_color: "F6F4EF", 325 cpp_payflow_color: "F6F4EF",
325 lc: langValue.get({ 326 lc: langValue.get({
326 "de": "DE", 327 "de": "DE",
327 "en": "US", 328 "en": "US",
328 "es": "ES", 329 "es": "ES",
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 </div> 546 </div>
546 <div id="recurrent-cancellation"> 547 <div id="recurrent-cancellation">
547 * {{s12 To cancel your monthly payment, click the link below that corres ponds to how you donated:}} 548 * {{s12 To cancel your monthly payment, click the link below that corres ponds to how you donated:}}
548 <ul> 549 <ul>
549 <li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_manage-paylist " target="_blank">{{s13 I donated with PayPal}}</a></li> 550 <li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_manage-paylist " target="_blank">{{s13 I donated with PayPal}}</a></li>
550 </ul> 551 </ul>
551 </div> 552 </div>
552 </div> 553 </div>
553 </div> 554 </div>
554 </form> 555 </form>
OLDNEW
« no previous file with comments | « no previous file | templates/default.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld