]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/rst_fails_on_file_containing_only_a_number.mdwn
also confused
[ikiwiki.git] / doc / bugs / rst_fails_on_file_containing_only_a_number.mdwn
index 49c7eafed2c6438af496eb58fa89b5cf02c4f693..dab3b7e5bf58059947e433fcb5e5594ed5a3e3e1 100644 (file)
@@ -5,3 +5,22 @@ throwing code..):
        exceptions.TypeError:coercing to Unicode: need string or buffer, int found
 
 --[[Joey]]
+
+> Does this patch against proxy.py help?
+
+    index 5136b3c..545e226 100755
+    --- a/plugins/proxy.py
+    +++ b/plugins/proxy.py
+    @@ -88,7 +101,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object):
+
+        @staticmethod
+        def _write(out_fd, data):
+    -        out_fd.write(data)
+    +        out_fd.write(str(data))
+            out_fd.flush()
+
+        @staticmethod
+
+> No, still the same failure. I think it's failing parsing the input data,
+> (which perl probably transmitted as an int due to perl internals)
+> not writing out its response. --[[Joey]]