Files
@ 3782a6d698af
Branch filter:
Location: kallithea/pylons_app/controllers/changeset.py - annotation
3782a6d698af
2.3 KiB
text/x-python
licensing updates, code cleanups
3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af a83a1799480c 50a39f923f31 665b344927f4 665b344927f4 58b46f9194c3 50a39f923f31 58b46f9194c3 50a39f923f31 50a39f923f31 665b344927f4 665b344927f4 665b344927f4 50a39f923f31 50a39f923f31 665b344927f4 50a39f923f31 665b344927f4 50a39f923f31 50a39f923f31 50a39f923f31 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 50a39f923f31 | #!/usr/bin/env python
# encoding: utf-8
# changeset controller for pylons
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License or (at your opinion) any later version of the license.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
"""
Created on April 25, 2010
changeset controller for pylons
@author: marcink
"""
from pylons import tmpl_context as c
from pylons_app.lib.auth import LoginRequired
from pylons_app.lib.base import BaseController, render
from pylons_app.model.hg_model import HgModel
from vcs.utils import diffs as differ
import logging
from vcs.nodes import FileNode
log = logging.getLogger(__name__)
class ChangesetController(BaseController):
@LoginRequired()
def __before__(self):
super(ChangesetController, self).__before__()
def index(self, revision):
hg_model = HgModel()
c.changeset = hg_model.get_repo(c.repo_name).get_changeset(revision)
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))
return render('changeset/changeset.html')
|