[Zope] CMF 1.5.2 Released

2005-07-17 Thread Jens Vagelpohl
Zope Corporation is pleased to announce the release of version 1.5.2 of the Zope Content Management Framework (CMF). This release marks the latest stable release in the CMF 1.5 series and should be suitable for production use. What is the CMF? The Zope Content Management Framework prov

Re: [Zope] Re: How to upload a file and save it in a physical path

2005-07-17 Thread Peter Bengtsson
Why use Blob when there's ExtFile? I don't understand the difference. On 7/16/05, Tres Seaver <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Remy Pinsonnault wrote: > > Maybe it is a basic question but how can I upload a file and save it > > anywhere on the serve

Re: [Zope] Re: How to upload a file and save it in a physical path

2005-07-17 Thread Jens Vagelpohl
On 17 Jul 2005, at 11:27, Peter Bengtsson wrote: Why use Blob when there's ExtFile? I don't understand the difference. Did you follow the link and read the description? For one, Blob also hooks into the Zope transaction machinery, to maintain transactional integrity. I doubt ExtFile does.

[Zope] [ATTN]: CMF and related packages moved to svn.zope.org

2005-07-17 Thread Jens Vagelpohl
Hi everyone, I just finished migrating the CMF and related projects from cvs.zope.org to svn.zope.org, from CVS to Subversion. All tags and branches have moved, unlike Zope itself there won't be some development using CVS and some using Subversion. These are the packages: - CMF - CMF_Hotf

Re: [Zope] Creating Photo object from an Image object

2005-07-17 Thread Peter Bengtsson
> #id1,title1 image id and tile > def doAddPhoto(id1, title1): > # some comments > > > img = context.getObjectById(id1) # this returns the object part of > object item array from context.objectItems > s="ph" +str(id1) > context.manage_addPhoto(id=s, file=img.data,title=t

Re: [Zope] numeric formatting

2005-07-17 Thread Lennart Regebro
On 7/16/05, David H <[EMAIL PROTECTED]> wrote: > Really my question is, what approach is recommended for a Zope > application to format numbers according to currency type? Using a localization module is common. -- Lennart Regebro, Nuxeo http://www.nuxeo.com/ CPS Content Management http:/

Re: [Zope] Creating Photo object from an Image object

2005-07-17 Thread Thomas Adams
Peter Bengtsson schrieb: #id1,title1 image id and tile def doAddPhoto(id1, title1): # some comments img = context.getObjectById(id1) # this returns the object part of object item array from context.objectItems s="ph" +str(id1) context.manage_addPhoto(id=s, file=img.data,ti