site-navigation.html.tmpl 4.34 KB
Newer Older
1
[%# 1.0@bugzilla.org %]
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
[%# 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:
24
  # bug_list: list of integers. List of bug numbers of current query (if any).
25
  # bug.bug_id: integer. Number of current bug (for navigation purposes)
26
  #%]
27

28 29
[% PROCESS global/variables.none.tmpl %]

30 31 32 33
[% USE Bugzilla %]
[% cgi = Bugzilla.cgi %]

[% IF NOT (cgi.user_agent("MSIE [1-6]") OR cgi.user_agent("Mozilla/4")) %]
34
  <link rel="Top" href="[% Param('urlbase') %]">
35 36 37 38 39

  [%# *** Bug List Navigation *** %]
  [% IF bug && bug_list && bug_list.size > 0 %]
    <link rel="Up" href="buglist.cgi?regetlastlist=1">

40 41 42
    <link rel="First" href="show_bug.cgi?id=[% bug_list.first %]">
    <link rel="Last" href="show_bug.cgi?id=[% bug_list.last %]">

43 44
    [% current_bug_idx = lsearch(bug_list, bug.bug_id) %]

45 46 47 48 49 50 51 52 53 54 55
    [% IF current_bug_idx != -1 %]

      [% IF current_bug_idx > 0 %]
      [% 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 %]">
      [% END %]
56 57 58 59 60 61 62 63

    [% END %]
  [% END %]


  [%# *** Dependencies, Votes, Activity, Print-version *** %]
  [% IF bug %]
    <link rel="Show" title="Dependency Tree"
64
          href="showdependencytree.cgi?id=[% bug.bug_id %]&amp;hide_resolved=1">
65 66 67 68
    [% IF Param('webdotbase') %]
      <link rel="Show" title="Dependency Graph"
            href="showdependencygraph.cgi?id=[% bug.bug_id %]">
    [% END %]
69

70
    [% IF bug.use_votes %]
71 72 73 74
      <link rel="Show" title="Votes ([% bug.votes %])"
            href="votes.cgi?action=show_bug&amp;bug_id=[% bug.bug_id %]">
    [% END %]

75
      <link rel="Show" title="[% terms.Bug %] Activity"
76 77
            href="show_activity.cgi?id=[% bug.bug_id %]">
      <link rel="Show" title="Printer-Friendly Version"
78
            href="show_bug.cgi?format=multiple&amp;id=[% bug.bug_id %]">
79 80 81
  [% END %]


82
  [%# *** Saved Searches *** %]
83
  [% IF user.showmybugslink %]
84
    [% user_login = user.login FILTER url_quote %]
85
    <link rel="Saved&nbsp;Searches" title="My [% terms.Bugs %]"
86
          href="[% Param('mybugstemplate').replace('%userid%', user_login) %]">
87 88 89
  [% END %]

  [% FOREACH q = user.queries %]
90 91 92
    <link rel="Saved&nbsp;Searches" 
          title="[% q.name FILTER html %]"
          href="buglist.cgi?cmdtype=runnamed&amp;namedcmd=[% q.name FILTER url_quote %]">
93 94 95 96 97 98 99 100 101 102
  [% 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 %]
103 104
    [% '<link rel="Administration" title="Flag Types"   
              href="editflagtypes.cgi">' IF user.groups.editcomponents %]
105 106 107 108
    [% '<link rel="Administration" title="Groups"        
              href="editgroups.cgi">' IF user.groups.creategroups %]
    [% '<link rel="Administration" title="Keywords"      
              href="editkeywords.cgi">' IF user.groups.editkeywords %]
109 110
    [% '<link rel="Administration" title="Whining"       
              href="editwhines.cgi">' IF user.groups.bz_canusewhines %]
111 112 113 114
    [% '<link rel="Administration" title="Sanity Check"  
              href="sanitycheck.cgi">' IF user.groups.tweakparams %]
  [% END %]  
[% END %]