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
9e518c6b
Commit
9e518c6b
authored
Jul 29, 2015
by
Simon Green
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 399078 - Remove the 'musthavemilestoneonaccept' parameter
r=gerv, a=simon
parent
f578f796
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
2 additions
and
34 deletions
+2
-34
Bugzilla.pm
Bugzilla/API/1_0/Resource/Bugzilla.pm
+0
-2
CGI.pm
Bugzilla/CGI.pm
+2
-1
Core.pm
Bugzilla/Config/Core.pm
+0
-6
Bugzilla.pm
Bugzilla/WebService/Bugzilla.pm
+0
-2
parameters.rst
docs/en/rst/administering/parameters.rst
+0
-9
bugzilla.rst
docs/en/rst/api/core/v1/bugzilla.rst
+0
-2
core.html.tmpl
template/en/default/admin/params/core.html.tmpl
+0
-8
header.html.tmpl
template/en/default/global/header.html.tmpl
+0
-1
welcome-admin.html.tmpl
template/en/default/welcome-admin.html.tmpl
+0
-3
No files found.
Bugzilla/API/1_0/Resource/Bugzilla.pm
View file @
9e518c6b
...
@@ -62,7 +62,6 @@ use constant PARAMETERS_LOGGED_IN => qw(
...
@@ -62,7 +62,6 @@ use constant PARAMETERS_LOGGED_IN => qw(
attachment_base
attachment_base
commentonchange_resolution
commentonchange_resolution
commentonduplicate
commentonduplicate
cookiepath
defaultopsys
defaultopsys
defaultplatform
defaultplatform
defaultpriority
defaultpriority
...
@@ -443,7 +442,6 @@ A logged-in user can access the following parameters (listed alphabetically):
...
@@ -443,7 +442,6 @@ A logged-in user can access the following parameters (listed alphabetically):
C<attachment_base>,
C<attachment_base>,
C<commentonchange_resolution>,
C<commentonchange_resolution>,
C<commentonduplicate>,
C<commentonduplicate>,
C<cookiepath>,
C<defaultopsys>,
C<defaultopsys>,
C<defaultplatform>,
C<defaultplatform>,
C<defaultpriority>,
C<defaultpriority>,
...
...
Bugzilla/CGI.pm
View file @
9e518c6b
...
@@ -430,7 +430,8 @@ sub send_cookie {
...
@@ -430,7 +430,8 @@ sub send_cookie {
ThrowCodeError
(
'cookies_need_value'
)
unless
$paramhash
{
'-value'
};
ThrowCodeError
(
'cookies_need_value'
)
unless
$paramhash
{
'-value'
};
# Add the default path and the domain in.
# Add the default path and the domain in.
$paramhash
{
'-path'
}
=
Bugzilla
->
params
->
{
'cookiepath'
};
my
$uri
=
URI
->
new
(
Bugzilla
->
params
->
{
urlbase
});
$paramhash
{
'-path'
}
=
$uri
->
path
;
$paramhash
{
'-domain'
}
=
Bugzilla
->
params
->
{
'cookiedomain'
}
$paramhash
{
'-domain'
}
=
Bugzilla
->
params
->
{
'cookiedomain'
}
if
Bugzilla
->
params
->
{
'cookiedomain'
};
if
Bugzilla
->
params
->
{
'cookiedomain'
};
...
...
Bugzilla/Config/Core.pm
View file @
9e518c6b
...
@@ -35,12 +35,6 @@ use constant get_param_list => (
...
@@ -35,12 +35,6 @@ use constant get_param_list => (
default
=>
''
,
default
=>
''
,
checker
=>
\&
check_sslbase
checker
=>
\&
check_sslbase
},
},
{
name
=>
'cookiepath'
,
type
=>
't'
,
default
=>
'/'
},
);
);
1
;
1
;
Bugzilla/WebService/Bugzilla.pm
View file @
9e518c6b
...
@@ -56,7 +56,6 @@ use constant PARAMETERS_LOGGED_IN => qw(
...
@@ -56,7 +56,6 @@ use constant PARAMETERS_LOGGED_IN => qw(
attachment_base
attachment_base
commentonchange_resolution
commentonchange_resolution
commentonduplicate
commentonduplicate
cookiepath
defaultopsys
defaultopsys
defaultplatform
defaultplatform
defaultpriority
defaultpriority
...
@@ -412,7 +411,6 @@ A logged-in user can access the following parameters (listed alphabetically):
...
@@ -412,7 +411,6 @@ A logged-in user can access the following parameters (listed alphabetically):
C<attachment_base>,
C<attachment_base>,
C<commentonchange_resolution>,
C<commentonchange_resolution>,
C<commentonduplicate>,
C<commentonduplicate>,
C<cookiepath>,
C<defaultopsys>,
C<defaultopsys>,
C<defaultplatform>,
C<defaultplatform>,
C<defaultpriority>,
C<defaultpriority>,
...
...
docs/en/rst/administering/parameters.rst
View file @
9e518c6b
...
@@ -40,15 +40,6 @@ sslbase
...
@@ -40,15 +40,6 @@ sslbase
the :param:`sslbase` should be set
the :param:`sslbase` should be set
to :paramval:`https://www.foo.com/bugzilla/`.
to :paramval:`https://www.foo.com/bugzilla/`.
cookiepath
Defines a path, relative to the web document root, that Bugzilla
cookies will be restricted to. For example, if the
:param:`urlbase` is set to
:file:`http://www.foo.com/bugzilla/`, the
:param:`cookiepath` should be set to
:paramval:`/bugzilla/`. Setting it to :paramval:`/` will allow all sites
served by this web server or virtual host to read Bugzilla cookies.
.. _param-general:
.. _param-general:
General
General
...
...
docs/en/rst/api/core/v1/bugzilla.rst
View file @
9e518c6b
...
@@ -171,7 +171,6 @@ Example response for authenticated user:
...
@@ -171,7 +171,6 @@ Example response for authenticated user:
"attachment_base" : "http://bugzilla.example.com/",
"attachment_base" : "http://bugzilla.example.com/",
"commentonchange_resolution" : "0",
"commentonchange_resolution" : "0",
"commentonduplicate" : "0",
"commentonduplicate" : "0",
"cookiepath" : "/",
"createemailregexp" : ".*",
"createemailregexp" : ".*",
"defaultopsys" : "",
"defaultopsys" : "",
"defaultplatform" : "",
"defaultplatform" : "",
...
@@ -209,7 +208,6 @@ A logged-in user can access the following parameters (listed alphabetically):
...
@@ -209,7 +208,6 @@ A logged-in user can access the following parameters (listed alphabetically):
* attachment_base
* attachment_base
* commentonchange_resolution
* commentonchange_resolution
* commentonduplicate
* commentonduplicate
* cookiepath
* defaultopsys
* defaultopsys
* defaultplatform
* defaultplatform
* defaultpriority
* defaultpriority
...
...
template/en/default/admin/params/core.html.tmpl
View file @
9e518c6b
...
@@ -24,12 +24,4 @@
...
@@ -24,12 +24,4 @@
_ " using the <var>sslbase</var> parameter. Also, when this is enabled,"
_ " using the <var>sslbase</var> parameter. Also, when this is enabled,"
_ " Bugzilla will send out links using <var>sslbase</var> in emails"
_ " Bugzilla will send out links using <var>sslbase</var> in emails"
_ " instead of <var>urlbase</var>.",
_ " instead of <var>urlbase</var>.",
cookiepath => "Path, relative to your web document root, to which to restrict " _
"Bugzilla cookies. Normally this is the URI portion of your URL " _
"base. Begin with a / (single slash mark). For instance, if " _
"Bugzilla serves from 'http://www.somedomain.com/bugzilla/', set " _
"this parameter to /bugzilla/. Setting it to / will allow " _
"all sites served by this web server or virtual host to read " _
"Bugzilla cookies.",
} %]
} %]
template/en/default/global/header.html.tmpl
View file @
9e518c6b
...
@@ -183,7 +183,6 @@
...
@@ -183,7 +183,6 @@
#
%
]
#
%
]
var
BUGZILLA
=
{
var
BUGZILLA
=
{
param
:
{
param
:
{
cookiepath
:
'[% Param('
cookiepath
') FILTER js %]'
,
maxusermatches
:
[
%
Param
(
'maxusermatches'
)
FILTER
js
%
]
maxusermatches
:
[
%
Param
(
'maxusermatches'
)
FILTER
js
%
]
},
},
constant
:
{
constant
:
{
...
...
template/en/default/welcome-admin.html.tmpl
View file @
9e518c6b
...
@@ -36,9 +36,6 @@
...
@@ -36,9 +36,6 @@
reason you see this page: as long as this parameter is not set, you will see this
reason you see this page: as long as this parameter is not set, you will see this
page again and again).</li>
page again and again).</li>
<li><a href="editparams.cgi?section=core#cookiepath_desc">cookiepath</a> is important
for your browser to manage your cookies correctly.</li>
<li><a href="editparams.cgi?section=general#maintainer_desc">maintainer</a>,
<li><a href="editparams.cgi?section=general#maintainer_desc">maintainer</a>,
the person responsible for this installation if something is
the person responsible for this installation if something is
running wrongly.</li>
running wrongly.</li>
...
...
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