Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 1 | # 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.""" |
| 7 | from __future__ import print_function |
| 8 | from __future__ import division |
| 9 | from __future__ import absolute_import |
| 10 | |
| 11 | import logging |
| 12 | |
| 13 | from framework import servlet |
| 14 | from framework import permissions |
| 15 | |
| 16 | |
| 17 | class 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 | } |