fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
a426e3e
)
Save shelves for each book during reimport.
author
Marek Stępniowski
<marek@stepniowski.com>
Mon, 29 Sep 2008 13:22:49 +0000
(15:22 +0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Mon, 29 Sep 2008 13:22:49 +0000
(15:22 +0200)
apps/catalogue/models.py
patch
|
blob
|
history
diff --git
a/apps/catalogue/models.py
b/apps/catalogue/models.py
index
8a77227
..
18e7e80
100644
(file)
--- a/
apps/catalogue/models.py
+++ b/
apps/catalogue/models.py
@@
-157,8
+157,14
@@
class Book(models.Model):
book_info = dcparser.parse(xml_file)
book_base, book_slug = book_info.url.rsplit('/', 1)
book, created = Book.objects.get_or_create(slug=book_slug)
book_info = dcparser.parse(xml_file)
book_base, book_slug = book_info.url.rsplit('/', 1)
book, created = Book.objects.get_or_create(slug=book_slug)
- if not created and not overwrite:
- raise Book.AlreadyExists('Book %s already exists' % book_slug)
+
+ if created:
+ book_shelves = []
+ else:
+ if not overwrite:
+ raise Book.AlreadyExists('Book %s already exists' % book_slug)
+ # Save shelves for this book
+ book_shelves = book.tags.filter(category='set')
book.title = book_info.title
book._short_html = ''
book.title = book_info.title
book._short_html = ''
@@
-224,7
+230,7
@@
class Book(models.Model):
book_themes += themes
book_themes = set(book_themes)
book_themes += themes
book_themes = set(book_themes)
- book.tags = list(book.tags) + list(book_themes)
+ book.tags = list(book.tags) + list(book_themes)
+ list(book_shelves)
book.save()
return book
book.save()
return book