• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


コミットメタ情報

リビジョン355f7154d8430758e9aef19cbdc57678c74b493f (tree)
日時2010-06-12 05:10:40
作者Rick Copeland <rcopeland@geek...>
コミッターRick Copeland

ログメッセージ

Don't encode unicode before returning it to genshi; this confuses the $%# out of genshi.

変更サマリ

差分

--- a/pyforge/pyforge/lib/markdown_extensions.py
+++ b/pyforge/pyforge/lib/markdown_extensions.py
@@ -55,7 +55,7 @@ class RelativeLinkRewriter(markdown.postprocessors.Postprocessor):
5555 rewrite(link, 'href')
5656 for link in soup.findAll('img'):
5757 rewrite(link, 'src')
58- return unicode(soup).encode('utf-8')
58+ return unicode(soup)
5959
6060 class LineOrientedTreeProcessor(markdown.treeprocessors.Treeprocessor):
6161 '''Once MD is satisfied with the etree, this runs to replace \n with <br/>