summaryrefslogtreecommitdiff
path: root/IkiWiki
AgeCommit message (Collapse)Author
2008-01-29rename bazaar -> bzr after discussion with jelmerJoey Hess
2008-01-29commit only the changed fileJoey Hess
2008-01-29stylistic changesJoey Hess
Remarkably few. Also, I removed the stub for the obsolete rcs_notify function.
2008-01-29Merge git://git.samba.org/jelmer/ikiwikiJoey Hess
2008-01-29really fix the baseurl problemJoey Hess
the issue is that HTML::Template doesn't expand top-level variables when inside a loop
2008-01-29avoid temp varJoey Hess
2008-01-29don't scan internal pagesJoey Hess
scan() does too much. All that is needed is to preprocess the internal page in scan-only mode.
2008-01-29merged the recentchanges branchJoey Hess
misc fixes
2008-01-29add 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-29make the author metadata for changes pages be the un-munged openidJoey Hess
2008-01-29avoid redundant recentpages action on the recentchanges page itselfJoey Hess
2008-01-29added configuration for recentchangesJoey 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-29add code to delete old change pagesJoey Hess
2008-01-29improve support for internal pagesJoey 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-29use new refresh hookJoey Hess
2008-01-29add refresh hookJoey Hess
2008-01-29updatesJoey Hess
2008-01-29indicate that an internal page will be rendered even if skipping itJoey 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-29escape wikilinks and preprocessor directivesJoey Hess
2008-01-29update RecentChanges action to point to pageJoey Hess
2008-01-29typoJoey Hess
2008-01-29more style improvementsJoey Hess
2008-01-29non-tabular recentchanges displayJoey Hess
Doesn't look as good as the old table, but works as a rss feed.
2008-01-29some parameteraisation and generalisationJoey Hess
2008-01-29* Removed support for sending commit notification mails. Along with it wentJoey Hess
the svnrepo and notify settings, though both will be ignored if left in setup files.
2008-01-29don't render internal-use pages, and document themJoey Hess
2008-01-28proof of concept implementation of static recentchangesJoey 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 displaytimeJoey Hess
function.
2008-01-28support for internal-use page typesJoey 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-28move userlink to IkiWiki.pmJoey Hess
I have a plugin that needs to use userlink.
2008-01-28change rcs_recentchanges when to absolute, not relative, timeJoey Hess
No point in using a relative time value in rcs_recentchanges. Different consumers of the info want different things.
2008-01-28remove debug messageJoey Hess
This can legitimately happen when there's a simple merge.
2008-01-28Merge branch 'master' into recentchangesJoey Hess
2008-01-28figured out how rev is used..Joey Hess
2008-01-28 * inline: The template can check for FIRST and LAST, which will beJoey Hess
set for the first and last inlined page. Useful for templates that build tables and the like.
2008-01-28add an id field to the rcs_recentchanges return structureJoey Hess
There was an undocumented field named "rev", I think "id" is a better name, and nothing uses it yet.
2008-01-28remove extraneous quotingJoey Hess
2008-01-28test1Joey Hess
2008-01-28really fix commentJoey Hess
It doesn't really make sense to do notification from a post-commit hook.
2008-01-28update commentJoey 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.
2008-01-28Finish bazaar backend and make the remaining test pass.Jelmer Vernooij
2008-01-28Initial work adding support for Bazaar.Jelmer Vernooij
2008-01-26aggregate.pm: Replace Unicode apostrophe with ASCII to unbreak buildJosh Triplett
gettext choked on a Unicode apostrophe in the aggregate plugin, which appeared in a new error message in commit 4f872b563300e4a277cac3d7ea2a999bcf75d1ff. Replace it with an ASCII apostrophe.
2008-01-24* aggregate: Fork a child process to handle the aggregation. This simplifiesJoey Hess
the code, since that process can change internal state as needed, and it will automatically be cleaned up for the parent process, which proceeds to render the changes.
2008-01-17Add full parser for git diff-tree outputBrian Downing
The -c option to git log/diff-tree produces "merged" diffs with a different format from normal ones. However, the existing diff-tree parser only accepted non-merged diff lines. Merged diff lines caused the parser to get out of sync. This patch adds a full parser for diffs with any number of parents. See the "DIFF FORMAT FOR MERGES" section in the git-diff-tree man page for more information. Signed-off-by: Brian Downing <bdowning@lavos.net>
2008-01-16* aggregate: Don't let feeds set creation times for pages in the future.Joey Hess
2008-01-09I've wrote a little patch for the bug in teximg (can only include fomula onPatrick Winnertz
one page).
2008-01-09In preferences, allow the subscriptions and email fields to be clearedJoey Hess
2008-01-09not only markdown adds gunk, so remove it in the main htmlize functionJoey Hess