I made a buildout with the config below that didn't work right and
found it needed to have some extra paths added.

Here is the extra path I needed:

  '/home/john/buildout/eggs/django_page_cms-1.1.3-py2.6.egg',
  
'/home/john/buildout/eggs/django_page_cms-1.1.3-py2.6.egg/pages/templates/pages',

pages was being found to not have the contents wanted.  Is having a dir pages
and pages/templates/pages a naming problem for buildout?  If a search
is being done for * in pages, it might stop short when the top level pages is 
found.

Hints, suggestions how to resolve this appreciated.
Meanwhile, every time I run buildout, I'll need to copy an paste that extra 
path...

John
-----buildout.cfg----
[buildout]
eggs-directory = /home/john/buildout/eggs
extensions = mr.developer

parts =
    django

eggs =
    mock
    django-notification
    django-page-cms
    django-haystack
    django-staticfiles
    django-messages
    django-mptt-2
    whoosh

[django]
recipe = djangorecipe
version = 1.2.1
settings = development
wsgi = true
eggs = ${buildout:eggs}
project = industromatic_com
--------buildout.cfg----------

_______________________________________________
Distutils-SIG maillist  -  distutils-...@python.org
http://mail.python.org/mailman/listinfo/distutils-sig

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-us...@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