Joey Hess
0f83e169e0
close as dup
2008-06-15 15:35:09 -04:00
Joey Hess
878e74238e
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
2008-06-14 11:39:34 -04:00
Joey Hess
5e1b31fad6
web commit by http://telemachos.myopenid.com/
2008-06-14 09:25:30 -04:00
Joey Hess
751706b7a5
response
2008-06-13 16:42:06 -04:00
Joey Hess
aad18ffc51
web commit by http://ptecza.myopenid.com/ : * Thanks and question about Xapian
2008-06-13 16:02:47 -04:00
Joey Hess
5807f1de04
fix two build bugs
...
* ikiwiki-mass-rebuild: Make group list comparison more robust.
* search: Work around xapian bug #486138 by only stemming locales
in a whitelist.
2008-06-13 13:05:44 -04:00
Joey Hess
340f219818
response
2008-06-13 13:04:59 -04:00
Joey Hess
eab909095b
response
2008-06-13 12:26:59 -04:00
Joey Hess
6fe6857f7e
web commit by http://alcopop.org/me/openid/ : maybe for some future backwards-compatibility killing release?
2008-06-13 11:49:22 -04:00
Joey Hess
cdd48716be
web commit by http://ptecza.myopenid.com/ : * Bug report
2008-06-13 10:41:25 -04:00
Joey Hess
d59b565b53
web commit by buo: libdir does have an effect
2008-06-13 10:34:55 -04:00
Joey Hess
332e0b4e3c
question
2008-06-12 14:14:07 -04:00
Joey Hess
a65dd073cf
this problem makes less sense the more information I get
2008-06-12 14:10:24 -04:00
Joey Hess
8afa1e2304
web commit by http://telemachos.myopenid.com/
2008-06-11 10:09:52 -04:00
Joey Hess
3d4859262d
web commit by http://telemachos.myopenid.com/
2008-06-11 10:08:35 -04:00
Joey Hess
fc79199ccd
response
2008-06-10 14:35:52 -04:00
Joey Hess
3b82819049
web commit by buo: strace run
2008-06-10 14:31:03 -04:00
Joey Hess
e6a6893117
followup
2008-06-10 13:55:24 -04:00
Joey Hess
c48efcf8a4
not done
2008-06-10 13:49:43 -04:00
Joey Hess
3a76a58e1e
fix link
2008-06-10 13:36:21 -04:00
Joey Hess
2fc11033f5
web commit by buo: Possible workaround
2008-06-10 09:11:42 -04:00
Joey Hess
3c4ac2727b
web commit by http://telemachos.myopenid.com/
2008-06-10 07:44:26 -04:00
Joey Hess
970e1a571e
not reproducible on unstable
2008-06-04 21:00:24 -04:00
Joey Hess
47b5417ac0
already fixed
2008-06-04 01:58:52 -04:00
Joey Hess
811c76f85e
already fixed
2008-06-04 01:57:59 -04:00
Joey Hess
7d87bf9e78
fix
2008-06-04 01:54:58 -04:00
Joey Hess
81719b40a4
closing, fixed in documentation
2008-06-04 01:54:23 -04:00
Joey Hess
95f93e6848
response
2008-06-04 01:53:49 -04:00
Joey Hess
44fde6cbff
first pass at doing xapian indexing
...
Still some TODOs to fill in.
2008-06-03 21:14:56 -04:00
Joey Hess
d370052672
use PERL
2008-06-02 12:14:09 -04:00
Joey Hess
e76c997e86
web commit by stmpeters
2008-06-02 11:37:45 -04:00
Joey Hess
99e5e6dd08
inline: The optimisation in 2.41 broke nested inlines. Detect those and avoid overoptimising.
2008-05-31 15:10:23 -04:00
Joey Hess
ff6433179e
web commit by http://willthompson.co.uk/ : file a bug about nested inlines failing
2008-05-31 13:51:50 -04:00
Joey Hess
eb288969b5
fix link
2008-05-30 18:31:14 -04:00
Joey Hess
ad5d49f25a
fix links
2008-05-30 18:30:28 -04:00
Joey Hess
22879eba60
fix link
2008-05-30 18:29:40 -04:00
Joey Hess
d5a2fc9334
fix link
2008-05-30 18:29:04 -04:00
Joey Hess
f543303bf0
web commit by http://liw.fi/ : uuml html entity in feeds confuses ikiwiki when aggregating
2008-05-29 02:51:40 -04:00
Joey Hess
8d5c6725e2
web commit by http://kaizer.se/wiki/contact/ : fix <pre> formatting
2008-05-23 07:36:37 -04:00
Joey Hess
88096ea9ab
web commit by http://kaizer.se/wiki/contact/ : bugs on including html (as raw as possible)
2008-05-23 07:34:41 -04:00
Joey Hess
52c570fe1b
web commit by buo: More info
2008-05-14 09:42:30 -04:00
Joey Hess
fb3d5b4800
Fixes for behavior changes in perl 5.10's CGI
...
Something has changed in CGI.pm in perl 5.10. It used to not care
if STDIN was opened using :utf8, but now it'll mis-encode utf-8 values
when used that way by ikiwiki. Now I have to binmode(STDIN) before
instantiating the CGI object.
In 57bba4dac1
, I changed from decoding
CGI::Formbuilder fields to utf-8, to decoding cgi parameters before setting
up the form object. As of perl 5.10, that approach no longer has any effect
(reason unknown). To get correctly encoded values in FormBuilder forms,
they must once again be decoded after the form is set up.
As noted in 57bba4da
, this can cause one set of problems for
formbuilder_setup hooks if decode_form_utf8 is called before the hooks, and
a different set if it's called after. To avoid both sets of problems, call
it both before and after. (Only remaining problem is the sheer ugliness and
inefficiency of that..)
I think that these changes will also work with older perl versions, but I
haven't checked.
Also, in the case of the poll plugin, the cgi parameter needs to be
explcitly decoded before it is used to handle utf-8 values. (This may have
always been broken, not sure if it's related to perl 5.10 or not.)
2008-05-12 20:44:22 -04:00
Joey Hess
adb5d92ed7
not just a poll plugin problem
2008-05-12 17:09:40 -04:00
Joey Hess
bafb2d7b81
web commit by http://liw.fi/
2008-05-12 16:26:38 -04:00
Joey Hess
21cd34106d
response
2008-05-12 14:10:17 -04:00
Joey Hess
e34011afcc
web commit by buo: Response
2008-05-09 16:46:40 -04:00
Joey Hess
0168cc3c8b
response
2008-05-08 15:53:48 -04:00
Joey Hess
879f3a9403
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
2008-05-08 15:51:41 -04:00
Joey Hess
b8d81b7b7f
amazon s3 index file improvements
...
Turns out duplicate index files do not need to be stored when usedirs is in
use, just when it's not. Ikiwiki is quite consistent about using page/ when
usedirs is in use. (The only exception is the search plugin, which needs
fixing.)
This also includes significant code cleanup, removal of a incorrect special
case for empty files, and addition of a workaround for a bug in the amazon
perl module.
2008-05-08 15:51:09 -04:00
Joey Hess
2bf34f1733
web commit by buo: re: question
2008-05-08 14:45:57 -04:00
Joey Hess
ca33ec2b9c
question
2008-05-08 14:12:44 -04:00
Joey Hess
6bba9b0e4d
web commit by http://madduck.net/ : closing
2008-05-08 10:59:38 -04:00
Joey Hess
a3e1783596
web commit by buo: Removing previous installation fixes compile failure.
2008-05-08 10:29:48 -04:00
Joey Hess
3eb3ff6208
cannot reproduce
2008-05-07 17:10:43 -04:00
Joey Hess
2b5d12f658
web commit by buo: bug: 2.45 fails to compile
2008-05-07 14:47:30 -04:00
Joey Hess
880d098dab
template change documentation
2008-05-06 14:33:03 -04:00
Joey Hess
cf2652c139
web commit by JeremyReed: why if?
2008-04-28 17:54:32 -04:00
Joey Hess
72cedc59e9
fix formatting
2008-04-28 15:47:11 -04:00
Joey Hess
6412cbfe52
idea
2008-04-28 15:43:06 -04:00
Joey Hess
dbb5d11196
Deal with different paths to perl when removing -T flag.
2008-04-28 15:37:17 -04:00
Joey Hess
f3eda82c08
web commit by JeremyReed: reply about perl version in filename too.
2008-04-28 14:15:38 -04:00
Joey Hess
0d80b13738
web commit by JeremyReed: reply
2008-04-28 14:11:52 -04:00
Joey Hess
453bdeaf55
response
2008-04-28 13:46:50 -04:00
Joey Hess
9f02ee8634
Add PREFIX/bin to the hardcoded PATH within ikiwiki.
2008-04-28 13:44:37 -04:00
Joey Hess
aa4f9fe232
response
2008-04-28 13:38:53 -04:00
Joey Hess
74d98c69b1
web commit by JeremyReed: found problem
2008-04-28 12:47:29 -04:00
Joey Hess
bc9a448c58
web commit by JeremyReed: more info. sid is defined in prefs just not edit
2008-04-28 12:32:54 -04:00
Joey Hess
3b16d472c0
web commit by JeremyReed: sid not in form.
2008-04-28 12:09:47 -04:00
Joey Hess
e56dd17bcf
web commit by JeremyReed: Can't exec "ikiwiki-transition"
2008-04-28 11:44:01 -04:00
Joey Hess
4e0f75a75f
web commit by JeremyReed: hard-coded perl path
2008-04-28 11:07:05 -04:00
Joey Hess
a64bc76fbe
response
2008-04-27 14:31:35 -04:00
Joey Hess
17c276dea5
web commit by JeremyReed: about taint and -T build failure
2008-04-26 20:54:08 -04:00
Joey Hess
143c8770d1
web commit by http://sabr.myopenid.com/
2008-04-17 08:40:07 -04:00
Joey Hess
c8097457a7
web commit by http://sabr.myopenid.com/
2008-04-13 12:52:22 -04:00
Joey Hess
40c03af378
web commit by http://sabr.myopenid.com/
2008-04-13 12:08:44 -04:00
Joey Hess
f4797af297
web commit by http://sabr.myopenid.com/
2008-04-12 22:53:53 -04:00
Joey Hess
50e06351ca
web commit by http://sabr.myopenid.com/
2008-04-12 22:46:00 -04:00
Joey Hess
78e740f643
web commit by http://sabr.myopenid.com/
2008-04-12 22:23:55 -04:00
Joey Hess
3b7b057e01
patch, thoughts
2008-04-12 17:19:32 -04:00
Joey Hess
57035d610e
web commit by http://sabr.myopenid.com/
2008-04-12 13:21:11 -04:00
Joey Hess
26c96e1f10
web commit by http://sabr.myopenid.com/
2008-04-10 20:18:20 -04:00
Joey Hess
2718fc2b25
response
2008-04-10 19:54:38 -04:00
Joey Hess
92e39d7391
cannot reproduce
2008-04-10 19:32:43 -04:00
Joey Hess
2beb279806
Give the full path to the hyperestraier helpfile in estseek.conf.
2008-04-10 17:50:43 -04:00
Joey Hess
e4395a567b
Fix broken rcs_update for bzr. (Scott Bronson)
2008-04-10 17:41:43 -04:00
Joey Hess
e1d456a86f
Fix missing import of escapeHTML in userlink. (Scott Bronson)
2008-04-10 17:39:51 -04:00
Joey Hess
ab0e0e807a
perl dumping core is not an ikiwiki bug, sorry
2008-04-10 17:09:58 -04:00
Joey Hess
50d653ad11
web commit by http://sabr.myopenid.com/
2008-04-09 21:33:30 -04:00
Joey Hess
109abb1f2b
web commit by http://sabr.myopenid.com/
2008-04-09 02:43:19 -04:00
Joey Hess
1080635372
web commit by http://sabr.myopenid.com/
2008-04-09 02:42:29 -04:00
Joey Hess
9e6b7ba79a
web commit by http://sabr.myopenid.com/
2008-04-08 14:37:31 -04:00
Joey Hess
8ea8f21c20
web commit by http://sabr.myopenid.com/
2008-04-08 14:33:13 -04:00
Joey Hess
16338ed771
web commit by http://sabr.myopenid.com/
2008-04-08 13:18:35 -04:00
Joey Hess
7c7dba8a71
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
2008-04-08 12:52:48 -04:00
Joey Hess
3d8e767c36
web commit by http://xayk.net/
...
(cherry picked from commit 146b3d9ac2754112e7c6c63f7c2e783ac2bf4dbe)
2008-04-08 12:51:46 -04:00
Joey Hess
c381ec666b
web commit by http://sabr.myopenid.com/
...
(cherry picked from commit 8e4a0640c591df95810fe94ab62521030134823b)
2008-04-08 12:50:55 -04:00
Joey Hess
af3367eb4e
web commit by cjb: Trivial syntax bug.
2008-04-08 09:49:37 -04:00
Joey Hess
48bf7dc458
web commit by buo: locales and mercurial
2008-03-25 16:11:34 -04:00
Joey Hess
44824dba1b
smiley: Detect smileys inside pre and tags, and do not expand.
2008-03-21 02:43:20 -04:00
Joey Hess
628467125c
Close meta tag for redir properly.
2008-03-21 00:24:06 -04:00
Joey Hess
f1fb8eac6a
web commit by http://brian.may.myopenid.com/ : change.tmpl and BASEURL
2008-03-20 22:51:09 -04:00
Joey Hess
8e2f7ec70f
web commit by http://jblevins.org/ : Bug report update
2008-03-20 16:26:51 -04:00
Joey Hess
4f6728a685
web commit by http://jblevins.org/ : Patch for unclosed refresh meta tag.
2008-03-19 15:00:15 -04:00
Joey Hess
a98f624fc3
response
2008-03-17 22:33:21 -04:00
Joey Hess
52e16d4ec9
* Record new pages in %pagesources temporarily when previewing so that
...
things that need to know the page source or type can query it from there.
Fixes previewing of tables when creating a new page.
2008-03-17 21:28:31 -04:00
Joey Hess
bd6459b852
web commit by http://madduck.net/
2008-03-17 18:09:33 -04:00
Joey Hess
a2463a812b
response
2008-03-17 14:07:38 -04:00
Joey Hess
848dc81ba3
web commit by http://madduck.net/
2008-03-17 13:27:43 -04:00
Joey Hess
6ce7454cc3
analysis, markdown bug
2008-03-17 13:21:41 -04:00
Joey Hess
52d9f8e9f3
* Correct bug in encoding of %pagestate keys, fixes edittemplate.
2008-03-17 13:08:16 -04:00
Joey Hess
62130bd7a3
web commit by http://madduck.net/
2008-03-17 12:22:38 -04:00
Joey Hess
f42169a1be
web commit by http://madduck.net/
2008-03-17 12:15:25 -04:00
Joey Hess
940bc51fec
web commit by http://madduck.net/
2008-03-17 12:13:36 -04:00
Joey Hess
361421a906
web commit by http://madduck.net/
2008-03-17 12:09:04 -04:00
Joey Hess
5258f9d0e5
web commit by http://madduck.net/
2008-03-17 12:03:06 -04:00
Joey Hess
4533f52162
web commit by http://madduck.net/ : fix links
2008-03-17 11:04:56 -04:00
Joey Hess
41090a5b03
web commit by http://madduck.net/
2008-03-17 11:03:04 -04:00
Joey Hess
cd58e6cb45
web commit by http://madduck.net/ : fix title
2008-03-17 07:03:20 -04:00
Joey Hess
fdb7be6e4c
web commit by http://madduck.net/
2008-03-17 06:53:25 -04:00
Joey Hess
a2c23d61bc
web commit by http://madduck.net/
2008-03-17 03:51:55 -04:00
Joey Hess
1a84bbcb9a
web commit by http://jblevins.org/ : A note about a related bug
2008-03-16 20:48:29 -04:00
Joey Hess
1dae7f0e41
web commit by http://jblevins.org/ : Update: unclosed redirection meta tags
2008-03-16 20:38:00 -04:00
Joey Hess
c42ff91eeb
web commit by http://jblevins.org/ : New bug report
2008-03-16 12:27:58 -04:00
Joey Hess
b9a29c3040
web commit by http://madduck.net/ : add patch
2008-03-16 07:00:57 -04:00
Joey Hess
ba480baa9e
* external: Add getargv and setargv methods to allow access to ikiwiki's
...
@ARGV.
2008-03-15 14:19:49 -04:00
Joey Hess
5a7a89ffc5
* htmltidy: Pass --markup yes, in case tidy's config file disabled it.
2008-03-15 13:58:08 -04:00
Joey Hess
e7ce86db11
* external: Fix support of XML::RPC::fault.
2008-03-15 13:49:22 -04:00
Joey Hess
b8c55c4db2
bug I found in the rst plugin
2008-03-15 13:45:10 -04:00
Joey Hess
245126ea49
web commit by http://madduck.net/
2008-03-15 10:15:00 -04:00
Joey Hess
ddab0dbfcc
web commit by http://madduck.net/
2008-03-14 05:33:48 -04:00
Joey Hess
8e05c93b4c
web commit by http://madduck.net/
2008-03-14 05:20:32 -04:00
Joey Hess
7695a48fcd
web commit by http://madduck.net/
2008-03-14 05:14:28 -04:00
Joey Hess
5a8719f4b0
web commit by XTaran: Correction: write-back -> markup
2008-03-12 22:06:55 -04:00
Joey Hess
490f4be7f0
web commit by XTaran: I'll check what exactly caused the breakage...
2008-03-12 21:44:27 -04:00
Joey Hess
862ca19eb1
truncate recentchangesdiffs after 200 lines
...
This works around a perl crasher bug, and also avoids bloating pages
with enormous diffs.
rcs_recentchanges modified to return a list in an array context.
2008-03-12 15:45:10 -04:00
Joey Hess
20f1365ce1
response
2008-03-12 14:33:38 -04:00
Joey Hess
8b9498ba73
response
2008-03-12 14:31:43 -04:00
Joey Hess
43056e68d5
move from bugs to todo
2008-03-12 13:17:43 -04:00
Joey Hess
5447cf4089
response
2008-03-12 13:06:27 -04:00
martin f. krafft
8a43597a00
Handle SimpleXMLRPCDispatcher arg count change in Py2.5
...
SimpleXMLRPCDispatcher.__init__ takes 3 arguments instead of 1 since
python 2.5, so we check for that with a hack, for I found no better way,
other than catching a TypeError exception.
Signed-off-by: martin f. krafft <madduck@madduck.net>
2008-03-12 10:46:36 -04:00
Joey Hess
972570b236
web commit by http://tove.myopenid.com/
2008-03-12 08:59:51 -04:00
Joey Hess
eee0a5c7be
web commit by http://madduck.net/
2008-03-12 08:30:06 -04:00
Joey Hess
09e69a642b
web commit by http://hendry.iki.fi/ : openid acl
2008-03-11 09:09:15 -04:00
Joey Hess
dd52e95836
web commit by http://alcopop.org/me/openid/
2008-03-11 06:20:20 -04:00
Joey Hess
cd0fa5a776
web commit by http://madduck.net/
2008-03-10 16:34:54 -04:00
Joey Hess
79a0699b92
web commit by buo: Problem solved.
2008-03-10 12:58:23 -04:00
Joey Hess
0d0cac1602
web commit by XTaran: Bug report: htmltidy has no possibilty to use an alternative config file which may other usages
2008-03-10 09:43:25 -04:00
Joey Hess
ced0e9f986
already fixed in git
2008-03-09 20:10:13 -04:00
Joey Hess
e2924778de
web commit by HenrikBrixAndersen: Add reference to patch
2008-03-09 09:32:32 -04:00
Joey Hess
02f93a69f0
web commit by http://subvert.org.uk/~bma/
2008-03-08 21:01:45 -05:00
Joey Hess
a235781b3d
request for more info
2008-03-08 13:24:29 -05:00
Joey Hess
9da8ae1cec
web commit by http://madduck.net/
2008-03-07 12:40:12 -05:00
Joey Hess
569545968a
web commit by http://madduck.net/
2008-03-07 12:37:46 -05:00
Joey Hess
90e3639281
response
2008-03-05 17:13:24 -05:00
Joey Hess
90fa2fa227
web commit by buo: escape inline directive
2008-03-05 11:36:02 -05:00
Joey Hess
5508ceaaa0
web commit by buo: blog posts not added to mercurial repo
2008-03-05 11:34:49 -05:00
Joey Hess
e7886a46c5
mark done, patch is applied
2008-02-29 22:48:50 -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
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
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
bfb8e4a6f8
web commit by http://madduck.myopenid.com/ : confirm this bug
2008-02-29 11:41:56 -05:00
Joey Hess
2cc891e518
web commit by Mathias
2008-02-26 05:18:55 -05:00
Joey Hess
2d90e4ede4
web commit by http://brian.may.myopenid.com/ : work around not solution
2008-02-25 18:16:59 -05:00
Joey Hess
5adc9830a0
web commit by http://madduck.myopenid.com/
2008-02-25 10:45:16 -05:00
Joey Hess
8b19dea41d
web commit by http://madduck.myopenid.com/
2008-02-25 10:06:50 -05:00
Joey Hess
60dc22c16d
version needed
2008-02-24 17:39:27 -05:00
Joey Hess
b045e3124a
closing with explanation
2008-02-24 17:31:18 -05:00
Joey Hess
4eabb3cb7a
* inline: When forcing urls absolute for rss feeds, skip mailto and other
...
such urls.
2008-02-24 17:07:56 -05:00
Joey Hess
8e2aae2b35
close this one
2008-02-24 17:02:29 -05:00
Joey Hess
265098501e
user configuration error
2008-02-24 17:01:37 -05:00
Joey Hess
21b55c9640
responses
2008-02-24 16:57:52 -05:00
Joey Hess
40a0b3e748
close
2008-02-24 16:50:58 -05:00
Joey Hess
d14bde197e
* Disable taint checking for all builds as people keep complaining about it,
...
and since all versions of perl seem to be hopelessly broken.
2008-02-24 15:42:43 -05:00
Joey Hess
8108178745
web commit by rdennis
2008-02-24 07:36:32 -05:00
Joey Hess
ad1639f455
web commit by JeremyReed: put on one line
2008-02-23 20:59:43 -05:00
Joey Hess
4d368bc747
web commit by JeremyReed: noticed bug running ikiwiki right after upgrading to 2.32.3
2008-02-23 20:58:30 -05:00
Joey Hess
e610460d9c
web commit by http://harningt.eharning.us/
2008-02-22 17:52:35 -05:00
Joey Hess
3af19a2428
web commit by http://madduck.myopenid.com/
2008-02-21 09:33:55 -05:00
Joey Hess
2add78ab82
web commit by http://madduck.myopenid.com/
2008-02-21 09:32:06 -05:00
Joey Hess
73b891a434
web commit by Justin: explain workaround using server rewriting.
2008-02-20 12:30:33 -05:00
Joey Hess
cf02ab0eaf
web commit by Mathias
2008-02-19 16:45:49 -05:00
Joey Hess
40a8236af4
web commit by http://madduck.myopenid.com/
2008-02-18 12:07:40 -05:00
Joey Hess
09db9e3287
web commit by lnussel
2008-02-18 03:41:48 -05:00
Joey Hess
8cb0bdcc12
web commit by Justin
2008-02-16 18:34:00 -05:00
Joey Hess
4d22a29e84
web commit by https://brian.may.myopenid.com/ : fix underscores
2008-02-16 04:23:29 -05:00
Joey Hess
4a158ce1b6
web commit by https://brian.may.myopenid.com/ : link to semi-related bug report
2008-02-16 04:22:13 -05:00
Joey Hess
9a4ba5c590
web commit by https://brian.may.myopenid.com/ : not checking ssl certificates
2008-02-16 04:19:30 -05:00
Joey Hess
15222d8725
web commit by https://brian.may.myopenid.com/ : simplify response
2008-02-16 03:37:29 -05:00
Joey Hess
a4697df3e7
web commit by https://brian.may.myopenid.com/
2008-02-15 04:10:08 -05:00
Joey Hess
8f7d7c1a00
er, what absolute links?
2008-02-14 15:46:24 -05:00
Joey Hess
841617c9ff
Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
2008-02-14 15:42:50 -05:00
Joey Hess
553136ec1f
* Preview limits the page dropdown to what's selected previously
...
(as preserving the full list across preview would be tricky). Userdirs
were still being offered as an option there, remove them.
* Fix a bug where user A created a page concurrently with user B, and
when B previewed it would redirect B to A's new page, losing B's work.
Instead, don't redirect and let conflict handling resolve it.
2008-02-14 15:42:14 -05:00
Joey Hess
85145afbd9
web commit by https://brian.may.myopenid.com/ : relative links
2008-02-14 15:40:22 -05:00
Joey Hess
8be2b60aac
* The search plugin needs to override <base> to point to the directory
...
containing ikiwiki.cgi, but this should not change the urls to the style
sheets etc. Add a new forcebareurl parameter to misctemplate to allow
it to do that.
2008-02-14 15:20:49 -05:00
Joey Hess
9192a88375
web commit by https://brian.may.myopenid.com/ : openid https certificates checked?
2008-02-14 05:05:36 -05:00
Joey Hess
a3c3786954
web commit by https://brian.may.myopenid.com/ : http proxy
2008-02-14 04:45:28 -05:00
Joey Hess
9c87cc0d13
web commit by rdennis
2008-02-14 04:41:52 -05:00
Joey Hess
31a52efc91
web commit by rdennis
2008-02-14 04:19:36 -05:00
Joey Hess
4aab5f0a73
* Generate XML RPC messages with the encoding set to utf-8 instead
...
of XML::RPC's default of us-ascii. Allows interoperation with
python's xmlrpc library, which threw invalid encoding exceptions and
caused the rst plugin to hang.
2008-02-11 00:11:49 -05:00
Joey Hess
4c0cc8e3a7
web commit by http://id.loopysoft.com/matt/
2008-02-10 21:30:27 -05:00
Joey Hess
825847af95
reply
2008-02-08 13:52:31 -05:00
Joey Hess
35547272c6
web commit by lnussel
2008-02-08 09:03:51 -05:00
Joey Hess
749c1e36d9
* monotone changes by Brian May:
...
- On commits, replace "mtn sync" bidirectional with "mtn push" single
direction. No need to pull changes when doing a commit. mtn sync
is still called in rcs_update.
- Support for viewing differences via patches using viewmtn.
2008-02-03 18:14:39 -05:00
Joey Hess
855f28e105
removing old patch that was also sent by mail
2008-02-03 17:48:30 -05:00
Joey Hess
d8d2b31692
fix broken link
2008-02-03 15:05:31 -05:00
Joey Hess
965efbb441
web commit by http://perolofsson.myopenid.com/
2008-02-02 06:59:00 -05:00
Joey Hess
d7fdd04b5a
* Removed support for sending commit notification mails. Along with it went
...
the svnrepo and notify settings, though both will be ignored if left in
setup files.
2008-01-29 00:36:58 -05:00
Joey Hess
ad6d22f237
followup
2008-01-28 18:17:31 -05:00
Joey Hess
f7b86d8177
pushing two commits in at once leads to a related problem
2008-01-28 17:55:58 -05:00
Joey Hess
1bdd9ec761
web commit by http://subvert.org.uk/~bma/ : More information.
2008-01-12 17:55:51 -05:00
Joey Hess
d028c29772
docs/changelog
2008-01-09 20:05:56 -05:00
Joey Hess
9f34404bb3
web commit by AlexandreDupas
2008-01-09 08:56:06 -05:00
Joey Hess
65909e3543
web commit by AlexandreDupas: possible answer
2008-01-09 08:53:06 -05:00
Joey Hess
2b2ff53c2f
web commit by http://madduck.myopenid.com/
2008-01-09 06:03:39 -05:00
Joey Hess
1cfb23cba2
web commit by http://subvert.org.uk/~bma/
2008-01-08 13:00:01 -05:00
Joey Hess
4c1a4402f9
* htmlscrubber: Further work around #365971 by adding tags for 'br/', 'hr/'
...
and 'p/'.
2008-01-07 18:32:50 -05:00
Joey Hess
e35eb5a418
* Add a prereq on Data::Dumper 2.11 or better, needed to dump q// objects.
2008-01-07 18:12:12 -05:00
Joey Hess
27261da09b
web commit by adb
2008-01-06 18:25:43 -05:00
Joey Hess
da41fcb1cd
web commit by http://madduck.myopenid.com/ : note about this still being a bug in ways
2008-01-06 09:03:28 -05:00
Joey Hess
fd65bf7545
web commit by tschwinge: How to do this.
2008-01-06 08:55:23 -05:00
Joey Hess
3e11f9ad94
web commit by http://madduck.myopenid.com/
2008-01-06 07:32:56 -05:00
Joey Hess
9589b7a83c
response, improve NOTAINT docs
2008-01-05 02:07:29 -05:00
Joey Hess
b81eabe8a6
response
2008-01-05 02:00:49 -05:00
Joey Hess
e0901334c9
response
2008-01-05 01:47:57 -05:00
Joey Hess
a61cf7a0d4
misc fixes so I can read this
2008-01-05 01:41:57 -05:00
Joey Hess
f9fa96ded7
web commit by adb
2008-01-05 01:01:11 -05:00
Joey Hess
f22558faed
web commit by http://weakish.int.eu.org/ : some more thought
2008-01-04 12:20:41 -05:00
Joey Hess
c9ea796b39
web commit by http://weakish.int.eu.org/ : minor
2008-01-04 04:38:18 -05:00
Joey Hess
ce3b55de42
web commit by http://weakish.int.eu.org/ : minor
2008-01-04 04:34:58 -05:00
Joey Hess
78e3f5a657
web commit by http://weakish.int.eu.org/
2008-01-04 04:33:26 -05:00
Joey Hess
c4373aa487
web commit by http://weakish.int.eu.org/
2008-01-04 04:26:50 -05:00
Joey Hess
8a021b3bdb
fixed
2008-01-01 20:12:22 -05:00
Joey Hess
0c26e5027d
web commit by tschwinge: Another UTF-8 problem.
2008-01-01 18:44:53 -05:00
Joey Hess
3e784ea8a1
* map: Fix handling of common prefix to handle the case where it's
...
in a subdirectory. Patch by Larry Clapp.
2007-12-28 17:22:17 -05:00
Joey Hess
01fb89bcd4
web commit by http://morgant.myopenid.com/
2007-12-22 10:25:15 -05:00
Joey Hess
3718bda224
web commit by http://theclapp.myopenid.com/ : fixed signature
2007-12-21 00:34:50 -05:00
Joey Hess
a54a9f2e25
web commit by http://theclapp.myopenid.com/ : create bug
2007-12-21 00:24:01 -05:00
Joey Hess
a14f396433
web commit by http://ptecza.myopenid.com/ : * Response
2007-12-18 03:29:24 -05:00
Joey Hess
67dcf175cb
* Work around perl taint checking bug #411786 , where perl sometimes randomly
...
sets the taint flag on untainted variables, by disabling taint checking
in the deb. This sucks.
2007-12-17 19:25:44 -05:00
Joey Hess
be85c0ca6d
response2
2007-12-17 18:57:36 -05:00
Joey Hess
d22caf2648
response
2007-12-17 18:51:41 -05:00
Joey Hess
bf0589f116
web commit by http://ptecza.myopenid.com/ : * Response
2007-12-17 15:38:41 -05:00
Joey Hess
c10f1a3f4c
response
2007-12-17 13:44:59 -05:00
Joey Hess
0266946af0
remove dup bug report
...
This was filed as a dup because ikiwiki refused to render it dut to a bug I just fixed.
2007-12-17 13:38:00 -05:00
Joey Hess
3b536e0067
web commit by http://ptecza.myopenid.com/ : * Update
2007-12-17 10:42:06 -05:00
Joey Hess
3d43cb1053
web commit by http://ptecza.myopenid.com/ : * Addendum
2007-12-17 05:46:29 -05:00
Joey Hess
7993cf1de1
web commit by http://ptecza.myopenid.com/ : * Bug report again
2007-12-17 05:39:09 -05:00