[web2py] Re: LOAD() a plugin_wiki page

2011-03-22 Thread Massimo Di Pierro
oops On Mar 22, 3:01 pm, danto wrote: > > 2011/3/13 Massimo Di Pierro > > >> You can also do > > >> {{=plugin_wiki.render_page('slug')}} > > >> if you do not need the ajax trapping. > > for the record, the above didn't work because there is not any "render_page" > method in  plugin_wiki, but   {

Re: [web2py] Re: LOAD() a plugin_wiki page

2011-03-22 Thread danto
> > 2011/3/13 Massimo Di Pierro > >> You can also do >> >> {{=plugin_wiki.render_page('slug')}} >> >> if you do not need the ajax trapping. >> >> for the record, the above didn't work because there is not any "render_page" method in plugin_wiki, but {{=plugin_wiki.embed_page('slug')}} works ins

Re: [web2py] Re: LOAD() a plugin_wiki page

2011-03-13 Thread danto
thanks, that was very useful 2011/3/13 Massimo Di Pierro > You can also do > > {{=plugin_wiki.render_page('slug')}} > > if you do not need the ajax trapping. > > On Mar 13, 10:17 am, danto wrote: > > Hi, > > > > it is possible to just load the content of a plugin_wiki page in a view > > using

[web2py] Re: LOAD() a plugin_wiki page

2011-03-13 Thread Massimo Di Pierro
You can also do {{=plugin_wiki.render_page('slug')}} if you do not need the ajax trapping. On Mar 13, 10:17 am, danto wrote: > Hi, > > it is possible to just load the content of a plugin_wiki page in a view > using the LOAD() function?

[web2py] Re: LOAD() a plugin_wiki page

2011-03-13 Thread Massimo Di Pierro
Yes, but instead of http://.../plugin_wiki/page/... you must do {{=LOAD('plugin_wiki','page.load/...',ajax=True)}} On Mar 13, 10:17 am, danto wrote: > Hi, > > it is possible to just load the content of a plugin_wiki page in a view > using the LOAD() function?