# 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';
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
L<Bugzilla::DB>
-L<http://www.bugzilla.org/docs/developer.html#sql-schema>
+L<https://www.bugzilla.org/docs/developer.html#sql-schema>
=cut
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
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
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>,
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
L<Template::Plugin>
-L<http://wiki.mozilla.org/Bugzilla:Writing_Extensions>
+L<https://bugzilla.readthedocs.io/en/latest/integrating/extensions.html>
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.
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
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">.
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:
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:
=======
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.
========
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.
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`.
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
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
===============
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
.. 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
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
[% 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>
<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
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>
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>
</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">
</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">
<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>
[% 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>
<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>
<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>
<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>
[% 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">
<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>
-<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>
[% 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 %]
#%]
[% 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"
%]
<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 %]
<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>
<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>
[% 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
<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>
<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>
<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>
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.'
},
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.'
},
"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".'
}
};
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>
<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>
<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>
</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 %]
<!--[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]-->
[%+ 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>.
[% 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 %]
'severity' => 'normal',
'qa_contact' => 'canconfirm',
version => 'Another1',
- url => 'http://www.bugzilla.org/',
+ url => 'https://www.bugzilla.org/',
target_milestone => 'AnotherMS1',
};
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');
$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';
{ 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',
},
);
[% 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.
<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>
<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.
"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.",
[% 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
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>
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>
[% 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 %].
<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">
<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>
<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>
<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>
<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>
<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
<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
<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
<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
<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
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>
<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
<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>
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>
<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>
<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>
<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>):
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>
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>
<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
<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
<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>
<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>
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>
<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
<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>
<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
<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>
[%+ 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
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>
<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>
<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>
<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>
<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 %]
<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>
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>
<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>
<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>
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>
<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&extra=developers">developers@bugzilla.org</a>
+ written! Let us know on the <a href="https://lists.bugzilla.org/cgi-bin/mj_wwwusr?func=lists-long-full&extra=developers">developers@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>
<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>
[% 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>
<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>