Re: [Zope] automated object exporting

2006-09-28 Thread Chris Withers

Jonathan wrote:

If you are in a *nix environment i would suggest investigating 'cron' and using 
the 'manage_exportObject' method (google away!)


If this is for backup, I wouldn't bother.

Just use repozo like you're supposed to ;-)

Chris

--
Simplistix - Content Management, Zope  Python Consulting
   - http://www.simplistix.co.uk

___
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 )


[Zope] automated object exporting

2006-09-27 Thread Sascha Adler
Hi,I have a Zope object (a Plone site, to be specific) that I would like to have exported on a regular basis so I can back it up to another server. While I am familiar with Python, I'm not familiar with the specific methods involved in interacting with Zope for this. How would I go about doing this?
Thanks,-Sascha
___
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 )


Re: [Zope] automated object exporting

2006-09-27 Thread Jonathan



If you are in a *nix environment i would suggest 
investigating 'cron' and using the 'manage_exportObject' method (google 
away!)

hth

Jonathan


  - Original Message - 
  From: 
  Sascha 
  Adler 
  To: zope@zope.org 
  Sent: Wednesday, September 27, 2006 5:24 
  PM
  Subject: [Zope] automated object 
  exporting
  Hi,I have a Zope object (a Plone site, to be specific) 
  that I would like to have exported on a regular basis so I can back it up to 
  another server. While I am familiar with Python, I'm not familiar with the 
  specific methods involved in interacting with Zope for this. How would I go 
  about doing this? Thanks,-Sascha
  
  

  ___Zope maillist 
  - 
  Zope@zope.orghttp://mail.zope.org/mailman/listinfo/zope** 
  No cross posts or HTML encoding! **(Related lists - 
  http://mail.zope.org/mailman/listinfo/zope-announcehttp://mail.zope.org/mailman/listinfo/zope-dev 
  )
___
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 )


Re: [Zope] automated object exporting

2006-09-27 Thread Josh Burvill
Or in windows, do a similar thing using a scheduled task and wget (from cygwin) to invoke manage_exportObject with the options you want.Josh
On 28/09/06, Jonathan [EMAIL PROTECTED] wrote:







If you are in a *nix environment i would suggest 
investigating 'cron' and using the 'manage_exportObject' method (google 
away!)

hth

Jonathan


  - Original Message - 
  
From: 
  Sascha 
  Adler 
  To: 
zope@zope.org 
  Sent: Wednesday, September 27, 2006 5:24 
  PM
  Subject: [Zope] automated object 
  exporting
  Hi,I have a Zope object (a Plone site, to be specific) 
  that I would like to have exported on a regular basis so I can back it up to 
  another server. While I am familiar with Python, I'm not familiar with the 
  specific methods involved in interacting with Zope for this. How would I go 
  about doing this? Thanks,-Sascha
  
  

  
___
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 )


Re: [Zope] automated object exporting

2006-09-27 Thread Maciej Wisniowski




I have a Zope object (a Plone site, to be specific) that I would like 
to have exported on a regular basis so I can back it up to another 
server. While I am familiar with Python, I'm not familiar with the 
specific methods involved in interacting with Zope for this. How would 
I go about doing this?


I think you don't have to be familiar with
anything specific for Zope. Simply backup
Zope instance/var/data.fs file (or data.fs
in ZEO server if you're using one). As the others
already said you may do it with cron and
some bash scripts.

If you need to backup only some portions of your's
ZODB then you'll have to deal with Zope export
features. You may also think about something like
zsyncer.

--
Maciej Wisniowski
___
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 )