aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-30 21:51:37 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-30 21:51:37 +0000
commit73e6f81ef3d5dfcfeea5272501a58e1e931c5b15 (patch)
tree873babef635bbe1f33c26336475cb5c0187e072c /IkiWiki
parentff3ae9fbb54d0379ffb239cc745c11ebb3e1514f (diff)
downloadikiwiki-73e6f81ef3d5dfcfeea5272501a58e1e931c5b15.tar
ikiwiki-73e6f81ef3d5dfcfeea5272501a58e1e931c5b15.tar.gz
escape slashes in page names
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/aggregate.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm
index ba33a80aa..9c28651f0 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -252,7 +252,9 @@ sub add_page (@) { #{{{
$feed->{newposts}++;
# assign it an unused page
- my $page=$feed->{dir}."/".IkiWiki::titlepage($params{title});
+ my $page=IkiWiki::titlepage($params{title});
+ $page=~s!([/])!"__".ord($1)."__"!eg; # escape slashes in title
+ $page=$feed->{dir}."/".$page;
$page=lc($page);
($page)=$page=~/$IkiWiki::config{wiki_file_regexp}/;
if (! defined $page || ! length $page) {