aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* responseJoey Hess2008-04-01
|
* web commit by http://montyz.livejournal.com/: A make problemJoey Hess2008-04-01
|
* add news item for ikiwiki 2.41Joey Hess2008-03-29
|
* releasing version 2.41Joey Hess2008-03-29
|
* Added a hardlink option in the setup file, useful if the source and dest are ↵Joey Hess2008-03-29
| | | | on the same filesystem and the wiki includes large media files, which would normally be copied, wasting time and space.
* wiki gnomes at workJoey Hess2008-03-28
|
* web commit by http://subvert.org.uk/~bma/: Add stylesheet.Joey Hess2008-03-28
|
* web commit by http://subvert.org.uk/~bma/: Link to new stylesheet.Joey Hess2008-03-28
|
* web commit by http://subvert.org.uk/~bma/: Update my URLs.Joey Hess2008-03-28
|
* web commit by http://certifi.ca/bronsonJoey Hess2008-03-28
|
* web commit by http://weakish.int.eu.org/: invalid linkJoey Hess2008-03-27
|
* web commit from 78.106.64.225: poll vote (Accept only password logins)Joey Hess2008-03-27
|
* Remove explanation of ohloh shortcut; it seems obvious enough.Josh Triplett2008-03-26
|
* Add shortcut for ohloh projects.Josh Triplett2008-03-26
|
* web commit by buo: ThanksJoey Hess2008-03-25
|
* web commit by buo: locales and mercurialJoey Hess2008-03-25
|
* web commit by http://willu.myopenid.com/: Add note about rel="nofollow" as ↵Joey Hess2008-03-24
| | | | an anti-spam suggestion
* web commit by http://jblevins.org/: htmlscrubber patch to sanitize SVG and ↵Joey Hess2008-03-24
| | | | MathML
* web commit by http://mjgoins.myopenid.com/Joey Hess2008-03-24
|
* web commit by http://mjgoins.myopenid.com/Joey Hess2008-03-24
|
* web commit by http://jblevins.org/: Thoughts about notation for citationsJoey Hess2008-03-23
|
* revert destpage part of f7bdc2385Joey Hess2008-03-23
| | | | | | | | destpage does not normally need to be worried about when creating other files as part of the process of rendering a page. Using destpage results in inlined pages creating two copies of such files. It works to not use destpage in this case because the inlining page depends on the source page, so if the source page is modified or deleted the inlining page will be updated.
* inline: Allow the "feedshow" parameter to take values greater than the value ↵Joey Hess2008-03-23
| | | | for "show".
* Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess2008-03-22
|\
| * web commit by http://madduck.net/: add note about whole site rebuilds for ↵Joey Hess2008-03-22
| | | | | | | | little changes
| * web commit by http://jblevins.org/: Notes about access keys from the main ↵Joey Hess2008-03-22
| | | | | | | | discussion page
* | add loadindex/saveindex test suiteJoey Hess2008-03-22
|/
* web commit by http://madduck.net/: put thoughts into the wishlist itemJoey Hess2008-03-21
|
* scan hook works, remove NotImplemented exceptionmartin f. krafft2008-03-21
| | | | Signed-off-by: martin f. krafft <madduck@madduck.net>
* Do not output xml-rpc debuggingmartin f. krafft2008-03-21
| | | | Signed-off-by: martin f. krafft <madduck@madduck.net>
* Flesh out pythondemomartin f. krafft2008-03-21
| | | | | | | This implements most hooks with stupid demo code, and also still has some TODO items. Signed-off-by: martin f. krafft <madduck@madduck.net>
* Handle going down with an exceptionmartin f. krafft2008-03-21
| | | | | | | | We previously used None as a sentinel to exit, but None is now a proper value, so now it's the job of an exception-like object (except it isn't an exception). Signed-off-by: martin f. krafft <madduck@madduck.net>
* put XMLStreamParser in public namespacemartin f. krafft2008-03-21
| | | | | | | Since we might throw sub-class exceptions, the class should be in the public namespace, meaning its name should not be prefixed with _. Signed-off-by: martin f. krafft <madduck@madduck.net>
* Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess2008-03-21
|\
| * web commit by http://jblevins.org/: Ideas about keyboard shortcutsJoey Hess2008-03-21
| |
* | typosJoey Hess2008-03-21
|/
* Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess2008-03-21
|\
| * web commit by http://madduck.net/Joey Hess2008-03-21
| |
* | defer po and pot file updating until package build timeJoey Hess2008-03-21
|/ | | | | This allows make to be run without polluting the tree with lots of po file changes.
* on css suckitudeJoey Hess2008-03-21
|
* external: Work around XML RPC's lack of support for null by passing a ↵Joey Hess2008-03-21
| | | | special sentinal value.
* Allow individual hook registration to override IDmartin f. krafft2008-03-21
| | | | | | | | | The preprocessor hooks need to specify IDs different from the ID used to initialise the proxy. Thus, the hook function now takes an optional id keyword argument and uses the ID used during initialisation if none is provided. Signed-off-by: martin f. krafft <madduck@madduck.net>
* Refactor remote procedure calls in the proxymartin f. krafft2008-03-21
| | | | | | | | | | | Add an rpc() method to the proxy to allow users to call remote procedures, and route the proxy's own import registration via this function. Also, implement convenience functions for the RPC calls exported in the IkiWiki::XML::RPC namespace. Signed-off-by: martin f. krafft <madduck@madduck.net>
* Make proxy object available to hook functionsmartin f. krafft2008-03-21
| | | | | | | Hook functions now get the proxy object as first argument to be able to use RPC via the proxy. Signed-off-by: martin f. krafft <madduck@madduck.net>
* add last parameter to plugin registrationmartin f. krafft2008-03-21
| | | | Signed-off-by: martin f. krafft <madduck@madduck.net>
* Allow external plugins to return no valuemartin f. krafft2008-03-21
| | | | | | | | | | | | | Instead of using the XML-RPC v2 extension <nil/>, which Perl's XML::RPC::Parser does not (yet) support (Joey's patch is pending), we agreed on a sentinel: {'null':''}, that is, a hash with a single key "null" pointing to the empty string. The Python proxy automatically converts None appropriately and raises an exception if a hook function should, by weird coincidence, attempt to return {'null':''}. Signed-off-by: martin f. krafft <madduck@madduck.net>
* Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess2008-03-21
|\
| * web commit by http://jblevins.org/: Case-sensitivity of HTML::ScrubberJoey Hess2008-03-21
| |
| * web commit by http://jblevins.org/: Fix links and signJoey Hess2008-03-21
| |
| * web commit by http://jblevins.org/: Request for comments about SVG and ↵Joey Hess2008-03-21
| | | | | | | | MathML whitelists