comparison rhodecode/controllers/admin/repos_groups.py @ 1824:89efedac4e6c beta

2012 copyrights
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 04 Jan 2012 03:50:07 +0200
parents cf51bbfb120e
children a7dfe823933a
comparison
equal deleted inserted replaced
1823:f45e83492484 1824:89efedac4e6c
1 # -*- coding: utf-8 -*-
2 """
3 rhodecode.controllers.admin.repos_groups
4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
6 repos groups controller for RhodeCode
7
8 :created_on: Mar 23, 2010
9 :author: marcink
10 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
11 :license: GPLv3, see COPYING for more details.
12 """
13 # This program is free software: you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation, either version 3 of the License, or
16 # (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25
1 import logging 26 import logging
2 import traceback 27 import traceback
3 import formencode 28 import formencode
4 29
5 from formencode import htmlfill 30 from formencode import htmlfill
6 from operator import itemgetter
7 31
8 from pylons import request, response, session, tmpl_context as c, url 32 from pylons import request, response, session, tmpl_context as c, url
9 from pylons.controllers.util import abort, redirect 33 from pylons.controllers.util import abort, redirect
10 from pylons.i18n.translation import _ 34 from pylons.i18n.translation import _
11 35