http://lj.rossia.org/users/imz/ [Thu, 14 May 2009 10:30:08 +0000 (06:30 -0400)]
Wikilinked a "term".
http://lj.rossia.org/users/imz/ [Thu, 14 May 2009 02:00:16 +0000 (22:00 -0400)]
better targets for link in the prev.edit
http://lj.rossia.org/users/imz/ [Thu, 14 May 2009 01:58:19 +0000 (21:58 -0400)]
fix the prev.edit: only abs.path will work
http://lj.rossia.org/users/imz/ [Thu, 14 May 2009 01:57:25 +0000 (21:57 -0400)]
better link targets
http://lj.rossia.org/users/imz/ [Thu, 14 May 2009 01:54:37 +0000 (21:54 -0400)]
tagging
http://lj.rossia.org/users/imz/ [Thu, 14 May 2009 01:51:55 +0000 (21:51 -0400)]
tagging (to find this page easier when studying ikiwiki)
http://lj.rossia.org/users/imz/ [Wed, 13 May 2009 23:46:05 +0000 (19:46 -0400)]
minor formatting
http://lj.rossia.org/users/imz/ [Wed, 13 May 2009 23:44:27 +0000 (19:44 -0400)]
Q&A: using a local wiki to preview changes: an srcdir needed?
http://liw.fi/ [Wed, 13 May 2009 06:26:05 +0000 (02:26 -0400)]
http://liw.fi/ [Wed, 13 May 2009 06:24:11 +0000 (02:24 -0400)]
Joey Hess [Tue, 12 May 2009 18:15:34 +0000 (14:15 -0400)]
response
Joey Hess [Tue, 12 May 2009 17:33:57 +0000 (13:33 -0400)]
add missing new file
Joey Hess [Tue, 12 May 2009 17:31:58 +0000 (13:31 -0400)]
remove, wrong version
Joey Hess [Tue, 12 May 2009 17:30:54 +0000 (13:30 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Tue, 12 May 2009 17:30:44 +0000 (13:30 -0400)]
add news item for ikiwiki 3.13
PaulePanter [Tue, 12 May 2009 14:13:07 +0000 (10:13 -0400)]
question or bug regarding toggle and list item
http://ptecza.myopenid.com/ [Tue, 12 May 2009 11:17:18 +0000 (07:17 -0400)]
* Ikiwiki 3.12
http://liw.fi/ [Tue, 12 May 2009 05:36:06 +0000 (01:36 -0400)]
http://zwol.livejournal.com/ [Mon, 11 May 2009 06:30:16 +0000 (02:30 -0400)]
mgpfxfgaqo [Sun, 10 May 2009 21:03:42 +0000 (17:03 -0400)]
problem is the height
simonraven [Sat, 9 May 2009 19:47:17 +0000 (15:47 -0400)]
simonraven [Sat, 9 May 2009 19:38:53 +0000 (15:38 -0400)]
simonraven [Sat, 9 May 2009 19:21:30 +0000 (15:21 -0400)]
Thomas Schwinge [Fri, 8 May 2009 20:30:36 +0000 (22:30 +0200)]
The GNU Hurd pages have long been converted to ikiwiki.
tschwinge [Fri, 8 May 2009 20:20:59 +0000 (16:20 -0400)]
Usage information.
Joey Hess [Fri, 8 May 2009 19:30:35 +0000 (15:30 -0400)]
response
mgpfxfgaqo [Fri, 8 May 2009 17:43:07 +0000 (13:43 -0400)]
edit form: no fixed size for textarea
Joey Hess [Thu, 7 May 2009 18:02:52 +0000 (14:02 -0400)]
Allow underlaydir to be overridden without messing up inclusion of other underlays via add_underlay.
Joey Hess [Thu, 7 May 2009 00:46:26 +0000 (20:46 -0400)]
ikiwiki-transition: If passed a nonexistant srcdir, or one not containing .ikiwiki, abort with an error rather than creating it.
Joey Hess [Wed, 6 May 2009 17:17:01 +0000 (13:17 -0400)]
add NEWS
Joey Hess [Wed, 6 May 2009 17:16:29 +0000 (13:16 -0400)]
remove old news pages
Joey Hess [Wed, 6 May 2009 17:13:54 +0000 (13:13 -0400)]
releasing version 3.12
Joey Hess [Wed, 6 May 2009 17:13:01 +0000 (13:13 -0400)]
remove pagespec_match_list override for external
Not needed since it returns a list of pages, not a fail/success object.
Joey Hess [Wed, 6 May 2009 17:07:06 +0000 (13:07 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Wed, 6 May 2009 16:57:37 +0000 (12:57 -0400)]
external: Fix pagespec_match and pagespec_match_list. Closes: #527281
http://smcv.pseudorandom.co.uk/ [Wed, 6 May 2009 10:11:53 +0000 (06:11 -0400)]
Jon Dowland [Wed, 6 May 2009 09:13:21 +0000 (10:13 +0100)]
remove test page (see /sandbox)
Joey Hess [Wed, 6 May 2009 03:40:09 +0000 (23:40 -0400)]
Avoid %links accumulating duplicates. (For TOVA)
This is sorta an optimisation, and sorta a bug fix. In one
test case I have available, it can speed a page build up from 3
minutes to 3 seconds.
The root of the problem is that $links{$page} contains arrays of
links, rather than hashes of links. And when a link is found,
it is just pushed onto the array, without checking for dups.
Now, the array is emptied before scanning a page, so there
should not be a lot of opportunity for lots of duplicate links
to pile up in it. But, in some cases, they can, and if there
are hundreds of duplicate links in the array, then scanning it
for matching links, as match_link and some other code does,
becomes much more expensive than it needs to be.
Perhaps the real right fix would be to change the data structure
to a hash. But, the list of links is never accessed like that,
you always want to iterate through it.
I also looked at deduping the list in saveindex, but that does
a lot of unnecessary work, and doesn't completly solve the problem.
So, finally, I decided to add an add_link function that handles deduping,
and make ikiwiki-transition remove the old dup links.
Joey Hess [Wed, 6 May 2009 03:27:29 +0000 (23:27 -0400)]
decruft
Joey Hess [Wed, 6 May 2009 03:26:15 +0000 (23:26 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
http://ghee.livejournal.com/ [Wed, 6 May 2009 03:09:20 +0000 (23:09 -0400)]
meh
Joey Hess [Wed, 6 May 2009 00:13:40 +0000 (20:13 -0400)]
remove cruft that crept in during a debugging session
Joey Hess [Wed, 6 May 2009 00:06:50 +0000 (20:06 -0400)]
inline: Minor optimisation.
When finding the pageurl, it was calling bestlink unnecessarily.
Since at this point $page contains the full name of the page that
is being inlined, there is no need to do bestlink's scan
for it.
This is only a minor optimisation, since bestlink is only called
once per displayed, inlined page.
Joey Hess [Tue, 5 May 2009 18:28:42 +0000 (14:28 -0400)]
response
Joey Hess [Tue, 5 May 2009 18:25:08 +0000 (14:25 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Tue, 5 May 2009 18:24:55 +0000 (14:24 -0400)]
response
http://lj.rossia.org/users/imz/ [Tue, 5 May 2009 18:24:41 +0000 (14:24 -0400)]
minor: fix URL
http://lj.rossia.org/users/imz/ [Tue, 5 May 2009 18:21:38 +0000 (14:21 -0400)]
almost offtopic: is this actually a violation?
http://liw.fi/ [Tue, 5 May 2009 18:16:57 +0000 (14:16 -0400)]
Joey Hess [Tue, 5 May 2009 18:15:28 +0000 (14:15 -0400)]
ikiwiki-makerepo: Avoid using abs_path, as it apparently fails on nonexistant directories with some broken perl versions.
Joey Hess [Tue, 5 May 2009 17:57:00 +0000 (13:57 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
http://lj.rossia.org/users/imz/ [Tue, 5 May 2009 17:46:25 +0000 (13:46 -0400)]
minor: trying to format the "verbatims" correctly
http://lj.rossia.org/users/imz/ [Tue, 5 May 2009 17:44:18 +0000 (13:44 -0400)]
added a clarifiaction about my understanding of what happens
http://lj.rossia.org/users/imz/ [Tue, 5 May 2009 17:39:59 +0000 (13:39 -0400)]
a problem with /etc/ikiwiki/auto.setup, perl and non-existent paths
http://stefano.zacchiroli.myopenid.com/ [Tue, 5 May 2009 08:41:15 +0000 (04:41 -0400)]
Joey Hess [Mon, 4 May 2009 23:17:59 +0000 (19:17 -0400)]
turn python-support back on
Should wait to upload until ikiwiki is fixed in testing.
Joey Hess [Mon, 4 May 2009 20:35:59 +0000 (16:35 -0400)]
add news item for ikiwiki 3.11
Joey Hess [Mon, 4 May 2009 20:33:10 +0000 (16:33 -0400)]
releasing version 3.11
Joey Hess [Mon, 4 May 2009 18:41:21 +0000 (14:41 -0400)]
Avoid using python-support. Closes: #525086
Uses new debhelper feature to turn off python-support.
The tiny python module included herein certianly doesn't
need all the python-support nonsense.
Joey Hess [Mon, 4 May 2009 18:34:05 +0000 (14:34 -0400)]
response
Kai Hendry [Mon, 4 May 2009 09:08:27 +0000 (11:08 +0200)]
HTML5 story update
Kai Hendry [Mon, 4 May 2009 08:41:14 +0000 (10:41 +0200)]
anon commit test
simonraven [Sun, 3 May 2009 01:21:39 +0000 (21:21 -0400)]
http://lj.rossia.org/users/imz/ [Sat, 2 May 2009 17:30:17 +0000 (13:30 -0400)]
a clarifying comment about a tool which is referred to
http://jmtd.net/ [Sat, 2 May 2009 13:26:37 +0000 (09:26 -0400)]
published at http://github.com/jmtd/ikiwiki_todolist/
http://jmtd.net/ [Sat, 2 May 2009 11:54:00 +0000 (07:54 -0400)]
WIP todo list javascript in a demonstratable state
http://schmonz.livejournal.com/ [Thu, 30 Apr 2009 19:18:40 +0000 (15:18 -0400)]
personal experience
Jérémy Bobbio [Wed, 29 Apr 2009 22:24:41 +0000 (00:24 +0200)]
passwordauth/discussion: Cosmetics
Jérémy Bobbio [Wed, 29 Apr 2009 22:21:37 +0000 (00:21 +0200)]
passwordauth/discussion: Document an attempt of using Apache::AuthenHook for a restricted wiki
albertlash [Tue, 28 Apr 2009 23:42:18 +0000 (19:42 -0400)]
simonraven [Tue, 28 Apr 2009 23:12:52 +0000 (19:12 -0400)]
simonraven [Tue, 28 Apr 2009 23:11:38 +0000 (19:11 -0400)]
simonraven [Tue, 28 Apr 2009 21:46:21 +0000 (17:46 -0400)]
simonraven [Tue, 28 Apr 2009 20:42:35 +0000 (16:42 -0400)]
simonraven [Tue, 28 Apr 2009 20:14:44 +0000 (16:14 -0400)]
simonraven [Tue, 28 Apr 2009 05:41:12 +0000 (01:41 -0400)]
s/choosen/chosen/
Joey Hess [Mon, 27 Apr 2009 17:57:35 +0000 (13:57 -0400)]
translation.mdwn: Typo fixes. Closes: #525753
Joey Hess [Mon, 27 Apr 2009 17:56:56 +0000 (13:56 -0400)]
mention po plugin
Joey Hess [Mon, 27 Apr 2009 17:54:48 +0000 (13:54 -0400)]
Updated Danish translation from Jonas Smedegaard. Closes: #525751
Víctor Moral [Mon, 27 Apr 2009 08:18:58 +0000 (10:18 +0200)]
upated spanish translation
TimBosse [Mon, 27 Apr 2009 14:12:22 +0000 (10:12 -0400)]
removed
TimBosse [Mon, 27 Apr 2009 03:58:47 +0000 (23:58 -0400)]
TimBosse [Mon, 27 Apr 2009 03:51:30 +0000 (23:51 -0400)]
TimBosse [Mon, 27 Apr 2009 03:50:08 +0000 (23:50 -0400)]
http://jmtd.net/ [Sun, 26 Apr 2009 21:08:10 +0000 (17:08 -0400)]
htmlscrubber?
simonraven [Sun, 26 Apr 2009 20:17:41 +0000 (16:17 -0400)]
http://stefano.zacchiroli.myopenid.com/ [Sun, 26 Apr 2009 17:50:33 +0000 (13:50 -0400)]
simonraven [Sat, 25 Apr 2009 19:57:31 +0000 (15:57 -0400)]
Jon Dowland [Fri, 24 Apr 2009 13:44:28 +0000 (14:44 +0100)]
add a ' ' to prevent autosmiley eating a )
Jon Dowland [Fri, 24 Apr 2009 13:41:25 +0000 (14:41 +0100)]
another backlinks issue
Jon Dowland [Fri, 24 Apr 2009 13:40:07 +0000 (14:40 +0100)]
backlinks issue
Jon Dowland [Fri, 24 Apr 2009 13:34:32 +0000 (14:34 +0100)]
interactive todo lists todo item
Jon Dowland [Fri, 24 Apr 2009 13:26:45 +0000 (14:26 +0100)]
new todo item: more flexible inline postform
NicolasLimare [Fri, 24 Apr 2009 09:48:03 +0000 (05:48 -0400)]
Joey Hess [Thu, 23 Apr 2009 20:40:45 +0000 (16:40 -0400)]
simplifiy
Joey Hess [Thu, 23 Apr 2009 20:35:56 +0000 (16:35 -0400)]
Revert "pagespec_match_list * optimisation"
This reverts commit
2f96c49bd1826ecb213ae025ad456a714aa04863.
I forgot about internal pages. We don't want * matching them!
I left the optimisation in pagecount, where it used to live.
Internal pages probably don't matter when they're just being
counted.
Joey Hess [Thu, 23 Apr 2009 20:26:54 +0000 (16:26 -0400)]
avoid using pagespec_match_list here
I forgot to check if it was called from preprocess, and it is
not; it's called by a format hook. If an error is thrown from
a format hook, wiki build fails, so we don't want that.
Joey Hess [Thu, 23 Apr 2009 20:23:52 +0000 (16:23 -0400)]
simplify
Joey Hess [Thu, 23 Apr 2009 20:20:18 +0000 (16:20 -0400)]
pagespec_match_list * optimisation
Add an optimisation for the semi-common case of a "*" pagespec. Can
avoid doing any real processing in this case.
Joey Hess [Thu, 23 Apr 2009 20:14:35 +0000 (16:14 -0400)]
formatting