本文整理汇总了Python中trac.versioncontrol.RepositoryManager.get_supported_types方法的典型用法代码示例。如果您正苦于以下问题:Python RepositoryManager.get_supported_types方法的具体用法?Python RepositoryManager.get_supported_types怎么用?Python RepositoryManager.get_supported_types使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类trac.versioncontrol.RepositoryManager
的用法示例。
在下文中一共展示了RepositoryManager.get_supported_types方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: render_admin_panel
# 需要导入模块: from trac.versioncontrol import RepositoryManager [as 别名]
# 或者: from trac.versioncontrol.RepositoryManager import get_supported_types [as 别名]
def render_admin_panel(self, req, category, page, path_info):
if not isinstance(self.env, ProductEnvironment):
return super(ProductRepositoryAdminPanel, self).render_admin_panel(
req, category, page, path_info)
req.perm.require('VERSIONCONTROL_ADMIN')
db_provider = self.env[DbRepositoryProvider]
if req.method == 'POST' and db_provider:
if req.args.get('remove'):
repolist = req.args.get('sel')
if repolist:
if isinstance(repolist, basestring):
repolist = [repolist, ]
for reponame in repolist:
db_provider.unlink_product(reponame)
elif req.args.get('addlink') is not None and db_provider:
reponame = req.args.get('repository')
db_provider.link_product(reponame)
req.redirect(req.href.admin(category, page))
# Retrieve info for all product repositories
rm_product = RepositoryManager(self.env)
rm_product.reload_repositories()
all_product_repos = rm_product.get_all_repositories()
repositories = dict((reponame, self._extend_info(
reponame, info.copy(), True))
for (reponame, info) in
all_product_repos.iteritems())
types = sorted([''] + rm_product.get_supported_types())
# construct a list of all repositores not linked to this product
rm = RepositoryManager(self.env.parent)
all_repos = rm.get_all_repositories()
unlinked_repositories = dict([(k, all_repos[k]) for k in
sorted(set(all_repos) - set(all_product_repos))])
data = {'types': types, 'default_type': rm_product.repository_type,
'repositories': repositories,
'unlinked_repositories': unlinked_repositories}
return 'repository_links.html', data
示例2: render_admin_panel
# 需要导入模块: from trac.versioncontrol import RepositoryManager [as 别名]
# 或者: from trac.versioncontrol.RepositoryManager import get_supported_types [as 别名]
#.........这里部分代码省略.........
% (name or '(default)'))
if 'dir' in changes:
msg = tag_('You should now run %(resync)s to '
'synchronize Trac with the repository.',
resync=resync)
add_notice(req, msg)
elif 'type' in changes:
msg = tag_('You may have to run %(resync)s to '
'synchronize Trac with the repository.',
resync=resync)
add_notice(req, msg)
if name and name != path_info and not 'alias' in info:
cset_added = tag.tt('trac-admin $ENV changeset '
'added "%s" $REV'
% (name or '(default)'))
msg = tag_('You will need to update your post-commit '
'hook to call %(cset_added)s with the new '
'repository name.', cset_added=cset_added)
add_notice(req, msg)
if changes:
req.redirect(req.href.admin(category, page))
Chrome(self.env).add_wiki_toolbars(req)
data = {'view': 'detail', 'reponame': reponame}
else:
# List view
if req.method == 'POST':
# Add a repository
if db_provider and req.args.get('add_repos'):
name = req.args.get('name')
type_ = req.args.get('type')
# Avoid errors when copy/pasting paths
dir = normalize_whitespace(req.args.get('dir', ''))
if name is None or type_ is None or not dir:
add_warning(req, _('Missing arguments to add a '
'repository.'))
elif self._check_dir(req, dir):
db_provider.add_repository(name, dir, type_)
name = name or '(default)'
add_notice(req, _('The repository "%(name)s" has been '
'added.', name=name))
resync = tag.tt('trac-admin $ENV repository resync '
'"%s"' % name)
msg = tag_('You should now run %(resync)s to '
'synchronize Trac with the repository.',
resync=resync)
add_notice(req, msg)
cset_added = tag.tt('trac-admin $ENV changeset '
'added "%s" $REV' % name)
msg = tag_('You should also set up a post-commit hook '
'on the repository to call %(cset_added)s '
'for each committed changeset.',
cset_added=cset_added)
add_notice(req, msg)
req.redirect(req.href.admin(category, page))
# Add a repository alias
elif db_provider and req.args.get('add_alias'):
name = req.args.get('name')
alias = req.args.get('alias')
if name is not None and alias is not None:
db_provider.add_alias(name, alias)
add_notice(req, _('The alias "%(name)s" has been '
'added.', name=name or '(default)'))
req.redirect(req.href.admin(category, page))
add_warning(req, _('Missing arguments to add an '
'alias.'))
# Refresh the list of repositories
elif req.args.get('refresh'):
req.redirect(req.href.admin(category, page))
# Remove repositories
elif db_provider and req.args.get('remove'):
sel = req.args.getlist('sel')
if sel:
for name in sel:
db_provider.remove_repository(name)
add_notice(req, _('The selected repositories have '
'been removed.'))
req.redirect(req.href.admin(category, page))
add_warning(req, _('No repositories were selected.'))
data = {'view': 'list'}
# Find repositories that are editable
db_repos = {}
if db_provider is not None:
db_repos = dict(db_provider.get_repositories())
# Prepare common rendering data
repositories = dict((reponame, self._extend_info(reponame, info.copy(),
reponame in db_repos))
for (reponame, info) in all_repos.iteritems())
types = sorted([''] + rm.get_supported_types())
data.update({'types': types, 'default_type': rm.repository_type,
'repositories': repositories})
return 'admin_repositories.html', data
示例3: render_admin_panel
# 需要导入模块: from trac.versioncontrol import RepositoryManager [as 别名]
# 或者: from trac.versioncontrol.RepositoryManager import get_supported_types [as 别名]
#.........这里部分代码省略.........
if changes:
db_provider.modify_repository(reponame, changes)
add_notice(req, _("Your changes have been saved."))
name = req.args.get("name")
resync = tag.tt('trac-admin $ENV repository resync "%s"' % (name or "(default)"))
if "dir" in changes:
msg = tag_(
"You should now run %(resync)s to " "synchronize Trac with the repository.", resync=resync
)
add_notice(req, msg)
elif "type" in changes:
msg = tag_(
"You may have to run %(resync)s to " "synchronize Trac with the repository.", resync=resync
)
add_notice(req, msg)
if name and name != path_info and not "alias" in info:
cset_added = tag.tt("trac-admin $ENV changeset " 'added "%s" $REV' % (name or "(default)"))
msg = tag_(
"You will need to update your post-commit "
"hook to call %(cset_added)s with the new "
"repository name.",
cset_added=cset_added,
)
add_notice(req, msg)
if changes:
req.redirect(req.href.admin(category, page))
Chrome(self.env).add_wiki_toolbars(req)
data = {"view": "detail", "reponame": reponame}
else:
# List view
if req.method == "POST":
# Add a repository
if db_provider and req.args.get("add_repos"):
name = req.args.get("name")
type_ = req.args.get("type")
# Avoid errors when copy/pasting paths
dir = normalize_whitespace(req.args.get("dir", ""))
if name is None or type_ is None or not dir:
add_warning(req, _("Missing arguments to add a " "repository."))
elif self._check_dir(req, dir):
db_provider.add_repository(name, dir, type_)
name = name or "(default)"
add_notice(req, _('The repository "%(name)s" has been ' "added.", name=name))
resync = tag.tt("trac-admin $ENV repository resync " '"%s"' % name)
msg = tag_(
"You should now run %(resync)s to " "synchronize Trac with the repository.", resync=resync
)
add_notice(req, msg)
cset_added = tag.tt("trac-admin $ENV changeset " 'added "%s" $REV' % name)
msg = tag_(
"You should also set up a post-commit hook "
"on the repository to call %(cset_added)s "
"for each committed changeset.",
cset_added=cset_added,
)
add_notice(req, msg)
req.redirect(req.href.admin(category, page))
# Add a repository alias
elif db_provider and req.args.get("add_alias"):
name = req.args.get("name")
alias = req.args.get("alias")
if name is not None and alias is not None:
db_provider.add_alias(name, alias)
add_notice(req, _('The alias "%(name)s" has been ' "added.", name=name or "(default)"))
req.redirect(req.href.admin(category, page))
add_warning(req, _("Missing arguments to add an " "alias."))
# Refresh the list of repositories
elif req.args.get("refresh"):
req.redirect(req.href.admin(category, page))
# Remove repositories
elif db_provider and req.args.get("remove"):
sel = req.args.getlist("sel")
if sel:
for name in sel:
db_provider.remove_repository(name)
add_notice(req, _("The selected repositories have " "been removed."))
req.redirect(req.href.admin(category, page))
add_warning(req, _("No repositories were selected."))
data = {"view": "list"}
# Find repositories that are editable
db_repos = {}
if db_provider is not None:
db_repos = dict(db_provider.get_repositories())
# Prepare common rendering data
repositories = dict(
(reponame, self._extend_info(reponame, info.copy(), reponame in db_repos))
for (reponame, info) in all_repos.iteritems()
)
types = sorted([""] + rm.get_supported_types())
data.update({"types": types, "default_type": rm.repository_type, "repositories": repositories})
return "admin_repositories.html", data