aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-04-03 16:37:05 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-04-03 16:37:05 -0400
commit04e74678070932cdcc42e8e2f9f9c70ce4dcc762 (patch)
treea351348a2d28dfc502ff9dbd6e580834cffc253e /IkiWiki
parentc207086282b2f058f647b7fa810f3da54fe5fe4b (diff)
downloadikiwiki-04e74678070932cdcc42e8e2f9f9c70ce4dcc762.tar
ikiwiki-04e74678070932cdcc42e8e2f9f9c70ce4dcc762.tar.gz
need to handle urls to images the same
Also, simplified finding the url to the top of the site.
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/inline.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
index 8f7cd826e..1b12144e8 100644
--- a/IkiWiki/Plugin/inline.pm
+++ b/IkiWiki/Plugin/inline.pm
@@ -389,18 +389,18 @@ sub absolute_urls ($$) { #{{{
my $url=$baseurl;
$url=~s/[^\/]+$//;
- # what is the non path part of the url? (need it for relative url's starting with /
+ # what is the non path part of the url?
my $top_uri = URI->new($url);
- $top_uri->path_query("/"); # reset the path
+ $top_uri->path_query(""); # reset the path
my $urltop = $top_uri->as_string;
- $urltop=~s/\/*$//;
$content=~s/(<a(?:\s+(?:class|id)\s*="?\w+"?)?)\s+href=\s*"(#[^"]+)"/$1 href="$baseurl$2"/mig;
- # Relative URL
+ # relative to another wiki page
$content=~s/(<a(?:\s+(?:class|id)\s*="?\w+"?)?)\s+href=\s*"(?!\w+:)([^\/][^"]*)"/$1 href="$url$2"/mig;
+ $content=~s/(<img(?:\s+(?:class|id|width|height)\s*="?\w+"?)*)\s+src=\s*"(?!\w+:)([^\/][^"]*)"/$1 src="$url$2"/mig;
# relative to the top of the site
$content=~s/(<a(?:\s+(?:class|id)\s*="?\w+"?)?)\s+href=\s*"(?!\w+:)(\/[^"]*)"/$1 href="$urltop$2"/mig;
- $content=~s/(<img(?:\s+(?:class|id|width|height)\s*="?\w+"?)*)\s+src=\s*"(?!\w+:)([^"]+)"/$1 src="$url$2"/mig;
+ $content=~s/(<img(?:\s+(?:class|id|width|height)\s*="?\w+"?)*)\s+src=\s*"(?!\w+:)(\/[^"]*)"/$1 src="$urltop$2"/mig;
return $content;
} #}}}