summaryrefslogtreecommitdiff
path: root/debian
AgeCommit message (Collapse)Author
2011-04-30releasing version 3.20110430Joey Hess
2011-04-30close bug already fixed a month ago in gitJoey Hess
2011-04-30tag: Avoid autocreating multiple tag pages that vary only in capitalization. ↵Joey Hess
The first capitalization seen of a tag will be used for the tag page. Arguably, the real bug is in the interface to add_autofile, but since that does take a filename, not a page name, it cannot really do case handling on its own. The only other users of add_autofile in ikiwiki proper is autoindex, and it always uses one case. Other third party plugins might also need to add similar workarounds though.
2011-04-30Promote Crypt::SSLeay to Recommends; needed for https openid auth.Joey Hess
2011-04-21meta: Add FOAF support. Closes: #623156 (Jonas Smedegaard)Joey Hess
2011-04-21changelogJoey Hess
2011-04-17bug closureJoey Hess
2011-04-12meta: Fix bug in loading of HTML::Entities that can break inline archive=yes ↵Joey Hess
(mostly masked by other plugins that load the module).
2011-03-30document fix I'm about to mergeJoey Hess
2011-03-30fixJoey Hess
2011-03-30update for libravatar supportJoey Hess
* comments: Add avatar picture of comment author, using Libravatar::URL when available. The avatar is looked up based on (Thanks, Francois Marier) * Recommend libgravatar-url-perl, which contains Libravatar::URL.
2011-03-28CVE assignedJoey Hess
2011-03-28changelogJoey Hess
2011-03-28yaml is needed as a build dep nowJoey Hess
2011-03-28releasing version 3.20110328Joey Hess
2011-03-28meta: Security fix; don't allow alternative stylesheets to be added on pages ↵Joey Hess
where the htmlscrubber is enabled.
2011-03-28comment: Better fix to avoid showing comments of subpages, while not ↵Joey Hess
breaking manual inlining of comments.
2011-03-24Yaml formatted setup files are now produced by defaultJoey Hess
This has been a while coming. It turns out that non-excutable setup files have a number of benefits. Also, I find YAML setup files easier to edit myself, and I suspect many users will prefer not needing to deal with perl syntax.
2011-03-24Add timezone setting in setup file. This alows time zone to be configured ↵Joey Hess
via the web.
2011-03-21releasing version 3.20110321Joey Hess
2011-03-21Avoid escaping / characters in filenames when building the cgiurl, as this ↵Joey Hess
confuses eg, cvsweb.
2011-03-21aggregate: Read cookies from ~/.ikiwiki/cookies by default. Also, the ↵Joey Hess
cookiejar configuration setting can be used by other plugins to provide a custom `cookie_jar` object for LWP::UserAgent. (Thanks, schmonz)
2011-03-02darcs: Fix multiple issues preventing rcs_diff from working.Joey Hess
2011-02-27comment: Don't show comments of subpages on parent pages. (Fixes bug ↵Joey Hess
introduced in version 3.20100505.)
2011-02-25releasing version 3.20110225Joey Hess
2011-02-22bookeepingJoey Hess
2011-02-22bookeepingJoey Hess
2011-02-21Fix broken baseurl in cgi mode when usedirs is disabled. Bug introduced in ↵Joey Hess
3.20101231.
2011-02-09map: Avoid unnecessary ul's in maps with nested directories. (Giuseppe Bilotta)Joey Hess
2011-02-09add paths to plugin files in copyrightJoey Hess
2011-02-09transient merged; bookkeepingJoey Hess
2011-02-03htmltidy: Avoid breaking the sidebar when websetup is running.Joey Hess
Problem was this: websetup loads all plugins, but does not checkconfig them. So, htmltidy's recently added configurable command setting was unset; this resulted in its sanitize hook failing; the sanitize hook is called when a sidebar was enabled, and this caused the sidebar to not display. I put in a fix, but the underlying problem is that websetup loads all plugins but leaves them in an unconfigured and possibly broken state while trying to display its forms. Probably the long-term fix is to have it cache the original hook states from before loading the plugins, and restore it after getting their configuration. Or, even to get the configuration using a subprocess, as plugins may do things outside the hook system.
2011-02-01editpage: Avoid inheriting internal page types.Joey Hess
2011-01-24releasing version 3.20110124Joey Hess
2011-01-24inline: Fix regression in feed titles. Closes: #610878 (Thanks, Paul Wise)Joey Hess
2011-01-24blogspam: Don't check modifications from admins for spam, and also allow the ↵Joey Hess
blogspam_pagespec to do other matches against who the user is.
2011-01-24bleaghJoey Hess
2011-01-23releasing version 3.20110123Joey Hess
2011-01-22Adapt autoindex test suite to work with old Test::More.Joey Hess
2011-01-22releasing version 3.20110122Joey Hess
2011-01-22rename: Fix crash when renaming a page that is linked to by a page in an ↵Joey Hess
underlay. Skip fixing links in such pages. The user will get a list of pages that still link to the old page.
2011-01-22comments: Fix XSS security hole due to missing validation of page name.Joey Hess
Values have to be checked against wiki_file_regexp, not just file_pruned. Audited the rest of the code base for similar problems, found none.
2011-01-14pickedJoey Hess
2011-01-13update copyright format to DEP-5Joey Hess
2011-01-06updateJoey Hess
2011-01-05releasing version 3.20110105Joey Hess
2011-01-05use cgitemplate, remove misctemplateJoey Hess
2011-01-05Export three cgi env vars needed for CGI->url to work.Joey Hess
2011-01-05Fix permalinks to recentchanges items and comments, broken by last release.Joey Hess
permalinks always need to be full urls
2011-01-05Temporarily revert one part of the multiple url support in the last release. ↵Joey Hess
Non-edit pages are now back to having `<base>` set to the site's main url.