Mercurial > public > src > rhodecode
changeset 869:30ad41c76fae beta
fixes #79 cut off limit was added into .ini config files
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sun, 05 Dec 2010 18:29:15 +0100 |
parents | bb35ad076e2f |
children | e8b5be26fb78 |
files | development.ini production.ini rhodecode/config/deployment.ini_tmpl rhodecode/controllers/changeset.py rhodecode/controllers/files.py rhodecode/lib/base.py test.ini |
diffstat | 7 files changed, 49 insertions(+), 35 deletions(-) [+] |
line wrap: on
line diff
--- a/development.ini Sun Dec 05 17:22:57 2010 +0100 +++ b/development.ini Sun Dec 05 18:29:15 2010 +0100 @@ -45,6 +45,7 @@ lang=en cache_dir = %(here)s/data index_dir = %(here)s/data/index +cut_off_limit = 256000 #################################### ### CELERY CONFIG ####
--- a/production.ini Sun Dec 05 17:22:57 2010 +0100 +++ b/production.ini Sun Dec 05 18:29:15 2010 +0100 @@ -45,6 +45,7 @@ lang=en cache_dir = %(here)s/data index_dir = %(here)s/data/index +cut_off_limit = 256000 #################################### ### CELERY CONFIG ####
--- a/rhodecode/config/deployment.ini_tmpl Sun Dec 05 17:22:57 2010 +0100 +++ b/rhodecode/config/deployment.ini_tmpl Sun Dec 05 18:29:15 2010 +0100 @@ -46,6 +46,7 @@ cache_dir = %(here)s/data index_dir = %(here)s/data/index app_instance_uuid = ${app_instance_uuid} +cut_off_limit = 256000 #################################### ### CELERY CONFIG ####
--- a/rhodecode/controllers/changeset.py Sun Dec 05 17:22:57 2010 +0100 +++ b/rhodecode/controllers/changeset.py Sun Dec 05 18:29:15 2010 +0100 @@ -1,7 +1,15 @@ -#!/usr/bin/env python -# encoding: utf-8 -# changeset controller for pylons -# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com> +# -*- coding: utf-8 -*- +""" + rhodecode.controllers.changeset + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + changeset controller for pylons + + :created_on: Apr 25, 2010 + :author: marcink + :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com> + :license: GPLv3, see COPYING for more details. +""" # 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 @@ -16,24 +24,22 @@ # 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 -""" +import logging +import traceback + from pylons import tmpl_context as c, url, request, response from pylons.i18n.translation import _ from pylons.controllers.util import redirect + +import rhodecode.lib.helpers as h from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator from rhodecode.lib.base import BaseController, render from rhodecode.lib.utils import EmptyChangeset -import rhodecode.lib.helpers as h from rhodecode.model.scm import ScmModel + from vcs.exceptions import RepositoryError, ChangesetError from vcs.nodes import FileNode from vcs.utils import diffs as differ -import logging -import traceback log = logging.getLogger(__name__) @@ -47,7 +53,6 @@ def index(self, revision): hg_model = ScmModel() - cut_off_limit = 1024 * 250 def wrap_to_table(str): @@ -82,7 +87,7 @@ diff = wrap_to_table(_('binary file')) else: c.sum_added += node.size - if c.sum_added < cut_off_limit: + if c.sum_added < self.cut_off_limit: f_udiff = differ.get_udiff(filenode_old, node) diff = differ.DiffProcessor(f_udiff).as_html() @@ -108,7 +113,7 @@ diff = wrap_to_table(_('binary file')) else: - if c.sum_removed < cut_off_limit: + if c.sum_removed < self.cut_off_limit: f_udiff = differ.get_udiff(filenode_old, node) diff = differ.DiffProcessor(f_udiff).as_html() if diff: @@ -151,7 +156,7 @@ for node in c.changeset.added: filenode_old = FileNode(node.path, '') if filenode_old.is_binary or node.is_binary: - diff = _('binary file') +'\n' + diff = _('binary file') + '\n' else: f_udiff = differ.get_udiff(filenode_old, node) diff = differ.DiffProcessor(f_udiff).raw_diff() @@ -173,15 +178,15 @@ c.changes.append(('changed', node, diff, cs1, cs2)) response.content_type = 'text/plain' - + if method == 'download': response.content_disposition = 'attachment; filename=%s.patch' % revision - + parent = True if len(c.changeset.parents) > 0 else False c.parent_tmpl = 'Parent %s' % c.changeset.parents[0].raw_id if parent else '' c.diffs = '' for x in c.changes: c.diffs += x[2] - + return render('changeset/raw_changeset.html')
--- a/rhodecode/controllers/files.py Sun Dec 05 17:22:57 2010 +0100 +++ b/rhodecode/controllers/files.py Sun Dec 05 18:29:15 2010 +0100 @@ -1,8 +1,15 @@ -#!/usr/bin/env python -# encoding: utf-8 -# files controller for pylons -# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com> +# -*- coding: utf-8 -*- +""" + rhodecode.controllers.files + ~~~~~~~~~~~~~~~~~~~~~~~~~~~ + Files controller for RhodeCode + + :created_on: Apr 21, 2010 + :author: marcink + :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com> + :license: GPLv3, see COPYING for more details. +""" # 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 @@ -17,25 +24,24 @@ # 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 21, 2010 -files controller for pylons -@author: marcink -""" +import tempfile +import logging +import rhodecode.lib.helpers as h + from mercurial import archival + from pylons import request, response, session, tmpl_context as c, url from pylons.i18n.translation import _ from pylons.controllers.util import redirect + from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator from rhodecode.lib.base import BaseController, render from rhodecode.lib.utils import EmptyChangeset from rhodecode.model.scm import ScmModel + from vcs.exceptions import RepositoryError, ChangesetError from vcs.nodes import FileNode from vcs.utils import diffs as differ -import logging -import rhodecode.lib.helpers as h -import tempfile log = logging.getLogger(__name__) @@ -46,7 +52,6 @@ 'repository.admin') def __before__(self): super(FilesController, self).__before__() - c.file_size_limit = 250 * 1024 #limit of file size to display def index(self, repo_name, revision, f_path): hg_model = ScmModel() @@ -197,13 +202,13 @@ return diff.raw_diff() elif c.action == 'diff': - if node1.size > c.file_size_limit or node2.size > c.file_size_limit: + if node1.size > self.cut_off_limit or node2.size > self.cut_off_limit: c.cur_diff = _('Diff is to big to display') else: c.cur_diff = diff.as_html() else: #default option - if node1.size > c.file_size_limit or node2.size > c.file_size_limit: + if node1.size > self.cut_off_limit or node2.size > self.cut_off_limit: c.cur_diff = _('Diff is to big to display') else: c.cur_diff = diff.as_html()
--- a/rhodecode/lib/base.py Sun Dec 05 17:22:57 2010 +0100 +++ b/rhodecode/lib/base.py Sun Dec 05 18:29:15 2010 +0100 @@ -20,7 +20,7 @@ c.repo_name = get_repo_slug(request) c.cached_repo_list = ScmModel().get_repos() c.backends = BACKENDS.keys() - + self.cut_off_limit = int(config['cut_off_limit']) self.sa = meta.Session() scm_model = ScmModel(self.sa) #c.unread_journal = scm_model.get_unread_journal()