Re: [PLUG] Request for Suggestions: Configuration file templating?

2011-04-20 Thread Michael
Dan Young wrote: If you're rockin' the Perl you might go for Template Toolkit: http://template-toolkit.org/ Second that suggestion if you have Perl comfort   TT is very flexible and the syntax is human parseable. -- Michael Rasmussen http://www.jamhome.us/ Be Appropriate Follow

[PLUG] Request for Suggestions: Configuration file templating?

2011-04-19 Thread Russell Senior
I am looking for suggestions for a templating system. I need to generate a tree of configuration files to bake into a firmware image. My tree overlays (replaces) the standard configuration to localized it for a particular situation. I have rolled my own in Perl and sed, primarily, but it seems

Re: [PLUG] Request for Suggestions: Configuration file templating?

2011-04-19 Thread Tim
I am looking for suggestions for a templating system. One thing that comes to mind, besides something like xslt, would be ViewVC's (formerly ViewCVS) easy templates which comes in a module called ezt.py. The application uses them extensively for HTML generation, but it is a general, simple

Re: [PLUG] Request for Suggestions: Configuration file templating?

2011-04-19 Thread Paul Heinlein
On Tue, 19 Apr 2011, Russell Senior wrote: I am looking for suggestions for a templating system. Have you looked at m4? It's ancient, of course, but m4 and a Makefile is still a powerful combination. -- Paul Heinlein heinl...@madboa.com http://www.madboa.com/

Re: [PLUG] Request for Suggestions: Configuration file templating?

2011-04-19 Thread Joe Shisei Niski
On 04/19/2011 10:04 AM, Russell Senior wrote: I am looking for suggestions for a templating system. I need to generate a tree of configuration files to bake into a firmware image. My tree overlays (replaces) the standard configuration to localized it for a particular situation. I have

Re: [PLUG] Request for Suggestions: Configuration file templating?

2011-04-19 Thread Dan Young
On Tue, Apr 19, 2011 at 10:04 AM, Russell Senior russ...@personaltelco.net wrote: I am looking for suggestions for a templating system. ...snip... Can anybody suggest something they like? The explosion of web frameworks has given rise to scads of templating systems. Some are focused on HTML,

Re: [PLUG] Request for Suggestions: Configuration file templating?

2011-04-19 Thread Roderick A. Anderson
Russell Senior wrote: I am looking for suggestions for a templating system. I need to generate a tree of configuration files to bake into a firmware image. My tree overlays (replaces) the standard configuration to localized it for a particular situation. I have rolled my own in Perl and