Joey Hess
c9df38fe33
response
2008-03-03 16:01:16 -05:00
Joey Hess
d93aaed791
* Add recentchangesdiff plugin that adds diffs to the recentchanges feeds.
...
* rcs_diff is a new function that rcs modules should implement.
* Implemented rcs_diff for git, svn, and tla (tla version untested).
Mercurial and monotone still todo.
2008-03-03 15:53:34 -05:00
Joey Hess
59379d0205
web commit by bremner: a bit rough, but hopefully someone finds it useful
2008-03-03 08:21:04 -05:00
Joey Hess
150acf68ec
web commit by bremner
2008-03-03 07:13:13 -05:00
Joey Hess
119f2e426d
web commit by bremner
2008-03-03 06:51:13 -05:00
Joey Hess
b2cd1e649e
web commit by bremner
2008-03-03 06:50:33 -05:00
Joey Hess
b3d2f7152c
web commit by tschwinge: Set the title *after* instantiating the templates.
2008-03-03 04:58:37 -05:00
Joey Hess
5ec11421d2
web commit by tschwinge: Set page title.
2008-03-03 04:54:18 -05:00
Joey Hess
89211fc60d
web commit by bremner
2008-03-03 03:05:49 -05:00
Joey Hess
598ffb7133
web commit by http://liw.iki.fi/liw/ : Document that you need to clone repository, not the actual source directory
2008-03-02 18:29:34 -05:00
Joey Hess
d451914bb4
add closure link
2008-03-02 18:11:02 -05:00
Joey Hess
18fa785bc6
Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
2008-03-02 18:09:27 -05:00
martin f. krafft
5357eeb13c
correct a typo
...
(cherry picked from commit dd64f39646133429910081b89f6e3a8d704a8602)
2008-03-02 18:04:09 -05:00
martin f. krafft
c10cfb27d1
Add robots tag to meta plugin
...
Add special handling for <meta name="robots" ...> which needs not be
scrubbed as it's harmless.
Signed-off-by: martin f. krafft <madduck@madduck.net>
(cherry picked from commit b15d0299a7f7b147e89d8a202d6cca1c21491af2)
2008-03-02 18:04:09 -05:00
Adeodato Simó
a8f08ab8e1
Make directives generated by shortcuts accept a `desc` parameter.
...
(cherry picked from commit 252da396bfa728b99af7c9bb304a7b5f3f6d94e6)
2008-03-02 18:04:09 -05:00
Joey Hess
bdb57e5833
web commit by bremner
...
(cherry picked from commit 7eeafb3ef9
)
2008-03-02 18:04:09 -05:00
Joey Hess
e1935f6114
web commit by bremner
...
(cherry picked from commit f8e4bcf7f2
)
2008-03-02 18:04:09 -05:00
Joey Hess
7eeafb3ef9
web commit by bremner
2008-03-02 02:58:55 -05:00
Joey Hess
f8e4bcf7f2
web commit by bremner
2008-03-02 02:39:05 -05:00
Joey Hess
da205c3eaf
web commit by AlexandreDupas: Question around bibtex plugin devel
2008-03-01 09:37:10 -05:00
Joey Hess
b3a7bf61d5
formatting
2008-02-29 23:26:44 -05:00
Joey Hess
b2b12275d6
add news item for ikiwiki 2.40
2008-02-29 23:23:48 -05:00
Joey Hess
c7b376377f
releasing version 2.40
2008-02-29 23:23:16 -05:00
Joey Hess
909a901424
remove link to wikitemplates
...
this page is in the basewiki, and so it should not link to pages that are not
2008-02-29 23:11:51 -05:00
Joey Hess
142afcc6ac
responses
2008-02-29 23:01:17 -05:00
Joey Hess
95b77d9c4d
add changelog entry
2008-02-29 22:54:19 -05:00
Joey Hess
e7886a46c5
mark done, patch is applied
2008-02-29 22:48:50 -05:00
Joey Hess
279db7860d
Merge branch 'master' of git://git.madduck.net/code/ikiwiki
2008-02-29 22:47:26 -05:00
Joey Hess
eb13d46e21
remove incorrect comment
2008-02-29 22:42:27 -05:00
Joey Hess
37dd9b0dc3
fix location
2008-02-29 22:41:20 -05:00
Joey Hess
cd05fffee7
web commit by http://alcopop.org/me/openid/
2008-02-29 17:41:55 -05:00
Joey Hess
383cf1b715
web commit by http://alcopop.org/me/openid/ : an example comment
2008-02-29 17:38:48 -05:00
Joey Hess
4707f556a7
web commit by http://madduck.myopenid.com/ : remove comment about relative links always using ../, which is not true
2008-02-29 13:47:48 -05:00
Joey Hess
0336d6708d
web commit by http://madduck.myopenid.com/ : close bug
2008-02-29 13:33:17 -05:00
Joey Hess
6a60c225fe
web commit by http://madduck.myopenid.com/ : add patch/git commit
2008-02-29 13:32:19 -05:00
Adeodato Simó
be0b4f603f
Allow colons in URLs after the first slash
...
A new regexp fixes this bug:
http://ikiwiki.info/bugs/No_link_for_blog_items_when_filename_contains_a_colon/
I traced this down to htmlscrubber. If disabled,
it works. If enabled, then $safe_url_regexp
determines the URL unsafe because of the colon and
hence removes the src attribute.
Digging into this, I find that RFC 3986 pretty
much discourages colons in filenames:
"""
A path segment that contains a colon character
(e.g., "this:that") cannot be used as the first
segment of a relative-path reference, as it would
be mistaken for a scheme name. Such a segment must
be preceded by a dot-segment (e.g., "./this:that")
to make a relative- path reference.
"""
on the other hand, with usedirs, any link to
another page will be prepended by ../ anyway, so
that makes them okay again.
The solution still seems not to use colons.
In any case, htmlscrubber should get a new regexp,
courtesy of dato.
I have tested and verified this.
Signed-off-by: martin f. krafft <madduck@madduck.net>
2008-02-29 19:29:44 +01:00
Joey Hess
8ebf6acd80
web commit by http://madduck.myopenid.com/ : add analysis based on rfc3986 and suggest a new regexp
2008-02-29 13:21:24 -05:00
Joey Hess
7129554701
web commit by http://alcopop.org/me/openid/ : brief biog
2008-02-29 13:06:49 -05:00
Joey Hess
74e8c5197e
web commit by http://alcopop.org/me/openid/ : potwiki
2008-02-29 13:05:12 -05:00
Joey Hess
361ce5d3a9
web commit by http://madduck.myopenid.com/ : trace this bug to htmlscrubber and $safe_url_regexp
2008-02-29 13:04:31 -05:00
Joey Hess
9323038904
web commit by http://madduck.myopenid.com/ : merge bug with colon-in-links bug
2008-02-29 13:03:16 -05:00
Joey Hess
5879c6070b
web commit by http://madduck.myopenid.com/ : add my homepage
2008-02-29 11:47:02 -05:00
Joey Hess
19621d889f
web commit by http://madduck.myopenid.com/ : add vcs-pkg and vcs-home
2008-02-29 11:46:08 -05:00
Joey Hess
bfb8e4a6f8
web commit by http://madduck.myopenid.com/ : confirm this bug
2008-02-29 11:41:56 -05:00
Joey Hess
8aff1348e6
web commit by bremner
2008-02-29 09:41:17 -05:00
Joey Hess
d583c335a8
web commit by bremner
2008-02-29 08:38:27 -05:00
Joey Hess
e3b1d8e482
web commit by bremner
2008-02-29 08:34:53 -05:00
Joey Hess
bda88930b5
web commit by bremner
2008-02-29 04:00:34 -05:00
Joey Hess
b18b97fa3c
web commit by bremner
2008-02-29 03:57:42 -05:00
Joey Hess
e83ea3f29f
web commit by bremner
2008-02-29 03:55:48 -05:00