Package buildbot :: Module revlinks
[frames] | no frames]

Module revlinks

source code

Classes
  RevlinkMatch
  GitwebMatch
  RevlinkMultiplexer
Variables
  GithubRevlink = RevlinkMatch(repo_urls= [r'https://github.com/...
  SourceforgeGitRevlink = GitwebMatch(repo_urls= [r'^git://([^.]...
  default_revlink_matcher = RevlinkMultiplexer(GithubRevlink, So...
  __package__ = 'buildbot'
Variables Details

GithubRevlink

Value:
RevlinkMatch(repo_urls= [r'https://github.com/([^/]*)/([^/]*?)(?:\.git\
)?$', r'git://github.com/([^/]*)/([^/]*?)(?:\.git)?$', r'git@github.co\
m:([^/]*)/([^/]*?)(?:\.git)?$', r'ssh://git@github.com/([^/]*)/([^/]*?\
)(?:\.git)?$'], revlink= r'https://github.com/\1/\2/commit/%s')

SourceforgeGitRevlink

Value:
GitwebMatch(repo_urls= [r'^git://([^.]*).git.sourceforge.net/gitroot/(\
?P<repo>.*)$', r'[^@]*@([^.]*).git.sourceforge.net:gitroot/(?P<repo>.*\
)$', r'ssh://(?:[^@]*@)?([^.]*).git.sourceforge.net/gitroot/(?P<repo>.\
*)$',], revlink= r'http://\1.git.sourceforge.net/git/gitweb.cgi')

default_revlink_matcher

Value:
RevlinkMultiplexer(GithubRevlink, SourceforgeGitRevlink)