##// END OF EJS Templates
fixed paragraphs wrapping for ultralong commit messages. Disabled tooltips for new repos without a last commit message. ie. when tooltip_title is empty (there is a strange bug on empty tooltip_title)
fixed paragraphs wrapping for ultralong commit messages. Disabled tooltips for new repos without a last commit message. ie. when tooltip_title is empty (there is a strange bug on empty tooltip_title)

File last commit:

r273:cad478ed default
r284:c4caeca9 default
Show More
changeset.py
86 lines | 3.4 KiB | text/x-python | PythonLexer
licensing updates, code cleanups
r252 #!/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
"""
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, '')
added support for binary files, and, protection again unicode decode errors that might occure in changesets views
r273 if filenode_old.is_binary or node.is_binary:
diff = 'binary file'
else:
f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).as_html()
try:
diff = unicode(diff)
except:
log.warning('Decoding failed of %s', filenode_old)
log.warning('Decoding failed of %s', node)
diff = 'unsupported type'
cs1 = None
cs2 = node.last_changeset.raw_id
c.changes.append(('added', node, diff, cs1, cs2))
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218
for node in c.changeset.changed:
filenode_old = c.changeset_old.get_node(node.path)
added support for binary files, and, protection again unicode decode errors that might occure in changesets views
r273 if filenode_old.is_binary or node.is_binary:
diff = 'binary file'
else:
f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).as_html()
try:
diff = unicode(diff)
except:
log.warning('Decoding failed of %s', filenode_old)
log.warning('Decoding failed of %s', node)
diff = 'unsupported type'
cs1 = filenode_old.last_changeset.raw_id
cs2 = node.last_changeset.raw_id
c.changes.append(('changed', node, diff, cs1, cs2))
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218
for node in c.changeset.removed:
added support for binary files, and, protection again unicode decode errors that might occure in changesets views
r273 c.changes.append(('removed', node, None, None, None))
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218
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')