fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Now searching for tag name which is a prefix of two or more tags doesn't result in...
[wolnelektury.git]
/
apps
/
catalogue
/
models.py
diff --git
a/apps/catalogue/models.py
b/apps/catalogue/models.py
index
b5970e9
..
9640e7f
100644
(file)
--- a/
apps/catalogue/models.py
+++ b/
apps/catalogue/models.py
@@
-111,6
+111,8
@@
class Book(models.Model):
formats.append(u'<a href="%s">Plik PDF</a>' % self.pdf_file.url)
if self.odt_file:
formats.append(u'<a href="%s">Plik ODT</a>' % self.odt_file.url)
formats.append(u'<a href="%s">Plik PDF</a>' % self.pdf_file.url)
if self.odt_file:
formats.append(u'<a href="%s">Plik ODT</a>' % self.odt_file.url)
+ if self.txt_file:
+ formats.append(u'<a href="%s">Plik TXT</a>' % self.txt_file.url)
self._short_html = unicode(render_to_string('catalogue/book_short.html',
{'book': self, 'tags': tags, 'formats': formats}))
self._short_html = unicode(render_to_string('catalogue/book_short.html',
{'book': self, 'tags': tags, 'formats': formats}))
@@
-137,8
+139,11
@@
class Book(models.Model):
has_html_file.short_description = 'HTML'
has_html_file.boolean = True
has_html_file.short_description = 'HTML'
has_html_file.boolean = True
+ class AlreadyExists(Exception):
+ pass
+
@staticmethod
@staticmethod
- def from_xml_file(xml_file):
+ def from_xml_file(xml_file
, overwrite=False
):
from tempfile import NamedTemporaryFile
from slughifi import slughifi
from markupstring import MarkupString
from tempfile import NamedTemporaryFile
from slughifi import slughifi
from markupstring import MarkupString
@@
-146,7
+151,12
@@
class Book(models.Model):
# Read book metadata
book_info = dcparser.parse(xml_file)
book_base, book_slug = book_info.url.rsplit('/', 1)
# Read book metadata
book_info = dcparser.parse(xml_file)
book_base, book_slug = book_info.url.rsplit('/', 1)
- book = Book(title=book_info.title, slug=book_slug)
+ 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)
+
+ book.title = book_info.title
+ book._short_html = ''
book.save()
book_tags = []
book.save()
book_tags = []
@@
-210,7
+220,8
@@
class Book(models.Model):
book_themes = set(book_themes)
book.tags = list(book.tags) + list(book_themes)
book_themes = set(book_themes)
book.tags = list(book.tags) + list(book_themes)
- return book.save()
+ book.save()
+ return book
@permalink
def get_absolute_url(self):
@permalink
def get_absolute_url(self):