Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
efe725f6
Commit
efe725f6
authored
Jul 23, 2007
by
timeless%mozdev.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 364361 The word "Customising" in chapter 6 title is spelled wrong in all documentation
r=colin.ogilvie, kevin.benton
parent
037e0329
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
34 additions
and
34 deletions
+34
-34
Error.pm
Bugzilla/Error.pm
+1
-1
DB.pm
Bugzilla/Install/DB.pm
+1
-1
chart.cgi
chart.cgi
+1
-1
rel_notes.txt
docs/rel_notes.txt
+11
-11
about.xml
docs/xml/about.xml
+2
-2
customization.xml
docs/xml/customization.xml
+1
-1
introduction.xml
docs/xml/introduction.xml
+1
-1
patches.xml
docs/xml/patches.xml
+1
-1
using.xml
docs/xml/using.xml
+2
-2
editcomponents.cgi
editcomponents.cgi
+1
-1
editproducts.cgi
editproducts.cgi
+1
-1
sanitycheck.cgi
sanitycheck.cgi
+2
-2
settings.html.tmpl
template/en/default/account/prefs/settings.html.tmpl
+1
-1
user-error.html.tmpl
template/en/default/global/user-error.html.tmpl
+6
-6
knob.html.tmpl
template/en/default/search/knob.html.tmpl
+1
-1
search-help.html.tmpl
template/en/default/search/search-help.html.tmpl
+1
-1
No files found.
Bugzilla/Error.pm
View file @
efe725f6
...
@@ -173,7 +173,7 @@ Bugzilla::Error - Error handling utilities for Bugzilla
...
@@ -173,7 +173,7 @@ Bugzilla::Error - Error handling utilities for Bugzilla
Various places throughout the Bugzilla codebase need to report errors to the
Various places throughout the Bugzilla codebase need to report errors to the
user. The C<Throw*Error> family of functions allow this to be done in a
user. The C<Throw*Error> family of functions allow this to be done in a
generic and locali
s
able manner.
generic and locali
z
able manner.
These functions automatically unlock the database tables, if there were any
These functions automatically unlock the database tables, if there were any
locked. They will also roll back the transaction, if it is supported by
locked. They will also roll back the transaction, if it is supported by
...
...
Bugzilla/Install/DB.pm
View file @
efe725f6
...
@@ -1896,7 +1896,7 @@ sub _copy_old_charts_into_database {
...
@@ -1896,7 +1896,7 @@ sub _copy_old_charts_into_database {
qw(FIXED INVALID WONTFIX LATER REMIND DUPLICATE WORKSFORME MOVED)
;
qw(FIXED INVALID WONTFIX LATER REMIND DUPLICATE WORKSFORME MOVED)
;
my
@fields
=
(
@statuses
,
@resolutions
);
my
@fields
=
(
@statuses
,
@resolutions
);
# We have a locali
s
ation problem here. Where do we get these values?
# We have a locali
z
ation problem here. Where do we get these values?
my
$all_name
=
"-All-"
;
my
$all_name
=
"-All-"
;
my
$open_name
=
"All Open"
;
my
$open_name
=
"All Open"
;
...
...
chart.cgi
View file @
efe725f6
...
@@ -73,7 +73,7 @@ my $action = $cgi->param('action');
...
@@ -73,7 +73,7 @@ my $action = $cgi->param('action');
my
$series_id
=
$cgi
->
param
(
'series_id'
);
my
$series_id
=
$cgi
->
param
(
'series_id'
);
# Because some actions are chosen by buttons, we can't encode them as the value
# Because some actions are chosen by buttons, we can't encode them as the value
# of the action param, because that value is locali
s
ation-dependent. So, we
# of the action param, because that value is locali
z
ation-dependent. So, we
# encode it in the name, as "action-<action>". Some params even contain the
# encode it in the name, as "action-<action>". Some params even contain the
# series_id they apply to (e.g. subscribe, unsubscribe).
# series_id they apply to (e.g. subscribe, unsubscribe).
my
@actions
=
grep
(
/^action-/
,
$cgi
->
param
());
my
@actions
=
grep
(
/^action-/
,
$cgi
->
param
());
...
...
docs/rel_notes.txt
View file @
efe725f6
...
@@ -2387,7 +2387,7 @@ See also next section.
...
@@ -2387,7 +2387,7 @@ See also next section.
'letsubmitterchoosepriority' was off.
'letsubmitterchoosepriority' was off.
(bug 63018)
(bug 63018)
- Most CGIs are now templati
s
ed. This helps to make it
- Most CGIs are now templati
z
ed. This helps to make it
easier to remember to HTML filter values and easier to spot
easier to remember to HTML filter values and easier to spot
when they are not, preventing cross site scripting attacks.
when they are not, preventing cross site scripting attacks.
(bug 86168)
(bug 86168)
...
@@ -2398,17 +2398,17 @@ See also next section.
...
@@ -2398,17 +2398,17 @@ See also next section.
*** IMPORTANT CHANGES ***
*** IMPORTANT CHANGES ***
- 2.16 introduces "templati
s
ation", a new feature that allows
- 2.16 introduces "templati
z
ation", a new feature that allows
administrators to easily customi
s
e the HTML output (the "look and feel")
administrators to easily customi
z
e the HTML output (the "look and feel")
of Bugzilla without altering Perl code. Bugzilla uses the
of Bugzilla without altering Perl code. Bugzilla uses the
"Template Toolkit" for this. Please see the "Template Customi
s
ation"
"Template Toolkit" for this. Please see the "Template Customi
z
ation"
section of the Bugzilla Guide for more details.
section of the Bugzilla Guide for more details.
Administrators who ran the 2.15 development version
and customised
Administrators who ran the 2.15 development version
with custom
templates should check the templates are still valid, as file names
templates should check the templates are still valid, as file names
and file paths have changed.
and file paths have changed.
Most output is now templati
s
ed. This process will be complete next
Most output is now templati
z
ed. This process will be complete next
milestone.
milestone.
For speed, compiled templates are cached on disk. If you modify the
For speed, compiled templates are cached on disk. If you modify the
...
@@ -2462,7 +2462,7 @@ See also next section.
...
@@ -2462,7 +2462,7 @@ See also next section.
lengthy delays in future if this problem reoccurs.
lengthy delays in future if this problem reoccurs.
(bug 106377)
(bug 106377)
- In parallel with templati
s
ation, a lot of changes have been made to the HTML
- In parallel with templati
z
ation, a lot of changes have been made to the HTML
output of the Bugzilla CGIs. This could break code that attempts to parse
output of the Bugzilla CGIs. This could break code that attempts to parse
such code. For example, this breaks mozbot.
such code. For example, this breaks mozbot.
(no bug number)
(no bug number)
...
@@ -2739,8 +2739,8 @@ known to us after the Bugzilla 2.14 release.
...
@@ -2739,8 +2739,8 @@ known to us after the Bugzilla 2.14 release.
*** SECURITY ISSUES RESOLVED ***
*** SECURITY ISSUES RESOLVED ***
- Multiple instances of unauthori
s
ed access to confidential
- Multiple instances of unauthori
z
ed access to confidential
bugs ha
s
been fixed.
bugs ha
ve
been fixed.
(bug 39524, 39526, 39527, 39531, 39533, 70189, 82781)
(bug 39524, 39526, 39527, 39531, 39533, 70189, 82781)
- Multiple instances of untrusted parameters not being
- Multiple instances of untrusted parameters not being
...
@@ -2751,7 +2751,7 @@ known to us after the Bugzilla 2.14 release.
...
@@ -2751,7 +2751,7 @@ known to us after the Bugzilla 2.14 release.
- After logging in passwords no longer appear in the URL.
- After logging in passwords no longer appear in the URL.
(bug 15980)
(bug 15980)
- Procedures to prevent unauthori
s
ed access to confidential
- Procedures to prevent unauthori
z
ed access to confidential
files are now simpler. In particular the shadow directory
files are now simpler. In particular the shadow directory
no longer exists and the data/comments file no longer needs
no longer exists and the data/comments file no longer needs
to be directly accessible, so the entire data directory can
to be directly accessible, so the entire data directory can
...
@@ -2762,7 +2762,7 @@ known to us after the Bugzilla 2.14 release.
...
@@ -2762,7 +2762,7 @@ known to us after the Bugzilla 2.14 release.
- If they do not already exist, checksetup.pl will attempt to
- If they do not already exist, checksetup.pl will attempt to
write Apache .htaccess files by default, to prevent
write Apache .htaccess files by default, to prevent
unauthori
s
ed access to confidential files. You can turn this
unauthori
z
ed access to confidential files. You can turn this
off in the localconfig file.
off in the localconfig file.
(bug 76154)
(bug 76154)
...
...
docs/xml/about.xml
View file @
efe725f6
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!ENTITY conventions SYSTEM "conventions.xml"> ] > -->
<!ENTITY conventions SYSTEM "conventions.xml"> ] > -->
<!-- $Id: about.xml,v 1.2
4 2006/06/06 15:24:10 uid623
Exp $ -->
<!-- $Id: about.xml,v 1.2
5 2007/07/22 22:25:12 timeless%mozdev.org
Exp $ -->
<chapter
id=
"about"
>
<chapter
id=
"about"
>
<title>
About This Guide
</title>
<title>
About This Guide
</title>
...
@@ -87,7 +87,7 @@
...
@@ -87,7 +87,7 @@
</para>
</para>
<para>
<para>
In addition, there are Bugzilla template locali
s
ation projects in
In addition, there are Bugzilla template locali
z
ation projects in
the following languages. They may have translated documentation
the following languages. They may have translated documentation
available:
available:
<ulink
url=
"http://sourceforge.net/projects/bugzilla-ar/"
>
Arabic
</ulink>
,
<ulink
url=
"http://sourceforge.net/projects/bugzilla-ar/"
>
Arabic
</ulink>
,
...
...
docs/xml/customization.xml
View file @
efe725f6
<!-- <!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook V4.1//EN"> -->
<!-- <!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook V4.1//EN"> -->
<chapter
id=
"customization"
>
<chapter
id=
"customization"
>
<title>
Customi
s
ing Bugzilla
</title>
<title>
Customi
z
ing Bugzilla
</title>
<section
id=
"cust-skins"
>
<section
id=
"cust-skins"
>
<title>
Custom Skins
</title>
<title>
Custom Skins
</title>
...
...
docs/xml/introduction.xml
View file @
efe725f6
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
</listitem>
</listitem>
<listitem>
<listitem>
<para>
Completely customi
sable and/or localis
able web user
<para>
Completely customi
zable and/or localiz
able web user
interface
</para>
interface
</para>
</listitem>
</listitem>
...
...
docs/xml/patches.xml
View file @
efe725f6
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
<warning>
<warning>
<para>
<para>
These files pre-date the templati
s
ation work done as part of the
These files pre-date the templati
z
ation work done as part of the
2.16 release, and have not been updated.
2.16 release, and have not been updated.
</para>
</para>
</warning>
</warning>
...
...
docs/xml/using.xml
View file @
efe725f6
...
@@ -243,7 +243,7 @@
...
@@ -243,7 +243,7 @@
<listitem>
<listitem>
<para>
<para>
<emphasis>
Priority:
</emphasis>
<emphasis>
Priority:
</emphasis>
The bug assignee uses this field to prioriti
s
e his or her bugs.
The bug assignee uses this field to prioriti
z
e his or her bugs.
It's a good idea not to change this on other people's bugs.
</para>
It's a good idea not to change this on other people's bugs.
</para>
</listitem>
</listitem>
...
@@ -1064,7 +1064,7 @@
...
@@ -1064,7 +1064,7 @@
<section
id=
"userpreferences"
>
<section
id=
"userpreferences"
>
<title>
User Preferences
</title>
<title>
User Preferences
</title>
<para>
Once you have logged in, you can customi
s
e various aspects of
<para>
Once you have logged in, you can customi
z
e various aspects of
Bugzilla via the "Edit prefs" link in the page footer.
Bugzilla via the "Edit prefs" link in the page footer.
The preferences are split into three tabs:
</para>
The preferences are split into three tabs:
</para>
...
...
editcomponents.cgi
View file @
efe725f6
...
@@ -218,7 +218,7 @@ if ($action eq 'new') {
...
@@ -218,7 +218,7 @@ if ($action eq 'new') {
my
$prodcomp
=
"&product="
.
url_quote
(
$product
->
name
)
.
my
$prodcomp
=
"&product="
.
url_quote
(
$product
->
name
)
.
"&component="
.
url_quote
(
$comp_name
);
"&component="
.
url_quote
(
$comp_name
);
# For locali
s
ation reasons, we get the title of the queries from the
# For locali
z
ation reasons, we get the title of the queries from the
# submitted form.
# submitted form.
my
$open_name
=
$cgi
->
param
(
'open_name'
);
my
$open_name
=
$cgi
->
param
(
'open_name'
);
my
$nonopen_name
=
$cgi
->
param
(
'nonopen_name'
);
my
$nonopen_name
=
$cgi
->
param
(
'nonopen_name'
);
...
...
editproducts.cgi
View file @
efe725f6
...
@@ -317,7 +317,7 @@ if ($action eq 'new') {
...
@@ -317,7 +317,7 @@ if ($action eq 'new') {
push
(
@series
,
[
$resolution
,
"resolution="
.
url_quote
(
$resolution
)]);
push
(
@series
,
[
$resolution
,
"resolution="
.
url_quote
(
$resolution
)]);
}
}
# For locali
s
ation reasons, we get the name of the "global" subcategory
# For locali
z
ation reasons, we get the name of the "global" subcategory
# and the title of the "open" query from the submitted form.
# and the title of the "open" query from the submitted form.
my
@openedstatuses
=
BUG_STATE_OPEN
;
my
@openedstatuses
=
BUG_STATE_OPEN
;
my
$query
=
my
$query
=
...
...
sanitycheck.cgi
View file @
efe725f6
...
@@ -874,10 +874,10 @@ Status('bug_check_status_everconfirmed');
...
@@ -874,10 +874,10 @@ Status('bug_check_status_everconfirmed');
BugCheck
(
"bugs WHERE bug_status = 'UNCONFIRMED' AND everconfirmed = 1"
,
BugCheck
(
"bugs WHERE bug_status = 'UNCONFIRMED' AND everconfirmed = 1"
,
'bug_check_status_everconfirmed_error_text'
);
'bug_check_status_everconfirmed_error_text'
);
# The below list of resolutions is hardcoded because we don't know if future
# The below list of resolutions is hard
-
coded because we don't know if future
# resolutions will be confirmed, unconfirmed or maybeconfirmed. I suspect
# resolutions will be confirmed, unconfirmed or maybeconfirmed. I suspect
# they will be maybeconfirmed, e.g. ASLEEP and REMIND. This hardcoding should
# they will be maybeconfirmed, e.g. ASLEEP and REMIND. This hardcoding should
# disappear when we have customi
s
ed statuses.
# disappear when we have customi
z
ed statuses.
BugCheck
(
"bugs WHERE bug_status IN ('NEW', 'ASSIGNED', 'REOPENED') AND everconfirmed = 0"
,
BugCheck
(
"bugs WHERE bug_status IN ('NEW', 'ASSIGNED', 'REOPENED') AND everconfirmed = 0"
,
'bug_check_status_everconfirmed_error_text2'
);
'bug_check_status_everconfirmed_error_text2'
);
...
...
template/en/default/account/prefs/settings.html.tmpl
View file @
efe725f6
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
<p class="criticalmessages">
<p class="criticalmessages">
All user preferences have been disabled by the
All user preferences have been disabled by the
<a href="mailto:[% Param("maintainer") %]">maintainer</a>
<a href="mailto:[% Param("maintainer") %]">maintainer</a>
of this installation, and so you cannot customi
s
e any.
of this installation, and so you cannot customi
z
e any.
</p>
</p>
[% END %]
[% END %]
...
...
template/en/default/global/user-error.html.tmpl
View file @
efe725f6
...
@@ -629,12 +629,12 @@
...
@@ -629,12 +629,12 @@
You entered <tt>[% value FILTER html %]</tt>, which isn't.
You entered <tt>[% value FILTER html %]</tt>, which isn't.
[% ELSIF error == "illegal_attachment_edit" %]
[% ELSIF error == "illegal_attachment_edit" %]
[% title = "Unauthori
s
ed Action" %]
[% title = "Unauthori
z
ed Action" %]
You are not authori
s
ed to edit attachment [% attach_id FILTER html %].
You are not authori
z
ed to edit attachment [% attach_id FILTER html %].
[% ELSIF error == "illegal_attachment_edit_bug" %]
[% ELSIF error == "illegal_attachment_edit_bug" %]
[% title = "Unauthori
s
ed Action" %]
[% title = "Unauthori
z
ed Action" %]
You are not authori
s
ed to edit attachments on [% terms.bug %]
You are not authori
z
ed to edit attachments on [% terms.bug %]
[%+ bug_id FILTER html %].
[%+ bug_id FILTER html %].
[% ELSIF error == "illegal_attachment_is_patch" %]
[% ELSIF error == "illegal_attachment_is_patch" %]
...
@@ -721,12 +721,12 @@
...
@@ -721,12 +721,12 @@
[% ELSIF error == "illegal_series_creation" %]
[% ELSIF error == "illegal_series_creation" %]
[% admindocslinks = {'groups.html' => 'Group security'} %]
[% admindocslinks = {'groups.html' => 'Group security'} %]
[% docslinks = {'reporting.html' => 'Reporting'} %]
[% docslinks = {'reporting.html' => 'Reporting'} %]
You are not authori
s
ed to create series.
You are not authori
z
ed to create series.
[% ELSIF error == "illegal_series_edit" %]
[% ELSIF error == "illegal_series_edit" %]
[% admindocslinks = {'groups.html' => 'Group security'} %]
[% admindocslinks = {'groups.html' => 'Group security'} %]
[% docslinks = {'reporting.html' => 'Reporting'} %]
[% docslinks = {'reporting.html' => 'Reporting'} %]
You are not authori
s
ed to edit this series. To do this, you must either
You are not authori
z
ed to edit this series. To do this, you must either
be its creator, or an administrator.
be its creator, or an administrator.
[% ELSIF error == "insufficient_data_points" %]
[% ELSIF error == "insufficient_data_points" %]
...
...
template/en/default/search/knob.html.tmpl
View file @
efe725f6
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/variables.none.tmpl %]
[%# This is not necessary for English templates, but useful for locali
s
ers. %]
[%# This is not necessary for English templates, but useful for locali
z
ers. %]
[% ordersdesc = {
[% ordersdesc = {
"Reuse same sort as last time" => "Reuse same sort as last time",
"Reuse same sort as last time" => "Reuse same sort as last time",
"Bug Number" => "$terms.Bug Number",
"Bug Number" => "$terms.Bug Number",
...
...
template/en/default/search/search-help.html.tmpl
View file @
efe725f6
...
@@ -70,7 +70,7 @@
...
@@ -70,7 +70,7 @@
{ id => "bug_severity",
{ id => "bug_severity",
html => "How severe the $terms.bug is, or whether it's an enhancement." },
html => "How severe the $terms.bug is, or whether it's an enhancement." },
{ id => "priority",
{ id => "priority",
html => "Engineers prioriti
s
e their $terms.bugs using this field." },
html => "Engineers prioriti
z
e their $terms.bugs using this field." },
{ id => "rep_platform",
{ id => "rep_platform",
html => "The hardware platform the $terms.bug was observed on." },
html => "The hardware platform the $terms.bug was observed on." },
{ id => "op_sys",
{ id => "op_sys",
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment