ikiwiki/doc/bugs
Joey Hess 965f7310fe git: Fix handling of utf-8 filenames in recentchanges.
Seems that the problem is that once the \nnn coming from git is converted
to a single character, decode_utf8 decides that this is a standalone
character, and not part of a multibyte utf-8 sequence, and so does nothing.
I tried playing with the utf-8 flag, but that didn't work. Instead, use
decode("utf8"), which doesn't have the same qualms, and successfully
decodes the octets into a utf-8 character.

Rant:

Think for a minute about fact that any and every program that parses git-log,
or git-show, etc output to figure out what files were in a commit needs to
contain this snippet of code, to convert from git-log's wacky output to a
regular character set:

if ($file =~ m/^"(.*)"$/) {
	($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
}

(And it's only that "simple" if you don't care about filenames with
embedded \n or \t or other control characters.)

Does that strike anyone else as putting the parsing and conversion in the
wrong place (ie, in gitweb, ikiwiki, etc, etc)? Doesn't anyone who actually
uses git with utf-8 filenames get a bit pissed off at seeing \xxx\xxx
instead of the utf-8 in git-commit and other output?
2008-09-25 18:26:42 -04:00
..
Convert___34__somehost.com massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
Spurious___60__p__62___elements_added_to_tags_in_inliine_pages web commit by sward: Real expected output 2007-10-23 12:49:53 +00:00
aggregate_plugin_errors * Fix aggregator to not warn when a feed contains no body content at all. 2007-04-23 18:36:44 +00:00
colon:problem typo 2008-07-21 17:15:12 -04:00
debbug_shortcut_should_expand_differently web commit by AlexandreDupas 2008-01-09 08:56:06 -05:00
links_from_sidebars web commit by Justin: explain workaround using server rewriting. 2008-02-20 12:30:33 -05:00
map_does_not_link_directory_for_which_a_file_also_exists fix up some links 2007-12-08 20:04:18 -05:00
tbasewiki__95__brokenlinks.t_broken web commit by https://kheinz.regged.de/ 2007-06-14 20:42:11 +00:00
2.45_Compilation_error.mdwn response 2008-06-13 13:04:59 -04:00
4_spaces_after_bullet.mdwn markdown bug filed 2007-09-27 17:47:42 +00:00
404_when_cancel_create_page.mdwn remove some links to nonexistent pages that we don't want to add 2007-11-17 16:37:25 -05:00
Add_a_footer_div_on_all_pages_to_improve_theming.mdwn * Make all templates have a footer div to ease themeing. Required template 2007-05-11 20:09:58 +00:00
Allow_overriding_of_symlink_restriction.mdwn fix a few direcives 2008-08-26 17:56:23 -04:00
Another_UTF-8_problem.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
Broken_URL_to_your_blog_script.mdwn fix link 2008-07-14 15:20:37 -04:00
Broken_access_to_Ikiwiki_gitweb.mdwn close 2008-07-26 21:16:09 -04:00
Building_a_sidebar_does_not_regenerate_the_subpages.mdwn known bug 2007-06-01 21:37:30 +00:00
CGI_edit_and_slash_in_page_title.mdwn editpage escaping fixes 2008-07-06 15:52:04 -04:00
CGI_problem_with_some_webservers.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
CGI_showed_HTML_when_perl_error.mdwn
Can__39__t_build_2.49__63__.mdwn close as dup 2008-06-15 15:35:09 -04:00
Can__39__t_create_root_page.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
Can__39__t_deplete_page__63__.mdwn * Allow editing a page and deleting all content, while still disallowing 2007-12-12 19:11:29 -05:00
Can__39__t_rebuild_wiki_pages_with_ikiwiki_2.49.mdwn web commit by http://ptecza.myopenid.com/: * Thanks! 2008-06-16 03:36:03 -04:00
Cannot_inline_pages_with_apostrophes_in_title.mdwn cannot reproduce 2008-08-23 15:45:44 -04:00
Changing_language.mdwn
Command-line_arguments_should_override_settings_in_the_setup_file.mdwn remove ikiwiki.setup 2008-07-26 22:55:39 -04:00
Disappearing_Pages.mdwn unreproducible 2007-04-26 22:49:52 +00:00
Discussion_link_not_translated_after_page_update.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
Discussion_link_not_translated_in_post.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
Discussion_of_main_page_generates_invalid_link.mdwn already fixed 2008-06-04 01:58:52 -04:00
Does_IkiWiki::Setup::load__40____41___really_return_a_hash__63__.mdwn fix IkiWiki::Setup::load docs 2008-09-12 21:20:34 -04:00
Error:_OpenID_failure:_time_bad_sig:.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
Excessive_list_nesting_in_map_output_for_subpages.mdwn think this is fixed too.. 2007-09-21 17:57:14 +00:00
Fancy_characters_get_munged_on_page_save.mdwn done 2007-04-27 21:52:44 +00:00
Feeds_get_wrong_timezone..mdwn * Correct generation of RFC 3339 format times for atom/rss feeds. Always use 2007-09-02 19:29:40 +00:00
Feeds_link_to_index.html_instead_of_directory.mdwn turn tips page into a feed 2007-04-14 20:18:11 +00:00
Filenames_with_colons_cause_problems_for_Windows_users.mdwn For fine control over what characters are allowed, unescaped in source filenames, the wiki_file_chars setting is added. For example, set to "-[:alnum:]+/._" to disable colons from being used in source files (which can cause trouble om Windows). 2008-09-04 14:13:10 -04:00
Graphviz_plug-in_directive_changed_in_2.60.mdwn fix a few direcives 2008-08-26 17:56:23 -04:00
HTML_inlined_into_Atom_not_necessarily_well-formed.mdwn merged 2008-07-31 18:52:30 -04:00
HTML_is_not_update_nor_created_when_editing_markdown_via_CGI.mdwn
Http_error_500_when_using_mercurial_backend.mdwn web commit by hb: test 2007-04-01 16:31:43 +00:00
Hyperestraier_search_plug-in_defective.mdwn fix links 2008-09-14 17:03:34 -04:00
IkiWiki::Setup::load__40____41___broken_outside_ikiwiki__63__.mdwn don't fail if %config is not set 2008-09-01 11:26:03 -04:00
IkiWiki_does_not_use_file__39__s_mtime_for_Last_Edited.mdwn web commit by http://sabr.myopenid.com/ 2008-04-10 20:18:20 -04:00
Index_files_have_wrong_permissions.mdwn 2008-08-18 20:53:59 -04:00
Insecure_dependency_in_eval_while_running_with_-T_switch.mdwn triage 2007-07-25 02:27:23 +00:00
Insecure_dependency_in_mkdir.mdwn web commit by http://ptecza.myopenid.com/: * Response 2007-12-18 03:29:24 -05:00
Insecure_dependency_in_utime.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
Links_with_symbols_can__39__t_be_edited.mdwn response 2008-07-08 19:28:20 -04:00
Map_sorts_subtags_under_a_different_tag.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
Mercurial_example_diffurl_should_read_r2__44___not_changeset.mdwn fix issue bma noticed (why does it use "r2"?) 2007-08-30 23:45:56 +00:00
Missing_build-dep_on_perlmagick__63__.mdwn add perlmagick to build deps 2008-07-12 20:20:26 -04:00
Missing_constant_domain_at_IkiWiki.pm_line_842.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
Monotone_rcs_support.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
No___34__sid__34___in_forms_resulting_in_Error:_Your_login_session_has_expired..mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
No_categories_in_RSS__47__Atom_feeds.mdwn
No_link_for_blog_items_when_filename_contains_a_colon.mdwn response 2008-07-25 12:51:50 -04:00
No_numbacklinks_setting_for___34__no_limit__34__.mdwn magic 0 2007-04-07 16:55:16 +00:00
No_progress_in_progress_bar.mdwn * Response 2008-09-23 08:34:43 -04:00
Obsolete_templates__47__estseek.conf.mdwn rm 2008-07-29 16:55:44 -04:00
OpenID_delegation_fails_on_my_server.mdwn 2008-09-16 08:19:41 -04:00
PREFIX_not_honoured_for_underlaydir.mdwn
Please_avoid_using___39__cp_-a__39___in_Makefile.PL.mdwn fix a few direcives 2008-08-26 17:56:23 -04:00
Please_don__39__t_refer_to_offsite_openid_image.mdwn
Preview_removes_page_location_drop-down_options.mdwn * Preview limits the page dropdown to what's selected previously 2008-02-14 15:42:14 -05:00
Problem_with_displaying_smileys_on_inline_page.mdwn web commit by http://ptecza.myopenid.com/: * Plural 2008-06-29 11:15:38 -04:00
Problem_with_editing_page_after_first_SVN_commit.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
Problem_with_toc.pm_plug-in.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
Problem_with_umlauts_and_friends.mdwn close 2007-12-09 12:37:05 -05:00
Problems_using_cygwin.mdwn
Problems_with_graphviz.pm_plug-in.mdwn * Fix problems with previewing in the graphviz plugin. Thanks, 2007-07-29 22:34:42 +00:00
RecentChanges_broken_with_empty_svnpath.mdwn * Support setting svnpath to "" for wikis that are rooted at the top of 2007-04-16 19:07:52 +00:00
RecentChanges_contains_invalid_XHTML.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
RecentChanges_links_to_deleted_pages.mdwn response 2008-08-12 18:38:49 -04:00
Search_Help_doesn__39__t_exist.mdwn Give the full path to the hyperestraier helpfile in estseek.conf. 2008-04-10 17:50:43 -04:00
Search_results_should_point_to_dir__44___not_index.html__44___when_use__95__dirs_is_enabled.mdwn first pass at doing xapian indexing 2008-06-03 21:14:56 -04:00
Smileys_in_the_block_code.mdwn smiley: Detect smileys inside pre and tags, and do not expand. 2008-03-21 02:43:20 -04:00
Spaces_in_link_text_for_ikiwiki_links.mdwn rename preprocessordirective to directive 2008-08-25 14:19:39 -04:00
Spurious___60__p__62___elements_added_to_tags_in_inliine_pages.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
Symlinked_srcdir_requires_trailing_slash.mdwn releasing version 2.14 2007-11-26 15:30:44 -05:00
Tags_list_in_page_footer_uses_basename.mdwn 2008-08-15 19:50:39 -04:00
Titles_are_lower-cased_when_creating_a_page.mdwn web commit by http://sabr.myopenid.com/ 2008-04-13 12:08:44 -04:00
Toc_map_and_template_plugins_do_not_play_well_together.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
Trailing_slash_breaks_links.mdwn fix up some links 2007-12-08 20:04:18 -05:00
UTF-8_BOM_showing_up_inside_a_page__63__.mdwn closing 2007-07-26 20:08:26 +00:00
Undefined_subroutine_IkiWiki::escapeHTML.mdwn web commit by http://sabr.myopenid.com/ 2008-04-12 22:46:00 -04:00
Undefined_subroutine_IkiWiki::refresh.mdwn Add missing requirement of IkiWiki::render before starting to render things 2008-07-12 22:52:46 +01:00
Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn * Avoid using GNU extensions to cp during "make install", which did 2007-04-29 21:53:26 +00:00
Warns_about_use_of_uninitialized_value_if_prefix__95__directives_is_on_and_a_directive_does_not_contain_a_space.mdwn done 2008-08-04 14:56:47 -04:00
Weird_interaction_between_toc_plugin_and_page_sections.mdwn response 2008-03-17 14:07:38 -04:00
Wrong_permissions_on_4_smileys.mdwn fix links 2008-09-14 17:03:34 -04:00
XHTML_needs_xmlns_attribute_on_html_element.mdwn Add xmlns attribute on html element in templates; pages can now validate. 2007-11-08 12:59:02 -08:00
__34__skipping_bad_filename__34___error_when_src_path_contains_spaces.mdwn web commit by http://morgant.myopenid.com/ 2007-12-22 10:25:15 -05:00
__36__ENV__123__PATH__125___should_include_PREFIXbin.mdwn web commit by JeremyReed: why if? 2008-04-28 17:54:32 -04:00
__38__uuml__59___in_markup_makes_ikiwiki_not_un-escape_HTML_at_all.mdwn web commit by http://liw.fi/: commented on ü and ikiwiki 2.50 2008-07-01 14:29:35 -04:00
__60__br__62___tags_are_removed_from_markdown_inline_HTML.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
__63__Discussion_when_not_CGI_mode.mdwn
__91__PATCH__93___Use_correct_perl_when_running_make.html use PERL 2008-06-02 12:14:09 -04:00
__96____96__clear:_both__39____39___for___96__.page__42____39____63__.mdwn Mark bug "clear: both for .page*?" as [[done]] 2008-07-13 15:33:44 +01:00
aggregate_plugin_errors.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
aggregate_plugin_should_honour_a_post__39__s_mctime.mdwn fix links 2008-05-30 18:30:28 -04:00
aggregateinline_planets_wrongly_link_to_posts.mdwn closures 2008-07-14 21:30:59 -04:00
attachment:_escaping_underscores_in_filename__63__.mdwn * Thanks! It works now. 2008-07-24 06:09:30 -04:00
attachment:_failed_to_get_filehandle.mdwn web commit by http://ptecza.myopenid.com/: * Confirmation and thanks 2008-07-09 04:27:10 -04:00
attachment_plugin_enabled_by_default__63__.mdwn close 2008-07-09 02:02:03 -04:00
barfs_on_recentchange_entry_for_a_change_removing_an_invalid_pagespec.mdwn cannot reproduce 2008-09-14 13:43:27 -04:00
bestlink_change_update_issue.mdwn
blog_posts_not_added_to_mercurial_repo.mdwn web commit by buo: locales and mercurial 2008-03-25 16:11:34 -04:00
broken_parentlinks.mdwn * Finally apply the index.html patch, with thanks to everyone who worked 2007-04-01 19:59:42 +00:00
brokenlinks_false_positives.mdwn MAJOR basewiki reorg 2007-12-08 15:59:08 -05:00
bug_when_toggling_in_a_preview_page.mdwn * Fix some issues with toggles in preview mode. 2007-10-29 17:16:10 -04:00
build_in_opensolaris.mdwn followup 2007-07-11 01:01:13 +00:00
bzr-update-syntax-error.mdwn Fix broken rcs_update for bzr. (Scott Bronson) 2008-04-10 17:41:43 -04:00
cgi_does_not_use_templatedir_overlay.mdwn complete analysis 2007-10-16 17:40:36 +00:00
cgi_wrapper_always_regenerated.mdwn
clearing_email_in_prefs.mdwn * Fix a bug that prevented clearing email or subscriptions. 2007-04-30 21:32:24 +00:00
colon:problem.mdwn fix fix 2008-07-08 10:05:57 -04:00
correct_published_and_updated_time_information_for_the_feeds.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
ddate_plugin_causes_websetup_to_change_timeformat__44___even_when_disabled.mdwn ddate: Stop clobbering timeformat when not enabled. 2008-09-08 19:40:23 -04:00
debbug_shortcut_should_expand_differently.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
debian_package_doesn__39__t_pull_in_packages_required_for_openid.mdwn * Fix a bug in the img plugin that caused thumbnailed files to not be 2007-04-04 00:40:57 +00:00
diff_links_to_backtrace.mdwn closing this bug 2007-10-25 00:39:22 -04:00
disable_sub-discussion_pages.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
disabling_backlinks.mdwn triage 2007-07-25 02:27:23 +00:00
discussion.mdwn
discussion_of_what__63__.mdwn web commit by http://perolofsson.myopenid.com/ 2008-02-02 06:59:00 -05:00
discussion_removal.mdwn * Fix re-rendering of pages when a linked to page goes away. This was broken 2007-07-26 19:41:04 +00:00
done.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
edits_not_showing_up_in_compiled_pages.mdwn massive patchqueue reorg 2007-07-25 03:36:53 +00:00
edittemplate_seems_not_to_be_working.mdwn * Correct bug in encoding of %pagestate keys, fixes edittemplate. 2008-03-17 13:08:16 -04:00
errors_with_ampersand_in_filename.mdwn response 2008-09-17 13:49:03 -04:00
example_Mercurial_historyurl_doesn__39__t_show_file_history.mdwn * Fix mercurial historyurl in example setup file. 2007-11-17 14:43:49 -05:00
external_plugins_cannot_access_ARGV_needed_for_getopt.mdwn * external: Add getargv and setargv methods to allow access to ikiwiki's 2008-03-15 14:19:49 -04:00
find:_invalid_predicate___96__-L__39__.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
format_bug.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
formbuilder_3.0401_broken.mdwn
git_fails_to_compile.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
git_mail_notification_race.mdwn * Removed support for sending commit notification mails. Along with it went 2008-01-29 00:36:58 -05:00
git_stderr_output_causes_problems.mdwn close 2008-07-20 18:04:41 -04:00
git_utf8.mdwn new bug I saw 2007-12-12 17:20:26 -05:00
gitweb_deficiency_w.r.t._log_messages.mdwn gitweb limitiations.. 2007-11-17 14:54:01 -05:00
gitweb_deficiency_w.r.t._newly_created_pages.mdwn gitweb limitiations.. 2007-11-17 14:54:01 -05:00
hardcoded___34__Discussion__34___link.mdwn massive patchqueue reorg 2007-07-25 03:36:53 +00:00
helponformatting_link_disappears.mdwn
html_errors.mdwn only htmlize errors when cgi is actually running 2008-07-12 23:23:25 -04:00
htmlscrubber_undoes_email_obfuscation_by_Text::Markdown.mdwn fix cpan links 2008-09-11 19:40:41 -04:00
htmltidy_has_no_possibilty_to_use_an_alternative_config_file_which_may_break_other_usages.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
http_proxy_for_openid.mdwn web commit by https://brian.may.myopenid.com/: link to semi-related bug report 2008-02-16 04:22:13 -05:00
ikiwiki-mass-rebuild_fails_to_drop_privileges_and_execute_ikiwiki.mdwn * ikiwiki-mass-rebuild: Patch from HenrikBrixAndersen to fix order 2007-10-25 23:12:23 -04:00
ikiwiki.setup:_syntax_error_at___40__eval_5__41___line_120__44___at_EOF.mdwn
ikiwiki.setup_require_blank_rcs_to_work_as_cgi_only.mdwn reorg all the pages about rcs backends. Fix all links 2007-08-21 04:25:03 +00:00
ikiwiki__39__s_ViewVC_down.mdwn
ikiwiki_is_not_truly_localizable.mdwn response 2008-07-08 11:47:03 -04:00
ikiwiki_renders___39__28__39___if_external_plugins_return_nothing.mdwn * external: Fix support of XML::RPC::fault. 2008-03-15 13:49:22 -04:00
img_plugin_causes_taint_failure.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
img_plugin_renders___60__img__62___tag_without_src_attribute_post-2.20.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
img_plugin_should_pass_through_class_attribute.mdwn * Apply a patch from Carl Worth allowing a class attribute to be passed 2007-05-28 19:07:38 +00:00
index.html__63__updated.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
index.html_is_made_visible_by_various_actions.mdwn 2008-09-22 18:29:48 -04:00
iniline_breaks_toc_plugin.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
inline_page_not_updated_on_removal.mdwn * Finally fixed the longstanding inline removal bug. 2007-03-24 15:10:58 +00:00
inline_plugin_rootpage_option_is_not_case_insensitive.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
inline_sort-by-title_issues.mdwn inline: Ignore parent dirs when sorting pages by title. 2008-08-07 15:47:59 -04:00
install_into_home_dir_fails.mdwn Ignore failure to install files into /etc, in case install is running as non-root. 2008-08-29 15:53:46 -04:00
installing_from_svn_copies_.svn_directories.mdwn * Avoid .svn directories when installing from svn checkout. 2007-04-26 22:58:01 +00:00
internal_error:_smileys.mdwn_cannot_be_found.mdwn massive naming and userlink patch from Paweł Tęcza 2007-07-07 23:48:00 +00:00
linkingrules_should_document_how_to_link_to_page_at_root_if_non-root_page_exists.mdwn MAJOR basewiki reorg 2007-12-08 15:59:08 -05:00
links_from_sidebars.mdwn responses 2008-02-24 16:57:52 -05:00
lockedit_plugin_should_alert_user_about_an_invalid_pagespec_in_preferences.mdwn web commit by http://alcopop.org/me/openid/ 2008-03-11 06:20:20 -04:00
locking_fun.mdwn calling this done.. hopefully 2007-02-21 09:07:40 +00:00
login_page_non-obvious_with_openid.mdwn web commit by http://adam.shand.net/ 2007-05-03 08:47:46 +00:00
mailto:_links_not_properly_generated_in_rssatom_feeds.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
map_does_not_link_directory_for_which_a_file_also_exists.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
map_doesn__39__t_calculate___34__common__95__prefix__34___correctly.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
map_is_inconsistent_about_bare_directories.mdwn fix a few direcives 2008-08-26 17:56:23 -04:00
markdown_bug:_email_escaping_and_plus_addresses.mdwn fix a few direcives 2008-08-26 17:56:23 -04:00
markdown_module_location.mdwn already fixed in git 2008-03-09 20:10:13 -04:00
mercurial_fail_to_add.mdwn web commit by hb 2007-04-29 16:30:45 +00:00
merging_to_basewiki_causes_odd_inconsistencies.mdwn
meta_inline.mdwn
methodResponse_in_add__95__plugins.mdwn Work around perl $_ scoping nonsense that caused breakage when loading external plugins. 2008-08-29 18:40:41 -04:00
multiple_pages_with_same_name.mdwn Add keepextension parameter to htmlize hook. (Willu) 2008-09-23 13:39:21 -04:00
multiple_rss_feeds_per_page.mdwn * Add handling of feeds for nested inlines, as well as support for a 2007-10-25 05:43:43 -04:00
nested_inlines_produce_no_output.mdwn inline: The optimisation in 2.41 broke nested inlines. Detect those and avoid overoptimising. 2008-05-31 15:10:23 -04:00
newfile-test.mdwn web commit by http://joey.kitenet.net/: more detail 2007-03-17 23:26:46 +00:00
no_commit_mails_for_new_pages.mdwn * Fix sending of commit mails when new pages are added via the web. 2007-04-26 23:29:19 +00:00
openid_incompatability_with_pyblosxom_openid_server_plugin_when_used_with_simple_registration_extension.mdwn add a pointer to a bug that was filed elsewhere 2007-08-20 18:27:04 +00:00
openid_postsignin_failure.mdwn
package_build_fails_in_non-English_environment.mdwn Hopefully fix regression tests in non-English environments 2008-07-12 23:00:57 +01:00
page_is_not_rebuilt_if_it_changes_extension.mdwn Rebuild pages that change their type. (Gabriel McManus) 2008-07-23 16:13:37 -04:00
page_preview_does_not_work_on_new_page_with_a_table.mdwn * Record new pages in %pagesources temporarily when previewing so that 2008-03-17 21:28:31 -04:00
pages_under_templates_are_invalid.mdwn response 2008-01-05 02:00:49 -05:00
pagespec_parsing_chokes_on_function__40____41__.mdwn * Support pagespec "functions" with no parameters, like included() in the 2007-08-11 23:31:57 +00:00
pagestats_plugin_broken.mdwn * Patch from hb to fix the pagestats plugin, which was broken by a past 2007-05-12 17:56:56 +00:00
pagetitle_function_does_not_respect_meta_titles.mdwn web commit by http://madduck.net/ 2008-03-17 12:22:38 -04:00
parsing_for_WikiWords_should_only_be_done_outside_html_tags.mdwn * camelcase: Tighten regexp to avoid false positives. WikiWords are only 2007-09-28 20:50:20 +00:00
password_deletion.mdwn * Fix some bugs in password handling: 2007-05-17 08:06:05 +00:00
perl:_double_free_or_corruption.mdwn perl dumping core is not an ikiwiki bug, sorry 2008-04-10 17:09:58 -04:00
pipe_in_tables_as_characters.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
poll_plugin:_can__39__t_vote_for_non-ascii_options.mdwn Fixes for behavior changes in perl 5.10's CGI 2008-05-12 20:44:22 -04:00
poll_plugin_uses_GET.mdwn
previewing_with_an_edittemplate_reverts_edit_box.mdwn Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info 2008-08-25 20:51:45 -04:00
problem_adding_tag_from_template.mdwn
prune_causing_taint_mode_failures.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
pruning_is_too_strict.mdwn
quieten_mercurial.mdwn * Applied a patch from Michał to make the mercurial backend pass --quiet to 2007-03-18 22:20:44 +00:00
raw_html_in-page_and___91____91____33__included__93____93__.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
recentchanges_escaping.mdwn bug 2008-07-11 06:24:25 -04:00
recentchanges_feed_links.mdwn Suggest how to solve this 2008-08-02 09:48:32 -04:00
recentchangesdiff_crashes_on_commits_which_remove_a_lot_of_files.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
relative_links.mdwn response 2008-04-10 19:54:38 -04:00
rss_feed_cleanup_on_delete.mdwn
rss_feeds_do_not_use_recommended_encoding_of_entities_for_some_fields.mdwn rename 2008-07-31 15:52:20 -04:00
rss_output_relative_links.mdwn this bug still exists 2007-05-23 02:44:43 +00:00
rst_fails_on_file_containing_only_a_number.mdwn remove patch tag 2008-07-09 02:05:57 -04:00
rst_plugin_hangs_on_utf-8.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
rst_plugin_traceback_with_SimpleXMLRPCDispatcher_from_pyhton_2.5.mdwn Handle SimpleXMLRPCDispatcher arg count change in Py2.5 2008-03-12 10:46:36 -04:00
rst_tweak.mdwn * Allow raw html in the rst plugin. 2007-07-29 22:39:40 +00:00
search:___34__link__34___and___34__title__34___fields_are_incorrectly_specified.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
search_creates_configuration_files_many_times_on_rebuild.mdwn search: generate configuration files once only when rebuilding (Gabriel McManus) 2008-07-07 01:55:06 -04:00
search_for_locale_data_in_the_installed_location.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
search_plugin_and_CGI_preview.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
search_plugin_uses_wrong_css_path.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
shortcut_encoding.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
shortcuts_don__39__t_escape_from_Markdown.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
sidebar_is_obscured_by_recentchanges.mdwn Mark done 2008-08-07 17:18:14 -04:00
sitemap_includes_images_directly.mdwn * meta: Drop support for "meta link", since supporting this for internal 2007-12-16 16:00:13 -05:00
space_in_a___91____91__page_link__93____93___doesn__39__t_make_link.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
special_characters_in_tag_names_need_manual_escaping.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
ssl_certificates_not_checked_with_openid.mdwn fix cpan links 2008-09-11 19:40:41 -04:00
strange_hook_id_in_skeleton.pm.mdwn fix typo 2007-07-28 20:53:51 +00:00
svn+ssh_commit_fail.mdwn
svn-commit-hanging.mdwn close 2007-03-16 21:47:31 +00:00
svn_fails_to_update.mdwn
svn_post-commit_wrapper_can__39__t_find_IkiWiki.pm_if_not_installed.mdwn
tags_base_dir_not_used_when_creating_new_tags.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
taint_and_-T.mdwn Deal with different paths to perl when removing -T flag. 2008-04-28 15:37:17 -04:00
taint_issue_with_regular_expressions.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
tbasewiki__95__brokenlinks.t_broken.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
teximg_does_not_work_Preview.mdwn * Save index after previewing page edit, since even previewing can create 2007-09-22 18:31:52 +00:00
teximg_fails_if_same_tex_is_used_on_multiple_pages.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
textile_plugin_dies_if_input_has_a_non-utf8_character.mdwn textile: The Text::Textile perl module has some regexps that fail if input is flagged as utf-8, but contains invalid characters such as 0x92. To prevent it from crashing, re-encode the content before calling it, which will ensure that it's really utf-8. 2008-06-16 15:43:37 -04:00
title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn remove example (which was lacking escaping) 2008-07-12 12:04:47 -04:00
toc_in_sidebar.mdwn remove bad link 2008-06-29 14:18:00 -04:00
toggle_fails_on_Safari.mdwn improved, possibly faster getelementsbyclass by willu 2008-07-25 01:43:37 -04:00
typo_in_ikiwiki.setup.mdwn fix typo 2007-07-27 00:49:00 +00:00
typo_in_skeleton.pm:_sessionncgi.mdwn merged 2008-09-23 12:47:36 -04:00
undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn Migrate doc/bugs via prefix_directives 2008-07-21 12:31:04 +01:00
underlaydir_file_expose.mdwn Rebuild pages that change their type. (Gabriel McManus) 2008-07-23 16:13:37 -04:00
unicode_encoded_urls_and_recentchanges.mdwn git: Fix handling of utf-8 filenames in recentchanges. 2008-09-25 18:26:42 -04:00
unrecognized___34__do__61__blog__34___CGI_parameter_when_creating_todo_item.mdwn * Fix bug when blogging by cgi, introduced in last version. 2007-08-26 17:32:15 +00:00
utf8_html_templates.mdwn
utf8_svn_log.mdwn
websetup_eats_setupconf_and_allow__95__symlinks__95__before__95__srcdir.mdwn 2008-09-11 07:13:45 -04:00
weird_signature_in_match__95__included__40____41__.mdwn fix 2007-07-28 20:54:58 +00:00
weird_syntax_in_aggregate.pm.mdwn * Various minor bug fixes for silly mistakes in the code, thanks to the 2007-07-28 21:01:56 +00:00
wiki_formatting_does_not_work_between_toc_and_an_inline.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
wiki_links_still_processed_inside_code_blocks.mdwn rename preprocessordirective to directive 2008-08-25 14:19:39 -04:00
wikilink_in_table.mdwn Migrate escaped directives (\[[) in doc/bugs to have \[[! prefix 2008-07-21 12:46:47 +01:00
word_wrap.mdwn web commit by JoshTriplett: Response: please, no. Client-side wrapping of selections possibly OK. 2007-04-09 06:42:10 +00:00
wrong_permissions_on_some_files_in_source.mdwn
wrong_rss_url_when_inside_another_blog-like_page.mdwn
xgettext_issue.mdwn * Detect old versions of xgettext and avoid using them. 2007-02-20 04:10:31 +00:00