blob: eb75265ed60f47e446af8eed0537611384eaf1e6 [file] [log] [blame]
Copybara854996b2021-09-07 19:36:02 +00001# Copyright 2016 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style
3# license that can be found in the LICENSE file or at
4# https://developers.google.com/open-source/licenses/bsd
5
6"""A class to render a page of issue tracker search tips."""
7from __future__ import print_function
8from __future__ import division
9from __future__ import absolute_import
10
11import logging
12
13from framework import servlet
14from framework import permissions
15
16
17class IssueSearchTips(servlet.Servlet):
18 """IssueSearchTips on-line help on how to use issue search."""
19
20 _PAGE_TEMPLATE = 'tracker/issue-search-tips.ezt'
21 _MAIN_TAB_MODE = servlet.Servlet.MAIN_TAB_ISSUES
22
23 def GatherPageData(self, mr):
24 """Build up a dictionary of data values to use when rendering the page."""
25
26 return {
27 'issue_tab_mode': 'issueSearchTips',
28 'page_perms': self.MakePagePerms(mr, None, permissions.CREATE_ISSUE),
29 }