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
a3b0a94e
Commit
a3b0a94e
authored
Aug 28, 2012
by
Byron Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 772953: Remove the token from buglist urls
r=dkl, a=LpSolit
parent
ee28112b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
2 deletions
+29
-2
CGI.pm
Bugzilla/CGI.pm
+5
-0
buglist.cgi
buglist.cgi
+2
-1
custom-search.js
js/custom-search.js
+8
-0
list.html.tmpl
template/en/default/list/list.html.tmpl
+3
-0
search-advanced.html.tmpl
template/en/default/search/search-advanced.html.tmpl
+11
-1
No files found.
Bugzilla/CGI.pm
View file @
a3b0a94e
...
@@ -171,6 +171,11 @@ sub clean_search_url {
...
@@ -171,6 +171,11 @@ sub clean_search_url {
# Delete leftovers from the login form
# Delete leftovers from the login form
$self
->
delete
(
'Bugzilla_remember'
,
'GoAheadAndLogIn'
);
$self
->
delete
(
'Bugzilla_remember'
,
'GoAheadAndLogIn'
);
# Delete the token if we're not updating the defaults
unless
(
defined
$self
->
param
(
'remtype'
)
&&
$self
->
param
(
'remtype'
)
eq
'asdefault'
)
{
$self
->
delete
(
"token"
);
}
foreach
my
$num
(
1
,
2
,
3
)
{
foreach
my
$num
(
1
,
2
,
3
)
{
# If there's no value in the email field, delete the related fields.
# If there's no value in the email field, delete the related fields.
if
(
!
$self
->
param
(
"email$num"
))
{
if
(
!
$self
->
param
(
"email$num"
))
{
...
...
buglist.cgi
View file @
a3b0a94e
...
@@ -1035,7 +1035,8 @@ else {
...
@@ -1035,7 +1035,8 @@ else {
# Set 'urlquerypart' once the buglist ID is known.
# Set 'urlquerypart' once the buglist ID is known.
$vars
->
{
'urlquerypart'
}
=
$params
->
canonicalise_query
(
'order'
,
'cmdtype'
,
$vars
->
{
'urlquerypart'
}
=
$params
->
canonicalise_query
(
'order'
,
'cmdtype'
,
'query_based_on'
);
'query_based_on'
,
'token'
);
if
(
$format
->
{
'extension'
}
eq
"csv"
)
{
if
(
$format
->
{
'extension'
}
eq
"csv"
)
{
# We set CSV files to be downloaded, as they are designed for importing
# We set CSV files to be downloaded, as they are designed for importing
...
...
js/custom-search.js
View file @
a3b0a94e
...
@@ -134,7 +134,15 @@ function fix_query_string(form_member) {
...
@@ -134,7 +134,15 @@ function fix_query_string(form_member) {
return
;
return
;
var
form
=
YAHOO
.
util
.
Dom
.
getAncestorByTagName
(
form_member
,
'form'
);
var
form
=
YAHOO
.
util
.
Dom
.
getAncestorByTagName
(
form_member
,
'form'
);
// Disable the token field so setForm doesn't include it
var
reenable_token
=
false
;
if
(
form
[
'token'
]
&&
!
form
[
'token'
].
disabled
)
{
form
[
'token'
].
disabled
=
true
;
reenable_token
=
true
;
}
var
query
=
YAHOO
.
util
.
Connect
.
setForm
(
form
);
var
query
=
YAHOO
.
util
.
Connect
.
setForm
(
form
);
if
(
reenable_token
)
form
[
'token'
].
disabled
=
false
;
window
.
History
.
replaceState
(
null
,
document
.
title
,
'?'
+
query
);
window
.
History
.
replaceState
(
null
,
document
.
title
,
'?'
+
query
);
}
}
...
...
template/en/default/list/list.html.tmpl
View file @
a3b0a94e
...
@@ -38,6 +38,9 @@
...
@@ -38,6 +38,9 @@
&list_id=[% cgi.param('list_id') FILTER uri %]
&list_id=[% cgi.param('list_id') FILTER uri %]
[%~ END %]
[%~ END %]
[% END %]
[% END %]
[% ELSIF cgi.param('token') != '' %]
[% new_url = 'buglist.cgi?'
_ cgi.canonicalise_query('token', 'cmdtype', 'remtype') %]
[% END %]
[% END %]
if (history && history.replaceState) {
if (history && history.replaceState) {
...
...
template/en/default/search/search-advanced.html.tmpl
View file @
a3b0a94e
...
@@ -15,10 +15,19 @@
...
@@ -15,10 +15,19 @@
[% USE Bugzilla %]
[% USE Bugzilla %]
[% cgi = Bugzilla.cgi %]
[% cgi = Bugzilla.cgi %]
[% javascript = BLOCK %]
function remove_token() {
if (queryform.token) {
var asDefault = document.getElementById('remasdefault');
queryform.token.disabled = !asDefault.checked;
}
}
[% END %]
[% PROCESS global/header.html.tmpl
[% PROCESS global/header.html.tmpl
title = "Search for $terms.bugs"
title = "Search for $terms.bugs"
yui = [ 'autocomplete', 'calendar' ]
yui = [ 'autocomplete', 'calendar' ]
javascript = javascript
javascript_urls = [ "js/util.js", "js/TUI.js", "js/field.js"]
javascript_urls = [ "js/util.js", "js/TUI.js", "js/field.js"]
style_urls = [ "skins/standard/search_form.css" ]
style_urls = [ "skins/standard/search_form.css" ]
doc_section = "query.html"
doc_section = "query.html"
...
@@ -30,7 +39,8 @@
...
@@ -30,7 +39,8 @@
<p id="search_help">Hover your mouse over each field label to get help for that field.</p>
<p id="search_help">Hover your mouse over each field label to get help for that field.</p>
<form method="post" action="buglist.cgi" name="queryform" id="queryform">
<form method="post" action="buglist.cgi" name="queryform" id="queryform"
onsubmit="remove_token()">
[% PROCESS search/form.html.tmpl %]
[% PROCESS search/form.html.tmpl %]
...
...
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