ikiwiki
15 years agosome initial instructions for publishing wikis on github
Joey Hess [Mon, 29 Dec 2008 19:58:54 +0000 (14:58 -0500)] 
some initial instructions for publishing wikis on github

15 years ago(no commit message)
http://blog.mithis.net/ [Mon, 29 Dec 2008 07:01:49 +0000 (02:01 -0500)] 

15 years ago(no commit message)
http://blog.mithis.net/ [Mon, 29 Dec 2008 06:26:34 +0000 (01:26 -0500)] 

15 years ago1st comment spam
Joey Hess [Mon, 29 Dec 2008 03:31:22 +0000 (22:31 -0500)] 
1st comment spam

15 years agoformatting
Joey Hess [Mon, 29 Dec 2008 03:23:15 +0000 (22:23 -0500)] 
formatting

15 years agocomments: Add cache avoidance.
Joey Hess [Mon, 29 Dec 2008 03:20:22 +0000 (22:20 -0500)] 
comments: Add cache avoidance.

This got lost when we added the jump-to-comment anchor.

15 years agoclarify cgiurl setting
Joey Hess [Mon, 29 Dec 2008 03:03:34 +0000 (22:03 -0500)] 
clarify cgiurl setting

15 years agoReplace blank OpenID placeholder logo with an unofficial OpenID logo developed by...
Joey Hess [Sun, 28 Dec 2008 21:19:47 +0000 (16:19 -0500)] 
Replace blank OpenID placeholder logo with an unofficial OpenID logo developed by Anna Hess. The official logo does not seem destined to be free.

15 years agoMerge branch 'master' into next
Joey Hess [Sun, 28 Dec 2008 20:12:11 +0000 (15:12 -0500)] 
Merge branch 'master' into next

Conflicts:

debian/changelog
po/ikiwiki.pot

15 years agoadd news item for ikiwiki 2.72
Joey Hess [Sun, 28 Dec 2008 20:05:33 +0000 (15:05 -0500)] 
add news item for ikiwiki 2.72

15 years agoreleasing version 2.72
Joey Hess [Sun, 28 Dec 2008 20:05:05 +0000 (15:05 -0500)] 
releasing version 2.72

15 years agotypo
Joey Hess [Sat, 27 Dec 2008 02:45:12 +0000 (21:45 -0500)] 
typo

15 years agoMerge branch 'master' into next
Joey Hess [Fri, 26 Dec 2008 21:11:13 +0000 (16:11 -0500)] 
Merge branch 'master' into next

15 years agoinline: Run format hook first
Joey Hess [Fri, 26 Dec 2008 21:08:33 +0000 (16:08 -0500)] 
inline: Run format hook first

inline has a format hook that is an optimisation hack. Until this hook
runs, the inlined content is not present on the page. This can prevent
other format hooks, that process that content, from acting on inlined
content. In bug ##509710, we discovered this happened commonly for the
embed plugin, but it could in theory happen for many other plugins (color,
cutpaste, etc) that use format to fill in special html after sanitization.

The ordering was essentially random (hash key order). That's kinda a good
thing, because hooks should be independent of other hooks and able to run
in any order. But for things like inline, that just doesn't work.

To fix the immediate problem, let's make hooks able to be registered as
running "first". There was already the ability to make them run "last".

Now, this simple first/middle/last ordering is obviously not going to work
if a lot of things need to run first, or last, since then we'll be back to
being unable to specify ordering inside those sets. But before worrying about
that too much, and considering dependency ordering, etc, observe how few
plugins use last ordering: Exactly one needs it. And, so far, exactly one
needs first ordering. So for now, KISS.

Another implementation note: I could have sorted the plugins with
first/last/middle as the primary key, and plugin name secondary, to get a
guaranteed stable order. Instead, I chose to preserve hash order. Two
opposing things pulled me toward that decision:

1. Since has order is randomish, it will ensure that no accidental
   ordering assumptions are made.
2. Assume for a minute that ordering matters a lot more than expected.
   Drastically changing the order a particular configuration uses could
   result in a lot of subtle bugs cropping up. (I hope this assumption is
   false, partly due to #1, but can't rule it out.)

15 years agoupdate
Joey Hess [Fri, 26 Dec 2008 20:29:04 +0000 (15:29 -0500)] 
update

15 years agodeprecate embed plugin too
Joey Hess [Fri, 26 Dec 2008 20:27:49 +0000 (15:27 -0500)] 
deprecate embed plugin too

I see that this plugin's lists of safe content are already well out of
date, and htmlscrubber_skip offers a non whitelist based approach, so let's
deprecate this plugin for 3.0.

15 years agoadd link to untrusted git push
Joey Hess [Fri, 26 Dec 2008 20:06:00 +0000 (15:06 -0500)] 
add link to untrusted git push

15 years agoMerge branch 'master' into next
Joey Hess [Fri, 26 Dec 2008 19:07:25 +0000 (14:07 -0500)] 
Merge branch 'master' into next

15 years agocomments: Deal with users entering unqualified or partial urls.
Joey Hess [Fri, 26 Dec 2008 19:07:19 +0000 (14:07 -0500)] 
comments: Deal with users entering unqualified or partial urls.

People seem to be able to expect to enter www.foo.com and get away with it.
The resulting my.wiki/www.foo.com link was not ideal.

To fix it, use URI::Heuristic to expand such things into a real url. It
even looks up hostnames in the DNS if necessary.

15 years agoMerge branch 'master' into next
Joey Hess [Thu, 25 Dec 2008 21:36:16 +0000 (16:36 -0500)] 
Merge branch 'master' into next

Conflicts:

IkiWiki/Plugin/googlecalendar.pm

15 years agogooglecalendar: Add runtime deprecation warning.
Joey Hess [Thu, 25 Dec 2008 21:31:58 +0000 (16:31 -0500)] 
googlecalendar: Add runtime deprecation warning.

15 years agomore 3.0 docs, changelog
Joey Hess [Thu, 25 Dec 2008 00:55:43 +0000 (19:55 -0500)] 
more 3.0 docs, changelog

15 years agomake ikiwiki-transition prefix_directives take a setup file
Joey Hess [Thu, 25 Dec 2008 00:43:07 +0000 (19:43 -0500)] 
make ikiwiki-transition prefix_directives take a setup file

This is easier to remeber, and less error-prone than passing it all the
pages in the wiki.

15 years agoremove top-level directive page from basewiki
Joey Hess [Wed, 24 Dec 2008 21:29:31 +0000 (16:29 -0500)] 
remove top-level directive page from basewiki

15 years agoremove deprecated googlecalendar plugin
Joey Hess [Wed, 24 Dec 2008 21:22:35 +0000 (16:22 -0500)] 
remove deprecated googlecalendar plugin

15 years agoremove deprecated admin prefs
Joey Hess [Wed, 24 Dec 2008 21:16:03 +0000 (16:16 -0500)] 
remove deprecated admin prefs

A new ikiwiki-transition moveprefs subcommand can pull the old data out of
the userdb and inject it into the setup file.

Note that it leaves the old values behind in the userdb too. I did this
because I didn't want to lose data if it fails writing the setup file for
some reason, and the old data in the userdb will only use a small amount of
space. Running the command multiple times will mostly not change anything.

15 years agotypo
Joey Hess [Wed, 24 Dec 2008 20:26:50 +0000 (15:26 -0500)] 
typo

15 years agoclose
Joey Hess [Wed, 24 Dec 2008 01:08:01 +0000 (20:08 -0500)] 
close

15 years agocamelcase: Add camelcase_ignore setting.
Joey Hess [Wed, 24 Dec 2008 00:11:03 +0000 (19:11 -0500)] 
camelcase: Add camelcase_ignore setting.

15 years ago(no commit message)
http://puck.openid.org/ [Tue, 23 Dec 2008 23:05:38 +0000 (18:05 -0500)] 

15 years ago(no commit message)
http://puck.openid.org/ [Tue, 23 Dec 2008 22:48:05 +0000 (17:48 -0500)] 

15 years agoupdate
Joey Hess [Tue, 23 Dec 2008 22:36:57 +0000 (17:36 -0500)] 
update

15 years agoMerge branch 'master' into next
Joey Hess [Tue, 23 Dec 2008 22:22:57 +0000 (17:22 -0500)] 
Merge branch 'master' into next

Conflicts:

IkiWiki.pm

15 years agohack to avoid globlist deprecaton message false positive
Joey Hess [Tue, 23 Dec 2008 22:19:27 +0000 (17:19 -0500)] 
hack to avoid globlist deprecaton message false positive

15 years agoupdate
Joey Hess [Tue, 23 Dec 2008 22:14:47 +0000 (17:14 -0500)] 
update

15 years agoAdd deprecation warning for GlobLists, which will stop working in 3.0.
Joey Hess [Tue, 23 Dec 2008 22:13:57 +0000 (17:13 -0500)] 
Add deprecation warning for GlobLists, which will stop working in 3.0.

15 years agoremove globlist support
Joey Hess [Tue, 23 Dec 2008 22:11:04 +0000 (17:11 -0500)] 
remove globlist support

No transition code implemented, but I will probably make a 2.x release that
warns about found globlists.

15 years agofix to use prefix directives
Joey Hess [Tue, 23 Dec 2008 21:56:56 +0000 (16:56 -0500)] 
fix to use prefix directives

15 years agofix to use prefix directives
Joey Hess [Tue, 23 Dec 2008 21:55:33 +0000 (16:55 -0500)] 
fix to use prefix directives

15 years agoupdate
Joey Hess [Tue, 23 Dec 2008 21:52:46 +0000 (16:52 -0500)] 
update

15 years agofinalise version 3.00 of the plugin api
Joey Hess [Tue, 23 Dec 2008 21:34:19 +0000 (16:34 -0500)] 
finalise version 3.00 of the plugin api

15 years agoupdate
Joey Hess [Tue, 23 Dec 2008 21:29:31 +0000 (16:29 -0500)] 
update

15 years agoMerge branch 'master' into next
Joey Hess [Tue, 23 Dec 2008 21:27:02 +0000 (16:27 -0500)] 
Merge branch 'master' into next

15 years agofix a few directives using the old syntax
Joey Hess [Tue, 23 Dec 2008 21:25:52 +0000 (16:25 -0500)] 
fix a few directives using the old syntax

I'm turning on prefix_directives for the live wiki now.

15 years agoenable prefix_directives by default
Joey Hess [Tue, 23 Dec 2008 21:24:43 +0000 (16:24 -0500)] 
enable prefix_directives by default

15 years agobeginning docs for 3.0
Joey Hess [Tue, 23 Dec 2008 21:20:37 +0000 (16:20 -0500)] 
beginning docs for 3.0

15 years agoenable aggregate_internal by default
Joey Hess [Tue, 23 Dec 2008 21:08:21 +0000 (16:08 -0500)] 
enable aggregate_internal by default

15 years agoresponse
Joey Hess [Tue, 23 Dec 2008 18:27:16 +0000 (13:27 -0500)] 
response

15 years agofix popcon graph link
Joey Hess [Tue, 23 Dec 2008 18:19:47 +0000 (13:19 -0500)] 
fix popcon graph link

15 years agoAny other schools?
http://hendry.iki.fi/ [Tue, 23 Dec 2008 14:29:02 +0000 (09:29 -0500)] 
Any other schools?

15 years agopo: make the dev timing clearer
intrigeri [Mon, 22 Dec 2008 23:24:48 +0000 (00:24 +0100)] 
po: make the dev timing clearer

15 years agohttpauth_feature_parity_with_passwordauth: a bit more thinking
intrigeri [Mon, 22 Dec 2008 23:13:12 +0000 (00:13 +0100)] 
httpauth_feature_parity_with_passwordauth: a bit more thinking

Signed-off-by: intrigeri <intrigeri@boum.org>
15 years ago(no commit message)
http://puck.openid.org/ [Tue, 23 Dec 2008 04:14:15 +0000 (23:14 -0500)] 

15 years agomerge recentchanges comments fix
Joey Hess [Tue, 23 Dec 2008 00:04:02 +0000 (19:04 -0500)] 
merge recentchanges comments fix

15 years agoMerge commit 'smcv/recentchanges'
Joey Hess [Tue, 23 Dec 2008 00:02:03 +0000 (19:02 -0500)] 
Merge commit 'smcv/recentchanges'

15 years agoMerge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Tue, 23 Dec 2008 00:00:38 +0000 (19:00 -0500)] 
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info

15 years agoreference my recentchanges branch
http://smcv.pseudorandom.co.uk/ [Mon, 22 Dec 2008 23:09:15 +0000 (18:09 -0500)] 
reference my recentchanges branch

15 years agorecentchanges_link CGI: If the linked page is internal, use its permalink
Simon McVittie [Mon, 22 Dec 2008 23:02:08 +0000 (23:02 +0000)] 
recentchanges_link CGI: If the linked page is internal, use its permalink

This fixes a bug, that comments appear in recentchanges as broken links.

15 years agoupdate
Joey Hess [Mon, 22 Dec 2008 21:41:29 +0000 (16:41 -0500)] 
update

15 years agoadd news item for ikiwiki 2.71
Joey Hess [Mon, 22 Dec 2008 05:03:15 +0000 (00:03 -0500)] 
add news item for ikiwiki 2.71

15 years agounify pagespecs
Joey Hess [Sun, 21 Dec 2008 21:50:50 +0000 (16:50 -0500)] 
unify pagespecs

15 years agofix links
Joey Hess [Sun, 21 Dec 2008 21:48:15 +0000 (16:48 -0500)] 
fix links

15 years agoformatting
Joey Hess [Sun, 21 Dec 2008 21:45:59 +0000 (16:45 -0500)] 
formatting

15 years agomention comments plugin
Joey Hess [Sun, 21 Dec 2008 21:44:02 +0000 (16:44 -0500)] 
mention comments plugin

15 years agoavoid an uninitialized value warning
Joey Hess [Sun, 21 Dec 2008 18:46:00 +0000 (13:46 -0500)] 
avoid an uninitialized value warning

15 years agoopenid branch merged
Joey Hess [Sun, 21 Dec 2008 18:14:31 +0000 (13:14 -0500)] 
openid branch merged

15 years agoMerge commit 'smcv/openid'
Joey Hess [Sun, 21 Dec 2008 18:13:28 +0000 (13:13 -0500)] 
Merge commit 'smcv/openid'

15 years agomore reorg
Joey Hess [Sun, 21 Dec 2008 18:08:26 +0000 (13:08 -0500)] 
more reorg

15 years agoclose merged bugs
Joey Hess [Sun, 21 Dec 2008 18:00:03 +0000 (13:00 -0500)] 
close merged bugs

15 years agoadd another test
Joey Hess [Sun, 21 Dec 2008 17:59:11 +0000 (12:59 -0500)] 
add another test

15 years agoMerge commit 'smcv/comments'
Joey Hess [Sun, 21 Dec 2008 17:50:30 +0000 (12:50 -0500)] 
Merge commit 'smcv/comments'

15 years agoMerge branch 'comments'
Joey Hess [Sun, 21 Dec 2008 17:48:14 +0000 (12:48 -0500)] 
Merge branch 'comments'

15 years agoAnother fixed bug in beautify_urlpath
http://smcv.pseudorandom.co.uk/ [Sun, 21 Dec 2008 17:25:55 +0000 (12:25 -0500)] 
Another fixed bug in beautify_urlpath

15 years agotrivial bug with patch
http://smcv.pseudorandom.co.uk/ [Sun, 21 Dec 2008 17:23:34 +0000 (12:23 -0500)] 
trivial bug with patch

15 years agoAnother comments improvement
Simon McVittie [Sun, 21 Dec 2008 17:18:43 +0000 (17:18 +0000)] 
Another comments improvement

15 years agorssitem.tmpl: include comments URL (HTML only)
Simon McVittie [Sun, 21 Dec 2008 17:16:24 +0000 (17:16 +0000)] 
rssitem.tmpl: include comments URL (HTML only)

15 years agoatomitem.tmpl: include comments URLs (HTML and Atom versions)
Simon McVittie [Sun, 21 Dec 2008 17:16:12 +0000 (17:16 +0000)] 
atomitem.tmpl: include comments URLs (HTML and Atom versions)

15 years agocomments: substitute commentsurl and atomcommentsurl for use in feeds
Simon McVittie [Sun, 21 Dec 2008 17:15:49 +0000 (17:15 +0000)] 
comments: substitute commentsurl and atomcommentsurl for use in feeds

15 years agoMention a patch to improve OpenID display
http://smcv.pseudorandom.co.uk/ [Sun, 21 Dec 2008 16:43:43 +0000 (11:43 -0500)] 
Mention a patch to improve OpenID display

15 years agoAdd a regression test for &openiduser
Simon McVittie [Sun, 21 Dec 2008 16:37:20 +0000 (16:37 +0000)] 
Add a regression test for &openiduser

15 years agoopenid: in &openiduser, allow subdirectory-style providers to end with '/'
Simon McVittie [Sun, 21 Dec 2008 16:35:02 +0000 (16:35 +0000)] 
openid: in &openiduser, allow subdirectory-style providers to end with '/'

This improves the display of OpenIDs like 'http://id.mayfirst.org/jamie/'
(taking an example from the IkiWiki commit log).

15 years agoopenid: in &openiduser, let domain-style providers have arbitrarily many subdomains
Simon McVittie [Sun, 21 Dec 2008 16:32:44 +0000 (16:32 +0000)] 
openid: in &openiduser, let domain-style providers have arbitrarily many subdomains

This leads to better display for OpenIDs like smcv.pseudorandom.co.uk
and thm.id.fedoraproject.org (to take a couple of examples from the
IkiWiki commit history).

15 years agoRecord another couple of pending bugfixes
Simon McVittie [Sun, 21 Dec 2008 15:39:40 +0000 (15:39 +0000)] 
Record another couple of pending bugfixes

15 years agobeautify_urlpath: add a regression test
Simon McVittie [Sun, 21 Dec 2008 15:24:53 +0000 (15:24 +0000)] 
beautify_urlpath: add a regression test

15 years agobeautify_urlpath: if path already starts with ./, don't add another ./
Simon McVittie [Sun, 21 Dec 2008 15:24:42 +0000 (15:24 +0000)] 
beautify_urlpath: if path already starts with ./, don't add another ./

15 years agobeautify_urlpath: add ./ before checking for /index.html
Simon McVittie [Sun, 21 Dec 2008 15:23:59 +0000 (15:23 +0000)] 
beautify_urlpath: add ./ before checking for /index.html

This fixes a bug: when a page links to its own #comments anchor you would
get a link like "index.html#comments" rather than "./#comments".

15 years agocomments: run pagetemplate hooks
Simon McVittie [Sun, 21 Dec 2008 15:08:14 +0000 (15:08 +0000)] 
comments: run pagetemplate hooks

This fixes the bug that comments are always said to be from an anonymous
user at an unknown IP address.

15 years agocomments: linkify and preprocess preview with correct 'page' param
Simon McVittie [Sun, 21 Dec 2008 15:07:36 +0000 (15:07 +0000)] 
comments: linkify and preprocess preview with correct 'page' param

15 years agoMerge commit 'origin/comments' into comments-joey
Simon McVittie [Sun, 21 Dec 2008 10:17:45 +0000 (10:17 +0000)] 
Merge commit 'origin/comments' into comments-joey

15 years agotodo/comments: Properly escape inline HTML
Simon McVittie [Sun, 21 Dec 2008 10:16:58 +0000 (10:16 +0000)] 
todo/comments: Properly escape inline HTML

15 years agotodo/comments: reorganise by status
Simon McVittie [Sun, 21 Dec 2008 10:11:48 +0000 (10:11 +0000)] 
todo/comments: reorganise by status

15 years agocomments: note fixed things and recommend merging origin/comments
Simon McVittie [Sun, 21 Dec 2008 10:08:53 +0000 (10:08 +0000)] 
comments: note fixed things and recommend merging origin/comments

15 years agofix markdown
http://smcv.pseudorandom.co.uk/ [Sun, 21 Dec 2008 09:31:49 +0000 (04:31 -0500)] 
fix markdown

15 years agometa: Process meta date during scan pass so that the date will always affect sorting...
Joey Hess [Sun, 21 Dec 2008 06:52:08 +0000 (01:52 -0500)] 
meta: Process meta date during scan pass so that the date will always affect sorting in inlines.

15 years agoanalysis
Joey Hess [Sun, 21 Dec 2008 06:41:00 +0000 (01:41 -0500)] 
analysis

15 years agocomment layout change
Joey Hess [Sun, 21 Dec 2008 06:04:19 +0000 (01:04 -0500)] 
comment layout change

I saw a layout similar to this on blogger, and I sorta like it

The dash avoids parens sitting next to each other in some cases.

15 years agoMerge branch 'master' into comments
Joey Hess [Sun, 21 Dec 2008 06:04:03 +0000 (01:04 -0500)] 
Merge branch 'master' into comments

15 years agoResponse; added shell code and html formating to reproduction steps
http://dtrt.org/ [Sun, 21 Dec 2008 03:28:20 +0000 (22:28 -0500)] 
Response; added shell code and html formating to reproduction steps

15 years agoavoid storing transient state in pagestate
Joey Hess [Sun, 21 Dec 2008 01:55:38 +0000 (20:55 -0500)] 
avoid storing transient state in pagestate

None of the comment state needs to be stored through the a later run of
ikiwiki, so move it all from pagestate to a more transient storage.

This is assuming that we'll never want to add pagespecs to search against
the comment state. Pagespecs like author() are why the meta plugin does
store its meta data in pagestate -- the data can be needed later to match
against.

15 years agoresponse
Joey Hess [Sun, 21 Dec 2008 01:27:42 +0000 (20:27 -0500)] 
response