# HG changeset patch # User Ludovic Chabant # Date 1507403473 25200 # Node ID 84d8fadf9e67c86b497e6bb9c9368c06733b1a12 # Parent 4f136b746081a692bb1530d56de25e555d0467a0 page: Default to an empty title instead of 'Untitled Page'. This helps for microblogging because tweet-like posts often have no title. diff -r 4f136b746081 -r 84d8fadf9e67 piecrust/page.py --- a/piecrust/page.py Thu Oct 05 21:34:21 2017 -0700 +++ b/piecrust/page.py Sat Oct 07 12:11:13 2017 -0700 @@ -20,7 +20,7 @@ super(PageConfiguration, self).__init__(values, validate) def _validateAll(self, values): - values.setdefault('title', 'Untitled Page') + values.setdefault('title', '') values.setdefault('content_type', 'html') ppp = values.get('posts_per_page') if ppp is not None: