+
+
+def info_args(title, language=None):
+ """ generate some keywords for comfortable BookInfoCreation """
+ slug = unicode(slughifi(title))
+ if language is None:
+ language = u'pol'
+ return {
+ 'title': unicode(title),
+ 'url': WLURI.from_slug(slug),
+ 'about': u"http://wolnelektury.pl/example/URI/%s" % slug,
+ 'language': language,
+ }