Changeset 48361
- Timestamp:
- 08/14/06 10:58:04 (2 years ago)
- Files:
-
- CPS3/products/CPSCore/trunk/ProxyBase.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
CPS3/products/CPSCore/trunk/ProxyBase.py
r47241 r48361 815 815 def UNLOCK(self, REQUEST, RESPONSE): 816 816 """Handle HTTP (and presumably FTP?) UNLOCK requests (WebDAV).""" 817 self.logger ("UNLOCK()")817 self.logger.debug("UNLOCK()") 818 818 if self.state != 2: 819 819 self.logger.debug("BadRequest: Cannot UNLOCK with state != 2") … … 825 825 def wl_lockValues(self, killinvalids=0): 826 826 """Handle HTTP (and presumably FTP?) wl_lockValues requests (WebDAV).""" 827 self.logger ("wl_lockValues()")827 self.logger.debug("wl_lockValues()") 828 828 if self.state != 2: 829 829 self.logger.debug("BadRequest: Cannot wl_lockValues with state != 2")
