15
16
# You should have received a copy of the GNU General Public License
16
17
# along with this program; if not, write to the Free Software
17
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24
from configobj import ConfigObj
27
from turbogears import controllers
28
from cherrypy import HTTPRedirect, NotFound
30
my_config = ConfigObj('loggerhead.conf', encoding='utf-8')
31
extra_path = my_config.get('bzrpath', None)
33
sys.path.insert(0, extra_path)
22
from paste.request import path_info_pop, parse_querystring
35
24
from loggerhead import util
36
from loggerhead.branchview import BranchView
37
from loggerhead.history import History
39
log = logging.getLogger("loggerhead.controllers")
42
class Root (controllers.RootController):
46
for branch_name in my_config.sections:
47
log.debug('Configuring branch %r...', branch_name)
48
view = BranchView(branch_name, my_config[branch_name])
49
setattr(self, branch_name, view)
50
self._views.append(view)
54
# FIXME - display list of branches
55
raise HTTPRedirect(turbogears.url('/bazaar-dev/changes'))
57
def check_rebuild(self):
65
# re-index every 6 hours
68
turbogears.scheduler.add_interval_task(initialdelay=1, interval=index_freq, action=Root.check_rebuild)
70
# for use in profiling the very-slow get_change() method:
71
#h = util.get_history()
72
#w = list(h.get_revision_history())
73
#h._get_changes_profiled(w[:100])
25
from loggerhead.templatefunctions import templatefunctions
26
from loggerhead.zptsupport import load_template
29
class BufferingWriter(object):
31
def __init__(self, writefunc, buf_limit):
35
self.writefunc = writefunc
36
self.buf_limit = buf_limit
39
self.writefunc(''.join(self.buf))
43
def write(self, data):
45
self.buflen += len(data)
46
self.bytes += len(data)
47
if self.buflen > self.buf_limit:
51
class TemplatedBranchView(object):
55
def __init__(self, branch, history_callable):
57
self._history_callable = history_callable
63
if self.__history is not None:
65
self.__history = self._history_callable()
68
def __call__(self, environ, start_response):
70
kwargs = dict(parse_querystring(environ))
71
util.set_context(kwargs)
74
arg = path_info_pop(environ)
81
path = unicode('/'.join(args[1:]), 'utf-8')
85
'static_url': self._branch.static_url,
86
'branch': self._branch,
88
'url': self._branch.context_url,
90
vals.update(templatefunctions)
93
vals.update(self.get_values(path, kwargs, headers))
95
self.log.info('Getting information for %s: %r secs' % (
96
self.__class__.__name__, time.time() - z))
97
if 'Content-Type' not in headers:
98
headers['Content-Type'] = 'text/html'
99
writer = start_response("200 OK", headers.items())
100
template = load_template(self.template_path)
102
w = BufferingWriter(writer, 8192)
103
template.expand_into(w, **vals)
106
'Rendering %s: %r secs, %s bytes' % (
107
self.__class__.__name__, time.time() - z, w.bytes))
114
if len(self.args) > 0 and self.args != ['']:
115
return h.fix_revid(self.args[0])