Show More
@@ -23,15 +23,23 b' Holds connection for remote server.' | |||||
23 | """ |
|
23 | """ | |
24 |
|
24 | |||
25 |
|
25 | |||
26 | def _not_initialized(*args, **kwargs): |
|
26 | class NotInitializedConnection(object): | |
27 | """Placeholder for objects which have to be initialized first.""" |
|
27 | """Placeholder for objects which have to be initialized first.""" | |
|
28 | ||||
|
29 | def _raise_exc(self): | |||
28 | raise Exception( |
|
30 | raise Exception( | |
29 | "rhodecode.lib.vcs is not yet initialized. " |
|
31 | "rhodecode.lib.vcs is not yet initialized. " | |
30 | "Make sure `vcs.server` is enabled in your configuration.") |
|
32 | "Make sure `vcs.server` is enabled in your configuration.") | |
31 |
|
33 | |||
32 | # TODO: figure out a nice default value for these things |
|
34 | def __getattr__(self, item): | |
33 | Service = _not_initialized |
|
35 | self._raise_exc() | |
|
36 | ||||
|
37 | def __call__(self, *args, **kwargs): | |||
|
38 | self._raise_exc() | |||
34 |
|
39 | |||
35 | Git = _not_initialized |
|
40 | # TODO: figure out a nice default value for these things | |
36 | Hg = _not_initialized |
|
41 | Service = NotInitializedConnection() | |
37 | Svn = _not_initialized |
|
42 | ||
|
43 | Git = NotInitializedConnection() | |||
|
44 | Hg = NotInitializedConnection() | |||
|
45 | Svn = NotInitializedConnection() |
General Comments 0
You need to be logged in to leave comments.
Login now