##// END OF EJS Templates
another major code rafactor, reimplemented (almost from scratch)...
another major code rafactor, reimplemented (almost from scratch) the way caching works, Should be solid rock for now. Some code optymizations on scmModel.get() to make it don't load unneded things. Changed db cache to file that should also reduce memory size

File last commit:

r1038:5554aa9c beta
r1038:5554aa9c beta
Show More
changeset.py
216 lines | 8.2 KiB | text/x-python | PythonLexer
fixes #79 cut off limit was added into .ini config files
r812 # -*- coding: utf-8 -*-
"""
rhodecode.controllers.changeset
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 changeset controller for pylons showoing changes beetween
revisions
fixes #79 cut off limit was added into .ini config files
r812
:created_on: Apr 25, 2010
:author: marcink
fixed copyright year to 2011
r902 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
fixes #79 cut off limit was added into .ini config files
r812 :license: GPLv3, see COPYING for more details.
"""
renamed project to rhodecode
r547 # 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.
fixes #79 cut off limit was added into .ini config files
r812 import logging
import traceback
renamed project to rhodecode
r547 from pylons import tmpl_context as c, url, request, response
from pylons.i18n.translation import _
from pylons.controllers.util import redirect
fixes #79 cut off limit was added into .ini config files
r812
import rhodecode.lib.helpers as h
renamed project to rhodecode
r547 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator
from rhodecode.lib.base import BaseController, render
fixed raw diff as purly raw without html
r649 from rhodecode.lib.utils import EmptyChangeset
Refactor codes for scm model...
r691 from rhodecode.model.scm import ScmModel
fixes #79 cut off limit was added into .ini config files
r812
#93 fixed errors on new revranges generation
r978 from vcs.exceptions import RepositoryError, ChangesetError, \
ChangesetDoesNotExistError
renamed project to rhodecode
r547 from vcs.nodes import FileNode
from vcs.utils import diffs as differ
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 from vcs.utils.ordered_dict import OrderedDict
renamed project to rhodecode
r547
log = logging.getLogger(__name__)
class ChangesetController(BaseController):
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 @LoginRequired()
@HasRepoPermissionAnyDecorator('repository.read', 'repository.write',
Fixes for raw_id, needed for git...
r636 'repository.admin')
renamed project to rhodecode
r547 def __before__(self):
super(ChangesetController, self).__before__()
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 def index(self, revision):
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 def wrap_to_table(str):
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 return '''<table class="code-difftable">
<tr class="line">
<td class="lineno new"></td>
<td class="code"><pre>%s</pre></td>
</tr>
</table>''' % str
Fixes for raw_id, needed for git...
r636
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 #get ranges of revisions if preset
rev_range = revision.split('...')[:2]
Added limit option for revision ranges
r984 range_limit = 50
renamed project to rhodecode
r547 try:
another major code rafactor, reimplemented (almost from scratch)...
r1038 repo, dbrepo = ScmModel().get(c.repo_name, retval='repo')
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 if len(rev_range) == 2:
rev_start = rev_range[0]
rev_end = rev_range[1]
Added compare view into journal, fixed wrong function call to show compare view
r1009 rev_ranges = repo.get_changesets_ranges(rev_start, rev_end,
reimplemented changeset ranges to use vcs directly
r1001 range_limit)
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 else:
rev_ranges = [repo.get_changeset(revision)]
fixed error for single changeset
r983
c.cs_ranges = list(rev_ranges)
#93 fixed errors on new revranges generation
r978 except (RepositoryError, ChangesetDoesNotExistError, Exception), e:
renamed project to rhodecode
r547 log.error(traceback.format_exc())
some changes for #45....
r644 h.flash(str(e), category='warning')
Fixes for raw_id, needed for git...
r636 return redirect(url('home'))
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977
c.changes = OrderedDict()
c.sum_added = 0
c.sum_removed = 0
Fixes for raw_id, needed for git...
r636
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 for changeset in c.cs_ranges:
c.changes[changeset.raw_id] = []
try:
changeset_parent = changeset.parents[0]
except IndexError:
changeset_parent = None
#==================================================================
renamed project to rhodecode
r547 # ADDED FILES
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 #==================================================================
for node in changeset.added:
large initial commits fixup...
r566 filenode_old = FileNode(node.path, '', EmptyChangeset())
renamed project to rhodecode
r547 if filenode_old.is_binary or node.is_binary:
diff = wrap_to_table(_('binary file'))
else:
c.sum_added += node.size
fixes #79 cut off limit was added into .ini config files
r812 if c.sum_added < self.cut_off_limit:
renamed project to rhodecode
r547 f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).as_html()
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 else:
diff = wrap_to_table(_('Changeset is to big and was cut'
' off, see raw changeset instead'))
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 cs1 = None
Fixes for raw_id, needed for git...
r636 cs2 = node.last_changeset.raw_id
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 c.changes[changeset.raw_id].append(('added', node, diff, cs1, cs2))
Fixes for raw_id, needed for git...
r636
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 #==================================================================
renamed project to rhodecode
r547 # CHANGED FILES
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 #==================================================================
for node in changeset.changed:
renamed project to rhodecode
r547 try:
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 filenode_old = changeset_parent.get_node(node.path)
renamed project to rhodecode
r547 except ChangesetError:
large initial commits fixup...
r566 filenode_old = FileNode(node.path, '', EmptyChangeset())
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 if filenode_old.is_binary or node.is_binary:
diff = wrap_to_table(_('binary file'))
else:
Fixes for raw_id, needed for git...
r636
fixes #79 cut off limit was added into .ini config files
r812 if c.sum_removed < self.cut_off_limit:
renamed project to rhodecode
r547 f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).as_html()
large initial commits fixup...
r566 if diff:
c.sum_removed += len(diff)
renamed project to rhodecode
r547 else:
diff = wrap_to_table(_('Changeset is to big and was cut'
' off, see raw changeset instead'))
Fixes for raw_id, needed for git...
r636
cs1 = filenode_old.last_changeset.raw_id
cs2 = node.last_changeset.raw_id
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 c.changes[changeset.raw_id].append(('changed', node, diff, cs1, cs2))
Fixes for raw_id, needed for git...
r636
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 #==================================================================
renamed project to rhodecode
r547 # REMOVED FILES
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 #==================================================================
for node in changeset.removed:
c.changes[changeset.raw_id].append(('removed', node, None, None, None))
Fixes for raw_id, needed for git...
r636
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 if len(c.cs_ranges) == 1:
c.changeset = c.cs_ranges[0]
c.changes = c.changes[c.changeset.raw_id]
return render('changeset/changeset.html')
else:
return render('changeset/changeset_range.html')
renamed project to rhodecode
r547
def raw_changeset(self, revision):
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 method = request.GET.get('diff', 'show')
try:
another major code rafactor, reimplemented (almost from scratch)...
r1038 repo, dbrepo = ScmModel().get(c.repo_name, retval='repo')
c.scm_type = repo.alias
c.changeset = repo.get_changeset(revision)
renamed project to rhodecode
r547 except RepositoryError:
log.error(traceback.format_exc())
Fixes for raw_id, needed for git...
r636 return redirect(url('home'))
renamed project to rhodecode
r547 else:
try:
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 c.changeset_parent = c.changeset.parents[0]
renamed project to rhodecode
r547 except IndexError:
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 c.changeset_parent = None
renamed project to rhodecode
r547 c.changes = []
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 for node in c.changeset.added:
filenode_old = FileNode(node.path, '')
if filenode_old.is_binary or node.is_binary:
fixes #79 cut off limit was added into .ini config files
r812 diff = _('binary file') + '\n'
Fixes for raw_id, needed for git...
r636 else:
renamed project to rhodecode
r547 f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).raw_diff()
cs1 = None
Fixes for raw_id, needed for git...
r636 cs2 = node.last_changeset.raw_id
renamed project to rhodecode
r547 c.changes.append(('added', node, diff, cs1, cs2))
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 for node in c.changeset.changed:
started work on #93 added rev ranges view, checkboxes in changelog to view ranges of changes
r977 filenode_old = c.changeset_parent.get_node(node.path)
renamed project to rhodecode
r547 if filenode_old.is_binary or node.is_binary:
diff = _('binary file')
Fixes for raw_id, needed for git...
r636 else:
renamed project to rhodecode
r547 f_udiff = differ.get_udiff(filenode_old, node)
diff = differ.DiffProcessor(f_udiff).raw_diff()
Fixes for raw_id, needed for git...
r636 cs1 = filenode_old.last_changeset.raw_id
cs2 = node.last_changeset.raw_id
c.changes.append(('changed', node, diff, cs1, cs2))
renamed project to rhodecode
r547 response.content_type = 'text/plain'
fixes #79 cut off limit was added into .ini config files
r812
renamed project to rhodecode
r547 if method == 'download':
Fixes for raw_id, needed for git...
r636 response.content_disposition = 'attachment; filename=%s.patch' % revision
fixes #79 cut off limit was added into .ini config files
r812
renamed project to rhodecode
r547 parent = True if len(c.changeset.parents) > 0 else False
c.parent_tmpl = 'Parent %s' % c.changeset.parents[0].raw_id if parent else ''
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 c.diffs = ''
for x in c.changes:
c.diffs += x[2]
fixes #79 cut off limit was added into .ini config files
r812
renamed project to rhodecode
r547 return render('changeset/raw_changeset.html')