summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKohei Yoshino <kohei.yoshino@gmail.com>2017-12-02 16:43:46 +0100
committerDylan William Hardison <dylan@hardison.net>2017-12-02 16:43:46 +0100
commit46bcb831b9e32f825fef459b52bc12ceb3d7a7b3 (patch)
treec7c51335a074f1ec47ca377ba5537e4e173f1db0
parent19c3c22d1c4615cff0016cc7ea5efbcdd9e69294 (diff)
downloadbugzilla-46bcb831b9e32f825fef459b52bc12ceb3d7a7b3.tar.gz
bugzilla-46bcb831b9e32f825fef459b52bc12ceb3d7a7b3.tar.xz
Bug 1417980 - Fix non-HTTPS links and outdated links where possible
-rw-r--r--Bugzilla/Constants.pm2
-rw-r--r--Bugzilla/DB/Schema.pm4
-rw-r--r--Bugzilla/Extension.pm8
-rw-r--r--Bugzilla/Template/Plugin/Hook.pm2
-rw-r--r--Bugzilla/WebService/Server/JSONRPC.pm2
-rw-r--r--Bugzilla/WebService/Server/XMLRPC.pm2
-rwxr-xr-xchecksetup.pl2
-rw-r--r--docs/en/rst/about/index.rst4
-rw-r--r--docs/en/rst/integrating/apis.rst4
-rw-r--r--docs/en/rst/integrating/auth-delegation.rst2
-rw-r--r--docs/en/rst/integrating/extensions.rst4
-rw-r--r--docs/en/rst/integrating/languages.rst2
-rw-r--r--docs/en/rst/integrating/templates.rst2
-rw-r--r--docs/en/rst/using/tips.rst4
-rw-r--r--extensions/BMO/template/en/default/account/create.html.tmpl20
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-client-bounty.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-doc.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-ipc.html.tmpl6
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-poweredby.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-trademark.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-web-bounty.html.tmpl4
-rw-r--r--extensions/BMO/template/en/default/bug/create/user-message.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/global/choose-product.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/hook/attachment/createformcontents-patch_notes.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/hook/global/user-error.html.tmpl/auth_failure/permissions.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/pages/bug-writing.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/pages/etiquette.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/pages/upgrade-3.6.html.tmpl4
-rw-r--r--extensions/BMO/template/en/default/pages/user_activity.html.tmpl2
-rw-r--r--extensions/GuidedBugEntry/template/en/default/guided/guided.html.tmpl14
-rw-r--r--extensions/GuidedBugEntry/web/js/products.js8
-rw-r--r--extensions/MozReview/template/en/default/hook/attachment/create-before_form.html.tmpl2
-rw-r--r--extensions/REMO/template/en/default/bug/create/create-mozreps.html.tmpl2
-rw-r--r--extensions/SecureMail/template/en/default/pages/securemail/help.html.tmpl4
-rw-r--r--extensions/Splinter/template/en/default/pages/splinter.html.tmpl2
-rw-r--r--extensions/Splinter/template/en/default/pages/splinter/help.html.tmpl2
-rw-r--r--extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl2
-rw-r--r--qa/t/lib/QA/Tests.pm2
-rw-r--r--qa/t/webservice_bug_get.t4
-rw-r--r--qa/t/webservice_group_create.t2
-rw-r--r--template/en/default/admin/params/advanced.html.tmpl2
-rw-r--r--template/en/default/admin/params/dependencygraph.html.tmpl2
-rw-r--r--template/en/default/admin/params/editparams.html.tmpl2
-rw-r--r--template/en/default/admin/params/patchviewer.html.tmpl4
-rw-r--r--template/en/default/bug/activity/table.html.tmpl2
-rw-r--r--template/en/default/bug/create/create-guided.html.tmpl4
-rw-r--r--template/en/default/bug/create/user-message.html.tmpl2
-rw-r--r--template/en/default/bug/new_bug.html.tmpl2
-rw-r--r--template/en/default/index.html.tmpl2
-rw-r--r--template/en/default/pages/release-notes.html.tmpl38
-rw-r--r--template/en/default/pages/release-notes3.html.tmpl66
-rw-r--r--template/en/default/search/search-google.html.tmpl2
-rw-r--r--template/en/default/setup/strings.txt.pl2
53 files changed, 131 insertions, 143 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index 9c8f39b4a..37917d305 100644
--- a/Bugzilla/Constants.pm
+++ b/Bugzilla/Constants.pm
@@ -213,7 +213,7 @@ sub BUGZILLA_VERSION {
# A base link to the current REST Documentation. We place it here
# as it will need to be updated to whatever the current release is.
-use constant REST_DOC => "http://www.bugzilla.org/docs/tip/en/html/api/";
+use constant REST_DOC => "https://bugzilla.readthedocs.io/en/latest/api/";
# Location of the remote and local XML files to track new releases.
use constant REMOTE_FILE => 'http://updates.bugzilla.org/bugzilla-update.xml';
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index 7448d8878..0464466af 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -79,7 +79,7 @@ Bugzilla::DB.
If this is your first time looking at Schema.pm, especially if
you are making changes to the database, please take a look at
-L<http://www.bugzilla.org/docs/developer.html#sql-schema> to learn
+L<https://www.bugzilla.org/docs/developer.html#sql-schema> to learn
more about how this integrates into the rest of Bugzilla.
=cut
@@ -3179,6 +3179,6 @@ database-specific basis:
L<Bugzilla::DB>
-L<http://www.bugzilla.org/docs/developer.html#sql-schema>
+L<https://www.bugzilla.org/docs/developer.html#sql-schema>
=cut
diff --git a/Bugzilla/Extension.pm b/Bugzilla/Extension.pm
index 7e53d87f3..baf2286e1 100644
--- a/Bugzilla/Extension.pm
+++ b/Bugzilla/Extension.pm
@@ -325,7 +325,7 @@ L<Bugzilla/input_params>.
If you need a new hook for your extension and you want that hook to be
added to Bugzilla itself, see our development process at
-L<http://wiki.mozilla.org/Bugzilla:Developers>.
+L<https://wiki.mozilla.org/Bugzilla:Developers>.
In order for a new hook to be accepted into Bugzilla, it has to work,
it must have documentation in L<Bugzilla::Hook>, and it must have example
@@ -618,7 +618,7 @@ return C<0> or some false value.
If you've made an extension and you want to publish it, the first
thing you'll want to do is package up your extension's code and
then put a link to it in the appropriate section of
-L<http://wiki.mozilla.org/Bugzilla:Addons>.
+L<https://wiki.mozilla.org/Bugzilla:Addons>.
=head2 Distributing on CPAN
@@ -628,7 +628,7 @@ distribute your Bugzilla Extension through CPAN.
The details of making a standard CPAN module are too much to
go into here, but a lot of it is covered in L<perlmodlib>
-and on L<http://www.cpan.org/> among other places.
+and on L<https://www.cpan.org/> among other places.
When you distribute your extension via CPAN, your F<Extension.pm>
should simply install itself as F<Bugzilla/Extension/Foo.pm>,
@@ -659,7 +659,7 @@ uses extensions.
If you are an extension author and you'd like some assistance from other
extension authors or the Bugzilla development team, you can use the
-normal support channels described at L<http://www.bugzilla.org/support/>.
+normal support channels described at L<https://www.bugzilla.org/support/>.
=head1 ADDITIONAL CONSTANTS
diff --git a/Bugzilla/Template/Plugin/Hook.pm b/Bugzilla/Template/Plugin/Hook.pm
index 981a1ab53..a2b76a80f 100644
--- a/Bugzilla/Template/Plugin/Hook.pm
+++ b/Bugzilla/Template/Plugin/Hook.pm
@@ -149,4 +149,4 @@ Output from processing template extension.
L<Template::Plugin>
-L<http://wiki.mozilla.org/Bugzilla:Writing_Extensions>
+L<https://bugzilla.readthedocs.io/en/latest/integrating/extensions.html>
diff --git a/Bugzilla/WebService/Server/JSONRPC.pm b/Bugzilla/WebService/Server/JSONRPC.pm
index 0fb8b4299..0bd7b4648 100644
--- a/Bugzilla/WebService/Server/JSONRPC.pm
+++ b/Bugzilla/WebService/Server/JSONRPC.pm
@@ -527,7 +527,7 @@ JSON-RPC response.
When calling the JSON-RPC WebService over GET, you can use the "JSONP"
method of doing cross-domain requests, if you want to access the WebService
directly on a web page from another site. JSONP is described at
-L<http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/>.
+L<https://bob.ippoli.to/archives/2005/12/05/remote-json-jsonp/>.
To use JSONP with Bugzilla's JSON-RPC WebService, simply specify a
C<callback> parameter to jsonrpc.cgi when using it via GET as described above.
diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm
index f5a31b30e..fce865e88 100644
--- a/Bugzilla/WebService/Server/XMLRPC.pm
+++ b/Bugzilla/WebService/Server/XMLRPC.pm
@@ -422,7 +422,7 @@ returned>.
nil is implemented by XMLRPC::Lite, in XMLRPC::Deserializer::decode_value
in the CPAN SVN since 14th Dec 2008
-L<http://rt.cpan.org/Public/Bug/Display.html?id=20569> and in Fedora's
+L<https://rt.cpan.org/Public/Bug/Display.html?id=20569> and in Fedora's
perl-SOAP-Lite package in versions 0.68-1 and above.
=end private
diff --git a/checksetup.pl b/checksetup.pl
index 1b4df3c2f..cd973f5c7 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -500,7 +500,7 @@ format.
If you'd like to know how to make changes to the datbase, see
the information in the Bugzilla Developer's Guide, at:
-L<http://www.bugzilla.org/docs/developer.html#sql-schema>
+L<https://www.bugzilla.org/docs/developer.html#sql-schema>
Also see L<Bugzilla::DB/"Schema Modification Methods"> and
L<Bugzilla::DB/"Schema Information Methods">.
diff --git a/docs/en/rst/about/index.rst b/docs/en/rst/about/index.rst
index 239c6ecea..cdcea4d15 100644
--- a/docs/en/rst/about/index.rst
+++ b/docs/en/rst/about/index.rst
@@ -10,7 +10,7 @@ that tracks millions of bugs and issues for thousands of organizations around
the world.
The most current version of this document can always be found on the
-`Bugzilla website <http://www.bugzilla.org/docs/>`_.
+`Bugzilla website <https://www.bugzilla.org/docs/>`_.
.. _evaluating:
@@ -36,7 +36,7 @@ Google Group. Please
first, and then ask your question there.
If you need a guaranteed response, commercial support is
-`available <http://www.bugzilla.org/support/consulting.html>`_ for Bugzilla
+`available <https://www.bugzilla.org/support/consulting.html>`_ for Bugzilla
from a number of people and organizations.
.. _conventions:
diff --git a/docs/en/rst/integrating/apis.rst b/docs/en/rst/integrating/apis.rst
index 6067c12df..a02bc1a21 100644
--- a/docs/en/rst/integrating/apis.rst
+++ b/docs/en/rst/integrating/apis.rst
@@ -24,7 +24,7 @@ XML-RPC
=======
Bugzilla has an `XML-RPC API
-<http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService/Server/XMLRPC.html>`_.
+<https://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService/Server/XMLRPC.html>`_.
This will receive no further updates and will be removed in a future version
of Bugzilla.
@@ -34,7 +34,7 @@ JSON-RPC
========
Bugzilla has a `JSON-RPC API
-<http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService/Server/JSONRPC.html>`_.
+<https://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService/Server/JSONRPC.html>`_.
This will receive no further updates and will be removed in a future version
of Bugzilla.
diff --git a/docs/en/rst/integrating/auth-delegation.rst b/docs/en/rst/integrating/auth-delegation.rst
index bff460e4a..325f802a8 100644
--- a/docs/en/rst/integrating/auth-delegation.rst
+++ b/docs/en/rst/integrating/auth-delegation.rst
@@ -14,7 +14,7 @@ The authentication process begins by directing the user to th the Bugzilla site'
For the sake of this example, our application's URL is `http://app.example.org`
and the Bugzilla site is `http://bugzilla.mozilla.org`.
-1. Provide a link or redirect the user to `http://bugzilla.mozilla.org/auth.cgi?callback=http://app.example.org/callback&description=app%description`
+1. Provide a link or redirect the user to `https://bugzilla.mozilla.org/auth.cgi?callback=http://app.example.org/callback&description=app%description`
2. Assuming the user is agreeable, the following will happen:
1. Bugzilla will issue a POST request to `http://app.example.org/callback`
with a the request body data being a JSON object with keys `client_api_key` and `client_api_login`.
diff --git a/docs/en/rst/integrating/extensions.rst b/docs/en/rst/integrating/extensions.rst
index 18c5341d3..50f204746 100644
--- a/docs/en/rst/integrating/extensions.rst
+++ b/docs/en/rst/integrating/extensions.rst
@@ -12,7 +12,7 @@ written by other people on our wiki. You would need to
make sure that the extension in question works with your version of Bugzilla.
Or, you can write your own extension. See the `Bugzilla Extension
-documentation <http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/Extension.html>`_
+documentation <https://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/Extension.html>`_
for the core documentation on how to do that. It would make sense to read
the section on :ref:`templates`. There is also a sample extension in
:file:`$BUGZILLA_HOME/extensions/Example/` which gives examples of how to
@@ -184,7 +184,7 @@ bugs, except to comment and add themselves to the CC list.
Because this kind of change is such a common request, we have added a
specific hook for it that :ref:`extensions` can call. It's called
``bug_check_can_change_field``, and it's documented `in the Hooks
-documentation <http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/Hook.html#bug_check_can_change_field>`_.
+documentation <https://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/Hook.html#bug_check_can_change_field>`_.
Checking Syntax
===============
diff --git a/docs/en/rst/integrating/languages.rst b/docs/en/rst/integrating/languages.rst
index 01586d3fe..4d087a721 100644
--- a/docs/en/rst/integrating/languages.rst
+++ b/docs/en/rst/integrating/languages.rst
@@ -12,7 +12,7 @@ choice will override the ``Accept-Language`` header.
Many language templates can be obtained from
`the localization section of the Bugzilla website
-<http://www.bugzilla.org/download.html#localizations>`_. Instructions
+<https://www.bugzilla.org/download.html#localizations>`_. Instructions
for submitting new languages are also available from that location. There's
also a `list of localization teams
<https://wiki.mozilla.org/Bugzilla:L10n:Localization_Teams>`_; you might
diff --git a/docs/en/rst/integrating/templates.rst b/docs/en/rst/integrating/templates.rst
index f30b4a848..b477a9553 100644
--- a/docs/en/rst/integrating/templates.rst
+++ b/docs/en/rst/integrating/templates.rst
@@ -92,7 +92,7 @@ How To Edit Templates
.. note:: If you are making template changes that you intend on submitting
back for inclusion in standard Bugzilla, you should read the relevant
sections of the
- `Developers' Guide <http://www.bugzilla.org/docs/developer.html>`_.
+ `Developers' Guide <https://www.bugzilla.org/docs/developer.html>`_.
Bugzilla uses a templating system called Template Toolkit. The syntax of the
language is beyond the scope of this guide. It's reasonably easy to pick up by
diff --git a/docs/en/rst/using/tips.rst b/docs/en/rst/using/tips.rst
index 34274f728..53516a854 100644
--- a/docs/en/rst/using/tips.rst
+++ b/docs/en/rst/using/tips.rst
@@ -13,8 +13,8 @@ Bugzilla comments are plain text - so typing <U> will
produce less-than, U, greater-than rather than underlined text.
However, Bugzilla will automatically make hyperlinks out of certain
sorts of text in comments. For example, the text
-``http://www.bugzilla.org`` will be turned into a link:
-`<http://www.bugzilla.org>`_.
+``https://www.bugzilla.org`` will be turned into a link:
+`<https://www.bugzilla.org>`_.
Other strings which get linkified in the obvious manner are:
+ bug 12345
diff --git a/extensions/BMO/template/en/default/account/create.html.tmpl b/extensions/BMO/template/en/default/account/create.html.tmpl
index 0c742c7f1..29eb40244 100644
--- a/extensions/BMO/template/en/default/account/create.html.tmpl
+++ b/extensions/BMO/template/en/default/account/create.html.tmpl
@@ -83,31 +83,19 @@ function onSubmit() {
[% INCLUDE product
icon = "firefox"
name = "Firefox Support"
- url = "http://support.mozilla.com/"
+ url = "https://support.mozilla.org/"
desc = "Support for the Firefox web browser."
%]
[% INCLUDE product
- icon = "firefox"
- name = "Firefox for Mobile Support"
- url = "http://support.mozilla.com/mobile"
- desc = "Support for the Firefox Mobile web browser."
- %]
- [% INCLUDE product
icon = "thunderbird"
name = "Thunderbird Support"
- url = "http://www.mozillamessaging.com/support/"
+ url = "https://support.mozilla.org/products/thunderbird"
desc = "Support for Thunderbird email client."
%]
[% INCLUDE product
- icon = "other"
- name = "Support for other products"
- url = "http://www.mozilla.org/projects/"
- desc = "Support for products not listed here."
- %]
- [% INCLUDE product
icon = "input"
name = "Feedback"
- url = "http://input.mozilla.com/feedback"
+ url = "https://input.mozilla.org/feedback"
desc = "Report issues with a web site that you use, or provide quick feedback for Firefox."
%]
</table>
@@ -125,7 +113,7 @@ function onSubmit() {
<ol>
<li>
Please read our
- <a href="https://developer.mozilla.org/en/Bug_writing_guidelines" target="_blank">[% terms.Bug %] Writing Guidelines</a>.
+ <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines" target="_blank">[% terms.Bug %] Writing Guidelines</a>.
</li>
<li>
[% terms.Bugzilla %] is a public place. Your comments and other activities
diff --git a/extensions/BMO/template/en/default/bug/create/create-client-bounty.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-client-bounty.html.tmpl
index 333bf634a..5d9d20be8 100644
--- a/extensions/BMO/template/en/default/bug/create/create-client-bounty.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-client-bounty.html.tmpl
@@ -157,7 +157,7 @@ function validateAndSubmit() {
How was this issue discovered, include the steps, tools, Firefox version,
operating system version, or other information that will help reproduce and
diagnose the issue. A good primer on what to include can be found
- <a href="https://developer.mozilla.org/en-US/docs/Mozilla/QA">here</a>.
+ <a href="https://developer.mozilla.org/docs/Mozilla/QA">here</a>.
</div>
<textarea required id="comment" name="comment" cols="80" rows="5"></textarea>
</div>
diff --git a/extensions/BMO/template/en/default/bug/create/create-doc.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-doc.html.tmpl
index 0ee909005..ed4b795b7 100644
--- a/extensions/BMO/template/en/default/bug/create/create-doc.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-doc.html.tmpl
@@ -155,7 +155,7 @@ function validateAndSubmit() {
multiple => 5
%]
<br>
- <a href="https://developer.mozilla.org/en-US/docs/Project:Subject-matter_experts"
+ <a href="https://developer.mozilla.org/docs/Project:Subject-matter_experts"
target="_blank" id="common_topic_experts">
List of common topic experts</a>
</td>
diff --git a/extensions/BMO/template/en/default/bug/create/create-ipc.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-ipc.html.tmpl
index 7be2214b2..e32ba62dc 100644
--- a/extensions/BMO/template/en/default/bug/create/create-ipc.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-ipc.html.tmpl
@@ -167,7 +167,7 @@ $(document).ready(function() {
</div>
<p>
- If you would like your snippet to include a link, please tag it by using the URL builder <a href="http://bit.ly/1JOgDr1">(http://bit.ly/1JOgDr1)</a> and following the steps below:
+ If you would like your snippet to include a link, please tag it by using the URL builder <a href="https://bit.ly/1JOgDr1">(https://bit.ly/1JOgDr1)</a> and following the steps below:
</p>
<img src="extensions/BMO/web/images/ipc_form_buildscreen.png" style = "width:50%"><br><br>
<div class="row">
@@ -180,7 +180,7 @@ $(document).ready(function() {
</div>
<p>
- Please reference the Mozilla In-Product Messaging Calendar for available dates. <a href="http://bit.ly/2aZ3w9c"> http://bit.ly/2aZ3w9c</a>
+ Please reference the Mozilla In-Product Messaging Calendar for available dates. <a href="https://bit.ly/2aZ3w9c"> https://bit.ly/2aZ3w9c</a>
</p>
<div class="row">
@@ -207,7 +207,7 @@ $(document).ready(function() {
<div class="row_desc">
<strong>Will you be able to provide the following assets for your snippet? Check all that apply.</strong><br>
Feel free to look at our existing icon library:
- <a href="http://bit.ly/2efXaFo">http://bit.ly/2efXaFo</a>
+ <a href="https://bit.ly/2efXaFo">https://bit.ly/2efXaFo</a>
</div>
<input type="checkbox" name="snippet_assets" id="copy" value="Copy">
<label for="copy">Copy</label><br>
diff --git a/extensions/BMO/template/en/default/bug/create/create-poweredby.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-poweredby.html.tmpl
index f4dcede93..d6243c73b 100644
--- a/extensions/BMO/template/en/default/bug/create/create-poweredby.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-poweredby.html.tmpl
@@ -29,7 +29,7 @@
[% USE Bugzilla %]
-<p>If you are interested in using the <a href="http://www.mozilla.org/poweredby">Powered by Mozilla logo</a>,
+<p>If you are interested in using the <a href="https://www.mozilla.org/about/powered-by/">Powered by Mozilla logo</a>,
please provide some information about your application or product.</p>
<p><strong>Please use this form for Powered by Mozilla logo requests only.</strong></p>
diff --git a/extensions/BMO/template/en/default/bug/create/create-trademark.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-trademark.html.tmpl
index 977ad00d4..90da895b2 100644
--- a/extensions/BMO/template/en/default/bug/create/create-trademark.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-trademark.html.tmpl
@@ -31,7 +31,7 @@
<p>
If, after reading
- <a href="http://www.mozilla.org/foundation/trademarks/">the trademark policy
+ <a href="https://www.mozilla.org/foundation/trademarks/">the trademark policy
documents</a>, you know you need permission to use a certain trademark, this
is the place to be.
</p>
diff --git a/extensions/BMO/template/en/default/bug/create/create-web-bounty.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-web-bounty.html.tmpl
index 0be58f813..2446bbd2b 100644
--- a/extensions/BMO/template/en/default/bug/create/create-web-bounty.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-web-bounty.html.tmpl
@@ -88,7 +88,7 @@ function validateAndSubmit() {
<input type="hidden" name="token" value="[% token FILTER html %]">
<div class="head_desc">
- <a href="https://developer.mozilla.org/en-US/docs/Mozilla/QA/Bug_writing_guidelines?redirectlocale=en-US&redirectslug=Bug_writing_guidelines">
+ <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">
[% terms.Bug %] writing guidelines</a>
</div>
@@ -106,7 +106,7 @@ function validateAndSubmit() {
<div class="field_desc">
How was this issue discovered, include the steps, tools or other information that
will help reproduce and diagnose the issue. A good primer on what to include can
- be found <a href="https://developer.mozilla.org/en-US/docs/Mozilla/QA">here</a>.
+ be found <a href="https://developer.mozilla.org/docs/Mozilla/QA">here</a>.
</div>
<textarea id="comment" name="comment" cols="80" rows="5"></textarea>
</div>
diff --git a/extensions/BMO/template/en/default/bug/create/user-message.html.tmpl b/extensions/BMO/template/en/default/bug/create/user-message.html.tmpl
index e01ac4845..6ecd0bc75 100644
--- a/extensions/BMO/template/en/default/bug/create/user-message.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/user-message.html.tmpl
@@ -17,7 +17,7 @@
[% END +%]
[% UNLESS no_bug_guidelines %]
Before reporting a [% terms.bug %], make sure you've read our
- <a href="https://developer.mozilla.org/en/Bug_writing_guidelines">
+ <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">
[% terms.bug %] writing guidelines</a> and double checked that your [% terms.bug %] hasn't already
been reported. Consult our list of <a href="https://bugzilla.mozilla.org/duplicates.cgi">
most frequently reported [% terms.bugs %]</a> and <a href="https://bugzilla.mozilla.org/query.cgi">
diff --git a/extensions/BMO/template/en/default/global/choose-product.html.tmpl b/extensions/BMO/template/en/default/global/choose-product.html.tmpl
index ac545d14e..5f46c31e1 100644
--- a/extensions/BMO/template/en/default/global/choose-product.html.tmpl
+++ b/extensions/BMO/template/en/default/global/choose-product.html.tmpl
@@ -50,7 +50,7 @@
<hr>
<p>
Looking for technical support or help getting your site to work with Mozilla?
- <a href="http://www.mozilla.org/support/">Visit the mozilla.org support page</a>
+ <a href="https://support.mozilla.org/">Visit the mozilla.org support page</a>
before filing [% terms.bugs %].
</p>
<hr>
diff --git a/extensions/BMO/template/en/default/hook/attachment/createformcontents-patch_notes.html.tmpl b/extensions/BMO/template/en/default/hook/attachment/createformcontents-patch_notes.html.tmpl
index ea80fdc5e..92b29667b 100644
--- a/extensions/BMO/template/en/default/hook/attachment/createformcontents-patch_notes.html.tmpl
+++ b/extensions/BMO/template/en/default/hook/attachment/createformcontents-patch_notes.html.tmpl
@@ -1 +1 @@
-<em>You can <a href="http://developer.mozilla.org/en/docs/Getting_your_patch_in_the_tree">read about the patch submission and approval process</a>.</em><br>
+<em>You can <a href="https://developer.mozilla.org/docs/Mozilla/Developer_guide/How_to_Submit_a_Patch">read about the patch submission and approval process</a>.</em><br>
diff --git a/extensions/BMO/template/en/default/hook/global/user-error.html.tmpl/auth_failure/permissions.html.tmpl b/extensions/BMO/template/en/default/hook/global/user-error.html.tmpl/auth_failure/permissions.html.tmpl
index 346e02373..d527f76a4 100644
--- a/extensions/BMO/template/en/default/hook/global/user-error.html.tmpl/auth_failure/permissions.html.tmpl
+++ b/extensions/BMO/template/en/default/hook/global/user-error.html.tmpl/auth_failure/permissions.html.tmpl
@@ -23,7 +23,7 @@
[% IF (group == "canconfirm" OR group == "editbugs") AND !reason %]
<p>
If you are attempting to confirm an unconfirmed [% terms.bug %] or edit the fields of a [% terms.bug %],
- <a href="http://www.gerv.net/hacking/before-you-mail-gerv.html#bugzilla-permissions">find
+ <a href="page.cgi?id=get_permissions.html">find
out how to get the necessary permissions</a>.
</p>
[% END %]
diff --git a/extensions/BMO/template/en/default/pages/bug-writing.html.tmpl b/extensions/BMO/template/en/default/pages/bug-writing.html.tmpl
index 21ed3b040..e1c67605f 100644
--- a/extensions/BMO/template/en/default/pages/bug-writing.html.tmpl
+++ b/extensions/BMO/template/en/default/pages/bug-writing.html.tmpl
@@ -7,5 +7,5 @@
#%]
[% PROCESS global/redirect.html.tmpl
- url = "https://developer.mozilla.org/en/Bug_writing_guidelines"
+ url = "https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines"
%]
diff --git a/extensions/BMO/template/en/default/pages/etiquette.html.tmpl b/extensions/BMO/template/en/default/pages/etiquette.html.tmpl
index 2c25cb5e9..6e62f4762 100644
--- a/extensions/BMO/template/en/default/pages/etiquette.html.tmpl
+++ b/extensions/BMO/template/en/default/pages/etiquette.html.tmpl
@@ -173,7 +173,7 @@
<h2>See Also</h2>
<p>
- <a href="page.cgi?id=bug-writing.html">The [% terms.Bug %] Writing Guidelines</a>.
+ <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">The [% terms.Bug %] Writing Guidelines</a>.
</p>
[% INCLUDE global/footer.html.tmpl %]
diff --git a/extensions/BMO/template/en/default/pages/upgrade-3.6.html.tmpl b/extensions/BMO/template/en/default/pages/upgrade-3.6.html.tmpl
index 8fa944ae6..9e6d72d66 100644
--- a/extensions/BMO/template/en/default/pages/upgrade-3.6.html.tmpl
+++ b/extensions/BMO/template/en/default/pages/upgrade-3.6.html.tmpl
@@ -52,7 +52,7 @@
<li>New attachment details UI.</li>
<li>New icons for the front page.</li>
<li>Removal of unused "Patches" column from buglist.</li>
- <li>Initial support for <a href="http://en.wikipedia.org/wiki/Strict_Transport_Security">Strict-Transport-Security</a> (STS) header.</li>
+ <li>Initial support for <a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security">Strict-Transport-Security</a> (STS) header.</li>
</ul>
<h4>General Usability Improvements</h4>
@@ -121,7 +121,7 @@
<a href="[% docs_urlbase FILTER html %]api/Bugzilla/WebService/Server/JSONRPC.html">jsonrpc.cgi</a>.
The JSON-RPC interface is experimental in this release--if you want any
fundamental changes in how it works,
- <a href="http://www.bugzilla.org/developers/reporting_bugs.html">let us
+ <a href="https://www.bugzilla.org/developers/reporting_bugs.html">let us
know</a>, for the next release of [% terms.Bugzilla %].</p>
<h3>New Features</h3>
diff --git a/extensions/BMO/template/en/default/pages/user_activity.html.tmpl b/extensions/BMO/template/en/default/pages/user_activity.html.tmpl
index d850c91b2..c0a8674a8 100644
--- a/extensions/BMO/template/en/default/pages/user_activity.html.tmpl
+++ b/extensions/BMO/template/en/default/pages/user_activity.html.tmpl
@@ -96,7 +96,7 @@
[% IF incomplete_data %]
<p>
- There used to be an issue in <a href="http://www.bugzilla.org/">Bugzilla</a>
+ There used to be an issue in <a href="https://www.bugzilla.org/">Bugzilla</a>
which caused activity data to be lost if there were a large number of cc's
or dependencies. That has been fixed, but some data was already lost in
your activity table that could not be regenerated. The changes that
diff --git a/extensions/GuidedBugEntry/template/en/default/guided/guided.html.tmpl b/extensions/GuidedBugEntry/template/en/default/guided/guided.html.tmpl
index e4b0b44a8..6d3d6ddd8 100644
--- a/extensions/GuidedBugEntry/template/en/default/guided/guided.html.tmpl
+++ b/extensions/GuidedBugEntry/template/en/default/guided/guided.html.tmpl
@@ -236,27 +236,27 @@ Other Mozilla products which aren't listed here
<tr>
<td>
<div class="exit_img">
- <a href="http://www.mozilla.org/support/"
+ <a href="https://support.mozilla.org/"
><img src="extensions/GuidedBugEntry/web/images/support.png" width="32" height="32"
></a>
</div>
</td>
<td class="exit_text">
- <a href="http://www.mozilla.org/support/">I need technical support</a><br>
+ <a href="https://support.mozilla.org/">I need technical support</a><br>
For technical support or help getting your site to work with Mozilla.
</td>
</tr>
<tr>
<td>
<div class="exit_img">
- <a href="http://input.mozilla.org/feedback/"
+ <a href="https://input.mozilla.org/feedback/"
><img src="extensions/GuidedBugEntry/web/images/input.png" width="32" height="32"
></a>
</div>
</td>
<td class="exit_text">
- <a href="http://input.mozilla.org/feedback/#sad">Offer us ideas on how to make Firefox better</a><br>
- <a href="http://input.mozilla.org/feedback/">Provide feedback about Firefox</a><br>
+ <a href="https://input.mozilla.org/feedback/#sad">Offer us ideas on how to make Firefox better</a><br>
+ <a href="https://input.mozilla.org/feedback/">Provide feedback about Firefox</a><br>
</td>
</tr>
<tr>
@@ -268,7 +268,7 @@ Other Mozilla products which aren't listed here
<td class="exit_text_last">
<a onclick="product.select('Core', 'Untriaged')" href="javascript:void(0)">Report an issue with Firefox on a site that I've developed</a><br>
- <a href="http://input.mozilla.org/feedback/#sad">Report an issue with a web site that I use</a><br>
+ <a href="https://input.mozilla.org/feedback/#sad">Report an issue with a web site that I use</a><br>
</td>
</tr>
</table>
@@ -357,7 +357,7 @@ Product: <b><span id="dupes_product_name">?</span></b>:
<ul>
<li>Please fill out this form clearly, precisely and in as much detail as you can manage.</li>
<li>Please report only a single problem at a time.</li>
-<li><a href="https://developer.mozilla.org/en/Bug_writing_guidelines" target="_blank">These guidelines</a>
+<li><a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines" target="_blank">These guidelines</a>
explain how to write effective [% terms.bug %] reports.</li>
</ul>
diff --git a/extensions/GuidedBugEntry/web/js/products.js b/extensions/GuidedBugEntry/web/js/products.js
index 19ff01fec..8ef1ea0c0 100644
--- a/extensions/GuidedBugEntry/web/js/products.js
+++ b/extensions/GuidedBugEntry/web/js/products.js
@@ -46,7 +46,7 @@ var products = {
l10n: true,
support:
'If you are new to Firefox or Bugzilla, please consider checking ' +
- '<a href="http://support.mozilla.org/">' +
+ '<a href="https://support.mozilla.org/">' +
'<img src="extensions/GuidedBugEntry/web/images/sumo.png" width="16" height="16" align="absmiddle">' +
' <b>Firefox Help</b></a> instead of creating a bug.'
},
@@ -57,7 +57,7 @@ var products = {
l10n: true,
support:
'If you are new to Firefox or Bugzilla, please consider checking ' +
- '<a href="http://support.mozilla.org/">' +
+ '<a href="https://support.mozilla.org/">' +
'<img src="extensions/GuidedBugEntry/web/images/sumo.png" width="16" height="16" align="absmiddle">' +
' <b>Firefox Help</b></a> instead of creating a bug.'
},
@@ -122,12 +122,12 @@ var products = {
"Bugzilla": {
support:
- 'Please use <a href="http://landfill.bugzilla.org/">Bugzilla Landfill</a> to file "test bugs".'
+ 'Please use <a href="https://landfill.bugzilla.org/">Bugzilla Landfill</a> to file "test bugs".'
},
"bugzilla.mozilla.org": {
related: [ "Bugzilla" ],
support:
- 'Please use <a href="http://landfill.bugzilla.org/">Bugzilla Landfill</a> to file "test bugs".'
+ 'Please use <a href="https://landfill.bugzilla.org/">Bugzilla Landfill</a> to file "test bugs".'
}
};
diff --git a/extensions/MozReview/template/en/default/hook/attachment/create-before_form.html.tmpl b/extensions/MozReview/template/en/default/hook/attachment/create-before_form.html.tmpl
index 0bf6fe543..bfa842c89 100644
--- a/extensions/MozReview/template/en/default/hook/attachment/create-before_form.html.tmpl
+++ b/extensions/MozReview/template/en/default/hook/attachment/create-before_form.html.tmpl
@@ -12,6 +12,6 @@
Are you attaching a patch? Consider trying out
<a href="https://reviewboard.mozilla.org/">MozReview</a>, Mozilla's
new repository-based code-review tool.
- <a href="http://mozilla-version-control-tools.readthedocs.org/en/latest/mozreview.html">Read
+ <a href="https://mozilla-version-control-tools.readthedocs.io/en/latest/mozreview.html">Read
the docs</a> to get started.
</div>
diff --git a/extensions/REMO/template/en/default/bug/create/create-mozreps.html.tmpl b/extensions/REMO/template/en/default/bug/create/create-mozreps.html.tmpl
index 9cc72e717..c0f382e93 100644
--- a/extensions/REMO/template/en/default/bug/create/create-mozreps.html.tmpl
+++ b/extensions/REMO/template/en/default/bug/create/create-mozreps.html.tmpl
@@ -219,7 +219,7 @@
<th>
<label class="required" for="privacy">
I have read the
- <a href="http://www.mozilla.com/en-US/privacy-policy" target="_blank">Mozilla Privacy Policy</a>:
+ <a href="https://www.mozilla.org/privacy/" target="_blank">Mozilla Privacy Policy</a>:
</label>
</th>
<td><input id="privacy" name="privacy" type="checkbox" value="1"></td>
diff --git a/extensions/SecureMail/template/en/default/pages/securemail/help.html.tmpl b/extensions/SecureMail/template/en/default/pages/securemail/help.html.tmpl
index e6ef02927..380d1c04e 100644
--- a/extensions/SecureMail/template/en/default/pages/securemail/help.html.tmpl
+++ b/extensions/SecureMail/template/en/default/pages/securemail/help.html.tmpl
@@ -95,7 +95,7 @@ If you already have your own PGP key in a keyring, skip straight to step 3. Othe
<ol>
-<li>Install the GPG suite of utilities for your operating system, either using your package manager or downloaded from <a href="http://www.gnupg.org/download/index.en.html">gnupg.org</a>.</p>
+<li>Install the GPG suite of utilities for your operating system, either using your package manager or downloaded from <a href="https://www.gnupg.org/download/">gnupg.org</a>.</p>
<li><p>Generate a private key.</p>
@@ -123,7 +123,7 @@ You’ll have to answer several questions:</p>
</ol>
<p>
-Further reading: <a href="http://www.madboa.com/geek/gpg-quickstart">GPG Quickstart</a>.
+Further reading: <a href="https://www.madboa.com/geek/gpg-quickstart/">GPG Quickstart</a>.
[% PROCESS global/footer.html.tmpl %]
diff --git a/extensions/Splinter/template/en/default/pages/splinter.html.tmpl b/extensions/Splinter/template/en/default/pages/splinter.html.tmpl
index df5dd75ce..f42c579e4 100644
--- a/extensions/Splinter/template/en/default/pages/splinter.html.tmpl
+++ b/extensions/Splinter/template/en/default/pages/splinter.html.tmpl
@@ -108,7 +108,7 @@
<!--[if lt IE 7]>
<p style="border: 1px solid #880000; padding: 1em; background: #ffee88; font-size: 120%;">
Splinter Patch Review requires a modern browser, such as
- <a href="http://www.firefox.com">Firefox</a>, for correct operation.
+ <a href="https://www.mozilla.org/firefox/">Firefox</a>, for correct operation.
</p>
<![endif]-->
diff --git a/extensions/Splinter/template/en/default/pages/splinter/help.html.tmpl b/extensions/Splinter/template/en/default/pages/splinter/help.html.tmpl
index dac513e56..267366d5a 100644
--- a/extensions/Splinter/template/en/default/pages/splinter/help.html.tmpl
+++ b/extensions/Splinter/template/en/default/pages/splinter/help.html.tmpl
@@ -125,7 +125,7 @@
[%+ terms.Bugzilla %], as long as they are well-formatted patches. If you are
using Git for version control, you can either format changes as
patches
- using <a href="http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html">'git
+ using <a href="https://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html">'git
format-patch</a> and attach them manually to the [% terms.bug %], or you
can
use <a href="http://fishsoup.net/software/git-bz">git-bz</a>.
diff --git a/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl b/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl
index ef0605725..27cb825ed 100644
--- a/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl
+++ b/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl
@@ -51,7 +51,7 @@
[% IF user.gravatar %]
<img id="gravatar" src="[% target.gravatar(256) FILTER none %]" width="128" height="128"><br>
[% IF target.id == user.id %]
- <a href="http://gravatar.com/">Change my image</a>
+ <a href="https://gravatar.com/">Change my image</a>
[% END %]
[% ELSE %]
&nbsp;
diff --git a/qa/t/lib/QA/Tests.pm b/qa/t/lib/QA/Tests.pm
index 0bd0942fa..89d382050 100644
--- a/qa/t/lib/QA/Tests.pm
+++ b/qa/t/lib/QA/Tests.pm
@@ -39,7 +39,7 @@ use constant CREATE_BUG => {
'severity' => 'normal',
'qa_contact' => 'canconfirm',
version => 'Another1',
- url => 'http://www.bugzilla.org/',
+ url => 'https://www.bugzilla.org/',
target_milestone => 'AnotherMS1',
};
diff --git a/qa/t/webservice_bug_get.t b/qa/t/webservice_bug_get.t
index 88cc42989..91de410c1 100644
--- a/qa/t/webservice_bug_get.t
+++ b/qa/t/webservice_bug_get.t
@@ -38,7 +38,7 @@ $xmlrpc->bz_call_success('Bug.update', {
is_creator_accessible => 0,
keywords => { set => ['test-keyword-1', 'test-keyword-2'] },
see_also => { add => ["${base_url}show_bug.cgi?id=$public_id",
- "http://landfill.bugzilla.org/show_bug.cgi?id=123456"] },
+ "https://landfill.bugzilla.org/show_bug.cgi?id=123456"] },
cf_qa_status => ['in progress', 'verified'],
cf_single_select => 'two',
}, 'Update the private bug');
@@ -53,7 +53,7 @@ $private_bug->{is_creator_accessible} = 0;
$private_bug->{is_cc_accessible} = 1;
$private_bug->{keywords} = ['test-keyword-1', 'test-keyword-2'];
$private_bug->{see_also} = ["${base_url}show_bug.cgi?id=$public_id",
- "http://landfill.bugzilla.org/show_bug.cgi?id=123456"];
+ "https://landfill.bugzilla.org/show_bug.cgi?id=123456"];
$private_bug->{cf_qa_status} = ['in progress', 'verified'];
$private_bug->{cf_single_select} = 'two';
diff --git a/qa/t/webservice_group_create.t b/qa/t/webservice_group_create.t
index 9ddf43d86..e2c0a725d 100644
--- a/qa/t/webservice_group_create.t
+++ b/qa/t/webservice_group_create.t
@@ -88,7 +88,7 @@ foreach my $rpc ($xmlrpc, $jsonrpc) {
{ user => 'admin',
args => { name => random_string(20), description => DESCRIPTION,
user_regexp => '\@foo.com$', is_active => 1,
- icon_url => 'http://www.bugzilla.org/favicon.ico' },
+ icon_url => 'https://www.bugzilla.org/favicon.ico' },
test => 'Passing all arguments works',
},
);
diff --git a/template/en/default/admin/params/advanced.html.tmpl b/template/en/default/admin/params/advanced.html.tmpl
index 6cd13a49d..a23c602ae 100644
--- a/template/en/default/admin/params/advanced.html.tmpl
+++ b/template/en/default/admin/params/advanced.html.tmpl
@@ -26,7 +26,7 @@
[% sts_desc = BLOCK %]
Enables the sending of the
- <a href="http://en.wikipedia.org/wiki/Strict_Transport_Security">Strict-Transport-Security</a>
+ <a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security">Strict-Transport-Security</a>
header along with HTTP responses on SSL connections. This adds greater
security to your SSL connections by forcing the browser to always
access your domain over SSL and never accept an invalid certificate.
diff --git a/template/en/default/admin/params/dependencygraph.html.tmpl b/template/en/default/admin/params/dependencygraph.html.tmpl
index 4cf22d508..d5e9df7f5 100644
--- a/template/en/default/admin/params/dependencygraph.html.tmpl
+++ b/template/en/default/admin/params/dependencygraph.html.tmpl
@@ -29,7 +29,7 @@
<ul>
<li>
A complete file path to 'dot' (part of
- <a href=\"http://www.graphviz.org\">GraphViz</a>) will
+ <a href=\"https://www.graphviz.org/\">GraphViz</a>) will
generate the graphs locally.
</li>
<li>
diff --git a/template/en/default/admin/params/editparams.html.tmpl b/template/en/default/admin/params/editparams.html.tmpl
index 14fba5866..838bff7ef 100644
--- a/template/en/default/admin/params/editparams.html.tmpl
+++ b/template/en/default/admin/params/editparams.html.tmpl
@@ -95,7 +95,7 @@
<div class="contribute"><strong>Note:</strong>
B[% %]ugzilla is developed entirely by volunteers.
The best way to give back to the B[% %]ugzilla project is to
- <a href="http://www.bugzilla.org/contribute/">contribute</a>
+ <a href="https://www.bugzilla.org/contribute/">contribute</a>
yourself!
You don't have to be a programmer to contribute, there are lots of
things that we need.
diff --git a/template/en/default/admin/params/patchviewer.html.tmpl b/template/en/default/admin/params/patchviewer.html.tmpl
index 389acc1b5..41f7f9e6b 100644
--- a/template/en/default/admin/params/patchviewer.html.tmpl
+++ b/template/en/default/admin/params/patchviewer.html.tmpl
@@ -43,14 +43,14 @@
"faster). Make this the same as cvsroot if you don't " _
"understand what this is (if cvsroot is blank, make this blank too).",
- bonsai_url => "The URL to a <a href=\"http://www.mozilla.org/bonsai.html\">Bonsai</a> " _
+ bonsai_url => "The URL to a <a href=\"https://wiki.mozilla.org/Bonsai\">Bonsai</a> " _
"server containing information about your CVS repository. " _
"Patch Viewer will use this information to create links to " _
"bonsai's blame for each section of a patch (it will append " _
"'/cvsblame.cgi?...' to this url). Leave this blank if you " _
"don't understand what this is.",
- lxr_url => "The URL to an <a href=\"http://sourceforge.net/projects/lxr\">LXR</a> server " _
+ lxr_url => "The URL to an <a href=\"https://sourceforge.net/projects/lxr/\">LXR</a> server " _
"that indexes your CVS repository. Patch Viewer will use this " _
"information to create links to LXR for each file in a patch. " _
"Leave this blank if you don't understand what this is.",
diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl
index 8098d89b2..50193f894 100644
--- a/template/en/default/bug/activity/table.html.tmpl
+++ b/template/en/default/bug/activity/table.html.tmpl
@@ -40,7 +40,7 @@
[% IF incomplete_data %]
<p>
- There used to be an issue in <a href="http://www.bugzilla.org/">Bugzilla</a>
+ There used to be an issue in <a href="https://www.bugzilla.org/">Bugzilla</a>
which caused activity data to be lost if there were a large number of cc's
or dependencies. That has been fixed, but some data was already lost in
your activity table that could not be regenerated. The changes that the
diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl
index 43437bcd7..ee40890cb 100644
--- a/template/en/default/bug/create/create-guided.html.tmpl
+++ b/template/en/default/bug/create/create-guided.html.tmpl
@@ -265,7 +265,7 @@ function PutDescription() {
URL that demonstrates the problem you are seeing (optional).<br>
<b>IMPORTANT</b>: if the problem is with a broken web page, you need
to report it
- <a href="http://input.mozilla.com/feedback">a different way</a>.
+ <a href="https://input.mozilla.org/feedback">a different way</a>.
</p>
</td>
</tr>
@@ -418,7 +418,7 @@ function PutDescription() {
into your URL bar.
<br>
<br>
- If you are reporting a crash, please <a href="https://developer.mozilla.org/En/How_to_get_a_stacktrace_for_a_bug_report
+ If you are reporting a crash, please <a href="https://developer.mozilla.org/docs/Mozilla/How_to_get_a_stacktrace_for_a_bug_report
">try and get a stack trace</a>, which tells us exactly where things went wrong.
</p>
</td>
diff --git a/template/en/default/bug/create/user-message.html.tmpl b/template/en/default/bug/create/user-message.html.tmpl
index ac2cc29df..fa42ace81 100644
--- a/template/en/default/bug/create/user-message.html.tmpl
+++ b/template/en/default/bug/create/user-message.html.tmpl
@@ -30,7 +30,7 @@
[% PROCESS global/variables.none.tmpl %]
Before reporting [% terms.abug %], please read the
-<a href="page.cgi?id=bug-writing.html">
+<a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">
[% terms.bug %] writing guidelines</a>, please look at the list of
<a href="duplicates.cgi">most frequently reported [% terms.bugs %]</a>, and please
<a href="query.cgi">search</a> for the [% terms.bug %].
diff --git a/template/en/default/bug/new_bug.html.tmpl b/template/en/default/bug/new_bug.html.tmpl
index fc75d4a3d..f508cba31 100644
--- a/template/en/default/bug/new_bug.html.tmpl
+++ b/template/en/default/bug/new_bug.html.tmpl
@@ -27,7 +27,7 @@
<h2>Create New [% terms.Bug %]</h2>
<p>
Before reporting a [% terms.bug %], make sure you've read our
- <a href="https://developer.mozilla.org/en/Bug_writing_guidelines">
+ <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">
[% terms.bug %] writing guidelines</a> and double checked that your [% terms.bug %] hasn't already
been reported. Consult our list of <a href="https://bugzilla.mozilla.org/duplicates.cgi">
most frequently reported [% terms.bugs %]</a> and <a href="https://bugzilla.mozilla.org/query.cgi">
diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl
index 4e56caa7f..f7a0e900b 100644
--- a/template/en/default/index.html.tmpl
+++ b/template/en/default/index.html.tmpl
@@ -75,7 +75,7 @@
<a href="page.cgi?id=etiquette.html">[%- terms.Bugzilla %] Etiquette</a>
</li>
<li>
- | <a href="https://developer.mozilla.org/en/Bug_writing_guidelines">[%- terms.Bug %] Writing Guidelines</a>
+ | <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">[%- terms.Bug %] Writing Guidelines</a>
</li>
[% Hook.process('additional_links') %]
</ul>
diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl
index 7e1ba15d9..6e639d86d 100644
--- a/template/en/default/pages/release-notes.html.tmpl
+++ b/template/en/default/pages/release-notes.html.tmpl
@@ -56,13 +56,13 @@
<h3>4.2.11</h3>
<p>This release fixes several security issues. See the
- <a href="http://www.bugzilla.org/security/4.0.14/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/4.0.14/">Security Advisory</a>
for details.</p>
<h3>4.2.10</h3>
<p>This release fixes one security issue. See the
- <a href="http://www.bugzilla.org/security/4.0.13/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/4.0.13/">Security Advisory</a>
for details.</p>
<h3>4.2.9</h3>
@@ -75,7 +75,7 @@
<h3>4.2.8</h3>
<p>This release fixes one minor security issue. See the
- <a href="http://www.bugzilla.org/security/4.0.11/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/4.0.11/">Security Advisory</a>
for details.</p>
<p>In addition, the following [% terms.bugs %] have been fixed in this release:</p>
@@ -106,7 +106,7 @@
<h3>4.2.7</h3>
<p>This release fixes several security issues. See the
- <a href="http://www.bugzilla.org/security/4.0.10/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/4.0.10/">Security Advisory</a>
for details.</p>
<p>In addition, the following [% terms.bugs %] have been fixed in this release:</p>
@@ -161,7 +161,7 @@
<h3>4.2.5</h3>
<p>This release fixes one security issue. See the
- <a href="http://www.bugzilla.org/security/3.6.12/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.6.12/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in this
@@ -194,7 +194,7 @@
<h3>4.2.4</h3>
<p>This release fixes several security issues. See the
- <a href="http://www.bugzilla.org/security/3.6.11/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.6.11/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in this
@@ -241,7 +241,7 @@
<h3>4.2.3</h3>
<p>This release fixes two security issues. See the
- <a href="http://www.bugzilla.org/security/3.6.10/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.6.10/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in this
@@ -279,7 +279,7 @@
<h3>4.2.2</h3>
<p>This release fixes two security issues. See the
- <a href="http://www.bugzilla.org/security/3.6.9/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.6.9/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in this
@@ -321,7 +321,7 @@
<h3>4.2.1</h3>
<p>This release fixes two security issues. See the
- <a href="http://www.bugzilla.org/security/3.6.8/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.6.8/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in this
@@ -714,9 +714,9 @@
version's release notes</strong>.</p>
<p>We would like to thank
- <a href="http://www.itasoftware.com/">ITA Software</a>,
- the <a href="http://www.ibm.com/linux/ltc/">IBM Linux Technology Center</a>,
- and <a href="http://www.redhat.com/">Red Hat</a> for funding the development
+ <a href="https://www.itasoftware.com/">ITA Software</a>,
+ the <a href="https://www.ibm.com/linux/ltc/">IBM Linux Technology Center</a>,
+ and <a href="https://www.redhat.com/">Red Hat</a> for funding the development
of certain features and improvements in this release of
[%+ terms.Bugzilla %].</p>
@@ -725,7 +725,7 @@
<h3>4.0.2</h3>
<p>This release fixes several security issues. See the
- <a href="http://www.bugzilla.org/security/3.4.11/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.4.11/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in this
@@ -1090,7 +1090,7 @@
<h3 id="v40_feat_search_ui">New Advanced Search UI</h3>
-<p>Thanks to the UI work of <a href="http://guy-pyrzak.blogspot.com/">Guy
+<p>Thanks to the UI work of <a href="https://guy-pyrzak.blogspot.com/">Guy
Pyrzak</a>, the Advanced Search UI has been completely redesigned.
It is now much simpler, and far more approachable for new users, while
still retaining all of the features that power users are used to.</p>
@@ -1103,7 +1103,7 @@
width to be used when doing code reviews or editing an attachment as
a comment.</p>
-<p>Thanks to <a href="http://guy-pyrzak.blogspot.com/">Guy Pyrzak</a> for
+<p>Thanks to <a href="https://guy-pyrzak.blogspot.com/">Guy Pyrzak</a> for
his excellent work on this UI redesign.</p>
<h3 id="v40_feat_autocomplete">Autocomplete for Users and Keywords</h3>
@@ -1157,7 +1157,7 @@
<p>For more information about the workflow and our rationale for changing
it, see the
- <a href="http://bugzillaupdate.wordpress.com/2010/07/06/bugzilla-4-0-has-a-new-default-status-workflow/">blog
+ <a href="https://bugzillaupdate.wordpress.com/2010/07/06/bugzilla-4-0-has-a-new-default-status-workflow/">blog
post about it</a> and the
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486292">[% terms.bug %]
where the change was made</a>.</p>
@@ -1181,7 +1181,7 @@
<p>[% terms.Bugzilla %] now supports making WebService calls from
another domain, inside of a web browser, thanks to support for
- <a href="http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/">JSONP</a>.
+ <a href="https://bob.ippoli.to/archives/2005/12/05/remote-json-jsonp/">JSONP</a>.
This will allow for web "mash-ups" to use [% terms.Bugzilla %] data.
When using JSONP, you may only call functions that <em>get</em> data,
you may not call functions that <em>change</em> data.</p>
@@ -1398,7 +1398,7 @@
<li>When you are using SSL with [% terms.Bugzilla %], you can now
turn on the <kbd>strict_transport_security</kbd> parameter to
send the
- <a href="https://developer.mozilla.org/en/Security/HTTP_Strict_Transport_Security">Strict-Transport-Security</a>
+ <a href="https://developer.mozilla.org/docs/Web/HTTP/Headers/Strict-Transport-Security">Strict-Transport-Security</a>
header with every HTTPS connection, for additional security.</li>
<li>New code hooks (see their documentation in
<a href="[% docs_urlbase FILTER html %]api/Bugzilla/Hook.html">Bugzilla::Hook</a>):
@@ -1417,7 +1417,7 @@
You can see more information about running this test by doing
<kbd>perldoc xt/search.t</kbd> at the command line.</li>
<li>[% terms.Bugzilla %] now sends the
- <a href="https://developer.mozilla.org/en/the_x-frame-options_response_header"><code>X-Frame-Options: SAMEORIGIN</code></a> header
+ <a href="https://developer.mozilla.org/docs/Web/HTTP/Headers/X-Frame-Options"><code>X-Frame-Options: SAMEORIGIN</code></a> header
with every page request in order to prevent "clickjacking" attacks. Note
that this prevents other domains from displaying [% terms.Bugzilla %]
in an HTML frame.</li>
diff --git a/template/en/default/pages/release-notes3.html.tmpl b/template/en/default/pages/release-notes3.html.tmpl
index 79f0528ed..2f37f8017 100644
--- a/template/en/default/pages/release-notes3.html.tmpl
+++ b/template/en/default/pages/release-notes3.html.tmpl
@@ -57,11 +57,11 @@
and this one, <strong>particularly the Upgrading section of each
version's release notes</strong>.</p>
-<p>We would like to thank <a href="http://www.canonical.com/">Canonical
- Ltd.</a>, <a href="http://www.itasoftware.com/">ITA Software</a>,
- the <a href="http://www.ibm.com/linux/ltc/">IBM Linux Technology Center</a>,
- <a href="http://www.redhat.com/">Red Hat</a>, and
- <a href="http://www.novell.com/">Novell</a> for funding the development
+<p>We would like to thank <a href="https://www.canonical.com/">Canonical
+ Ltd.</a>, <a href="https://www.itasoftware.com/">ITA Software</a>,
+ the <a href="https://www.ibm.com/linux/ltc/">IBM Linux Technology Center</a>,
+ <a href="https://www.redhat.com/">Red Hat</a>, and
+ <a href="https://www.novell.com/">Novell</a> for funding the development
of various features and improvements in this release of
[%+ terms.Bugzilla %].</p>
@@ -70,7 +70,7 @@
<h3>3.6.2</h3>
<p>This release fixes various security issues. See the
- <a href="http://www.bugzilla.org/security/3.2.7/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.2.7/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in
@@ -128,7 +128,7 @@
<h3>3.6.1</h3>
<p>This release fixes two security issues. See the
- <a href="http://www.bugzilla.org/security/3.2.6/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.2.6/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in
@@ -563,7 +563,7 @@
<a href="[% docs_urlbase FILTER html %]api/Bugzilla/WebService/Server/JSONRPC.html">jsonrpc.cgi</a>.
The JSON-RPC interface is experimental in this release--if you want any
fundamental changes in how it works,
- <a href="http://www.bugzilla.org/developers/reporting_bugs.html">let us
+ <a href="https://www.bugzilla.org/developers/reporting_bugs.html">let us
know</a>, for the next release of [% terms.Bugzilla %].</p>
<h3 id="v36_feat_migrate">Migration From Other [% terms.Bug %]-Trackers</h3>
@@ -592,10 +592,10 @@
<p>The first migrator that has been implemented is for the GNATS
[%+ terms.bug %]-tracking system. We'd love to see migrators for
other systems! If you want to contribute a new migrator, see our
- <a href="http://wiki.mozilla.org/Bugzilla:Developers">development
+ <a href="https://wiki.mozilla.org/Bugzilla:Developers">development
process</a> for details on how to get code into [% terms.Bugzilla %].</p>
-<p>Thanks to <a href="http://lambdares.com/">Lambda Research</a> for
+<p>Thanks to <a href="https://www.lambdares.com/">Lambda Research</a> for
funding the initial development of this feature.</p>
<h3 id="v36_feat_other">Other Enhancements and Changes</h3>
@@ -935,10 +935,10 @@
and this one, <strong>particularly the Upgrading section of each
version's release notes</strong>.</p>
-<p>We would like to thank <a href="http://www.canonical.com/">Canonical
+<p>We would like to thank <a href="https://www.canonical.com/">Canonical
Ltd.</a> for funding development of one new feature, and NASA for funding
development of several new features through the
- <a href="http://www.sjsufoundation.org/">San Jose State University
+ <a href="https://www.sjsufoundation.org/">San Jose State University
Foundation</a>.</p>
<h2 id="v34_point">Updates In This 3.4.x Release</h2>
@@ -992,7 +992,7 @@
<h3>3.4.5</h3>
<p>This release contains fixes for multiple security issues. See the
- <a href="http://www.bugzilla.org/security/3.0.10/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.0.10/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in
@@ -1027,7 +1027,7 @@
<h3>3.4.4</h3>
<p>This release contains a fix for a security issue. See the
- <a href="http://www.bugzilla.org/security/3.4.3/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.4.3/">Security Advisory</a>
for details.</p>
<p>Additionally, this release fixes a few minor [% terms.bugs %].</p>
@@ -1070,7 +1070,7 @@
<p>This release contains fixes for multiple security issues, one of which
is highly critical. See the
- <a href="http://www.bugzilla.org/security/3.0.8/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.0.8/">Security Advisory</a>
for details.</p>
<p>In addition, the following important fixes/changes have been made in
@@ -1121,7 +1121,7 @@
<h3>3.4.1</h3>
<p>This release contains an important security fix. See the
- <a href="http://www.bugzilla.org/security/3.4/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.4/">Security Advisory</a>
for details.</p>
<h2 id="v34_req">Minimum Requirements</h2>
@@ -1468,7 +1468,7 @@
[%+ terms.bugs %] in any [% terms.Bugzilla %] installation, to indicate
that those [% terms.bugs %] are related to this one. It also supports
adding URLs to [% terms.bugs %] in
- <a href="http://launchpad.net/">Launchpad</a>.</p>
+ <a href="https://launchpad.net/">Launchpad</a>.</p>
<p>Right now, the field just validates the URLs and then displays them, but
in the future, it will grab information from the other installation about
@@ -1749,7 +1749,7 @@
releases of [% terms.Bugzilla %] after 3.2. We only list the
most important fixes in each release. If you want a detailed list of
<em>everything</em> that's changed in each version, you should use our
- <a href="http://www.bugzilla.org/status/changes.html">Change Log
+ <a href="https://www.bugzilla.org/status/changes.html">Change Log
Page</a>.</p>
<h3>3.2.3</h3>
@@ -1785,7 +1785,7 @@
<p>This release fixes one security issue that is critical for installations
running 3.2.1 under mod_perl. See the
- <a href="http://www.bugzilla.org/security/3.0.7/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.0.7/">Security Advisory</a>
for details.</p>
<h3>3.2.1</h3>
@@ -1827,14 +1827,14 @@
<h3>3.2.3</h3>
<p>This release fixes one security issue related to attachments. See the
- <a href="http://www.bugzilla.org/security/3.2.2/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.2.2/">Security Advisory</a>
for details.</p>
<h3>3.2.2</h3>
<p>This release fixes one security issue that is critical for installations
running 3.2.1 under mod_perl. See the
- <a href="http://www.bugzilla.org/security/3.0.7/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/3.0.7/">Security Advisory</a>
for details.</p>
<h3>3.2.1</h3>
@@ -1842,7 +1842,7 @@
<p>This release contains several security fixes. One fix may break any
automated scripts you have that are loading <kbd>process_bug.cgi</kbd>
directly. We recommend that you read the entire
- <a href="http://www.bugzilla.org/security/2.22.6/">Security Advisory</a>
+ <a href="https://www.bugzilla.org/security/2.22.6/">Security Advisory</a>
for this release.</p>
<h2 id="v32_req">Minimum Requirements</h2>
@@ -2035,7 +2035,7 @@
<p>[% terms.Bugzilla %] 3.2 has had some UI assistance from the NASA
Human-Computer Interaction department and the new
- <a href="http://wiki.mozilla.org/Bugzilla:UE">[% terms.Bugzilla %]
+ <a href="https://wiki.mozilla.org/Bugzilla:UE">[% terms.Bugzilla %]
User Interface Team</a>.</p>
<p>In particular, you will notice a massively redesigned [% terms.bug %]
@@ -2053,7 +2053,7 @@
<p>The changes that [% terms.Bugzilla %] required for Dusk made
[%+ terms.Bugzilla %] much easier to skin. See the
- <a href="http://wiki.mozilla.org/Bugzilla:Addons#Skins">Addons page</a>
+ <a href="https://wiki.mozilla.org/Bugzilla:Addons#Skins">Addons page</a>
for additional skins, or try making your own!</p>
<h3 id="v32_feat_status">Custom Status Workflow</h3>
@@ -2436,7 +2436,7 @@
releases of [% terms.Bugzilla %] after 3.0. We only list the
most important fixes in each release. If you want a detailed list of
<em>everything</em> that's changed in each version, you should use our
- <a href="http://www.bugzilla.org/status/changes.html">Change Log Page</a>.</p>
+ <a href="https://www.bugzilla.org/status/changes.html">Change Log Page</a>.</p>
<h3>3.0.6</h3>
@@ -3203,20 +3203,20 @@
<h3>3.0.6</h3>
<p>[% terms.Bugzilla %] contains a minor security fix. For details, see the
- <a href="http://www.bugzilla.org/security/2.20.6/">Security Advisory</a>.</p>
+ <a href="https://www.bugzilla.org/security/2.20.6/">Security Advisory</a>.</p>
<h3>3.0.5</h3>
<p>[% terms.Bugzilla %] contains one security fix for
<a href="[% docs_urlbase FILTER html %]api/importxml.html">importxml.pl</a>.
For details, see the
- <a href="http://www.bugzilla.org/security/2.22.4/">Security Advisory</a>.</p>
+ <a href="https://www.bugzilla.org/security/2.22.4/">Security Advisory</a>.</p>
<h3>3.0.4</h3>
<p>[% terms.Bugzilla %] 3.0.4 contains three security fixes.
For details, see the
- <a href="http://www.bugzilla.org/security/2.20.5/">Security Advisory</a>.</p>
+ <a href="https://www.bugzilla.org/security/2.20.5/">Security Advisory</a>.</p>
<h3>3.0.3</h3>
@@ -3227,7 +3227,7 @@
<p>[% terms.Bugzilla %] 3.0.1 had an important security fix that is
critical for public installations with "requirelogin" turned on.
For details, see the
- <a href="http://www.bugzilla.org/security/3.0.1/">Security Advisory</a></p>
+ <a href="https://www.bugzilla.org/security/3.0.1/">Security Advisory</a></p>
<h3>3.0.1</h3>
@@ -3235,7 +3235,7 @@
fixed in this release: one minor information leak, one hole only
exploitable by an admin or using <code>email_in.pl</code>, and one in an
uncommonly-used template. For details, see the
- <a href="http://www.bugzilla.org/security/2.20.4/">Security Advisory</a>.</p>
+ <a href="https://www.bugzilla.org/security/2.20.4/">Security Advisory</a>.</p>
<h2 id="v30_upgrading">How to Upgrade From An Older Version</h2>
@@ -3312,11 +3312,11 @@
<p>This gives [% terms.Bugzilla %] very advanced plugin support. You can
hook templates, hook code, add new parameters, and use the XML-RPC
interface. So we'd like to see some [% terms.Bugzilla %] plugins
- written! Let us know on the <a href="http://bugzilla.org/cgi-bin/mj_wwwusr?func=lists-long-full&amp;extra=developers">developers&#64;bugzilla.org</a>
+ written! Let us know on the <a href="https://lists.bugzilla.org/cgi-bin/mj_wwwusr?func=lists-long-full&amp;extra=developers">developers&#64;bugzilla.org</a>
mailing list if you write a plugin.</p>
<p>If you need more hooks, please
- <a href="http://www.bugzilla.org/developers/reporting_bugs.html">File a b<!-- -->ug</a>!</p>
+ <a href="https://www.bugzilla.org/developers/reporting_bugs.html">File a b<!-- -->ug</a>!</p>
<h3 id="v30_code_api">API Documentation</h3>
@@ -3357,7 +3357,7 @@ sub y { $var++ }</pre>
<p>For more information about how to use
<a href="http://search.cpan.org/perldoc?DBI">DBI</a> with
[%+ terms.Bugzilla %], see the
- <a href="http://www.bugzilla.org/docs/developer.html#sql-sendreceive">Developer's
+ <a href="https://www.bugzilla.org/docs/developer.html#sql-sendreceive">Developer's
Guide Section About DBI</a></p>
<h3 id="v30_code_auth">Auth Re-write</h3>
diff --git a/template/en/default/search/search-google.html.tmpl b/template/en/default/search/search-google.html.tmpl
index f363248a5..ad45cce94 100644
--- a/template/en/default/search/search-google.html.tmpl
+++ b/template/en/default/search/search-google.html.tmpl
@@ -15,7 +15,7 @@
[% WRAPPER search/tabs.html.tmpl %]
<p>
- Use the <a href="http://www.google.com">Google</a> search engine to search
+ Use the <a href="https://www.google.com/">Google</a> search engine to search
for [% terms.Bugzilla +%] [%+ terms.bugs %]. Find the [% terms.bugs %] you are
looking for by entering words that best describe it.
</p>
diff --git a/template/en/default/setup/strings.txt.pl b/template/en/default/setup/strings.txt.pl
index 2e1a18f00..9a8e3b9d1 100644
--- a/template/en/default/setup/strings.txt.pl
+++ b/template/en/default/setup/strings.txt.pl
@@ -343,7 +343,7 @@ END
<p>
For more information on how to install Bugzilla, please
- <a href="http://www.bugzilla.org/docs/">read the documentation</a>
+ <a href="https://www.bugzilla.org/docs/">read the documentation</a>
available on the official Bugzilla website.
</p>
</body>