Made short text fragment text shorter.
authorMarek Stępniowski <marek@stepniowski.com>
Thu, 4 Sep 2008 20:32:20 +0000 (22:32 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Thu, 4 Sep 2008 20:32:20 +0000 (22:32 +0200)
catalogue/models.py

index e9c8928..c82cf43 100644 (file)
@@ -163,8 +163,8 @@ class Book(models.Model):
         for fragment in closed_fragments.values():
             text = fragment.to_string()
             short_text = ''
-            if (len(re.sub(r'</?.*?>', '', text)) > 400):
-                short_text = MarkupString(text)[:240]
+            if (len(re.sub(r'</?.*?>', '', text)) > 240):
+                short_text = MarkupString(text)[:160]
             new_fragment = Fragment(text=text, short_text=short_text, anchor=fragment.id, book=book)
                 
             theme_names = [s.strip() for s in fragment.themes.split(',')]