aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Collapse)AuthorAge
* check for empty srcdirJoey Hess2009-02-14
| | | | This happens when using -dumpsetup
* downgrade missing shortcuts page error to warningJoey Hess2009-02-14
| | | | and response to bug report
* move check_canedit, check_content to IkiWiki library from editpageJoey Hess2009-02-12
| | | | | | | | | | | | It no longer makes sense to keep these functions in editpage, because serveral plugins now exist that use them, and users may want to disable editpage, while leaving those plugins enabled. Most notably, comments uses both functions, and it's entirely appropriate to disable editpage but still want to have comments enabled. Less likely, attachments, rename, and remove all use check_canedit -- but it would be unusual indeed to want to use these w/o editpage.
* shortcut: If default_pageext is set, first look for shortcuts.default_pageextJoey Hess2009-02-12
| | | | | | Falls back to looking for shortcuts.mdwn for backwards compatabiity; there probably exist wikis that have changed the pageext but still use shortcuts.mdwn.
* doubled semicolonsJoey Hess2009-02-11
|
* Create any missing directory necessary to put the wrapper file into. Closes: ↵Joey Hess2009-02-09
| | | | #514384
* doubled semicolonJoey Hess2009-02-04
|
* Work around XML::Atom strangeness that results in double-encoded postsSimon McVittie2009-02-03
| | | | | | | | | See [[bugs/Aggregated_Atom_feeds_are_double-encoded]]. By default, XML::Atom outputs strings of UTF-8 bytes with the Perl UTF8 flag stripped off, which IkiWiki assumes to be Latin-1 and re-encodes as UTF-8 on output. XML::Feed does not currently (0.41-1) set the magic variable to change this behaviour (I've filed a bug on CPAN), but IkiWiki can usefully set the same variable as a workaround.
* rename apache404 -> 404Joey Hess2009-01-31
| | | | | | This may already work with other web servers that have copied apache's interface, and it should be easy to add support to it for web servers that use some other interface. So, make the name more general.
* factor out IE stupididy workaroundJoey Hess2009-01-31
|
* Split cgi_goto into a goto pluginSimon McVittie2009-01-31
|
* Split apache404 into an independent pluginSimon McVittie2009-01-31
| | | | | Also make it ignore the 'do' parameter at Joey's suggestion, to have one less thing to remember when configuring.
* CGI: pad error responses with 512 bytes of spaces so IE will display themSimon McVittie2009-01-31
| | | | | IE displays its own error responses unless the server's was >= 512 bytes. http://support.microsoft.com/default.aspx?scid=kb;en-us;Q294807
* CGI: set up goto hook so that /ikiwiki.cgi?do=goto can be an Apache ↵Simon McVittie2009-01-31
| | | | ErrorDocument
* CGI: add cgi_page_from_404(), which remaps a path like $REDIRECT_URL to an ↵Simon McVittie2009-01-31
| | | | | | IkiWiki page name Also add a regression test
* IkiWiki::Wrapper: allow REDIRECT_STATUS and REDIRECT_URL through from ↵Simon McVittie2009-01-31
| | | | | | environment This is useful to act as an Apache 404 ErrorDocument.
* CGI: if the page is missing, give the "missing page" a 404 statusSimon McVittie2009-01-31
|
* CGI: document why commenter and recentchanges_link are supportedSimon McVittie2009-01-31
|
* recentchanges: delete CGI hook in favour of the global oneSimon McVittie2009-01-31
|
* comments: delete cgi hook in favour of the global oneSimon McVittie2009-01-31
|
* CGI: if the "do" parameter is goto, recentchanges_link or commenter, ↵Simon McVittie2009-01-31
| | | | | | redirect to a page This can replace equivalent functionality in comments and recentchanges.
* CGI: add cgi_goto(CGI, [page])Simon McVittie2009-01-31
| | | | | | This redirects to the given page (or if none is given, the page parameter given to the CGI), or displays an error with a create link if the page doesn't exist.
* typoJoey Hess2009-01-26
|
* Merge commit 'smcv/underlay'Joey Hess2009-01-26
|\
| * Add underlay pluginSimon McVittie2009-01-18
| |
* | Merge commit 'smcv/updated'Joey Hess2009-01-26
|\ \
| * | Add meta field "updated", which can alter the <updated> Atom elementSimon McVittie2009-01-18
| |/ | | | | | | | | | | | | | | | | | | | | Some aggregators, like Planet, sort by mtime rather than ctime. This means that posts with modified content come to the top (which seems odd to me, but is presumably what the aggregator's author or operator wants), but it also means that posts with insignificant edits (like adding tags) come to the top too. Atom defines <updated> to be the date of the last *significant* change, so it's fine that ikiwiki defaults to using the mtime, but it would be good to have a way for the author to say "that edit was insignificant, don't use that mtime".
* | git: Fix malformed utf8 recieved from git.Joey Hess2009-01-25
| | | | | | | | | | | | If git log outputs malformed utf8 in, eg, usernames, detect it and fix it up. This avoids commits such as f71abc92aa279fbe0b7578b8c4752d775dd4a259 breaking things.
* | format moderation queue only at end, avoid O(N^3) bugJoey Hess2009-01-25
| | | | | | | | | | | | | | | | | | | | | | | | It was calling format hooks for each comment on the page. When relativedate is enabled, that made it insert <script> tags for each comment. And the browser loaded the same script over and over, which was slow on its own. But that was nothing compared to running the onload even over and over.. especially since the hook system added a new call to the hook each time it loaded. For a page with 10 comments, that caused the relativedate DOM parsing code to run 1000 times, I think. Anyway, it was sloow. Now it runs once.
* | add reject all marked defer checkboxJoey Hess2009-01-25
| |
* | sort comment queue by time, newest firstJoey Hess2009-01-25
| |
* | add a button to prefs page for comment moderationJoey Hess2009-01-25
| |
* | clean up comment previewJoey Hess2009-01-25
| | | | | | | | Remove actions from it, and avoid a broken title link.
* | comments: Add a moderation web interface.Joey Hess2009-01-25
| |
* | comments: If comment content checks fail, store the comment (in ↵Joey Hess2009-01-25
| | | | | | | | .ikiwiki/comments_pending) for moderator review.
* | blogspam: Fix use of blogspam_options and blogspam_server config settings.Joey Hess2009-01-25
| |
* | typoJoey Hess2009-01-22
| |
* | fix uninitialized value warningsJoey Hess2009-01-22
| | | | | | | | I suspect these are only triggered by spammers.
* | fix typoJoey Hess2009-01-22
| |
* | img: only provide alt text if it was specifiedGabriel McManus2009-01-21
| | | | | | | | | | | | if suitable alternate text is unknown, then it should not be given. empty alt text is suitable mainly for purely decorative images. (cherry picked from commit 3cd7f67f0cf894f4fd5ba16f68e82e4f7bdbfdc5)
* | fix removal form displayJoey Hess2009-01-20
| | | | | | | | The form was misdisplayed when displayed via comment removal.
* | blogspam: Log spam info on failure.Joey Hess2009-01-19
| |
* | Avoid feeding decoded unicode to Term::ReadLineJoey Hess2009-01-18
|/ | | | | | | | That resulted in double encoded display when using perl's stub readline module. Apparently that module unconditionally upgrades text to utf8, in a quite braindead way. (Term::ReadLine::Gnu::Perl worked ok.)
* blogspam api now supports homepage linkJoey Hess2009-01-17
|
* load rpc xml lib on the flyJoey Hess2009-01-17
| | | | | This way, enabling the plugin via websetup is safe, it can't leave ikiwiki in a broken state.
* use short names in comittypeJoey Hess2009-01-17
| | | | | | Use mtn for monontone and hg for mercurial. The long names cause ugly formatting in recentchanges, which has CSS that only allows a few characters for the commit type column.
* blogspam: New plugin, adding spam filtering for page editing / comment ↵Joey Hess2009-01-16
| | | | posting using the BlogSpam.net API.
* make postcomment() pagespecs work while in checkcontentJoey Hess2009-01-16
|
* add new hook to skeletonJoey Hess2009-01-16
|
* checkcontent: New hook, can be used to implement arbitrary content filters, ↵Joey Hess2009-01-16
| | | | including spam filters.