You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
669 B
28 lines
669 B
14 years ago
|
"""
|
||
|
Configuration parser module.
|
||
|
"""
|
||
|
|
||
|
from ConfigParser import ConfigParser
|
||
|
|
||
|
from migrate.versioning.config import *
|
||
|
from 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)
|