blob: 2b337e8b8c804e5b98cb2dfd0f12a4fe09583153 [file] [log] [blame]
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""A class to render a page of issue tracker search tips."""
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from framework import permissions
from framework import servlet
class IssueSearchTips(servlet.Servlet):
"""IssueSearchTips on-line help on how to use issue search."""
_PAGE_TEMPLATE = 'tracker/issue-search-tips.ezt'
_MAIN_TAB_MODE = servlet.Servlet.MAIN_TAB_ISSUES
def GatherPageData(self, mr):
"""Build up a dictionary of data values to use when rendering the page."""
return {
'issue_tab_mode': 'issueSearchTips',
'page_perms': self.MakePagePerms(mr, None, permissions.CREATE_ISSUE),
}
def GetIssueSearchTips(self, **kwargs):
return self.handler(**kwargs)