search for: genshi

Displaying 4 results from an estimated 4 matches for "genshi".

2009 May 20
1
templating language questions
...t. I wanted to ask if anyone had experience in this area, though, and if it was a mistake to use a templating language which isn''t compilable in the ActionView::TemplateHandlers::Compilable sense? The templating language is called Renshi, btw, and is loosely based on Python''s Genshi. It''s not ready for general use yet, but hopefully it will be presently. http://github.com/biv/renshi/tree/master Regards, Nicholas Faiz
2009 Jul 13
0
new gem: renshi - a templating language
Hello, Just letting people know about a project of mine - a new templating language; Renshi. See http://github.com/biv/renshi/tree/master . It''s also available via gem installation through rubyforge. It was originally modelled on Python''s Genshi, although it turned out rather differently. It''d be useful for dev.s who work with HTML handed to them, or who find ERB a bit onerous - e.g. $foo is the same as <%= foo %>. It''s early days yet with it, but it''s functional. The README at github should explain every...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...om tg.configuration import AppConfig + +import ovirtserver +from ovirtserver import model +from ovirtserver.lib import app_globals, helpers + +base_config = AppConfig() +base_config.renderers = [] + +base_config.package = ovirtserver + +#Set the default renderer +base_config.default_renderer = 'genshi' +base_config.renderers.append('genshi') +# if you want raw speed and have installed chameleon.genshi +# you should try to use this renderer instead. +# warning: for the moment chameleon does not handle i18n translations +#base_config.renderers.append('chameleon_genshi') + +#Con...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...om tg.configuration import AppConfig - -import ovirtserver -from ovirtserver import model -from ovirtserver.lib import app_globals, helpers - -base_config = AppConfig() -base_config.renderers = [] - -base_config.package = ovirtserver - -#Set the default renderer -base_config.default_renderer = 'genshi' -base_config.renderers.append('genshi') -# if you want raw speed and have installed chameleon.genshi -# you should try to use this renderer instead. -# warning: for the moment chameleon does not handle i18n translations -#base_config.renderers.append('chameleon_genshi') - -#Con...