aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * importnil2010-02-16
| |
| * fixnil2010-02-16
| |
| * redirectnil2010-02-16
| |
| * (no commit message)http://mem.myopenid.com/2010-02-15
| |
| * (no commit message)aghitza2010-02-15
| |
| * + ipol.imnil2010-02-15
| |
* | optimise whitespace in feed templatesJoey Hess2010-02-14
|/
* Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess2010-02-14
|\
| * (no commit message)jwalzer2010-02-14
| |
| * Update - trying to debug itjwalzer2010-02-14
| |
| * new threadjwalzer2010-02-14
| |
* | comments: Display number of comments in comment action link.Joey Hess2010-02-14
| | | | | | | | | | | | | | | | | | | | This was not doable before, but when I added transitive dependency handling in the big dependency rewrite, it became possible to include a comment count when inlining. This also improves the action link when a page has no comments. It will link direct to the cgi to allow posting the first comment. And if the page is locked to prevent posting new comments, the link is no longer shown.
* | minor refactor/optimisationJoey Hess2010-02-14
| |
* | add ngettext support & optimize gettext handlingJoey Hess2010-02-14
|/ | | | | | | | | | | As I was adding ngettext support, I realized I could optimize the gettext functions by memoizing the creation of the gettext object. Note that the object creation is still deferred until a gettext function is called, to avoid unnecessary startup penalties on code paths that do not need gettext. A side benefit is that separate stub functions are no longer needed to handle the C language case.
* clarifyJoey Hess2010-02-13
|
* Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.infoJoey Hess2010-02-13
|\
| * Added information about python implementation for referencehttp://seeitcoming.myopenid.com/2010-02-13
| |
* | closeJoey Hess2010-02-13
|/
* add news item for ikiwiki 3.20100212Joey Hess2010-02-12
|
* releasing version 3.20100212Joey Hess2010-02-12
|
* formattingJoey Hess2010-02-12
|
* layoutJoey Hess2010-02-12
|
* add highlevel view of when hooks are called during compile and cgi phasesJoey Hess2010-02-12
|
* add variable value examplesJoey Hess2010-02-12
|
* move note to sideboxJoey Hess2010-02-12
|
* heading tweaksJoey Hess2010-02-12
|
* reorg and expand docs of some variablesJoey Hess2010-02-12
|
* setup file orderingJoey Hess2010-02-12
|
* add section informationJoey Hess2010-02-12
|
* another (last?) tag changeJoey Hess2010-02-12
|
* formatting sillynessJoey Hess2010-02-12
|
* remove unnecessary IkiWiki::Joey Hess2010-02-12
|
* one moreJoey Hess2010-02-12
|
* more tag reorgJoey Hess2010-02-12
|
* more tag reorgJoey Hess2010-02-12
|
* plugin tag reorgJoey Hess2010-02-12
|
* bordersJoey Hess2010-02-12
|
* format plugin categorizationJoey Hess2010-02-12
|
* add plugin section, and show which plugins need no configurationJoey Hess2010-02-12
|
* rewordJoey Hess2010-02-12
|
* improve websetup fieldset displayJoey Hess2010-02-12
| | | | to handle sections
* fix websetup display of unsafe arrays in expert modeJoey Hess2010-02-11
|
* add some openid matching testsJoey Hess2010-02-11
|
* fix openid pagespec exampleJoey Hess2010-02-11
|
* Group related plugins into sections in the setup file, and drop unused rcs ↵Joey Hess2010-02-11
| | | | plugins from the setup file.
* Allow globs to be used in user() pagespecs.Joey Hess2010-02-11
|
* reorder canedit checks during page creation to have best_loc firstJoey Hess2010-02-11
| | | | | | | | | | | | | | | | | | | | | | | | | | When creating a page, multiple locations are tested to see if they can be edited. If all fail, one of the failure subs is called, to log the user in to allow them to proceed with the edit. So far so good. But, what if some pages fail for one reason, and some for another? This occurs when httpauth_pagespec is used in conjunction with signinedit (and openid or something). When the user is not signed in at all The former will fail to edit a page because the user was not httpauthed. The latter will fail to edit a different page, because the user was not signed in. One of their failure methods gets to run first. The page creation code always ran the failure method corresponding to the topmost page location. So, when editing a foo/Discussion page, and with httpauth_pagespec => "*!/Discussion", it ran the httpauth failure method, which was exactly the wrong thing to do. I fixed this by making it instead run the failure method for the *best* page location. In the above example, that's foo/Discussion, so signinedit runs, as desired, and we get the signin page. This seems like it will be the right choice, or at least an acceptable choice. If a user wants to use httpauth they can always choose it on the signin page.
* partially fix httpauth canedit hookJoey Hess2010-02-11
| | | | | | | | | | My logic was right before. Cleaned up some code. (Page creation is still a problem.) Also, I removed the Edit url munging, because that is not necessary with the canedit hook, since canedit will handle redirection through cgiauthurl if necessary.
* fix logic errorJoey Hess2010-02-11
|
* httpauth: Add httpauth_pagespec setting that can be used to limit pages to ↵Joey Hess2010-02-11
| | | | only being edited via users authed with httpauth.