Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-03 | prototype fix | Joey Hess | |
2008-02-03 | * aggregate: Revert use of forking to not save state, that was not the right | Joey Hess | |
approach. | |||
2008-02-03 | * poll: This plugin turns out to have edited pages w/o doing any locking. | Joey Hess | |
Oops. Convert it from a cgi to a sessioncgi hook, which will work much better. | |||
2008-02-03 | * cgi hooks are now run before ikiwiki state is loaded. | Joey Hess | |
* This allows locking the wiki before loading state, which avoids some tricky locking code when saving a web edit. | |||
2008-02-02 | * aggregate: Forking a child broke the one state that mattered: Forcing | Joey Hess | |
the aggregating page to be rebuilt. Fix this. | |||
2008-02-02 | * Revert preservation of input file modification times in output files, | Joey Hess | |
since this leads to too many problems with web caching, especially with inlined pages. Properly solving this would involve tracking every page that contributes to a page's content and using the youngest of them all, as well as special cases for things like the version plugin, and it's just too complex to do. | |||
2008-01-30 | move openiduser function to the openid plugin | Joey Hess | |
2008-01-30 | move recentchanges link enabling into a pagetemplate hook | Joey Hess | |
2008-01-30 | Expand file-id in diffurl in the bzr backend. | Jelmer Vernooij | |
2008-01-29 | rename bazaar -> bzr after discussion with jelmer | Joey Hess | |
2008-01-29 | commit only the changed file | Joey Hess | |
2008-01-29 | stylistic changes | Joey Hess | |
Remarkably few. Also, I removed the stub for the obsolete rcs_notify function. | |||
2008-01-29 | Merge git://git.samba.org/jelmer/ikiwiki | Joey Hess | |
2008-01-29 | really fix the baseurl problem | Joey Hess | |
the issue is that HTML::Template doesn't expand top-level variables when inside a loop | |||
2008-01-29 | avoid temp var | Joey Hess | |
2008-01-29 | don't scan internal pages | Joey Hess | |
scan() does too much. All that is needed is to preprocess the internal page in scan-only mode. | |||
2008-01-29 | merged the recentchanges branch | Joey Hess | |
misc fixes | |||
2008-01-29 | add missing test to avoid uninitialised value when a page with metadata is ↵ | Joey Hess | |
removed | |||
2008-01-29 | * meta: Add pagespec functions to match against title, author, authorurl, | Joey Hess | |
license, and copyright. This can be used to create custom RecentChanges. * meta: To support the pagespec functions, metadata about pages has to be retained as pagestate. * Fix encoding bug when pagestate values contained spaces. | |||
2008-01-29 | make the author metadata for changes pages be the un-munged openid | Joey Hess | |
2008-01-29 | avoid redundant recentpages action on the recentchanges page itself | Joey Hess | |
2008-01-29 | added configuration for recentchanges | Joey Hess | |
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. | |||
2008-01-29 | add code to delete old change pages | Joey Hess | |
2008-01-29 | improve support for internal pages | Joey Hess | |
This makes it a lot quicker to deal with lots of recentchanges pages appearing and disappearing. It avoids needing to clutter up pagespecs with exclusions for those pages, by making normal pagespecs not match them. | |||
2008-01-29 | use new refresh hook | Joey Hess | |
2008-01-29 | add refresh hook | Joey Hess | |
2008-01-29 | updates | Joey Hess | |
2008-01-29 | indicate that an internal page will be rendered even if skipping it | Joey Hess | |
This is important to do because until will_render is called, ikiwiki doesn't know that the page exists. This avoids recentchanges re-writing every change page every run. | |||
2008-01-29 | escape wikilinks and preprocessor directives | Joey Hess | |
2008-01-29 | update RecentChanges action to point to page | Joey Hess | |
2008-01-29 | typo | Joey Hess | |
2008-01-29 | more style improvements | Joey Hess | |
2008-01-29 | non-tabular recentchanges display | Joey Hess | |
Doesn't look as good as the old table, but works as a rss feed. | |||
2008-01-29 | some parameteraisation and generalisation | Joey Hess | |
2008-01-29 | * Removed support for sending commit notification mails. Along with it went | Joey Hess | |
the svnrepo and notify settings, though both will be ignored if left in setup files. | |||
2008-01-29 | don't render internal-use pages, and document them | Joey Hess | |
2008-01-28 | proof of concept implementation of static recentchanges | Joey Hess | |
Currently hardcoded to write to recentchanges/*, and the page format needs to be rethought to be usable for aggregation, but it basically works. | |||
2008-01-28 | * prettydate,ddate: Don't ignore time formats passed to displaytime | Joey Hess | |
function. | |||
2008-01-28 | support for internal-use page types | Joey Hess | |
If a page type starts with an underscore, hide it from the list of page types in the edit form, and don't allow editing pages of that type. This allows for plugins to add page types for internal use. | |||
2008-01-28 | move userlink to IkiWiki.pm | Joey Hess | |
I have a plugin that needs to use userlink. | |||
2008-01-28 | change rcs_recentchanges when to absolute, not relative, time | Joey Hess | |
No point in using a relative time value in rcs_recentchanges. Different consumers of the info want different things. | |||
2008-01-28 | remove debug message | Joey Hess | |
This can legitimately happen when there's a simple merge. | |||
2008-01-28 | Merge branch 'master' into recentchanges | Joey Hess | |
2008-01-28 | figured out how rev is used.. | Joey Hess | |
2008-01-28 | * inline: The template can check for FIRST and LAST, which will be | Joey Hess | |
set for the first and last inlined page. Useful for templates that build tables and the like. | |||
2008-01-28 | add an id field to the rcs_recentchanges return structure | Joey Hess | |
There was an undocumented field named "rev", I think "id" is a better name, and nothing uses it yet. | |||
2008-01-28 | remove extraneous quoting | Joey Hess | |
2008-01-28 | test1 | Joey Hess | |
2008-01-28 | really fix comment | Joey Hess | |
It doesn't really make sense to do notification from a post-commit hook. | |||
2008-01-28 | update comment | Joey Hess | |
This is not only called from post-update in all configurations. Also, the comment was innaccurate about what the post-update hook is passed. |