Re: ReST and path issues

2009-09-07 Thread TiNo
On Sun, Sep 6, 2009 at 16:09, wrong wrote: > Can you show the output of these commands below? > (from django shell and from running under fastfcgi deamons) > > import sys > print sys.executable > for p in sys.path: print p Django Shell: >>> import sys >

Re: ReST and path issues

2009-09-06 Thread wrong
Can you show the output of these commands below? (from django shell and from running under fastfcgi deamons) import sys print sys.executable for p in sys.path: print p On Sat, Sep 5, 2009 at 7:46 PM, TiNo wrote: > On Thu, Sep 3, 2009 at 00:38, TiNo wrote: > >> Hi, >> I am trying to set up a

Re: ReST and path issues

2009-09-05 Thread TiNo
On Thu, Sep 3, 2009 at 00:38, TiNo wrote: > Hi, > I am trying to set up a sort of smal CMS where the input is > RestructuredText. The restructured text is parsed by a templatetag with the > following code (taken from the PyCon rst project): > > @register.filter > def restructuredparts(value, **ov

ReST and path issues

2009-09-02 Thread TiNo
Hi, I am trying to set up a sort of smal CMS where the input is RestructuredText. The restructured text is parsed by a templatetag with the following code (taken from the PyCon rst project): @register.filter def restructuredparts(value, **overrides): """return the restructured text parts"""