Skip to content

Commit

Permalink
Merge philikon-zope32-integration branch. Basically, this branch enta…
Browse files Browse the repository at this point in the history
…ils:

* Updated svn externals to include Zope 3.2 (currently the Zope3 trunk);
  that includes two new top-level packages, pytz and zodbcode, as well as
  the following new zope.* packages:
  - zope.deprecation
  - zope.dottedname
  - zope.formlib
  - zope.index
  - zope.testbrowser

* Moved to a zpkgutils-based build system, as the Zope 3.2 extension modules
  require to be built with it. If everything goes ahead as planned, the release
  tarball will also be built with zpkgutils (some work has also been done in
  that direction).

* Upgraded Five to the 1.3b release (released today) which is a Zope 3.2-compatible
  version of Five 1.2b (also released today). Biggest implication of this on the
  Zope 2 trunk is that the event work by Florent Guillaume has been folded back
  into the Zope 2 core, i.e. the OFS package.

* A few fixes to the Zope 2 PageTemplate/TAL/TALES implementation to work with the
  new immutable i18n Messages available since Zope 3.1+ (and standard in Zope 3.2).
  • Loading branch information
philikon committed Nov 2, 2005
1 parent 3f8a7b9 commit 83cf51d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions PythonScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,14 @@ def manage_afterAdd(self, item, container):
if item is self:
self._filepath = self.get_filepath()

def manage_beforeDelete(self, item, container):
# shut up deprecation warnings
pass

def manage_afterClone(self, item):
# shut up deprecation warnings
pass

def get_filepath(self):
return self.meta_type + ':' + '/'.join(self.getPhysicalPath())

Expand Down

0 comments on commit 83cf51d

Please sign in to comment.