Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-23 | finalise version 3.00 of the plugin api | Joey Hess | |
2008-12-23 | enable aggregate_internal by default | Joey Hess | |
2008-12-19 | avoid uninitialized value | Joey Hess | |
This can happen when a new field, such as the new lasttry, is added. | |||
2008-12-17 | aggregate: If a feed fails to be downloaded, try again immediatly next time ↵ | Joey Hess | |
aggregation is run, even if the usual time has not passed. Closes: #508622 (Michael Gold) | |||
2008-12-17 | Coding style change: Remove explcit vim folding markers. | Joey Hess | |
2008-11-18 | avoid uninitialized value warning | Joey Hess | |
2008-11-18 | improve escaping of wikilinks and preprocessor directives | Joey Hess | |
The old method failed for '[' x 3. | |||
2008-11-17 | call decode_utf8 inside eval | Joey Hess | |
holger reported that decode_utf8 was crashing with perl 5.8.8. Earlier, I thought that passing 0 to the function avoided this with old perls, but that was apparently not enough, it still crashes. So, put it inside the eval, so we can at least recover from it crashing. | |||
2008-11-06 | aggregate: Try to query XML::Feed for the base url when derelevatising ↵ | Joey Hess | |
links. Since this needs the just released XML::Feed 0.3, as well as a not yet released XML::RSS, it will fall back to the old method if no xml:base info is available. | |||
2008-10-19 | fix relativedate timezone inclusion | Joey Hess | |
The machine parseable date needs to include a timezone. Also, simplified the interface for date display. | |||
2008-10-19 | mark up date so relativedate will work | Joey Hess | |
2008-10-16 | aggregate: Avoid bug that caused immediate expiration of items with a date ↵ | Joey Hess | |
in the future. | |||
2008-09-29 | Removed the pagefile function, which was confusingly close in name to | Joey Hess | |
newpagefile. Note that newpagefile is not used here (or in recentchanges) because the internal use pages they generate are transient and unlikely to benefit from being put each in their own subdir. | |||
2008-09-27 | Export pagetitle, titlepage, linkpage. | Joey Hess | |
2008-09-27 | typo | Joey Hess | |
2008-09-25 | aggregate: Avoid uninitialized value warnings for pages with no recorded ctime. | Joey Hess | |
I saw this in the wild, apparently a page was not present on disk, but was in the aggregate db, and not marked as expired either. Not sure how that happened, but such pages should get marked as expired since they have an effectively zero ctime. | |||
2008-09-17 | fix check for nonexistant content | Joey Hess | |
2008-09-17 | store ctime for use by expiry code | Joey Hess | |
The expiry code does need to make sure to sort in ctime order, even if expiring by count, so it expires the right ones. | |||
2008-09-17 | aggregate: Support atom feeds with only a summary element, and no content ↵ | Joey Hess | |
elements. | |||
2008-09-17 | aggregate: Allow expirecount to work on the first pass. (expireage still ↵ | Joey Hess | |
needs to wait for the pages to be rendered though) | |||
2008-08-03 | add plugin safe/rebuild info (part 1 of 2) | Joey Hess | |
too many plugins.. brain exploding.. | |||
2008-07-26 | remove default values in getsetup | Joey Hess | |
They were a bit confusing, since they did not actually set the default, and example values are sufficient. | |||
2008-07-26 | turn booleans into questions | Joey Hess | |
2008-07-25 | added getsetup hooks for all plugins up to recentchanges | Joey Hess | |
2008-07-14 | fixes | Joey Hess | |
2008-07-14 | use prune to delete rendered files | Joey Hess | |
This handles deleting empty directories too. | |||
2008-07-15 | Fix aggregateinternal migration so it skips expired entries, and deletes output | Simon McVittie | |
2008-07-14 | Merge commit 'smcv/aggregateinternal' into aggregateinternal | Joey Hess | |
Conflicts: IkiWiki/Plugin/aggregate.pm | |||
2008-07-15 | Use _aggregated as extension for internalized aggregation | Simon McVittie | |
2008-07-14 | changes to debug message printing | Joey Hess | |
2008-07-14 | Add aggregateinternal mode to ikiwiki-transition. | Simon McVittie | |
Usage: 1. Update all pagespecs that use aggregated pages to use internal() 2. ikiwiki-transition aggregateinternal $srcdir $htmlext (where $srcdir and $htmlext are the srcdir and htmlext options in your .setup file) 3. Add aggregateinternal to your .setup file 4. Rebuild the wiki | |||
2008-07-14 | Merge commit 'origin/master' into aggregateinternal | Simon McVittie | |
2008-07-13 | switch preprocess hooks to use error function | Joey Hess | |
2008-07-12 | Make aggregated items be internal pages if --aggregateinternal is used. | Simon McVittie | |
This addresses <http://ikiwiki.info/todo/aggregate_to_internal_pages/> in a simple way. With this approach, a flag day is required, on which all users of aggregated pages start to inline them using the internal() pagespec; after that, the aggregateinternal option can safely be switched on in the setup file (and the old aggregated pages can be deleted by hand). | |||
2008-06-21 | `template` option for aggregate.pm. | Bernd Zeimetz | |
Allows to specify the template file which is used to create the html pages. | |||
2008-05-28 | When calling decode_utf8 on known-problimatic content in aggregate, ↵ | Joey Hess | |
explicitly pass 0 (FB_DEFAULT) as the second parameter. Apparently perl 5.8 needs this to avoid crashing on malformed utf-8, despite its docs saying it is the default. | |||
2008-05-05 | aggregate: Add support for web-based triggering of aggregation for people ↵ | Joey Hess | |
stuck on shared hosting without cron. (Sheesh.) Enabled via the `aggregate_webtrigger` configuration optiom. | |||
2008-04-03 | aggregate: Correct a mistake in the code that dummy up a guid for feeds ↵ | Joey Hess | |
lacking one. | |||
2008-03-14 | load HTML::Entities at top | Joey Hess | |
Used in several subs, not all of which load it on demand, this seems simpler. | |||
2008-03-12 | no need to use HTML::Entities, as it's loaded on demand by code below | Joey Hess | |
2008-02-03 | implement aggregate_locking design | Joey Hess | |
Now aggregation will not lock the wiki. Any changes made during aggregaton are merged in with the changed state accumulated while aggregating. A separate lock file prevents multiple concurrent aggregators. Garbage collection of orphaned guids is much improved. loadstate() is only called once per process, so tricky support for reloading wiki state is not needed. (Tested fairly thuroughly.) | |||
2008-02-03 | add aggregate locking functions | Joey Hess | |
2008-02-03 | * aggregate: Revert use of forking to not save state, that was not the right | Joey Hess | |
approach. | |||
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-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-26 | aggregate.pm: Replace Unicode apostrophe with ASCII to unbreak build | Josh 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 simplifies | Joey 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-16 | * aggregate: Don't let feeds set creation times for pages in the future. | Joey Hess | |
2008-01-08 | * aggregate: Include copyright statements from rss feed as meta copyright | Joey Hess | |
directives. * aggregate: Yet another state saving fix (sigh). * aggregate: Add hack to support feeds with invalidly escaped html entities. |