The Following User Says Thank You to rambo For This Useful Post: | ||
![]() |
2010-02-23
, 21:12
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#2
|
I can do this in python via the ConfigParser module, but it will strip all comments when writing the modified file (which is kind of obvious and I was expecting it to happen), this is undesirable
![]() |
2010-02-28
, 11:19
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#3
|
So unless someone has made such a tool already it seems I will have to write one.
The Following User Says Thank You to rambo For This Useful Post: | ||
![]() |
2010-02-28
, 12:59
|
Posts: 60 |
Thanked: 23 times |
Joined on Jan 2010
|
#4
|
![]() |
2010-02-28
, 16:18
|
|
Posts: 138 |
Thanked: 375 times |
Joined on Aug 2009
@ Berlin
|
#5
|
![]() |
2010-02-28
, 16:22
|
Posts: 356 |
Thanked: 69 times |
Joined on Jan 2010
@ Poland
|
#6
|
![]() |
2010-02-28
, 20:23
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#7
|
There is a helper binary shipped with the LED pattern editor that can check patterns for correctness, overwrite mce.ini and restart mce. But it only supports changing existing patterns, not adding new ones (because the pattern editor doesn't need that). So the two tools have kind of orthogonal functionality.
![]() |
2010-02-28
, 21:43
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#8
|
![]() |
2010-03-01
, 09:42
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#9
|
![]() |
2010-03-01
, 10:01
|
|
Posts: 138 |
Thanked: 375 times |
Joined on Aug 2009
@ Berlin
|
#10
|
The Following User Says Thank You to pH5 For This Useful Post: | ||
I can do this in python via the ConfigParser module, but it will strip all comments when writing the modified file (which is kind of obvious and I was expecting it to happen), this is undesirable. There have been suggested patches to ConfigParser for "surgical" editing but nothing has come of them.
Basically idea is to add a new mySuperCoolLedPattern at postinstall and remove it at postrm without messing up rest of the mce.ini.
So I wonder what would be the cleanest way to do this (writing my own config file parser that supports only the very small subset of features required to do this? anyway there needs to be some extra logic since the LEDPatterns variable is not a proper dictionary but just semicolon separate values)