-def notes_from_book(sender, **kwargs):
- Note.objects.filter(book=sender).delete()
- if sender.has_html_file:
- for anchor, text_str, html_str in html.extract_annotations(sender.html_file.path):
- Note.objects.create(book=sender, anchor=anchor,
- html=html_str, sort_key=sortify(text_str)[:128])
+@task(ignore_result=True)
+def build_notes(book):
+ Note.objects.filter(book=book).delete()
+ if book.html_file:
+ from librarian import html
+ for anchor, text_str, html_str in html.extract_annotations(book.html_file.path):
+ Note.objects.create(book=book, anchor=anchor,
+ html=html_str,
+ sort_key=sortify(text_str).strip()[:128])