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

Delta Between Two Patch Sets: mobile/android/app/mobile.js

Issue 29346916: Issue 3220 - FAQ and Privacy Policy links redirect to English site only (Closed)
Left Patch Set: Created June 22, 2016, 12:31 a.m.
Right Patch Set: Applying changes from code review Created Nov. 2, 2016, 10:08 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 /* This Source Code Form is subject to the terms of the Mozilla Public 1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 4
5 #filter substitution 5 #filter substitution
6 6
7 // For browser.xml binding 7 // For browser.xml binding
8 // 8 //
9 // cacheRatio* is a ratio that determines the amount of pixels to cache. The 9 // cacheRatio* is a ratio that determines the amount of pixels to cache. The
10 // ratio is multiplied by the viewport width or height to get the displayport's 10 // ratio is multiplied by the viewport width or height to get the displayport's
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang= %LOCALE%"); 480 pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang= %LOCALE%");
481 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); 481 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/");
482 #if MOZ_UPDATE_CHANNEL == aurora 482 #if MOZ_UPDATE_CHANNEL == aurora
483 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/au roranotes/"); 483 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/au roranotes/");
484 #elif MOZ_UPDATE_CHANNEL == beta 484 #elif MOZ_UPDATE_CHANNEL == beta
485 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%bet a/releasenotes/"); 485 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%bet a/releasenotes/");
486 #else 486 #else
487 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/re leasenotes/"); 487 pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/re leasenotes/");
488 #endif 488 #endif
489 489
490 // Changed URL. See https://issues.adblockplus.org/ticket/3220
490 pref("app.faqURL", "https://adblockplus.org/redirect?link=adblock_browser_androi d_faq&lang=%LOCALE%"); 491 pref("app.faqURL", "https://adblockplus.org/redirect?link=adblock_browser_androi d_faq&lang=%LOCALE%");
Felix Dahlke 2016/09/15 14:59:22 Since we're leaving the URLs above alone, we shoul
diegocarloslima 2016/10/21 13:37:43 Acknowledged.
491 492
492 // Name of alternate about: page for certificate errors (when undefined, default s to about:neterror) 493 // Name of alternate about: page for certificate errors (when undefined, default s to about:neterror)
493 pref("security.alternate_certificate_error_page", "certerror"); 494 pref("security.alternate_certificate_error_page", "certerror");
494 495
495 pref("security.warn_viewing_mixed", false); // Warning is disabled. See Bug 616 712. 496 pref("security.warn_viewing_mixed", false); // Warning is disabled. See Bug 616 712.
496 497
497 // Block insecure active content on https pages 498 // Block insecure active content on https pages
498 pref("security.mixed_content.block_active_content", true); 499 pref("security.mixed_content.block_active_content", true);
499 500
500 // Enable pinning 501 // Enable pinning
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 pref("identity.fxaccounts.remote.webchannel.uri", "https://accounts.firefox.com" ); 979 pref("identity.fxaccounts.remote.webchannel.uri", "https://accounts.firefox.com" );
979 980
980 // The remote URL of the Firefox Account profile server. 981 // The remote URL of the Firefox Account profile server.
981 pref("identity.fxaccounts.remote.profile.uri", "https://profile.accounts.firefox .com/v1"); 982 pref("identity.fxaccounts.remote.profile.uri", "https://profile.accounts.firefox .com/v1");
982 983
983 // The remote URL of the Firefox Account oauth server. 984 // The remote URL of the Firefox Account oauth server.
984 pref("identity.fxaccounts.remote.oauth.uri", "https://oauth.accounts.firefox.com /v1"); 985 pref("identity.fxaccounts.remote.oauth.uri", "https://oauth.accounts.firefox.com /v1");
985 986
986 // Token server used by Firefox Account-authenticated Sync. 987 // Token server used by Firefox Account-authenticated Sync.
987 pref("identity.sync.tokenserver.uri", "https://token.services.mozilla.com/1.0/sy nc/1.5"); 988 pref("identity.sync.tokenserver.uri", "https://token.services.mozilla.com/1.0/sy nc/1.5");
LEFTRIGHT

Powered by Google App Engine
This is Rietveld