fix a common case typo
parent
1e0a97c0aa
commit
6432d15cb4
|
@ -19,7 +19,7 @@ severity = 1
|
|||
# when they are part of the core program. I don't plan to have more than
|
||||
# the one exporting module in IkiWiki, so let's ignore this test.
|
||||
[-Modules::RequireFilenameMatchesPackage]
|
||||
# IkiWIki also switches _out_ of the core package when a package namespace
|
||||
# IkiWiki also switches _out_ of the core package when a package namespace
|
||||
# is a good way to group a set of functions. This doesn't mean I want it
|
||||
# loading up a separate file though, so it's in the same file.
|
||||
[-Modules::ProhibitMultiplePackages]
|
||||
|
|
|
@ -24,7 +24,7 @@ my %pagenum;
|
|||
sub preprocess (@) { #{{{
|
||||
my %params=(open => "yes", total => "yes", percent => "yes", @_);
|
||||
|
||||
my $open=IkiWIki::yesno($params{open});
|
||||
my $open=IkiWiki::yesno($params{open});
|
||||
my $showtotal=IkiWiki::yesno($params{total});
|
||||
my $showpercent=IkiWiki::yesno($params{percent});
|
||||
$pagenum{$params{page}}++;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
ikiwiki (2.61) UNRELEASED; urgency=low
|
||||
|
||||
* poll: Fix typo that broke plugin.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Tue, 12 Aug 2008 15:48:36 -0400
|
||||
|
||||
ikiwiki (2.60) unstable; urgency=low
|
||||
|
||||
[ Joey Hess ]
|
||||
|
|
|
@ -48,7 +48,8 @@ only Apache/iptables rules for this? Maybe it's related to
|
|||
|
||||
### Logging Out
|
||||
|
||||
If I've logged in by OpenID, how do I log out? I don't see any logout button anywhere on IkiWIki. (is it because I hit "forever" for my OpenID authorization duration?)
|
||||
If I've logged in by OpenID, how do I log out? I don't see any logout
|
||||
button anywhere on IkiWiki. (is it because I hit "forever" for my OpenID authorization duration?)
|
||||
> No, it's because it's on the preferences page! That's somewhat non-obvious...
|
||||
|
||||
>> This is a problem with having a static wiki. If I just put "Logout" as
|
||||
|
|
|
@ -37,6 +37,6 @@ Functions used by only some plugins, undecided about exporting:
|
|||
Variables used by plugins but not exported yet:
|
||||
|
||||
* %IkiWiki::pagecase (aggregate)
|
||||
* %IkiWIki::backlinks (pagestats)
|
||||
* %IkiWiki::backlinks (pagestats)
|
||||
|
||||
[[todo/done]]
|
||||
|
|
|
@ -18,6 +18,8 @@ A here is its HTML result:
|
|||
Note: I was trying with `<span>` tags too, but that tag is inline, so I can't
|
||||
set `width` property for it.
|
||||
|
||||
> In the poll plugin, I ended up using
|
||||
|
||||
Default CSS styles for the plugin can be like below:
|
||||
|
||||
div.progress {
|
||||
|
|
Loading…
Reference in New Issue