aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-05-10 14:02:20 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-05-10 14:02:20 +0000
commit3a1c0c04602f4c017af20f7e13df1e231271a0d0 (patch)
treea8121fbedc764bbd9aa7cadce04e1b04372ff4c0 /doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn
parentcb92588ef25e24a8afbd1794b8b6090cd1492585 (diff)
downloadikiwiki-3a1c0c04602f4c017af20f7e13df1e231271a0d0.tar
ikiwiki-3a1c0c04602f4c017af20f7e13df1e231271a0d0.tar.gz
web commit by http://ptecza.myopenid.com/: * Next bug report
Diffstat (limited to 'doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn')
-rw-r--r--doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn52
1 files changed, 52 insertions, 0 deletions
diff --git a/doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn b/doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn
index 14fe5a2f7..bed5691f3 100644
--- a/doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn
+++ b/doc/bugs/Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn
@@ -15,4 +15,56 @@ Temporarily I've disabled conditional plugin to avoid that bug.
PS. I still use ikiwiki 1.50 backported for Debian 'sarge'.
+-- Pawel
+
+---
+
+Hello again :)
+
+I've just builded successfully ikiwiki 2.00 package for Debian 'sarge'.
+Unfortunately, now I still can't to rebuild my ikiwiki pages:
+
+ ikiwiki --setup ikiwiki.setup
+ [...]
+ renderowanie ikiwiki/backport.mdwn
+ renderowanie ikiwiki/instalacja.mdwn
+ renderowanie ikiwiki/problemy.mdwn
+ Insecure dependency in eval while running with -T switch at /usr/share/perl5/IkiWiki.pm line 1005.
+ BEGIN failed--compilation aborted at (eval 5) line 111.
+
+I didn't apply your following old patch against `Ikiwiki.pm` file:
+
+ --- IkiWiki.pm-orig 2007-05-10 11:16:47.000000000 +0200
+ +++ IkiWiki.pm 2007-05-10 11:16:07.000000000 +0200
+ @@ -993,7 +993,18 @@
+ my $spec=shift;
+ my $from=shift;
+
+ - return eval pagespec_translate($spec);
+ + my $pagespec = pagespec_translate($spec);
+ +
+ + my $newpagespec;
+ +
+ + local($1);
+ + if ($pagespec =~ /(.*)/) {
+ + $newpagespec = $1;
+ + } else {
+ + die "oh";
+ + }
+ +
+ + return eval $newpagespec;
+ } #}}}
+
+ package IkiWiki::PageSpec;
+
+because `patch` command fails:
+
+ patch -p0 < ../IkiWiki.pm.patch
+ patching file IkiWiki.pm
+ Hunk #1 FAILED at 993.
+ 1 out of 1 hunk FAILED -- saving rejects to file IkiWiki.pm.rej
+
+Could you please fix that patch? I guess how to do it, but I don't want
+to break the code I distribute in my backport ;)
+
-- Pawel \ No newline at end of file