124 lines
5.0 KiB
Cheetah
124 lines
5.0 KiB
Cheetah
[% template_version = "1.0@bugzilla.org" %]
|
|
[%# -*- mode: sgml -*- %]
|
|
[%# The contents of this file are subject to the Mozilla Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
# Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s): Jacob Steenhagen <jake@bugzilla.org>
|
|
# Scott Collins <scc@mozilla.org>
|
|
# Christopher A. Aillon <christopher@aillon.com>
|
|
#%]
|
|
<?xml version="1.0"?>
|
|
<!-- [% template_version %] -->
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="[% Param('urlbase') %]css/panel.css" type="text/css"?>
|
|
<window
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
orient="vertical"
|
|
onload="document.getElementById('query-field').addEventListener('keypress', initial_keypress_handler, true)">
|
|
|
|
<!-- Load QuickSearch libraries -->
|
|
<script type="application/x-javascript" src="localconfig.js"/>
|
|
<script type="application/x-javascript" src="quicksearch.js"/>
|
|
<script type="application/x-javascript"><![CDATA[
|
|
|
|
// Tell QuickSearch that the source of this is the sidebar
|
|
var sidebar = 1;
|
|
|
|
function load_absolute_url( aAbsoluteURL ) {
|
|
content.location = aAbsoluteURL;
|
|
}
|
|
|
|
function load_relative_url( aRelativeURL ) {
|
|
aRelativeURL = '[% Param('urlbase') %]' + aRelativeURL;
|
|
_content.location = aRelativeURL;
|
|
}
|
|
|
|
function initial_keypress_handler( aEvent ) {
|
|
this.removeAttribute("class");
|
|
this.addEventListener("keypress", normal_keypress_handler, true);
|
|
this.removeEventListener("keypress", initial_keypress_handler, true);
|
|
}
|
|
|
|
function normal_keypress_handler( aEvent ) {
|
|
if ( aEvent.keyCode == 13 )
|
|
QuickSearch(this.value);
|
|
}
|
|
|
|
]]></script>
|
|
|
|
<textbox id="query-field" class="descriptive-content" value="enter query" onfocus="this.setSelectionRange(0,this.value.length)"/>
|
|
|
|
<separator class="groove"/>
|
|
|
|
<box autostretch="never" valign="top">
|
|
<box orient="vertical" flex="1">
|
|
<text class="text-link" onclick="load_relative_url('query.cgi')" value="new query"/>
|
|
<text class="text-link" onclick="load_relative_url('reports.cgi')" value="reports"/>
|
|
<text class="text-link" onclick="load_relative_url('enter_bug.cgi')" value="new bug"/>
|
|
<separator class="thin"/>
|
|
|
|
[% IF username %]
|
|
<text class="text-link" onclick="load_relative_url('userprefs.cgi')" value="edit prefs"/>
|
|
[%- IF UserInGroup('tweakparams') %]
|
|
<text class="text-link" onclick="load_relative_url('editparams.cgi')" value="edit params"/>
|
|
[%- END %]
|
|
[%- IF UserInGroup('editusers') || canblessany %]
|
|
<text class="text-link" onclick="load_relative_url('editusers.cgi')" value="edit users"/>
|
|
[%- END %]
|
|
[%- IF UserInGroup('editcomponents') %]
|
|
<text class="text-link" onclick="load_relative_url('editcomponents.cgi')" value="edit components"/>
|
|
[%- END %]
|
|
[%- IF UserInGroup('creategroups') %]
|
|
<text class="text-link" onclick="load_relative_url('editgroups.cgi')" value="edit groups"/>
|
|
[%- END %]
|
|
[%- IF UserInGroup('editkeywords') %]
|
|
<text class="text-link" onclick="load_relative_url('editkeywords.cgi')" value="edit keywords"/>
|
|
[%- END %]
|
|
[%- IF UserInGroup('tweakparams') %]
|
|
<text class="text-link" onclick="load_relative_url('sanitycheck.cgi')" value="sanity check"/>
|
|
[%- END %]
|
|
<text class="text-link" onclick="load_relative_url('relogin.cgi')" value="logout [% username FILTER html %]"/>
|
|
<separator class="thin"/>
|
|
[%- IF mybugsurl %]
|
|
<text class="text-link" onclick="load_relative_url('[% mybugsurl FILTER html %]')" value="my bugs"/>
|
|
[%- END %]
|
|
[%- IF Param('usevotes') %]
|
|
<text class="text-link" onclick="load_relative_url('votes.cgi?action=show_user')" value="my votes"/>
|
|
[%- END %]
|
|
|
|
[%- FOREACH name = namedqueries %]
|
|
<text class="text-link" onclick="load_relative_url('buglist.cgi?cmdtype=runnamed&namedcmd=[% name FILTER url_quote %]')" value="[% name FILTER html %]"/>
|
|
[% END %]
|
|
|
|
[% ELSE %]
|
|
<text class="text-link" onclick="load_relative_url('createaccount.cgi')" value="new user"/>
|
|
<text class="text-link" onclick="load_relative_url('query.cgi?GoAheadAndLogIn=1')" value="log in"/>
|
|
[% END %]
|
|
|
|
</box>
|
|
</box>
|
|
|
|
<spring flex="1"/>
|
|
<box orient="horizontal">
|
|
<spring flex="1"/>
|
|
<html align="right">
|
|
<html:a class="text-link" href="[% Param('urlbase') %]sidebar.cgi">reload</html:a>
|
|
</html>
|
|
</box>
|
|
</window>
|