X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/9d62c6382a9947f4c7b13d1598b5d7436405e6ea..0b53772b99248d2868fac688cdaa227ad61ac08e:/doc/todo/po:_remove_po_files_when_disabling_plugin.mdwn diff --git a/doc/todo/po:_remove_po_files_when_disabling_plugin.mdwn b/doc/todo/po:_remove_po_files_when_disabling_plugin.mdwn index 26b1964ba..6c11fa17b 100644 --- a/doc/todo/po:_remove_po_files_when_disabling_plugin.mdwn +++ b/doc/todo/po:_remove_po_files_when_disabling_plugin.mdwn @@ -2,3 +2,18 @@ ikiwiki now has a `disable` hook. Should the po plugin remove the po files from the source repository when it has been disabled? > pot files, possibly, but the po files contain work, so no. --[[Joey]] + +>> I tried to implement this in my `po-disable` branch, but AFAIK, the +>> current rcs plugins interface provides no way to tell whether a +>> given file (e.g. a POT file in my case) is under version control; +>> in most cases, it is not, thanks to .gitignore or similar, but we +>> can't be sure. So I just can't decide it is needed to call +>> `rcs_remove` rather than a good old `unlink`. --[[intrigeri]] + +>>> I guess you could call `rcs_remove` followed by `unlink`. --[[Joey]] + +>>>> Implemented in my `po-disable` branch, added a basic test case +>>>> that passes, not tested in a real ikiwiki with a VCS yet. +>>>> Not sure I'll have time to do better any time soon, but for +>>>> anyone interested to lead this to completion, it should be a good +>>>> starting point. --[[intrigeri]]