Arachnid / bloggart

A blog application for App Engine
http://bloggart-demo.appspot.com/
287 stars 78 forks source link

Index pages and tags renaming #10

Closed sylvainvivien closed 15 years ago

sylvainvivien commented 15 years ago

If a tag is renamed, index pages are not regenerated

Add content.tags to the Etag

class ListingContentGenerator(ContentGenerator): @classmethod def get_etag(cls, post): return hashlib.sha1((post.title + post.summary + str(post.tags)).encode('utf-8')).hexdigest()

Arachnid commented 15 years ago

Duplicate of issue 7.