main.py

来自「trac是一款svn服务器的web客户端」· Python 代码 · 共 32 行

PY
32
字号
# -*- coding: utf-8 -*-## Copyright (C) 2007 Edgewall Software# All rights reserved.## This software is licensed as described in the file COPYING, which# you should have received as part of this distribution. The terms# are also available at http://trac.edgewall.org/wiki/TracLicense.## This software consists of voluntary contributions made by many# individuals. For the exact contribution history, see the revision# history and logs, available at http://trac.edgewall.org/log/.import pkg_resourcesfrom trac.core import *from trac.web.chrome import ITemplateProviderclass VersionControlUI(Component):    implements(ITemplateProvider)    # ITemplateProvider methods    def get_htdocs_dirs(self):        return []    def get_templates_dirs(self):        return [pkg_resources.resource_filename('trac.versioncontrol',                                                'templates')]

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?