Re: Heads up: Pylons wiki down for maintenance tonight, 9:30pm-10:30pm PDT

2009-09-05 Thread Mike Orr

On Fri, Sep 4, 2009 at 10:38 PM, Philip Jenveypjen...@underboss.org wrote:


 On Sep 4, 2009, at 4:37 PM, Philip Jenvey wrote:


 It'll be going down for for a well needed upgrade.

 It's back now, note that the popular metadata-list plugin is currently
 incompatible with Confluence 3, hopefully a newer version will be
 released soon.

What's a metadata-list plugin, and what are we missing without it?

-- 
Mike Orr sluggos...@gmail.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to 
pylons-discuss+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: genshi.options no longer available

2009-09-05 Thread Techniq



On Sep 5, 2:26 pm, Techniq jcr...@gmail.com wrote:
 I'm wondering what happened to the old of specifying genshi options in
 *.ini?

 # development.ini
 genshi.default_dectype = xhtml-strict
 genshi.default_format = xhtml

 this no longer works.  Is there now another way to accomplish this?
 TemplateLoader doesn't accept this options and the only place I see
 this in Genshi's source is plugin.py:MarkupTemplateEnginePlugin class.

 Thanks in advance.

*Correction:
genshi.default_doctype = xhtml-strict
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to 
pylons-discuss+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: Heads up: Pylons wiki down for maintenance tonight, 9:30pm-10:30pm PDT

2009-09-05 Thread Philip Jenvey


On Sep 5, 2009, at 3:02 AM, Mike Orr wrote:


 On Fri, Sep 4, 2009 at 10:38 PM, Philip  
 Jenveypjen...@underboss.org wrote:


 On Sep 4, 2009, at 4:37 PM, Philip Jenvey wrote:


 It'll be going down for for a well needed upgrade.

 It's back now, note that the popular metadata-list plugin is  
 currently
 incompatible with Confluence 3, hopefully a newer version will be
 released soon.

 What's a metadata-list plugin, and what are we missing without it?

It's the one that usually shows some stats at the top of pages and I  
guess adds some metadata to the Confluence index:

http://confluence.atlassian.com/display/CONFEXT/Metadata+Plugin

E.g.:

http://wiki.pylonshq.com/display/pylonscookbook/ZSI+Client+for+SOAP+Controller+with+Optio%27s+Soaplib+and+SQLAlchemy

--
Philip Jenvey

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to 
pylons-discuss+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: genshi.options no longer available

2009-09-05 Thread Mike Orr

On Sat, Sep 5, 2009 at 11:26 AM, Techniqjcr...@gmail.com wrote:

 I'm wondering what happened to the old of specifying genshi options in
 *.ini?

 # development.ini
 genshi.default_dectype = xhtml-strict
 genshi.default_format = xhtml

 this no longer works.  Is there now another way to accomplish this?
 TemplateLoader doesn't accept this options and the only place I see
 this in Genshi's source is plugin.py:MarkupTemplateEnginePlugin class.

The old template configuration system (Buffet) is still available as
pylons.templating.render().  But it's buggy and limited and going away
in Pylons 1.0, so I wouldn't use it.

If you create a new application and answer genshi to the template
question, it will give you the code to configure a Genshi template
loader in myapp/config/environment.py, which you can paste into your
application.  Then put from pylons.templating import render_genshi as
render in your controllers.

I don't use Genshi so I'm not sure how to set those specific options.
You may be able to give them to the template loader, or you may have
to wrap or re-implement render_genshi to set them,  A couple URLs that
might help:

http://pylonshq.com/docs/en/0.9.7/views/  (section Custom render() functions)
http://pylonsbook.com/en/1.0/using-view-templates.html (section
Alternative Template Languages)

-- 
Mike Orr sluggos...@gmail.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to 
pylons-discuss+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---