diff options
author | gerv%gerv.net <> | 2002-10-03 16:04:02 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-10-03 16:04:02 +0200 |
commit | ca842229d2d58c85517a8fc8e5a2bc9414752dae (patch) | |
tree | ec8cc68d9533b6ca5744a2852c31a57ccae16819 /template | |
parent | 7b1731d5ceeb67012942d872ab8d9ebb048b04c1 (diff) | |
download | bugzilla-ca842229d2d58c85517a8fc8e5a2bc9414752dae.tar.gz bugzilla-ca842229d2d58c85517a8fc8e5a2bc9414752dae.tar.xz |
Bug 155389 - More <link> elements & templatization of navigation_links. Patch by gerv; r=bbaetz.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/global/header.html.tmpl | 3 | ||||
-rw-r--r-- | template/en/default/global/site-navigation.html.tmpl | 103 |
3 files changed, 104 insertions, 3 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index ef9ec2d7f..152852169 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -27,7 +27,6 @@ h1 = "Bugzilla Bug $bug.bug_id" h2 = filtered_desc h3 = "Last modified: $bug.calc_disp_date" - header_html = navigation_links style_urls = [ "css/edit_bug.css" ] %] [% END %] diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 889d63d0b..ed133140d 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -28,7 +28,6 @@ # h3: string. Right-aligned subheader. # bgcolor: string. the page's background color ("#rrggbb"). # onload: string. JavaScript code to run when the page finishes loading. - # header_html: string. Any other HTML to go inside the <head> tags. # javascript: string. Javascript to go in the header. # style: string. CSS style. # style_urls: list. List of URLs to CSS style sheets. @@ -62,7 +61,7 @@ [%# Migration note: contents of the old Param 'headerhtml' would go here %] - [% header_html %] + [% PROCESS "global/site-navigation.html.tmpl" %] [% IF javascript %] <script type="text/javascript" language="JavaScript"> diff --git a/template/en/default/global/site-navigation.html.tmpl b/template/en/default/global/site-navigation.html.tmpl new file mode 100644 index 000000000..6cd5b5c7d --- /dev/null +++ b/template/en/default/global/site-navigation.html.tmpl @@ -0,0 +1,103 @@ +<!-- 1.0@bugzilla.org --> +[%# 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): Toms Baugis <toms.baugis@tietoenator.com> + # Gervase Markham <gerv@gerv.net> + #%] + +[%# INTERFACE: + # bug_list: list of integers. List of bugs numbers of current query (if any). + # bug: integer. Number of current bug. + #%] + +[% IF NOT (user_agent.match("MSIE [1-6]") OR user_agent.match("Mozilla/4")) %] + <link rel="Top" href="index.cgi"> + + [%# *** Bug List Navigation *** %] + [% IF bug && bug_list && bug_list.size > 0 %] + <link rel="Up" href="buglist.cgi?regetlastlist=1"> + + [% current_bug_idx = lsearch(bug_list, bug.bug_id) %] + + [% IF current_bug_idx > 0 %] + <link rel="First" href="show_bug.cgi?id=[% bug_list.first %]"> + [% prev_bug = current_bug_idx - 1 %] + <link rel="Prev" href="show_bug.cgi?id=[% bug_list.$prev_bug %]"> + [% END %] + + [% IF current_bug_idx + 1 < bug_list.size %] + [% next_bug = current_bug_idx + 1 %] + <link rel="Next" href="show_bug.cgi?id=[% bug_list.$next_bug %]"> + <link rel="Last" href="show_bug.cgi?id=[% bug_list.last %]"> + [% END %] + [% END %] + + + [%# *** Dependencies, Votes, Activity, Print-version *** %] + [% IF bug %] + <link rel="Show" title="Dependency Tree" + href="showdependencytree.cgi?id=[% bug.bug_id %]"> + <link rel="Show" title="Dependency Graph" + href="showdependencygraph.cgi?id=[% bug.bug_id %]"> + + [% IF use_votes %] + <link rel="Show" title="Votes ([% bug.votes %])" + href="votes.cgi?action=show_bug&bug_id=[% bug.bug_id %]"> + [% END %] + + <link rel="Show" title="Bug Activity" + href="show_activity.cgi?id=[% bug.bug_id %]"> + <link rel="Show" title="Printer-Friendly Version" + href="long_list.cgi?buglist=[% bug.bug_id %]"> + [% END %] + + + [%# *** Preset Queries *** %] + [% IF user.showmybugslink %] + [% user.login = user.login FILTER url_quote %] + [% substs = { userid => user.login } %] + <link rel="Preset Queries" title="My Bugs" + href="[% PerformSubsts(Param('mybugstemplate'), substs) %]"> + [% END %] + + [% FOREACH q = user.queries %] + [% IF q.linkinfooter %] + <link rel="Preset Queries" + title="[% q.name FILTER html %]" + href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER url_quote %]"> + [% END %] + [% END %] + + [%# *** Bugzilla Administration Tools *** %] + [% IF user.login %] + [% '<link rel="Administration" title="Parameters" + href="editparams.cgi">' IF user.groups.tweakparams %] + [% '<link rel="Administration" title="Users" + href="editusers.cgi">' IF user.groups.editusers %] + [% '<link rel="Administration" title="Products" + href="editproducts.cgi">' IF user.groups.editcomponents %] + [% '<link rel="Administration" title="Attachments" + href="editattachstatuses.cgi">' IF user.groups.editcomponents %] + [% '<link rel="Administration" title="Groups" + href="editgroups.cgi">' IF user.groups.creategroups %] + [% '<link rel="Administration" title="Keywords" + href="editkeywords.cgi">' IF user.groups.editkeywords %] + [% '<link rel="Administration" title="Sanity Check" + href="sanitycheck.cgi">' IF user.groups.tweakparams %] + [% END %] +[% END %] |