[Checkins] SVN: Sandbox/luciano/kirbi/ renamed item do copy

Luciano Ramalho luciano at ramalho.org
Sat Aug 18 18:51:06 EDT 2007


Log message for revision 78974:
  renamed item do copy
  

Changed:
  A   Sandbox/luciano/kirbi/item.py
  D   Sandbox/luciano/kirbi/src/kirbi/copy.py

-=-
Copied: Sandbox/luciano/kirbi/item.py (from rev 78973, Sandbox/luciano/kirbi/src/kirbi/copy.py)
===================================================================
--- Sandbox/luciano/kirbi/item.py	                        (rev 0)
+++ Sandbox/luciano/kirbi/item.py	2007-08-18 22:51:06 UTC (rev 78974)
@@ -0,0 +1,32 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Kirbi book exemplar class
+"""
+
+import grok
+from interfaces import IItem, ILease
+from zope.interface import Interface, implements, invariant
+from zope import schema
+
+class Item(grok.Container):
+    """An exemplar of a book.
+    
+    See note at interfaces.IItem.
+    """
+
+    implements(IItem)
+    
+    def __init__(self, manifestation_id):
+        super(IItem, self).__init__()
+        

Deleted: Sandbox/luciano/kirbi/src/kirbi/copy.py
===================================================================
--- Sandbox/luciano/kirbi/src/kirbi/copy.py	2007-08-18 22:49:58 UTC (rev 78973)
+++ Sandbox/luciano/kirbi/src/kirbi/copy.py	2007-08-18 22:51:06 UTC (rev 78974)
@@ -1,32 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Kirbi book exemplar class
-"""
-
-import grok
-from interfaces import IItem, ILease
-from zope.interface import Interface, implements, invariant
-from zope import schema
-
-class Item(grok.Container):
-    """An exemplar of a book.
-    
-    See note at interfaces.IItem.
-    """
-
-    implements(IItem)
-    
-    def __init__(self, manifestation_id):
-        super(IItem, self).__init__()
-        



More information about the Checkins mailing list