summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-11Merge branch 'master' into dependency-typesJoey Hess
Conflicts: debian/changelog doc/plugins/calendar.mdwn
2009-10-11Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess
2009-10-11ikiwiki-calendar: New command automates creation of archive pages using the ↵Joey Hess
calendar plugin.
2009-10-11typoJoey Hess
2009-10-11typoJoey Hess
2009-10-11(no commit message)Jogo
2009-10-11(no commit message)Jogo
2009-10-10(no commit message)Jogo
2009-10-10(no commit message)trianta
2009-10-09updateJoey Hess
2009-10-09added tests of SuccessReason/FailReason objectsJoey Hess
2009-10-09updateJoey Hess
2009-10-09Merge branch 'master' into dependency-typesJoey Hess
Conflicts: doc/bugs/transitive_dependencies.mdwn
2009-10-09add news item for ikiwiki 3.20091009Joey Hess
2009-10-09releasing version 3.20091009Joey Hess
2009-10-09responsehttp://www.cse.unsw.edu.au/~willu/
2009-10-09remove highlevel influence calculation stuffJoey Hess
I have it implemented in both add_depends and pagespec_match_list. The add_depends implementation is optimised to only try one page if the pagespec's influences are all static, and do not vary by page matched.
2009-10-09add_depends: optimise influence calculationJoey Hess
I made match_* functions whose influences can vary depending on the page matched set a special "" influence to indicate this. Then add_depends can try just one page, and if static influences are found, stop there.
2009-10-09responseJoey Hess
2009-10-09revertJoey Hess
2009-10-09rework influence calculationJoey Hess
Thought of a cleaner way to accumulate all influences in pagespec_match_list, using the pagespec_match result object as an accumulator. (This also accumulates all influences from failed matches, rather than just one failed match. I'm not sure if the old method was correct.)
2009-10-09move influence tests to pagespec_match_list.tJoey Hess
2009-10-09img: use presence dependency when linking to a pageJoey Hess
2009-10-09brokenlinks: use pagespec_match_listJoey Hess
2009-10-09fix linkJoey Hess
2009-10-09fix pagespec_match_list handling of list parameterJoey Hess
2009-10-09pagespec_match_list: change limit to filterJoey Hess
2009-10-09conditional: use pagespec_match_listJoey Hess
2009-10-09pagespec_match_list allow additional pagespec limit parameters againJoey Hess
2009-10-09indentationJoey Hess
2009-10-09conditional: use yesnoJoey Hess
2009-10-09progress: switch to new pagespec_match_listJoey Hess
2009-10-09linkmap: Use new pagespec_match_listJoey Hess
2009-10-09fix test to use new calling conventionJoey Hess
This test still fails several cases, since add_depends influence testing is currently commented out.
2009-10-09add pagespec/sorting to underlayJoey Hess
2009-10-09don't link to inline, not available when directives underlay is not enabledJoey Hess
2009-10-08typoJoey Hess
2009-10-08rename use_pagespec to pagespec_match_listJoey Hess
To avoid breaking plugins, also support the old pagespec_match_list calling convention, with a deprecation warning.
2009-10-08fix test broken by change to failing link() influenceJoey Hess
2009-10-08calendar: rework so it can use use_pagespecJoey Hess
This was tricky because of the caching, and because use_pagespec always adds a dependency. That would have made year calendars depend on the whole pagespec, which is overly broad. So I removed the caching, format_month, and in format_year just look at %pagesources to see if month pages are available. In format_month, I make it always call use_pagespec, so each month calendar gets the right dependency and any influcences added. This means a bit more work, but the added work is fairly minimal, and presence dependencies remove a *lot* of work it used to do. (100% untested!)
2009-10-08Yet another tweak to the formal definition. Much better this time.http://www.cse.unsw.edu.au/~willu/
2009-10-08postsparkline: switch to use_pagespecJoey Hess
Also, fixed up the dependency type for time=mtime. That has to remain a content dependency, sadly.
2009-10-08orphans: switch to use_pagespecJoey Hess
2009-10-08Another tweak to the formal definition.http://www.cse.unsw.edu.au/~willu/
2009-10-08responseJoey Hess
2009-10-08comments on cycles in the dependency graphhttp://www.cse.unsw.edu.au/~willu/
2009-10-08Minor commenthttp://www.cse.unsw.edu.au/~willu/
2009-10-08fix feedpages dependencyJoey Hess
This dependency was missing before switching to use_pagespec. It is correct to add it, but it needs to be combined with the regular "pages" dependency to ensure that it does not match extra pages. (Also fixed its dependency type.)
2009-10-08Merge branch 'master' into dependency-typesJoey Hess
Conflicts: IkiWiki.pm IkiWiki/Render.pm debian/changelog
2009-10-08pagestate: switch to use_pagespecJoey Hess