diff options
author | jake%acutex.net <> | 2001-12-13 07:41:04 +0100 |
---|---|---|
committer | jake%acutex.net <> | 2001-12-13 07:41:04 +0100 |
commit | e9f04a30422f4da41d15e22337b6e6477b2fb590 (patch) | |
tree | b6b25129f616f2032330c74f0ddd5d59b13fffdf /template/default | |
parent | 0450229e1c961f1ab07134702bea163f43a2e65b (diff) | |
download | bugzilla-e9f04a30422f4da41d15e22337b6e6477b2fb590.tar.gz bugzilla-e9f04a30422f4da41d15e22337b6e6477b2fb590.tar.xz |
Bug 37339 and Bug 80183 - Adding a sidebar.cgi and index.cgi. The sidebar.cgi can currently be used in Mozilla/Netscape 6 and uses XUL that was originally written by Scott Collins <scc@mozilla.org>. The index.cgi displays both the proper header and footer in the appropriate places. It also changes the links accoding to if you are logged in or not.
r= ddk, kiko
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/index.tmpl | 83 | ||||
-rw-r--r-- | template/default/sidebar/xul.tmpl | 121 |
2 files changed, 204 insertions, 0 deletions
diff --git a/template/default/index.tmpl b/template/default/index.tmpl new file mode 100644 index 000000000..8c1af4ed6 --- /dev/null +++ b/template/default/index.tmpl @@ -0,0 +1,83 @@ +[%# -*- mode: html -*- %] +[%# 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): Terry Weissman <terry@mozilla.org> + # Jacob Steenhagen <jake@acutex.net> + #%] + +[% INCLUDE global/header + title = 'Bugzilla Main Page' +%] + +<script type="text/javascript" language="JavaScript"> +<!-- +function addSidebar() { + if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) + { + window.sidebar.addPanel ("Bugzilla", "[% Param('urlbase') %]sidebar.cgi", ""); + } + else + { + var rv = window.confirm ("This page is enhanced for use with Netscape 6. " + "Would you like to upgrade now?"); + if (rv) + document.location.href = "http://home.netscape.com/download/index.html"; + } + } +//--> +</script> + + +<table width="100%"><tr> + <td> + <p>This is where we put in lots of nifty words explaining all about Bugzilla.</p> + + But it all boils down to a choice of: + <p> + <a href="query.cgi">Query existing bug reports</a><br> + <a href="enter_bug.cgi">Enter a new bug report</a><br> + <a href="reports.cgi">Get summary reports</a><br> + </p><p> +[% IF username %] + <a href="[% PerformSubsts(Param('mybugstemplate'), subst) %]">My Bugs</a><br> + <a href="userprefs.cgi">Change password or user preferences</a><br> + <a href="relogin.cgi">Logout [% username %]</a><br> +[% ELSE %] + <a href="query.cgi?GoAheadAndLogIn=1">Log in to an existing account</a><br> + <a href="createaccount.cgi">Open a new Bugzilla account</a><br> +[% END %] + </p><p> + <a href="javascript:addSidebar()">Add to Sidebar</a> (Requires Mozilla or Netscape 6)<br> + </p> + <form name="f" action="show_bug.cgi" method="get" + onsubmit="QuickSearch(f.id.value); return false;"> + <p> + Enter a bug # or some search terms:<br> + <input type="text" name="id"> + <input type="submit" value="Show"> + <a href="quicksearch.html">[Help]</a> + </p> + </form> + </td> + <td align="right"><img src="ant.jpg" width=329 height=220 border=2 alt="ant.jpg [8.5k]"></td> +</tr></table> + +<script type="text/javascript" language="JavaScript" src="localconfig.js"></script> +<script type="text/javascript" language="JavaScript" src="quicksearch.js"></script> + + +[% INCLUDE global/footer %] diff --git a/template/default/sidebar/xul.tmpl b/template/default/sidebar/xul.tmpl new file mode 100644 index 000000000..1794d5f50 --- /dev/null +++ b/template/default/sidebar/xul.tmpl @@ -0,0 +1,121 @@ +[%# -*- 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@acutex.net> + # Scott Collins <scc@mozilla.org> + #%] +<?xml version="1.0"?> +<?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="text/javascript" language="JavaScript" src="localconfig.js"/> +<script type="text/javascript" language="JavaScript" src="quicksearch.js"/> + +<script type="text/javascript" language="JavaScript"> + +// Tell QuickSearch that the source of this is the sidebar +var sidebar = 1; + +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"/> +[% END %] +[% IF UserInGroup('tweakparams') %] + <text class="text-link" onclick="load_relative_url('editparams.cgi')" value="edit params"/> +[% END %] +[% IF UserInGroup('editusers') || blessgroupset %] + <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 %] +[% IF username %] + <text class="text-link" onclick="load_relative_url('relogin.cgi')" value="logout [% username FILTER html %]"/> + <separator class="thin"/> +[% END %] + +[% IF mybugsurl %] + <text class="text-link" onclick="load_relative_url('[% mybugsurl FILTER html %]')" value="my bugs"/> +[% END %] +[% IF anyvotesallowed && username %] + <text class="text-link" onclick="load_relative_url('showvotes.cgi')" value="my votes"/> +[% END %] + +[% FOREACH name = namedqueries %] + <text class="text-link" onclick="load_relative_url('buglist.cgi?cmdtype=runnamed&namedcmd=[% name FILTER url %]')" value="[% name FILTER html %]"/> +[% END %] + +[% IF NOT username %] + <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> |