Commit cb438138 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 214861: Allow loading of stored queries as the bug set for reporting - Patch…

Bug 214861: Allow loading of stored queries as the bug set for reporting - Patch by Fré©ric Buclin <LpSolit@gmail.com> r=gerv a=LpSolit
parent 90599db3
......@@ -47,6 +47,7 @@ use lib qw(. lib);
use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::CGI;
use Bugzilla::Error;
use Bugzilla::Util;
use Bugzilla::Chart;
......@@ -186,6 +187,18 @@ elsif ($action eq "alter") {
edit($series);
}
elsif ($action eq "convert_search") {
my $saved_search = $cgi->param('series_from_search') || '';
my ($query) = grep { $_->name eq $saved_search } @{ $user->queries };
my $url = '';
if ($query) {
my $params = new Bugzilla::CGI($query->edit_link);
# These two parameters conflict with the one below.
$url = $params->canonicalise_query('format', 'query_format');
$url = '&amp;' . html_quote($url);
}
print $cgi->redirect(-location => correct_urlbase() . "query.cgi?format=create-series$url");
}
else {
ThrowCodeError("unknown_action");
}
......
......@@ -260,7 +260,23 @@ function subcatSelected() {
</form>
[% IF user.in_group('editbugs') %]
<h3><a href="query.cgi?format=create-series">Create New Data Set</a></h3>
<h3>Create New Data Set</h3>
<p>
You can either create a new data set based on one of your saved searches
or start with a clean slate.
</p>
<form action="chart.cgi" id="create_series" name="create_series" method="GET">
<input type="hidden" name="action" value="convert_search">
<label for="series_from_search">Based on:</label>
<select id="series_from_search" name="series_from_search">
<option value="">(Clean slate)</option>
[% FOREACH q = user.queries %]
<option value="[% q.name FILTER html %]">[% q.name FILTER html %]</option>
[% END %]
</select>
<input id="submit_create" type="submit" value="Create a new data set">
</form>
[% END %]
[% PROCESS global/footer.html.tmpl %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment