Oznaczenie linków przekazywanych do book_short.html i fragment_short.html jako safe_s...
authorMarek Stępniowski <marek@stepniowski.com>
Mon, 22 Jun 2009 19:05:27 +0000 (21:05 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Mon, 22 Jun 2009 19:05:27 +0000 (21:05 +0200)
apps/catalogue/models.py
wolnelektury/templates/catalogue/book_short.html
wolnelektury/templates/catalogue/fragment_short.html

index 4dde4e0..58025fa 100644 (file)
@@ -119,7 +119,7 @@ class Book(models.Model):
             return mark_safe(self._short_html)
         else:
             tags = self.tags.filter(~Q(category__in=('set', 'theme', 'book')))
-            tags = [u'<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name) for tag in tags]
+            tags = [mark_safe(u'<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name)) for tag in tags]
 
             formats = []
             if self.html_file:
@@ -135,6 +135,8 @@ class Book(models.Model):
             if self.ogg_file:
                 formats.append(u'<a href="%s">OGG</a>' % self.ogg_file.url)
             
+            formats = [mark_safe(format) for format in formats]
+            
             self._short_html = unicode(render_to_string('catalogue/book_short.html',
                 {'book': self, 'tags': tags, 'formats': formats}))
             self.save()
@@ -312,7 +314,7 @@ class Fragment(models.Model):
         if len(self._short_html):
             return mark_safe(self._short_html)
         else:
-            book_authors = [u'<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name
+            book_authors = [mark_safe(u'<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name)
                 for tag in self.book.tags if tag.category == 'author']
             
             self._short_html = unicode(render_to_string('catalogue/fragment_short.html',
index 41d3212..3012069 100644 (file)
@@ -10,8 +10,8 @@
     <div class="book-description">
         <h2><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h2>
         {% if formats %}
-            <p style="margin: 0">Na skróty: {{ formats|join:", "|safe }}</p>
+            <p style="margin: 0">Na skróty: {{ formats|join:", " }}</p>
         {% endif %}
-        <p style="margin: 0">Utwór w kategoriach: {{ tags|join:", "|safe }}</p>
+        <p style="margin: 0">Utwór w kategoriach: {{ tags|join:", " }}</p>
     </div>
 </div>
index 1afdebb..aaab2bf 100644 (file)
@@ -15,7 +15,7 @@
         {% endif %}
     </div>
     <div class="fragment-metadata">
-        <p><a href="{{ book.get_absolute_url }}">{{ book.title }}</a>, {{ book_authors|join:","|safe }}
+        <p><a href="{{ book.get_absolute_url }}">{{ book.title }}</a>, {{ book_authors|join:"," }}
            <a href="{{ fragment.get_absolute_url }}">(Zobacz w utworze)</a></p>
     </div>
     <div class="clearboth"></div>