On Mar 8, 5:39 pm, Malcolm Tredinnick <malc...@pointy-stick.com>
wrote:
> On Sun, 2009-03-08 at 16:22 -0700, danbergan wrote:
> > On Mar 8, 5:13 pm, danbergan <danber...@gmail.com> wrote:
> > > On Mar 8, 4:53 pm, Malcolm Tredinnick <malc...@pointy-stick.com>
> > > wrote:
>
> > > > On Sun, 2009-03-08 at 14:11 -0700, danbergan wrote:
>
> > > > [...]
>
> > > > > I'm guessing that the problem is that, since I'm not running withing
> > > > > django, I don't have anything set in "INSTALLED_APPS".
>
> > > > Indeed. Template tag directories are only looked for in locations listed
> > > > in INSTALLED_APPS.
>
> > > > >  I've tried
> > > > > setting "INSTALLED_APPS" in my settings.configure() call, but it still
> > > > > gives me the same error message.
>
> > > > Can you show us how you've tried this? Settings.configure() is known to
> > > > work, as far as I know, so it's possibly a usage error on your side.
>
> > > Thanks, Malcolm.
>
> > > Here's my configure:
> > > settings.configure(DEBUG=True, TEMPLATE_DEBUG=True, TEMPLATE_DIRS=("d:/
> > > current/ea/tpl"), INSTALLED_APPS=("d:/current/ea"))
>
> > Sorry - I had been testing some different values in there, and the one
> > posted above gives a different error.
>
> Because INSTALLED_APPS isn't a tuple or a list, it's just a string. The
> trailing comma is important there. :-)
>
>
>
> > To get the error that I originally posted, I used:
> > settings.configure(DEBUG=True, TEMPLATE_DEBUG=True, TEMPLATE_DIRS=("d:/
> > current/ea/tpl",), INSTALLED_APPS=("ea",))
>
> > FYI - the python program I'm running that uses django templates is d:
> > \current\ea\ea.py
>
> That last line suggests the problem. If you're in the ea/ directory,
> "import ea" will try to import ea.py, not the ea module. Don't have
> multiple things with the same name and I suspect your problem will go
> away (e.g. call the directory "ea_app").

Thanks, Malcolm.

I changed the directory to "ea_app", and changed my settings.configure
to:
settings.configure(DEBUG=True, TEMPLATE_DEBUG=True, TEMPLATE_DIRS=("d:/
current/ea_app/tpl","c:/python/tpl"), INSTALLED_APPS=("ea",))

I'm still getting:
TemplateSyntaxError: 'myfilter' is not a valid tag library: Could not
load template library from django.templatetags.myfilter, No module
named myfilter

So, I must still be missing something.  I've been staring at this for
too long now, so I think I need a break and return with fresh eyes.
However, if you have any tips I would sure appreciate it!

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

Reply via email to