from newtagging.models import TagBase
from newtagging import managers
-from librarian import html
+from librarian import html, dcparser
TAG_CATEGORIES = (
@permalink
def get_absolute_url(self):
- return ('catalogue.views.tagged_book_list', [self.slug])
+ return ('catalogue.views.tagged_object_list', [self.slug])
class Meta:
ordering = ('sort_key',)
odt_file = models.FileField(_('ODT file'), upload_to='books/odt', blank=True)
html_file = models.FileField(_('HTML file'), upload_to='books/html', blank=True)
+ parent = models.ForeignKey('self', blank=True, null=True)
+
objects = managers.ModelTaggedItemManager(Tag)
tags = managers.TagDescriptor(Tag)
def from_xml_file(xml_file):
from tempfile import NamedTemporaryFile
from slughifi import slughifi
- import dcparser
from markupstring import MarkupString
- import re
# Read book metadata
book_info = dcparser.parse(xml_file)
for fragment in closed_fragments.values():
text = fragment.to_string()
short_text = ''
- if (len(re.sub(r'</?.*?>', '', text)) > 240):
+ if (len(MarkupString(text)) > 240):
short_text = MarkupString(text)[:160]
new_fragment = Fragment(text=text, short_text=short_text, anchor=fragment.id, book=book)