##// END OF EJS Templates
summary/changelog: unified how data is displayed for summary and changelog pages....
summary/changelog: unified how data is displayed for summary and changelog pages. - use consistent order of columns - fix the link to commit status - fix order of displaying comments Fixes #4111

File last commit:

r1:854a839a default
r472:3d63a95d default
Show More
cfgparse.py
27 lines | 717 B | text/x-python | PythonLexer
"""
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)