annotate rhodecode/config/rcextensions/make_rcextensions.py @ 2405:5019f7798733 beta

removed global tmpl call from make_rcextensions script
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Jun 2012 21:32:53 +0200
parents f1467dfcf093
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2105
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 # -*- coding: utf-8 -*-
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 """
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 rhodecode.config.rcextensions.make_rcextensions
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6 Whoosh indexing module for RhodeCode
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 :created_on: Mar 6, 2012
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 :author: marcink
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 :license: GPLv3, see COPYING for more details.
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12 """
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 # This program is free software: you can redistribute it and/or modify
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 # it under the terms of the GNU General Public License as published by
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 # the Free Software Foundation, either version 3 of the License, or
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 # (at your option) any later version.
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17 #
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 # This program is distributed in the hope that it will be useful,
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
21 # GNU General Public License for more details.
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
22 #
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
23 # You should have received a copy of the GNU General Public License
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
2269
f1467dfcf093 small issue fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2260
diff changeset
25 from __future__ import with_statement
f1467dfcf093 small issue fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2260
diff changeset
26
2105
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
27 import os
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
28 import sys
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
29 import pkg_resources
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
30 import traceback
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
31 import logging
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
32 from os.path import dirname as dn, join as jn
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
33
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
34 #to get the rhodecode import
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
35 sys.path.append(dn(dn(dn(os.path.realpath(__file__)))))
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
36
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
37 from rhodecode.lib.utils import BasePasterCommand, Command, ask_ok
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
38
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
39 log = logging.getLogger(__name__)
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
40
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
41
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
42 class MakeRcExt(BasePasterCommand):
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
43
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
44 max_args = 1
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
45 min_args = 1
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
46
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
47 usage = "CONFIG_FILE"
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
48 summary = "Creates additional extensions for rhodecode"
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
49 group_name = "RhodeCode"
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
50 takes_config_file = -1
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
51 parser = Command.standard_parser(verbose=True)
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
52
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
53 def command(self):
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
54 logging.config.fileConfig(self.path_to_ini_file)
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
55 from pylons import config
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
56
2405
5019f7798733 removed global tmpl call from make_rcextensions script
Marcin Kuzminski <marcin@python-works.com>
parents: 2269
diff changeset
57 def _make_file(ext_file, tmpl):
2105
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
58 bdir = os.path.split(ext_file)[0]
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
59 if not os.path.isdir(bdir):
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
60 os.makedirs(bdir)
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
61 with open(ext_file, 'wb') as f:
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
62 f.write(tmpl)
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
63 log.info('Writen new extensions file to %s' % ext_file)
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
64
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
65 here = config['here']
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
66 tmpl = pkg_resources.resource_string(
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
67 'rhodecode', jn('config', 'rcextensions', '__init__.py')
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
68 )
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
69 ext_file = jn(here, 'rcextensions', '__init__.py')
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
70 if os.path.exists(ext_file):
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
71 msg = ('Extension file already exists, do you want '
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
72 'to overwrite it ? [y/n]')
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
73 if ask_ok(msg):
2405
5019f7798733 removed global tmpl call from make_rcextensions script
Marcin Kuzminski <marcin@python-works.com>
parents: 2269
diff changeset
74 _make_file(ext_file, tmpl)
2105
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
75 else:
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
76 log.info('nothing done...')
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
77 else:
2405
5019f7798733 removed global tmpl call from make_rcextensions script
Marcin Kuzminski <marcin@python-works.com>
parents: 2269
diff changeset
78 _make_file(ext_file, tmpl)
2105
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
79
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
80 def update_parser(self):
926f55b038bc added initial rc-extension module
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
81 pass