Re: [Zope-dev] Curious about age old WebDAV decisions...

2005-12-29 Thread Dieter Maurer
Zachery Bir wrote at 2005-12-28 14:27 -0500: >I've got a Folder (indirection) and a DTML Method (found) in the root >of a Zope site. HEAD requests fail on the indirected DTML Method due >to OFS.ObjectManager's __getitem__ method: > > def __getitem__(self, key): > import pdb;pdb.set_

RE: [Zope-dev] Curious about age old WebDAV decisions...

2005-12-29 Thread Brian Lloyd
> I wasn't around during the development of the WebDAV code, so I'm > loathe to just jump in and start changing things, but why isn't > 'HEAD' exempted from the NullResource as well, given that HTTP specs > state that HEAD *must* return the same headers that a GET would > provide (ignoring for the

[Zope-dev] Curious about age old WebDAV decisions...

2005-12-28 Thread Zachery Bir
I've got a Folder (indirection) and a DTML Method (found) in the root of a Zope site. HEAD requests fail on the indirected DTML Method due to OFS.ObjectManager's __getitem__ method: def __getitem__(self, key): import pdb;pdb.set_trace() v=self._getOb(key, None) if