Hi folks, I have a bfg app that makes a crud controller, where objects
from the model package get attached through configure.zcml. This
achieves my purpose of having the application completely unaware of the
model. I want to use this app as a wsgi callable in another app ( a
pylons project ), but I'm stuck on a few things with my limited wsgi
knowledge:

- I understand that run:app provides the paster entry point, but how
would I import my whole app into another python app?
- I want my model to be installable as a separate, framework agnostic,
sqlalchemy model, that only needs to import interfaces from the crud
apps interfaces module
- configure.zcml hooks things up right now with calls like:

<utility 
  provides=".model.pet.IPet" 
  component=".model.pet.Pet" 
  name="pet" 
/> 
<adapter 
factory=".model.pet.PetFields"  
for=".model.pet.IPet .interfaces.IActionView
repoze.bfg.interfaces.IRequest" />

But I'm at a loss as to how I make this app know to look in a
configure.zcml file in the model package without touching the stuff in
the app itself?

Thanks!
Iain

_______________________________________________
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
http://lists.repoze.org/listinfo/repoze-dev

Reply via email to