X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=make-news.py;h=ec27986262477620639d360f24b667e0aa85d508;hb=be855e58c1e9d0a9a8a908558209c6c2ce9fe43c;hp=29ebe9d65fef368bbdf021f20ea5670955f2b5be;hpb=17ba3d2cde1d5f71d7d730536b5d79d8bfcb1690;p=phdru.name%2Fphdru.name.git diff --git a/make-news.py b/make-news.py index 29ebe9d..ec27986 100755 --- a/make-news.py +++ b/make-news.py @@ -2,7 +2,7 @@ # -*- coding: koi8-r -*- __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2006-2012 PhiloSoft Design" +__copyright__ = "Copyright (C) 2006-2013 PhiloSoft Design" import sys, os from news import get_news, write_if_changed @@ -73,6 +73,7 @@ if lang == "ru": namespace["baseURL"] = baseURL = "http://phdru.name/Russian/" for item in news_items: item.baseURL = baseURL + item.title = item.title.decode('koi8-r').encode('utf-8') for item in news_items: href_parts = item.rel_link.split('/') @@ -85,7 +86,7 @@ for item in news_items: category = href_parts[0] if category: item.categoryList = [category] -atom_tmpl = str(atom_10(searchList=[namespace])) +atom_tmpl = unicode(atom_10(searchList=[namespace])).encode('koi8-r') write_if_changed(os.path.join(root, "atom_10.xml"), atom_tmpl) -rss_tmpl = str(rss_20(searchList=[namespace])) +rss_tmpl = unicode(rss_20(searchList=[namespace])).encode('koi8-r') write_if_changed(os.path.join(root, "rss_20.xml"), rss_tmpl)