Hi, I'm planning to deploy Zope within my company intranet. We have 6 intranet sites. I've found ZSyncer to be very useful to synchronize ZODB objects to the development site's. However, I still need some tools to synchronize our customized zope-products and external methods. Any suggestion will be appreciate.
Sakesun Roykiattisak wrote:
Hi, I'm planning to deploy Zope within my company intranet. We have 6 intranet sites. I've found ZSyncer to be very useful to synchronize ZODB objects to the development site's. However, I still need some tools to synchronize our customized zope-products and external methods. Any suggestion will be appreciate.
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
Create a CVS repository with all the products on one of the servers. Put all the external files in one of the products External directory. Checkout all your products in the respective products directory on all the servers. All you have to do then is to cvs update the products on each of your server. To automate the actual updating you could write an external method that calls "cvs -q up -d -P" in each of the products directory. This external method you can call from a python script on your "home" zope. Robert
robert rottermann wrote:
Sakesun Roykiattisak wrote:
I still need some tools to synchronize our customized zope-products and external methods. Any suggestion will be appreciate.
Create a CVS repository with all the products on one of the servers. Put all the external files in one of the products External directory. Checkout all your products in the respective products directory on all the servers.
I agree, allthough I would use Subversion instead. Especially if the server platform is Windows. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science
participants (3)
-
Max M -
robert rottermann -
Sakesun Roykiattisak