##// END OF EJS Templates
Pygments code coloring rewrite, annotation was moved to vcs whitch had much better lib for that. Fixed code recognition based on mimetypes of filenodes, for better coloring.
Pygments code coloring rewrite, annotation was moved to vcs whitch had much better lib for that. Fixed code recognition based on mimetypes of filenodes, for better coloring.

File last commit:

r245:a83a1799 default
r250:be4621c6 default
Show More
changeset.py
40 lines | 1.4 KiB | text/x-python | PythonLexer
Reimplemented way of caching repos list, hg model now get's repos objects right from cached dict, this way we skipp creating instances of MercurialRepository and gain performance. Some import cleanup
r245 from pylons import tmpl_context as c
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 from pylons_app.lib.auth import LoginRequired
Added changeset controllers
r103 from pylons_app.lib.base import BaseController, render
from pylons_app.model.hg_model import HgModel
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 from vcs.utils import diffs as differ
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 import logging
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 from vcs.nodes import FileNode
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193
Added changeset controllers
r103 log = logging.getLogger(__name__)
class ChangesetController(BaseController):
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193
@LoginRequired()
Added changeset controllers
r103 def __before__(self):
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 super(ChangesetController, self).__before__()
Added changeset controllers
r103
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 def index(self, revision):
hg_model = HgModel()
c.changeset = hg_model.get_repo(c.repo_name).get_changeset(revision)
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 c.changeset_old = c.changeset.parents[0]
c.changes = []
for node in c.changeset.added:
filenode_old = FileNode(node.path, '')
f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).as_html()
c.changes.append(('added', node, diff))
for node in c.changeset.changed:
filenode_old = c.changeset_old.get_node(node.path)
f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).as_html()
c.changes.append(('changed', node, diff))
for node in c.changeset.removed:
c.changes.append(('removed', node, None))
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 return render('changeset/changeset.html')