fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' of stigma.nowoczesnapolska.org.pl:platforma
[redakcja.git]
/
lib
/
wlrepo
/
__init__.py
diff --git
a/lib/wlrepo/__init__.py
b/lib/wlrepo/__init__.py
index
5c27dc9
..
606f2d4
100644
(file)
--- a/
lib/wlrepo/__init__.py
+++ b/
lib/wlrepo/__init__.py
@@
-44,6
+44,10
@@
class Cabinet(object):
else:
raise ValueError("You must provide either name or doc and user.")
else:
raise ValueError("You must provide either name or doc and user.")
+
+ def __str__(self):
+ return "Cabinet(%s)" % self._name
+
def documents(self):
"""Lists all documents and sub-documents in this cabinet."""
pass
def documents(self):
"""Lists all documents and sub-documents in this cabinet."""
pass
@@
-57,14
+61,13
@@
class Cabinet(object):
as the name for the main document"""
pass
as the name for the main document"""
pass
- def create(self, name):
+ def create(self, name
, initial_data=''
):
"""Create a new sub-document in the cabinet with the given name."""
pass
def maindoc_name(self):
return self._maindoc
"""Create a new sub-document in the cabinet with the given name."""
pass
def maindoc_name(self):
return self._maindoc
-
@property
def library(self):
return self._library
@property
def library(self):
return self._library
@@
-73,6
+76,9
@@
class Cabinet(object):
def name(self):
return self._name
def name(self):
return self._name
+ def shelf(self, selector=None):
+ pass
+
class Document(object):
def __init__(self, cabinet, name):
self._cabinet = cabinet
class Document(object):
def __init__(self, cabinet, name):
self._cabinet = cabinet
@@
-92,7
+98,28
@@
class Document(object):
def library(self):
return self._cabinet.library
def library(self):
return self._cabinet.library
+ @property
+ def name(self):
+ return self._name
+
+ def shelf(self):
+ return self._cabinet.shelf()
+ @property
+ def size(self):
+ raise NotImplemented()
+
+ @property
+ def parts(self):
+ raise NotImplemented()
+
+
+class Shelf(object):
+
+ def __init__(self, cabinet):
+ self._cabinet = cabinet
+
+
#
# Exception classes
#
#
# Exception classes
#
@@
-104,6
+131,8
@@
class LibraryException(Exception):
self.cause = cause
class CabinetNotFound(LibraryException):
self.cause = cause
class CabinetNotFound(LibraryException):
+ def __init__(self, cabname):
+ LibraryException.__init__(self, "Cabinet '%s' not found." % cabname)
pass
pass