fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87ff0a2
)
Added importing metabooks (books with relation.hasPart in Dublin Core metadata).
author
Marek Stępniowski
<marek@stepniowski.com>
Sat, 6 Sep 2008 17:09:29 +0000
(19:09 +0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Sat, 6 Sep 2008 17:09:29 +0000
(19:09 +0200)
catalogue/models.py
patch
|
blob
|
history
diff --git
a/catalogue/models.py
b/catalogue/models.py
index
e80bd25
..
114b34b
100644
(file)
--- a/
catalogue/models.py
+++ b/
catalogue/models.py
@@
-150,6
+150,13
@@
class Book(models.Model):
book_tags.append(tag)
book.tags = book_tags
+ if hasattr(book_info, 'parts'):
+ for part_url in book_info.parts:
+ base, slug = part_url.rsplit('/', 1)
+ child_book = Book.objects.get(slug=slug)
+ child_book.parent = book
+ child_book.save()
+
# Save XML and HTML files
book.xml_file.save('%s.xml' % book.slug, File(file(xml_file)), save=False)