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

Side by Side Diff: mobile/android/app/mobile.js

Issue 29602576: Issue 6015 - Give feedback is pointing to mozilla page (Closed)
Patch Set: Created Nov. 9, 2017, 9:19 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
OLDNEW
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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 // product URLs 482 // product URLs
483 // The breakpad report server to link to in about:crashes 483 // The breakpad report server to link to in about:crashes
484 pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); 484 pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/");
485 485
486 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930. 486 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930.
487 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblock_brows er_android_support&lang=%LOCALE%"); 487 pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblock_brows er_android_support&lang=%LOCALE%");
488 pref("app.supportURL", "https://support.mozilla.org/1/mobile/%VERSION%/%OS%/%LOC ALE%/mobile-help"); 488 pref("app.supportURL", "https://support.mozilla.org/1/mobile/%VERSION%/%OS%/%LOC ALE%/mobile-help");
489 // Changed URL. See https://issues.adblockplus.org/ticket/3220 489 // 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%"); 490 pref("app.faqURL", "https://adblockplus.org/redirect?link=adblock_browser_androi d_faq&lang=%LOCALE%");
491 491
492 // Changed Feedback URL. See https://issues.adblockplus.org/ticket/6015
492 // URL for feedback page 493 // URL for feedback page
493 // This should be kept in sync with the "feedback_link" string defined in string s.xml.in 494 // This should be kept in sync with the "feedback_link" string defined in string s.xml.in
494 // Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930. 495 pref("app.feedbackURL", "https://adblockplus.org/redirect?link=adblock_browser_a ndroid_beta_community");
495 pref("app.feedbackURL", "https://adblockbrowser.org/submit-feedback/");
496 496
497 // Changed URLs. See https://issues.adblockplus.org/ticket/3220 497 // Changed URLs. See https://issues.adblockplus.org/ticket/3220
498 pref("app.privacyURL", "https://adblockplus.org/redirect?link=privacy&lang=%LOCA LE%"); 498 pref("app.privacyURL", "https://adblockplus.org/redirect?link=privacy&lang=%LOCA LE%");
499 pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang= %LOCALE%"); 499 pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang= %LOCALE%");
500 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/"); 500 pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/");
501 #if MOZ_UPDATE_CHANNEL == aurora 501 #if MOZ_UPDATE_CHANNEL == aurora
502 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%/a uroranotes/"); 502 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%/a uroranotes/");
503 #elif MOZ_UPDATE_CHANNEL == beta 503 #elif MOZ_UPDATE_CHANNEL == beta
504 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%be ta/releasenotes/"); 504 pref("app.releaseNotesURL", "https://www.mozilla.com/%LOCALE%/mobile/%VERSION%be ta/releasenotes/");
505 #else 505 #else
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 #endif 941 #endif
942 942
943 pref("dom.audiochannel.audioCompeting", true); 943 pref("dom.audiochannel.audioCompeting", true);
944 pref("dom.audiochannel.mediaControl", true); 944 pref("dom.audiochannel.mediaControl", true);
945 945
946 // Space separated list of URLS that are allowed to send objects (instead of 946 // Space separated list of URLS that are allowed to send objects (instead of
947 // only strings) through webchannels. This list is duplicated in browser/app/pro file/firefox.js 947 // only strings) through webchannels. This list is duplicated in browser/app/pro file/firefox.js
948 pref("webchannel.allowObject.urlWhitelist", "https://accounts.firefox.com https: //content.cdn.mozilla.net https://input.mozilla.org https://support.mozilla.org https://install.mozilla.org"); 948 pref("webchannel.allowObject.urlWhitelist", "https://accounts.firefox.com https: //content.cdn.mozilla.net https://input.mozilla.org https://support.mozilla.org https://install.mozilla.org");
949 949
950 pref("media.openUnsupportedTypeWithExternalApp", true); 950 pref("media.openUnsupportedTypeWithExternalApp", true);
OLDNEW

Powered by Google App Engine
This is Rietveld