]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1107874 - make Help links point to new documentation. r=dkl, a=justdave.
authorGervase Markham <gerv@gerv.net>
Wed, 17 Dec 2014 10:38:17 +0000 (10:38 +0000)
committerGervase Markham <gerv@gerv.net>
Wed, 17 Dec 2014 10:38:17 +0000 (10:38 +0000)
48 files changed:
chart.cgi
createaccount.cgi
editclassifications.cgi
editcomponents.cgi
editmilestones.cgi
editproducts.cgi
editvalues.cgi
editversions.cgi
enter_bug.cgi
report.cgi
template/en/default/account/prefs/prefs.html.tmpl
template/en/default/admin/admin.html.tmpl
template/en/default/admin/custom_fields/confirm-delete.html.tmpl
template/en/default/admin/custom_fields/create.html.tmpl
template/en/default/admin/custom_fields/edit.html.tmpl
template/en/default/admin/custom_fields/list.html.tmpl
template/en/default/admin/flag-type/confirm-delete.html.tmpl
template/en/default/admin/flag-type/edit.html.tmpl
template/en/default/admin/flag-type/list.html.tmpl
template/en/default/admin/groups/confirm-remove.html.tmpl
template/en/default/admin/groups/create.html.tmpl
template/en/default/admin/groups/delete.html.tmpl
template/en/default/admin/groups/edit.html.tmpl
template/en/default/admin/groups/list.html.tmpl
template/en/default/admin/params/editparams.html.tmpl
template/en/default/admin/sudo.html.tmpl
template/en/default/admin/users/confirm-delete.html.tmpl
template/en/default/admin/users/create.html.tmpl
template/en/default/admin/users/edit.html.tmpl
template/en/default/admin/users/list.html.tmpl
template/en/default/admin/users/search.html.tmpl
template/en/default/attachment/confirm-delete.html.tmpl
template/en/default/attachment/create.html.tmpl
template/en/default/attachment/diff-header.html.tmpl
template/en/default/attachment/edit.html.tmpl
template/en/default/bug/dependency-tree.html.tmpl
template/en/default/bug/show-header.html.tmpl
template/en/default/bug/show-multiple.html.tmpl
template/en/default/bug/summarize-time.html.tmpl
template/en/default/list/list.html.tmpl
template/en/default/reports/menu.html.tmpl
template/en/default/reports/old-charts.html.tmpl
template/en/default/search/search-advanced.html.tmpl
template/en/default/search/search-create-series.html.tmpl
template/en/default/search/search-report-graph.html.tmpl
template/en/default/search/search-report-table.html.tmpl
template/en/default/search/search-specific.html.tmpl
template/en/default/whine/schedule.html.tmpl

index 96ac9e1cf70d48f61e4658bd753d2d0a29bbfb55..00b0b8ee5d4d3c7202d0a99a68280105f1c352c7 100755 (executable)
--- a/chart.cgi
+++ b/chart.cgi
@@ -67,7 +67,7 @@ if (grep(/^cmd-/, $cgi->param())) {
 
 my $action = $cgi->param('action');
 my $series_id = $cgi->param('series_id');
-$vars->{'doc_section'} = 'using.html#charts';
+$vars->{'doc_section'} = 'using/reports-and-charts.html#charts';
 
 # Because some actions are chosen by buttons, we can't encode them as the value
 # of the action param, because that value is localization-dependent. So, we
index 21d6cc8db34d93f87311ac30513af798fa8e55f4..a15396384731dbeaf4cc392847dca3d3c4f6b76b 100755 (executable)
@@ -23,7 +23,7 @@ use Bugzilla::Token;
 my $user = Bugzilla->login(LOGIN_OPTIONAL);
 my $cgi = Bugzilla->cgi;
 my $template = Bugzilla->template;
-my $vars = { doc_section => 'using.html#create-a-bugzilla-account' };
+my $vars = { doc_section => 'using/creating-an-account.html' };
 
 print $cgi->header();
 
index b06ce27ad9e46bc19aa580813fa139d84ffa9272..ea4b139da528376a3e33474fe0c364076f766db8 100755 (executable)
@@ -34,7 +34,7 @@ sub LoadTemplate {
       if ($action eq 'select');
     # There is currently only one section about classifications,
     # so all pages point to it. Let's define it here.
-    $vars->{'doc_section'} = 'administration.html#classifications';
+    $vars->{'doc_section'} = 'administering/categorization.html#classifications';
 
     $action =~ /(\w+)/;
     $action = $1;
index 7442365f35a8653c0c5ad3c8e3f2fce39ebc65c1..aebc0b6471573b7e5f6be49b63baf03e65430a8c 100755 (executable)
@@ -25,7 +25,7 @@ my $template = Bugzilla->template;
 my $vars = {};
 # There is only one section about components in the documentation,
 # so all actions point to the same page.
-$vars->{'doc_section'} = 'administration.html#components';
+$vars->{'doc_section'} = 'administering/categorization.html#components';
 
 #
 # Preliminary checks:
index e20e623fb9d5e29c5ec19cd0ec74eab09a73fe66..8052bd1abacf8b0debdadeb6602c25505f14115b 100755 (executable)
@@ -25,7 +25,7 @@ my $template = Bugzilla->template;
 my $vars = {};
 # There is only one section about milestones in the documentation,
 # so all actions point to the same page.
-$vars->{'doc_section'} = 'administration.html#milestones';
+$vars->{'doc_section'} = 'administering/categorization.html#milestones';
 
 #
 # Preliminary checks:
index f2526575ebb7fbd19e4209957556e1d6f759090d..62aa1206d8b71b7e29e3bff2709adfa102451675 100755 (executable)
@@ -35,7 +35,7 @@ my $template = Bugzilla->template;
 my $vars = {};
 # Remove this as soon as the documentation about products has been
 # improved and each action has its own section.
-$vars->{'doc_section'} = 'administration.html#products';
+$vars->{'doc_section'} = 'administering/categorization.html#products';
 
 print $cgi->header();
 
index 48775fc52a0b37e62cfd45b07496452afc745f66..75ebee0fca0ccf9768f45406811fdcf8b656a1fd 100755 (executable)
@@ -47,7 +47,7 @@ my $vars = {};
 
 # Replace this entry by separate entries in templates when
 # the documentation about legal values becomes bigger.
-$vars->{'doc_section'} = 'administration.html#legal-values';
+$vars->{'doc_section'} = 'administering/field-values.html';
 
 print $cgi->header();
 
index 674a20b7e9c9de7aa0154fc4cae4c7235eda9105..1d4e17d4180466170474d8efb2611c8d0f3eb82f 100755 (executable)
@@ -25,7 +25,7 @@ my $template = Bugzilla->template;
 my $vars = {};
 # There is only one section about versions in the documentation,
 # so all actions point to the same page.
-$vars->{'doc_section'} = 'administration.html#versions';
+$vars->{'doc_section'} = 'administering/categorization.html#versions';
 
 #
 # Preliminary checks:
index 3f22fe4b840eb07c6bbc43133b857d0bd45f9d28..e03a88528a129d9396fff9dee030bad60d8e5279 100755 (executable)
@@ -47,7 +47,7 @@ my $template = Bugzilla->template;
 my $vars = {};
 
 # All pages point to the same part of the documentation.
-$vars->{'doc_section'} = 'using.html#filing-bugs';
+$vars->{'doc_section'} = 'using/filing.html';
 
 my $product_name = trim($cgi->param('product') || '');
 # Will contain the product object the bug is created in.
index a4d26f4d757b009860efd302533b8e1217f22ba2..2a8317d7a4589d8e50832f46c54d8e625a98f71b 100755 (executable)
@@ -375,7 +375,7 @@ if ($cgi->param('debug')) {
 }
 
 # All formats point to the same section of the documentation.
-$vars->{'doc_section'} = 'using.html#reports-and-charts';
+$vars->{'doc_section'} = 'using/reports-and-charts.html#reports';
 
 disable_utf8() if ($format->{'ctype'} =~ /^image\//);
 
index 8f11d0a6ff893afa91b86c0d457a9e72cb3abc73..21a932ef6a716752eacff28ca938263f8ce60ef2 100644 (file)
 
 [% tabs = [{ name => "settings", label => "General Preferences",
               link => "userprefs.cgi?tab=settings", saveable => "1",
-              doc_section => "using.html#general-preferences" },
+              doc_section => "using/preferences.html#general-preferences" },
             { name => "email", label => "Email Preferences",
               link => "userprefs.cgi?tab=email", saveable => "1",
-              doc_section => "using.html#email-preferences" },
+              doc_section => "using/preferences.html#email-preferences" },
             { name => "saved-searches", label => "Saved Searches",
               link => "userprefs.cgi?tab=saved-searches", saveable => "1",
-              doc_section => "using.html#saved-searches" },
+              doc_section => "using/preferences.html#saved-searches" },
             { name => "account", label => "Account Information",
               link => "userprefs.cgi?tab=account", saveable => "1",
-              doc_section => "using.html#account-information" },
+              doc_section => "using/preferences.html#account-information" },
             { name => "apikey", label => "API Keys",
               link => "userprefs.cgi?tab=apikey", saveable => "1",
-              doc_section => "using.html#apikey" },
+              doc_section => "using/preferences.html#api-keys" },
             { name => "permissions", label => "Permissions",
               link => "userprefs.cgi?tab=permissions", saveable => "0",
-              doc_section => "using.html#permissions" } ] %]
+              doc_section => "using/preferences.html#permissions" } ] %]
 
 [% Hook.process('tabs') %]
 
index 9f60eb6625b1d23f8f14fb45a52f94b242a0d735..96d0e7e6df212cc60753b04947d63ff6e179fac5 100644 (file)
@@ -13,7 +13,7 @@
 
 [% PROCESS global/header.html.tmpl title = title
                                    style_urls = ['skins/standard/admin.css']
-                                   doc_section = "administration.html"
+                                   doc_section = "administering/index.html"
 %]
 
 <div>
index 43f33512af0bf0dbadb809cc71d974095c29fac2..1d2348a0f23ca7dba29815151329d3b0fb345b22 100644 (file)
@@ -20,7 +20,7 @@
 [% PROCESS global/header.html.tmpl
            title = title
            style_urls = ['skins/standard/admin.css']
-           doc_section = "administration.html#deleting-custom-fields"
+           doc_section = "administering/custom-fields.html#deleting-custom-fields"
 %]
 
 <table id="admin_table">
index 1f6f713600d711af33441010a6818498916a2d19..71ba08f465646f51d70cf108dc28742dc18fba05 100644 (file)
@@ -18,7 +18,7 @@
            title = "Add a new Custom Field"
            onload = "document.getElementById('new_bugmail').disabled = true;"
            javascript_urls = [ 'js/util.js' ]
-           doc_section = "administration.html#adding-custom-fields"
+           doc_section = "administering/custom-fields.html#adding-custom-fields"
            style_urls = ['skins/standard/admin.css']
 %]
 
index b8365b300f3a50fbc88d8028a57f1d6038c4c254..6f7389d057189cab8ff2a955137a5b466ae06a36 100644 (file)
@@ -22,7 +22,7 @@
            title = title
            onload = "toggleCheckbox(document.getElementById('enter_bug'), 'new_bugmail');"
            javascript_urls = [ 'js/util.js' ]
-           doc_section = "administration.html#editing-custom-fields"
+           doc_section = "administering/custom-fields.html#editing-custom-fields"
            style_urls = ['skins/standard/admin.css']
 %]
 
index 918b440ad04b08602d5217ea5330132c19bc777a..5e9183e56467cc78fd64a21a9d4dfcf0894bc64b 100644 (file)
@@ -15,7 +15,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Custom Fields"
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#custom-fields"
+  doc_section = "administering/custom-fields.html"
 %]
 
 [% delete_contentlink = BLOCK %]editfields.cgi?action=del&amp;name=%%name%%[% END %]
index 4cc5890ededb2d6cc7a7650c26e6d3d23a6e6e29..a05e857d2cfffe63c5ded9afa5b759eb73a7a928 100644 (file)
@@ -11,7 +11,7 @@
 [% PROCESS global/header.html.tmpl
   title = title
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#deleting-a-flag"
+  doc_section = "administering/flags.html#deleting-a-flag"
 %]
 
 <p>
index 5f45b6b768590a4b083a1dc57caddff3643936ad..6c0e0cb78e3e162d2464f112032c52c040617d9b 100644 (file)
@@ -25,7 +25,7 @@
   onload="var f = document.forms['flagtype_properties'];
           selectProduct(f.product, f.component, null, null, '__Any__');"
   javascript_urls=["js/productform.js"]
-  doc_section = "administration.html#administering-flags"
+  doc_section = "administering/flags.html"
 %]
 
 <form id="flagtype_properties" method="post" action="editflagtypes.cgi">
index 25b2e3390c00ffea5c1ab0561b41ca6f7174a190..f4836ca7d1775c3f5d6778dc4e698b2d0122b55d 100644 (file)
@@ -13,7 +13,7 @@
   style_urls = ['skins/standard/admin.css']
   onload="var f = document.flagtype_form; selectProduct(f.product, f.component, null, null, '__All__');"
   javascript_urls=["js/productform.js"]
-  doc_section = "administration.html#two-types-of-flags"
+  doc_section = "administering/flags.html"
 %]
 
 <p>
index d626ca2bab54316b987fc65664981446056374dd..3249ee384219c7be3633b88c8dc4ce1b1aabacfe 100644 (file)
@@ -19,7 +19,7 @@
 
 [% PROCESS global/header.html.tmpl
   title = title
-  doc_section = "administration.html#groups-and-group-security"
+  doc_section = "administering/groups.html"
 %]
 
 [% IF regexp %]
index 8f9be1c7a30071f9c527f80c23ad50b4fa8a1f47..3827fb0e32d1e9446a3b001bb25216d6e7173674 100644 (file)
@@ -14,7 +14,7 @@
   title = "Add group"
   subheader = "This page allows you to define a new user group."
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#creating-groups"
+  doc_section = "administering/groups.html#creating-groups"
 %]
 
 <form method="post" action="editgroups.cgi">
index 78a1352d326c46f681cd453118102dea36cc0239..46586076199fc1ae82b36b578a50383dcc4091c3 100644 (file)
@@ -17,7 +17,7 @@
 [% PROCESS global/header.html.tmpl
   title = title
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#groups-and-group-security"
+  doc_section = "administering/groups.html"
 %]
 
 <table id="admin_table">
index 1cc948ea2432f7741b7c8d02013c2b76a356bc3c..3e64fa7c4a86a6f04b95da55771bf02835bec6d2 100644 (file)
@@ -19,7 +19,7 @@
 [% PROCESS global/header.html.tmpl
   title = title
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#editing-groups-and-assigning-group-permissions"
+  doc_section = "administering/groups.html#editing-groups-and-assigning-group-permissions"
 %]
 
 <form method="post" action="editgroups.cgi">
index 29e39f65fc6466bb0138196e7943151b32c6fb16..673c053cba14a8d980b449dc6b616b971597a791 100644 (file)
@@ -20,7 +20,7 @@
   title = "Edit Groups"
   subheader = "This lets you edit the groups available to put users in."
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#groups-and-group-security"
+  doc_section = "administering/groups.html"
 %]
 
 [% edit_contentlink = "editgroups.cgi?action=changeform&amp;group=%%id%%" %]
index 6a9248fcc1e7ae458c950c710241a25bfa9eda47..4e1946dd818159a29f9bbf6a166ec206cabfd8f4 100644 (file)
@@ -37,7 +37,7 @@
    message = message
    style_urls = ['skins/standard/admin.css']
    javascript_urls = ['js/params.js', 'js/util.js']
-   doc_section = "administration.html#bugzilla-configuration"
+   doc_section = "administering/parameters.html"
 %]
 
 <div class="table">
index bf0cd7b6f5cc154d447b5aa1d491ca07f9cf8bc3..b3f748697d467ebea903b117f8842802facfa986 100644 (file)
@@ -9,7 +9,7 @@
 [% PROCESS global/header.html.tmpl
    title = "Begin sudo session"
    style_urls = ['skins/standard/admin.css']
-   doc_section = "administration.html#impersonating-users"
+   doc_section = "administering/users.html#impersonating-users"
  %]
  
 [% DEFAULT target_login = "" %]
index bc3f6cc3b9678fc44c456aeced086306ee023c41..4dab8b4713989e328154e37eee7fd07db4975f8e 100644 (file)
@@ -39,7 +39,7 @@
 [% PROCESS global/header.html.tmpl
   title = title
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#deleting-users"
+  doc_section = "administering/users.html#deleting-users"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
index f85f416f4120ee6d33aded8a2589352dfc0d89bf..6fbd1dc2f6a6280edfcb788e43c721015258155e 100644 (file)
@@ -15,7 +15,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Add user"
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#creating-new-users"
+  doc_section = "administering/users.html#creating-new-users"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
index b67e9ae76d7727fcd03fc078f1af8fd1a3ff041f..2b28aa2d3193a4708d19f6f0af77c3bc921dd073 100644 (file)
@@ -23,7 +23,7 @@
   title = title
   message = message
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#modifying-users"
+  doc_section = "administering/users.html#modifying-users"
   javascript_urls = [ 'js/field.js' ]
 %]
 
index bfe1be13981fbafd319571aeed29fe438fb110dc..f90996882ceab79bf9067f955d0fc592501afd8f 100644 (file)
@@ -17,7 +17,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Select user"
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#user-administration"
+  doc_section = "administering/users.html"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
index a23796cd63a0d20f8c11475f77747ed477252f10..17477a01222e9bd03fa23296c68a095f1c026fc8 100644 (file)
@@ -18,7 +18,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Search users"
   style_urls = ['skins/standard/admin.css']
-  doc_section = "administration.html#managing-other-users"
+  doc_section = "administering/users.html"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
index dfc95c8f8329daf17663b0e48c0fdb968ad4528f..5108692a861c98b0018c3672dd06e8fb7a207abc 100644 (file)
@@ -18,7 +18,7 @@
 [% PROCESS global/header.html.tmpl
   title = title
   style_urls = ['skins/standard/admin.css']
-  doc_section = "using.html#attachments"
+  doc_section = "using/editing.html#attachments"
 %]
 
 <table id="admin_table">
index 18cc1264053d296577962c96e83fe652ece94db0..13c13cdb9a82274bcb5200c33993c696835a0dc5 100644 (file)
@@ -19,7 +19,7 @@
   style_urls = ['skins/standard/bug.css']
   yui = [ 'autocomplete' ]
   javascript_urls = [ "js/attachment.js", 'js/field.js', "js/util.js", "js/TUI.js" ]
-  doc_section = "using.html#attachments"
+  doc_section = "using/editing.html#attachments"
 %]
 
 <script type="text/javascript">
index 2a32de974b5f6737ba067c6858fe2d0473690c73..2b3e0d75d8aed42189e6773e437ef99422a41bf9 100644 (file)
@@ -37,8 +37,7 @@ Interdiff of #[% oldid %] and #[% newid %] for [% terms.bug %] #[% bugid %]
   [% subheader = BLOCK %]
     [% bugsummary FILTER html %]
   [% END %]
-  [% PROCESS global/header.html.tmpl doc_section = "using.html#patch-viewer"
-                                     javascript_urls = [ "js/attachment.js" ]
+  [% PROCESS global/header.html.tmpl javascript_urls = [ "js/attachment.js" ]
                                      style_urls = ['skins/standard/bug.css'] %]
 [% ELSE %]
   <!DOCTYPE html>
index 77e3e571cb58aacb70058d7bcfea7c66c66647d9..497f89a8d2706238429d22472cc1fb7ca667ffc6 100644 (file)
@@ -21,7 +21,7 @@
   title = title
   header = header
   subheader = subheader
-  doc_section = "using.html#attachments"
+  doc_section = "using/editing.html#attachments"
   javascript_urls = ['js/attachment.js', 'js/field.js']
   style_urls = ['skins/standard/bug.css']
   yui = [ 'autocomplete' ]
index a2730f3c91ab5def17c7a4f64b9ea536a528ae33..606ab78f716755b71127b7175bb8d9925c372cb9 100644 (file)
@@ -14,7 +14,7 @@
    javascript_urls = ["js/expanding-tree.js"]
    style_urls      = ['skins/standard/bug.css']
    subheader       = filtered_desc
-   doc_section     = "using.html#dependency-tree"
+   doc_section     = "using/understanding.html"
 %]
 
 [% PROCESS depthControlToolbar %]
index 6e1244fa0cfba33fc235fcd2aa429db9d6c38c48..f41890a46fd5e02d9c98c11cad6c8913ef528905 100644 (file)
@@ -62,7 +62,7 @@
   [% END %]
 [% END %]
 [% style_urls = ['skins/standard/bug.css'] %]
-[% doc_section = "using.html#anatomy-of-a-bug" %]
+[% doc_section = "using/understanding.html" %]
 [% bodyclasses = ['bz_bug',
                   "bz_status_$bug.bug_status",
                   "bz_product_$bug.product",
index 960746d404e431e2d1788a1850ec68fa0158525f..8d9bead0a54511657ebeea7e0111d9d5c1a55817 100644 (file)
@@ -10,7 +10,7 @@
   title = "Full Text $terms.Bug Listing"
   h1 = ""
   style_urls = ['skins/standard/buglist.css']
-  doc_section = "using.html#anatomy-of-a-bug"
+  doc_section = "using/understanding.html"
 %]
 
 [% USE Bugzilla %]
index faf05684af0ecb6ace99eeae40a230fd27df3514..8bfe3c1c6fee02ddacab0067520e3c8751c429a8 100644 (file)
@@ -21,7 +21,7 @@
     title = title
     header = header
     style_urls = ['skins/standard/buglist.css']
-    doc_section = "using.html#time-tracking-information"
+    doc_section = "using/editing.html#time-tracking"
     yui = ['calendar']
     javascript_urls = [ "js/util.js", "js/field.js" ]
     %]
index 41fe93b9309ad1520399498bc9eb180478d76ca9..259b26cf911d32034a9eaa697faf1c0772e80407 100644 (file)
@@ -63,7 +63,7 @@
   yui = [ 'autocomplete', 'calendar' ]
   javascript_urls = [ "js/util.js", "js/field.js", "js/TUI.js" ]
   style_urls = [ "skins/standard/buglist.css" ]
-  doc_section = "using.html#bug-lists"
+  doc_section = "using/finding.html"
 %]
 
 <div class="bz_query_head">
index 2804dda70a33197af6d43e3e9cda7f817e77b823..526776bbb302b716ae64db2509d53a1cd1461613 100644 (file)
@@ -13,7 +13,7 @@
 
 [% PROCESS global/header.html.tmpl
   title = "Reporting and Charting Kitchen"
-  doc_section = "using.html#reports-and-charts"
+  doc_section = "using/reports-and-charts.html"
   style_urls = ['skins/standard/buglist.css']
 %]
 
index acebca74d33b0c0172dc9a75c60724b289963b5e..a958911f46851b591a01e9758fe32c234eb4bc97 100644 (file)
@@ -15,7 +15,7 @@
   title = "$terms.Bug Charts"
   h1 = "Welcome to the $terms.Bugzilla Charting Kitchen"
   style_urls = ['skins/standard/buglist.css']
-  doc_section = "using.html#charts"
+  doc_section = "using/reports-and-charts.html#charts"
 %]
 
 [% IF url_image %]
index 7c1ca6e0aae6cd32c1eb9185c5294bb9c0ff4005..07c5fc52851afa6de1de730eef52202fcb44dde6 100644 (file)
@@ -30,7 +30,7 @@ function remove_token() {
   javascript = javascript
   javascript_urls = [ "js/util.js", "js/TUI.js", "js/field.js"]
   style_urls = ['skins/standard/buglist.css']
-  doc_section = "using.html#searching-for-bugs"
+  doc_section = "using/finding.html"
 %]
 
 [% WRAPPER search/tabs.html.tmpl %]
index 9f89000da8c70b536ac0ee8506768907c49638a0..95750ebc02c2996f108a0826136dd49ea4edc82f 100644 (file)
@@ -23,7 +23,7 @@
   javascript = js_data 
   javascript_urls = [ "js/util.js", "js/TUI.js", "js/field.js" ]
   style_urls = ['skins/standard/buglist.css']
-  doc_section = "using.html#creating-new-data-sets"
+  doc_section = "using/reports-and-charts.html#creating-charts"
 %]
 
 <form method="get" action="chart.cgi" name="chartform">
index f1b77985d7f16a813b041677faee251990651ebb..b382edf95d30ba8c66616404c14f97104478323f 100644 (file)
@@ -22,7 +22,7 @@ var queryform = "reportform"
   javascript = js_data
   javascript_urls = [ "js/util.js", "js/TUI.js", "js/field.js" ]
   style_urls = ['skins/standard/buglist.css']
-  doc_section = "using.html#reports"
+  doc_section = "using/reports-and-charts.html#reports"
 %]
 
 [% PROCESS "search/search-report-select.html.tmpl" %]
index 0db9871f9639293eabcf05d703521c71567a1ec1..483fd5b07e1e4ef186c846b13fca0df4aa01be25 100644 (file)
@@ -22,7 +22,7 @@ var queryform = "reportform"
   javascript = js_data
   javascript_urls = [ "js/util.js", "js/TUI.js", "js/field.js" ]
   style_urls = ['skins/standard/buglist.css']
-  doc_section = "using.html#reports"
+  doc_section = "using/reports-and-charts.html#reports"
 %]
 
 [% PROCESS "search/search-report-select.html.tmpl" %]
index 701925e5e12b536f2cd06dcbac5af6dba9ba7393..af61ce52f82b97b72bc7f16d3e4b1cb226994e3b 100644 (file)
@@ -9,6 +9,7 @@
 [% PROCESS global/header.html.tmpl 
   title = "Simple Search"
   style_urls = ['skins/standard/buglist.css']
+  doc_section = "using/finding.html"
 %]
 
 [% WRAPPER search/tabs.html.tmpl %]
index a421d928f3fd7b302e04fb078dc0418d7c4fc3a0..a513d9a331a1f424442311a3a83e942d3dc104b2 100644 (file)
@@ -23,7 +23,7 @@
 [% PROCESS global/header.html.tmpl
   title = title
   style_urls = ['skins/standard/admin.css']
-  doc_section = "using.html#whining"
+  doc_section = "using/index.html"
 %]
 
 <p>