Parent: [cceb25] (diff)

Child: [b908c9] (diff)

Download this file

svn_main.py    52 lines (42 with data), 1.5 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#-*- python -*-
import logging
# Non-stdlib imports
import pkg_resources
from pylons import g
from ming.utils import LazyProperty
from ming.orm.ormsession import ThreadLocalORMSession
# Pyforge-specific imports
from allura.controllers.repository import RepoRootController
from allura.lib.repository import RepositoryApp
# Local imports
from . import model as SM
from . import version
from .controllers import BranchBrowser
log = logging.getLogger(__name__)
class ForgeSVNApp(RepositoryApp):
'''This is the SVN app for PyForge'''
__version__ = version.__version__
tool_label='SVN'
default_mount_label='SVN'
default_mount_point='svn'
ordinal=4
forkable=False
default_branch_name=''
def __init__(self, project, config):
super(ForgeSVNApp, self).__init__(project, config)
self.root = BranchBrowser()
default_root = RepoRootController()
self.root.refresh = default_root.refresh
@LazyProperty
def repo(self):
return SM.Repository.query.get(app_config_id=self.config._id)
def install(self, project):
'''Create repo object for this tool'''
super(ForgeSVNApp, self).install(project)
repo = SM.Repository(
name=self.config.options.mount_point,
tool='svn',
status='initing')
ThreadLocalORMSession.flush_all()
g.publish('audit', 'repo.init',
dict(repo_name=repo.name, repo_path=repo.fs_path))