fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bugfix
[redakcja.git]
/
src
/
documents
/
models
/
book.py
diff --git
a/src/documents/models/book.py
b/src/documents/models/book.py
index
1b34fb6
..
c11862b
100644
(file)
--- a/
src/documents/models/book.py
+++ b/
src/documents/models/book.py
@@
-57,6
+57,7
@@
class Book(models.Model):
related_query_name='document_book',
)
legimi_id = models.CharField(max_length=255, blank=True)
related_query_name='document_book',
)
legimi_id = models.CharField(max_length=255, blank=True)
+ woblink_id = models.CharField(max_length=255, blank=True)
class NoTextError(BaseException):
pass
class NoTextError(BaseException):
pass
@@
-282,9
+283,6
@@
class Book(models.Model):
except IndexError:
return None
except IndexError:
return None
- def last_legimi_publish(self):
- return self.legimibookpublish_set.order_by('-created_at').first()
-
def assert_publishable(self):
assert self.chunk_set.exists(), _('No chunks in the book.')
try:
def assert_publishable(self):
assert self.chunk_set.exists(), _('No chunks in the book.')
try:
@@
-399,7
+397,7
@@
class Book(models.Model):
self.build_cover()
def build_cover(self):
self.build_cover()
def build_cover(self):
- width, height = 21
6
, 300
+ width, height = 21
2
, 300
try:
xml = self.materialize(publishable=True).encode('utf-8')
info = BookInfo.from_bytes(xml)
try:
xml = self.materialize(publishable=True).encode('utf-8')
info = BookInfo.from_bytes(xml)