Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#202, #224 simplify configation - alternative to #6 #10

Closed
wants to merge 2 commits into from

Commits on Jul 7, 2014

  1. #202 new ini parser

    allow more comfortable ini configuration like
    [configsection]
    value1=foo
    value2=bar
    value3=dummy
    [configsection.subsection]
    value1=foo
    value2=foo
    value3=foo
    value4=foo
    [configsection.subsection.subsubsection1]
    value1=foo
    value2=bar
    value3=blub
    value4=dummy
    [configsection.subsection.subsubsection2]
    value1=foo
    value2=bar
    value3=blub
    value4=dummy
    dingsda87 committed Jul 7, 2014
    Configuration menu
    Copy the full SHA
    6cc3db5 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2014

  1. ID#224 simplify Configuration usage

    change BaseConfiguration to use '.' as section delimiter by default without the ability to change it
    allow requesting and setting values and section of lower levels by using the subsection delimiter
    examples
    $section -> getSection($name='subSection.subSubSection');
    $section -> setSection($name='subSection/subSubSection', $newSubsection);
    dingsda87 committed Jul 9, 2014
    Configuration menu
    Copy the full SHA
    ec21698 View commit details
    Browse the repository at this point in the history