Changeset - b76a595b7a5e
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 13 years ago 2013-02-09 19:45:10
marcin@python-works.com
pasters RhodeCode commands help text improvements
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/dbmigrate/__init__.py
Show inline comments
 
@@ -38,13 +38,13 @@ class UpgradeDb(BasePasterCommand):
 
    """
 

	
 
    max_args = 1
 
    min_args = 1
 

	
 
    usage = "CONFIG_FILE"
 
    summary = "Upgrades current db to newer version given configuration file"
 
    summary = "Upgrades current db to newer version"
 
    group_name = "RhodeCode"
 

	
 
    parser = Command.standard_parser(verbose=True)
 

	
 
    def command(self):
 
        from pylons import config
rhodecode/lib/indexers/__init__.py
Show inline comments
 
@@ -102,13 +102,13 @@ JOURNAL_SCHEMA = Schema(
 
class MakeIndex(BasePasterCommand):
 

	
 
    max_args = 1
 
    min_args = 1
 

	
 
    usage = "CONFIG_FILE"
 
    summary = "Creates index for full text search given configuration file"
 
    summary = "Creates or update full text search index"
 
    group_name = "RhodeCode"
 
    takes_config_file = -1
 
    parser = Command.standard_parser(verbose=True)
 

	
 
    def command(self):
 
        logging.config.fileConfig(self.path_to_ini_file)
0 comments (0 inline, 0 general)