summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
dae0f48)
to declare which version of the interface your plugin needs.
our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
bestlink htmllink readfile writefile pagetype srcfile pagename
%config %links %renderedfiles %pagesources);
our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
bestlink htmllink readfile writefile pagetype srcfile pagename
%config %links %renderedfiles %pagesources);
# Optimisation.
use Memoize;
# Optimisation.
use Memoize;
use warnings;
use strict;
use warnings;
use strict;
sub import { #{{{
hook(type => "getopt", id => "skeleton", call => \&getopt);
sub import { #{{{
hook(type => "getopt", id => "skeleton", call => \&getopt);
export some other things.
* Changed all plugins included in ikiwiki to not use "IkiWiki::" when
referring to stuff now exported by the IkiWiki module.
export some other things.
* Changed all plugins included in ikiwiki to not use "IkiWiki::" when
referring to stuff now exported by the IkiWiki module.
+ * Add a module version number to IkiWiki, so you can "use IkiWiki '1.00'"
+ to declare which version of the interface your plugin needs.
* Anyone with a third-party ikiwiki plugin is strongly enrouraged
to make like changes to it and avoid use of non-exported symboles from
"IkiWiki::".
* Anyone with a third-party ikiwiki plugin is strongly enrouraged
to make like changes to it and avoid use of non-exported symboles from
"IkiWiki::".
* Support hyperestradier version 1.4.2, which adds a new required phraseform
setting.
* Support hyperestradier version 1.4.2, which adds a new required phraseform
setting.
- -- Joey Hess <joeyh@debian.org> Sat, 9 Sep 2006 18:38:19 -0400
+ -- Joey Hess <joeyh@debian.org> Sat, 9 Sep 2006 18:56:10 -0400
ikiwiki (1.26) unstable; urgency=low
ikiwiki (1.26) unstable; urgency=low
To import the ikiwiki plugin interface:
To import the ikiwiki plugin interface:
This will import several variables and functions into your plugin's
namespace. These variables and functions are the ones most plugins need,
This will import several variables and functions into your plugin's
namespace. These variables and functions are the ones most plugins need,