[Zope-dev] Integrating zope2 with Django
Roberto Allende
rover at menttes.com
Tue Sep 29 12:09:17 EDT 2009
joseph_ig escribió:
> Hi all, Is there any way to integrate Django frame work with Zope2 If
> possible please tell a good book for installing and understanding cmf
> plone in zope 2 Please help
Hello
I believe to integrate Django with a Zope2 application there are two
approaches at least.
One is to do the integration at Model or Data Layer, which is the
approach ContentMirror (CM) uses to integrate Plone (an application made
with Zope) with Django or any other (agile) framework. There are Plone
front ends using CM made with Django, Pylons, Repoze, Grok, GoogleAppengine.
If i'm not wrong, CM uses events and SQLAlchemy to replicate data from
ZODB to a relational database, and then you connect your database with
your favorite front end.
CM is very focused on Plone, but if you have any other application, I
believe you could reuse some ideas at least.
More information about ContentMirror:
Project's page:
http://code.google.com/p/contentmirror/
A PyCon talk by Carlos de la Guardia (slides + video):
http://us.pycon.org/2009/conference/schedule/event/85/
Another approach is to use Deliverance. Using deliverance you'll be able
to integrate your application at View or user interface layer. Basically
the approach is to unify the skin of both applications and issues such
as authentication. There are very interesting success stories such as
Coactivate (http://www.coactivate.org), where Plone is integrated with
wordpress, a php application.
More information about deliverance:
Project's page:
http://www.coactivate.org/projects/deliverance
A blog post by Ian Bicking:
http://blog.ianbicking.org/2008/10/06/the-philosophy-of-deliverance/
A pycon talk by Matt Hamilton:
http://www.slideshare.net/hammertoe/lipstick-on-a-pig
Kind Regards
r.
--
http://robertoallende.com
More information about the Zope-Dev
mailing list