Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-04 | not a contentless dependency | Joey Hess | |
needs link info | |||
2009-10-04 | edittemplate: contentless dependency | Joey Hess | |
This one is unlikely to matter much, but yeah, it's contentless. | |||
2009-10-04 | calendar: all dependencies are contentless | Joey Hess | |
2009-10-04 | inline: Use a contentless dependency in quick mode. | Joey Hess | |
2009-10-04 | map: Use a contentless dependency unless show= is specified. | Joey Hess | |
This makes simple maps efficient enough that they can be used on sidebars! | |||
2009-10-03 | orphans and brokenlinks cannot use contentless dependency | Joey Hess | |
Tried a contentless dep and it does not work; changes to links in pages are not noticed. Drat. | |||
2009-10-03 | implement support for DEPEND_EXISTS | Joey Hess | |
Preliminary support, anyway. If a dependency only includes DEPEND_EXISTS, then only changes that involved adding or deleting a page can trigger it. This is complicated by internal pages, since the code did not previously differentiate between add, delete, and change of internal pages. Now it tracks change separately from add+delete, so DEPEND_EXISTS pagespecs that actually match internal pages (which will probably be quite rare in practice) should work. | |||
2009-10-03 | pagecount: Use contentless dependency | Joey Hess | |
This will avoid lots of unnecessary updates of pages using the pagecount directive. Yay! | |||
2009-10-02 | mirrorlist: Display nothing if list is empty. | Joey Hess | |
2009-09-29 | Support RPC::XML 0.69's incompatable object instantiation method. | Joey Hess | |
2009-09-29 | typo | Joey Hess | |
2009-09-28 | toggle, relativedate: Support templates that add attributes to the body tag. | Joey Hess | |
2009-09-27 | img: Fix dependency code for full size images. | Joey Hess | |
I had assumed that an image shown full size did not need add_depends, since a change would not need a change to the displaying page. But this is not true if the image is modified and its size changes. Then the page needs to update its img tag to reflect the current size. | |||
2009-09-27 | img: Correct bug in image size calculation code. | Joey Hess | |
If an image was resized smaller, with width and height specified to values that did not fit its aspect ratio, the image tag with/height were not adjusted to the actual size imagemagick chooses. This was broken by 03449610d6c666ba24bea68f01d896613e522278. To fix it right, it unfortunatly needs to always read the src image now, in order to determine if the image is being displayed larger, or resized smaller. When resized smaller, it then always uses the size of the thumbnail, while for larger it calculates the size. (Only way to get rid of this sometimes extra image read would be to change it to not allow displaying images larger.) | |||
2009-09-27 | parentlinks: Add has_parentlinks template parameter to allow styling the ↵ | Joey Hess | |
toplevel index differently etc. | |||
2009-09-23 | otl: Avoid globally filtering non-otl pages | Joey Hess | |
Through a complex chain of circumstances, that filtering was causing dumpsetup to trigger undefined warning messages from the po plugin. But anyway, munging the otl in htmlize is less error-prone and less expensive, a win all around. | |||
2009-09-23 | avoid ugly messages when running ikiwiki -setup on a *directory* | Joey Hess | |
2009-09-23 | auto.setup, auto-blog.setup: Fix sanitization of entered wikiname. Closes: ↵ | Joey Hess | |
#547378 | |||
2009-09-13 | avoid tempfile warning | Joey Hess | |
Allow tempfile to open the file, so it doesn't warn about possible insecurity. This probably fixes a real, but unlikely security hole too. | |||
2009-09-12 | remove cgi exclusion | Joey Hess | |
Note that a typical use of this plugin is for a static site, w/o cgi support enabled. | |||
2009-09-11 | got rid of the postrefresh hook after all | Joey Hess | |
Instead, use the change and delete hooks, and launch rsync if either hook is called. | |||
2009-09-11 | doc update, add --exclude ikiwiki.cgi to examples | Joey Hess | |
2009-09-11 | localize user-visible warnings and tack on missing newlines | Joey Hess | |
2009-09-11 | Merge commit 'schmonz/master' | Joey Hess | |
Conflicts: IkiWiki/Plugin/rsync.pm | |||
2009-09-11 | chdir to the destdir before running rsync | Joey Hess | |
Avoids needing to specify the path in the rsync command, can just use "." | |||
2009-09-11 | remove unixauth; I am only adding render at the moment | Joey Hess | |
yeah, you need branches :P | |||
2009-09-11 | Don't error out, either warn or say nothing, depending. | Amitai Schlair | |
2009-09-11 | Whoops, copyright 2009. /usr/bin/perl for the interpreter like other plugins. | Amitai Schlair | |
2009-09-10 | Revivify unixauth and rsync plugins (and hook needed by rsync) lost in | Amitai Schlair | |
the last merge. I should really put each feature on its own git branch. | |||
2009-09-10 | Merge commit 'schmonz/master' | Joey Hess | |
2009-09-10 | Add NetBSD-style 2-clause BSD license. | Amitai Schlair | |
2009-09-10 | remove hook not used by cvs | Joey Hess | |
2009-09-10 | formatting | Joey Hess | |
2009-09-10 | minor simplification | Joey Hess | |
2009-09-10 | Merge commit 'schmonz/master' into cvs | Joey Hess | |
2009-09-10 | Merge branch 'master' into cvs | Joey Hess | |
2009-09-10 | clean up use of IkiWiki::Receive | Joey Hess | |
Loading and use of IkiWiki::Receive can all be pushed into the git plugin, rather than scattered around. I had at first wanted to make a receive plugin and move it there, but a plugin was not a good fit; you don't want users to have to manually load it, and making the git plugin load the receive plugin at the right times would need more, and ugly code. | |||
2009-09-10 | Catch up to the new genwrapper hook. | Amitai Schlair | |
2009-09-10 | Merge branch 'master' of git://github.com/joeyh/ikiwiki | Amitai Schlair | |
2009-09-10 | Add genwrapper hook, that can be used to add code into the C wrapper. | Joey Hess | |
2009-09-10 | typo | Joey Hess | |
2009-09-10 | Merge commit 'schmonz/master' into cvs | Joey Hess | |
2009-09-10 | Merge branch 'master' into cvs | Joey Hess | |
2009-09-10 | CVS operations generally need to be within CVS checkouts, so these chdir() | Amitai Schlair | |
calls are warranted. They shouldn't modify the caller's working directory, though. Use File::chdir to keep the scope of the changes subroutine-local. The tests now pass without resetting the working directory. | |||
2009-09-09 | Abstract out CVS's involvement in the wrapper: | Amitai Schlair | |
* In Wrapper.pm, add a new hook "wrapperargcheck" to examine argc/argv and return success or failure. In the failure case, the wrapper terminates. * In cvs.pm, implement the new hook to return failure if a directory is being cvs added. | |||
2009-09-09 | Merge branch 'master' of git://github.com/joeyh/ikiwiki | Amitai Schlair | |
2009-09-08 | underlay: Also allow configuring additional directories to search for ↵ | Joey Hess | |
template files in. | |||
2009-09-08 | Expand banned_users; it can now include PageSpecs, which allows banning by ↵ | Joey Hess | |
IP address. | |||
2009-09-04 | Merge commit 'schmonz/master' into cvs | Joey Hess | |
Conflicts: IkiWiki/Plugin/cvs.pm | |||
2009-09-04 | It's STDOUT we have to shut up for cvs, and $savedout has to be | Amitai Schlair | |
restored just so. |