Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/net.py b/net.py
index 98589f1..e3a13cf 100644
--- a/net.py
+++ b/net.py
@@ -82,7 +82,9 @@ def image_handler(root, uid, document):
image_title = path.rsplit("/", 1)[-1]
# attempt to fix incomplete paths
if (not path.startswith("http://")) and document.source != None and document.source.has_key("href"):
- if path.startswith("/"):
+ if path.startswith("//upload"):
+ path = 'http:' + path
+ elif path.startswith("/"):
path = document.source['href'].rsplit("/", 1)[0] + path
else:
path = document.source['href'].rsplit("/", 1)[0] + "/" + path