Files
@ b596a0e63466
Branch filter:
Location: kallithea/rhodecode/lib/dbmigrate/migrate/versioning/cfgparse.py - annotation
b596a0e63466
717 B
text/x-python
Fixing a small error in the repo settings screen
The 'Add another member' option didn't work in 1.2 beta, as the field
was renamed from `perm_new_user_name` to `perm_new_member_name`
The 'Add another member' option didn't work in 1.2 beta, as the field
was renamed from `perm_new_user_name` to `perm_new_member_name`
9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 08d2dcd71666 08d2dcd71666 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 9753e0907827 | """
Configuration parser module.
"""
from ConfigParser import ConfigParser
from rhodecode.lib.dbmigrate.migrate.versioning.config import *
from rhodecode.lib.dbmigrate.migrate.versioning import pathed
class Parser(ConfigParser):
"""A project configuration file."""
def to_dict(self, sections=None):
"""It's easier to access config values like dictionaries"""
return self._sections
class Config(pathed.Pathed, Parser):
"""Configuration class."""
def __init__(self, path, *p, **k):
"""Confirm the config file exists; read it."""
self.require_found(path)
pathed.Pathed.__init__(self, path)
Parser.__init__(self, *p, **k)
self.read(path)
|