From 9b62dac4bcf62f3a1f76ec5a7ed5a90db16ea1c8 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 12 Jul 2008 17:15:08 -0400 Subject: web commit by intrigeri: changed my mind, sorry --- ...ITLE_to_include_part_of_the_path_in_addition_to_the_basename.mdwn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/todo/Allow_TITLE_to_include_part_of_the_path_in_addition_to_the_basename.mdwn b/doc/todo/Allow_TITLE_to_include_part_of_the_path_in_addition_to_the_basename.mdwn index b7b8296ba..27d238ecd 100644 --- a/doc/todo/Allow_TITLE_to_include_part_of_the_path_in_addition_to_the_basename.mdwn +++ b/doc/todo/Allow_TITLE_to_include_part_of_the_path_in_addition_to_the_basename.mdwn @@ -72,3 +72,8 @@ a dedicated plugin, called `genealogictitle` or whatever, and : -- intrigeri > Plugin sounds reasonable. --[[Joey]] + +>> Well, it seems I once more designed a solution before clearly +>> defining my problem... What I really need is more generic, can be +>> done as a plugin, and deserves its own todo item (yet to come), so +>> I'm tagging this one wontfix^W [[done]]. I'm sorry. -- intrigeri -- cgit v1.2.3 From 4f51703fea8b4d8872be207cf6e3d00e3c64253d Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 12 Jul 2008 17:25:43 -0400 Subject: web commit by intrigeri: bug submission --- doc/bugs/package_build_fails_in_non-English_environment.mdwn | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 doc/bugs/package_build_fails_in_non-English_environment.mdwn diff --git a/doc/bugs/package_build_fails_in_non-English_environment.mdwn b/doc/bugs/package_build_fails_in_non-English_environment.mdwn new file mode 100644 index 000000000..1e5c72fd8 --- /dev/null +++ b/doc/bugs/package_build_fails_in_non-English_environment.mdwn @@ -0,0 +1,3 @@ +basewiki_brokenlinks.t fails when running dpkg-buildpackage in non-English environment : it greps for an (non-)error message that is i18n'd. + +The `LANG=` on line 9 does not seem to do what it's supposed to, go figure. -- cgit v1.2.3 From 299fd7fa2e6e4b0bd30d1e1bfcca47854f7d5921 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 12 Jul 2008 17:32:13 -0400 Subject: web commit by intrigeri: bug submission --- doc/bugs/Undefined_subroutine_IkiWiki::refresh.mdwn | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 doc/bugs/Undefined_subroutine_IkiWiki::refresh.mdwn diff --git a/doc/bugs/Undefined_subroutine_IkiWiki::refresh.mdwn b/doc/bugs/Undefined_subroutine_IkiWiki::refresh.mdwn new file mode 100644 index 000000000..932d2de29 --- /dev/null +++ b/doc/bugs/Undefined_subroutine_IkiWiki::refresh.mdwn @@ -0,0 +1,4 @@ +After building a fresh deb from current Git master (9b62dac4bcf62f3a1f76ec5a7ed5a90db16ea1c8) : + + $ ikiwiki --setup ~/ikiwiki.setup --rebuild + Undefined subroutine &IkiWiki::refresh called at /usr/share/perl5/IkiWiki/Setup.pm line 113. -- cgit v1.2.3 From ce4c5142b05cb31876bf000ea728db9d56fa39ed Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 12 Jul 2008 17:40:25 -0400 Subject: web commit by intrigeri: update, found a possible (random) fix --- doc/bugs/package_build_fails_in_non-English_environment.mdwn | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/bugs/package_build_fails_in_non-English_environment.mdwn b/doc/bugs/package_build_fails_in_non-English_environment.mdwn index 1e5c72fd8..565672a67 100644 --- a/doc/bugs/package_build_fails_in_non-English_environment.mdwn +++ b/doc/bugs/package_build_fails_in_non-English_environment.mdwn @@ -1,3 +1,9 @@ -basewiki_brokenlinks.t fails when running dpkg-buildpackage in non-English environment : it greps for an (non-)error message that is i18n'd. +basewiki_brokenlinks.t fails when running dpkg-buildpackage in non-English environment : it greps for an (non-)error message that is i18n'd. This of course does not happen when building in a proper chroot environment... which happens to fail as well, for other reasons, but this will be for another bug. The `LANG=` on line 9 does not seem to do what it's supposed to, go figure. + +I've never had to understand the Unix locales, so I randomly tried to replace `LANG=` in basewiki_brokenlinks.t with : + +- `LANG=C` : fails +- `LANGUAGE=` : fails +- `LANGUAGE=C` : works! -- cgit v1.2.3