aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/recentchanges.pm
Commit message (Collapse)AuthorAge
* finalise version 3.00 of the plugin apiJoey Hess2008-12-23
|
* recentchanges_link CGI: If the linked page is internal, use its permalinkSimon McVittie2008-12-22
| | | | This fixes a bug, that comments appear in recentchanges as broken links.
* Coding style change: Remove explcit vim folding markers.Joey Hess2008-12-17
|
* html escaping complicationJoey Hess2008-11-18
| | | | | Can't escape things to entities if the template then escapes the entities. (aggregate doesn't have this problem.)
* improve escaping of wikilinks and preprocessor directivesJoey Hess2008-11-18
| | | | The old method failed for '[' x 3.
* Add rel=nofollow to recentchanges_links for the same (weak) reasons it was ↵Joey Hess2008-11-10
| | | | earlier added to edit links.
* fix relativedate timezone inclusionJoey Hess2008-10-19
| | | | | | The machine parseable date needs to include a timezone. Also, simplified the interface for date display.
* fix urlJoey Hess2008-10-17
|
* tweak recentchanges permalink codeJoey Hess2008-10-17
| | | | Need to handle the case where url is not set.
* Patch for anchor-based change permalinks in recent changes feedJoey Hess2008-10-17
| | | | from JasonBlevins
* make relativedate work for the dates on the recentchanges pageJoey Hess2008-10-17
| | | | Having a always current relative date on recentchanges is very, very nice.
* Export pagetitle, titlepage, linkpage.Joey Hess2008-09-27
|
* Merge commit 'smcv/beautify'Joey Hess2008-09-27
|\ | | | | | | | | | | | | | | | | | | Conflicts: IkiWiki/Plugin/recentchanges.pm Note that smcv's approach of using urlto also gets the url right when redirecting to a non-html file, which is a better approach than my recent fix to recentchanges
| * recentchanges: construct redirections via urlto(), avoiding mentions of ↵Simon McVittie2008-09-21
| | | | | | | | index.html
* | decode utf-8 in recentchanges_link parameterJoey Hess2008-09-26
| |
* | recentchanges: Fix redirects to non-page files.Joey Hess2008-09-25
|/
* add plugin safe/rebuild info (part 2 of 3)Joey Hess2008-08-03
| | | | (brain.. melting..)
* remove default values in getsetupJoey Hess2008-07-26
| | | | | They were a bit confusing, since they did not actually set the default, and example values are sufficient.
* standardising and documenting getsetupJoey Hess2008-07-26
|
* finish adding getsetup hooks to pluginsJoey Hess2008-07-26
|
* rename beautify_url to stress it only works on the path componentJoey Hess2008-07-11
|
* beautify url recentchanges_link redirs toJoey Hess2008-07-11
| | | | | | This ensures that the same link is reached as is used on pages, so browsers will know that the link on pages has been visited, and color it appropriately.
* fix uninitialized value problemJoey Hess2008-06-04
| | | | | | | This occurred when a plugin, loaded earlier, filled out a template in its checkconfig, before recentchanges's checkconfig had run. Since such a template won't be a recentchanges template, just test for the value being uninitialized and skip processing.
* it's not $title, try the other variableJoey Hess2008-06-04
|
* also decode html entities in the titleJoey Hess2008-06-04
|
* * Fix expiry of old recentchanges changeset pages.Joey Hess2008-03-14
|
* * Add recentchangesdiff plugin that adds diffs to the recentchanges feeds.Joey Hess2008-03-03
| | | | | | * rcs_diff is a new function that rcs modules should implement. * Implemented rcs_diff for git, svn, and tla (tla version untested). Mercurial and monotone still todo.
* * recentchanges: Exipre all *._change pages, even if the directoryJoey Hess2008-02-03
| | | | they're in has changed.
* * recentchanges: Improve handling of links on the very static changes pagesJoey Hess2008-02-03
| | | | | by thunking to the CGI, which can redirect to the page, or allow it to be created if it doesn't exist.
* move openiduser function to the openid pluginJoey Hess2008-01-30
|
* move recentchanges link enabling into a pagetemplate hookJoey Hess2008-01-30
|
* really fix the baseurl problemJoey Hess2008-01-29
| | | | | the issue is that HTML::Template doesn't expand top-level variables when inside a loop
* make the author metadata for changes pages be the un-munged openidJoey Hess2008-01-29
|
* added configuration for recentchangesJoey Hess2008-01-29
| | | | | | | | I kept it to a simple global configuration, rather than using the preprocessor directive for recentchanges, because that had chicken and egg problems and seemed overcomplicated. This should work reasonably well, though it would be good to add some more metadata so that more customised recentchanges pages can be made.
* add code to delete old change pagesJoey Hess2008-01-29
|
* use new refresh hookJoey Hess2008-01-29
|
* updatesJoey Hess2008-01-29
|
* escape wikilinks and preprocessor directivesJoey Hess2008-01-29
|
* typoJoey Hess2008-01-29
|
* more style improvementsJoey Hess2008-01-29
|
* non-tabular recentchanges displayJoey Hess2008-01-29
| | | | Doesn't look as good as the old table, but works as a rss feed.
* some parameteraisation and generalisationJoey Hess2008-01-29
|
* proof of concept implementation of static recentchangesJoey Hess2008-01-28
Currently hardcoded to write to recentchanges/*, and the page format needs to be rethought to be usable for aggregation, but it basically works.