| Commit message (Expand) | Author | Age |
* | s/redirect/redir/ | nil | 2010-02-16 |
* | typo | nil | 2010-02-16 |
* | whishlist | nil | 2010-02-16 |
* | import | nil | 2010-02-16 |
* | fix | nil | 2010-02-16 |
* | redirect | nil | 2010-02-16 |
* | (no commit message) | http://mem.myopenid.com/ | 2010-02-15 |
* | (no commit message) | aghitza | 2010-02-15 |
* | + ipol.im | nil | 2010-02-15 |
* | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | 2010-02-14 |
|\ |
|
| * | (no commit message) | jwalzer | 2010-02-14 |
| * | Update - trying to debug it | jwalzer | 2010-02-14 |
| * | new thread | jwalzer | 2010-02-14 |
* | | comments: Display number of comments in comment action link.•••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.
| Joey Hess | 2010-02-14 |
* | | minor refactor/optimisation | Joey Hess | 2010-02-14 |
* | | add ngettext support & optimize gettext handling•••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.
| Joey Hess | 2010-02-14 |
|/ |
|
* | clarify | Joey Hess | 2010-02-13 |
* | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | 2010-02-13 |
|\ |
|
| * | Added information about python implementation for reference | http://seeitcoming.myopenid.com/ | 2010-02-13 |
* | | close | Joey Hess | 2010-02-13 |
|/ |
|
* | add news item for ikiwiki 3.20100212 | Joey Hess | 2010-02-12 |
* | releasing version 3.20100212 | Joey Hess | 2010-02-12 |
* | formatting | Joey Hess | 2010-02-12 |
* | layout | Joey Hess | 2010-02-12 |
* | add highlevel view of when hooks are called during compile and cgi phases | Joey Hess | 2010-02-12 |
* | add variable value examples | Joey Hess | 2010-02-12 |
* | move note to sidebox | Joey Hess | 2010-02-12 |
* | heading tweaks | Joey Hess | 2010-02-12 |
* | reorg and expand docs of some variables | Joey Hess | 2010-02-12 |
* | setup file ordering | Joey Hess | 2010-02-12 |
* | add section information | Joey Hess | 2010-02-12 |
* | another (last?) tag change | Joey Hess | 2010-02-12 |
* | formatting sillyness | Joey Hess | 2010-02-12 |
* | remove unnecessary IkiWiki:: | Joey Hess | 2010-02-12 |
* | one more | Joey Hess | 2010-02-12 |
* | more tag reorg | Joey Hess | 2010-02-12 |
* | more tag reorg | Joey Hess | 2010-02-12 |
* | plugin tag reorg | Joey Hess | 2010-02-12 |
* | borders | Joey Hess | 2010-02-12 |
* | format plugin categorization | Joey Hess | 2010-02-12 |
* | add plugin section, and show which plugins need no configuration | Joey Hess | 2010-02-12 |
* | reword | Joey Hess | 2010-02-12 |
* | improve websetup fieldset display•••to handle sections
| Joey Hess | 2010-02-12 |
* | fix websetup display of unsafe arrays in expert mode | Joey Hess | 2010-02-11 |
* | add some openid matching tests | Joey Hess | 2010-02-11 |
* | fix openid pagespec example | Joey Hess | 2010-02-11 |
* | Group related plugins into sections in the setup file, and drop unused rcs pl... | Joey Hess | 2010-02-11 |
* | Allow globs to be used in user() pagespecs. | Joey Hess | 2010-02-11 |
* | reorder canedit checks during page creation to have best_loc first•••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.
| Joey Hess | 2010-02-11 |
* | partially fix httpauth canedit hook•••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.
| Joey Hess | 2010-02-11 |