Joey Hess
45801c34bd
recentchangesdiff: fix further breakage to the template from 3.20120725
2012-10-16 20:49:26 -04:00
Joey Hess
68933d5dc7
add news item for ikiwiki 3.20121016
2012-10-16 15:24:45 -04:00
Joey Hess
bb07dc3f21
releasing version 3.20121016
2012-10-16 15:24:18 -04:00
Joey Hess
96bfdbf1be
really fix diff display to not show both types of diff
...
12fa9c031f
porported to fix this, but failed
2012-10-16 10:59:00 -04:00
Joey Hess
361db207bf
fix bad cut and paste in diff toggle title
2012-10-16 10:35:03 -04:00
Joey Hess
c6c7e19986
Merge branch 'master' of ssh://git.ikiwiki.info
2012-10-15 13:54:22 -04:00
Joey Hess
bad3c0089a
Add back a 1em margin between archivepage divs.
...
This was lost in commit 954e2e4ef1
2012-10-15 13:53:43 -04:00
http://jmtd.net/
7a89e8c231
2012-10-15 08:55:57 -04:00
Joey Hess
c7b45548e7
clean up
2012-10-14 21:01:33 -04:00
Joey Hess
b5b3f56703
typo
2012-10-14 20:49:42 -04:00
Joey Hess
ef0c569a95
Merge branch 'master' of ssh://git.ikiwiki.info
2012-10-11 11:22:50 -04:00
Joey Hess
b1cd1c067f
add cgi_overload_message
2012-10-11 11:22:03 -04:00
PaulePanter
f5644ae9fb
forum question »creating CGI script and HTTPS«
2012-10-11 04:34:32 -04:00
Joey Hess
2eb1176216
Merge branch 'master' of ssh://git.ikiwiki.info
2012-10-10 10:45:38 -04:00
Joey Hess
0c22e0f29a
Merge branch 'master' of git://github.com/wking/ikiwiki
2012-10-10 10:43:36 -04:00
http://smcv.pseudorandom.co.uk/
70a7b08f45
Added a comment
2012-10-10 09:45:11 -04:00
W. Trevor King
18f16bbc30
proxy: add indexes to format strings
2012-10-10 08:07:33 -04:00
W. Trevor King
7da92e296b
rst: add indexes to format strings
...
For Python 2.6 compatibility. You're only allowed to omit the
positional argument specifiers in Python 2.7 and later.
2012-10-10 08:05:09 -04:00
Joey Hess
6bd8c6732e
add cgi_overload_delay tunable
...
Try to avoid a situation in which so many ikiwiki cgi wrapper programs are
running, all waiting on some long-running thing like a site rebuild, that
it prevents the web server from doing anything else. The current approach
only avoids this problem for GET requests; if multiple cgi's run GETs on a
site at the same time, one will display a "please wait" page for a
configurable number of seconds, which then redirects to retry. To enable
this protection, set cgi_overload_delay to the number of seconds to wait.
This is not enabled by default.
2012-10-09 17:12:04 -04:00
Joey Hess
4c1582c11e
Merge branch 'master' of ssh://git.ikiwiki.info
2012-10-09 10:50:37 -04:00
http://kerravonsen.dreamwidth.org/
9b3a8e93c3
Added a comment: A Few Ways To Do This
2012-10-08 22:02:10 -04:00
jp
1314e8c096
2012-10-08 18:37:23 -04:00
http://luca.pca.it/
5e181584b1
add patch tag
2012-10-07 20:24:46 -04:00
http://openid.ppke.hu/cstamas
9538d7f87f
thx
2012-10-07 15:46:17 -04:00
Joey Hess
dad49323e8
thanks Luca Capello
2012-10-06 16:29:47 -04:00
http://luca.pca.it/
6bdd953147
add Git patch
2012-10-06 08:13:56 -04:00
http://luca.pca.it/
6909f339ce
add question about the lack of the language attribute
2012-10-06 07:37:17 -04:00
http://luca.pca.it/
45126e9413
[Personal] add myself
2012-10-06 06:08:20 -04:00
http://luca.pca.it/
411c85fc83
initial version
2012-10-06 06:07:08 -04:00
https://www.google.com/accounts/o8/id?id=AItOawmZriTGyRP3RH7wUzOT0Q2VLiqiY5UarKU
3f15785e58
Description of the problem.
2012-10-04 15:27:39 -04:00
https://www.google.com/accounts/o8/id?id=AItOawk4daAfIEJbqRDQ8kjmDjIIIDlfyeM8ZFo
f500f32fb7
2012-10-04 01:08:51 -04:00
https://www.google.com/accounts/o8/id?id=AItOawkXyVcd-H-qQEXQk_6V2yb_3bl2y4mbync
7a448f6197
Add Paris Observatory Information System website
2012-10-02 09:42:20 -04:00
http://beaufils.myopenid.com/
ea3c9eb0c4
Add a fast ugly patch for people in hurry
2012-10-01 11:49:28 -04:00
http://openid.ppke.hu/cstamas
5997e0b0c2
2012-09-29 18:20:39 -04:00
Joey Hess
7b78a21580
changelog
2012-09-29 11:45:11 -04:00
W. Trevor King
64c98b814b
proxy: convert iteritems() and and itervalues() to items() and values()
...
The former no longer exist in Python 3.
2012-09-29 07:18:25 -04:00
W. Trevor King
409f9341d1
proxy: don't pass arguments to format_exc() in IkiWikiProcedureProxy.run()
...
This avoids:
Traceback (most recent call last):
File "./plugins/rst", line 86, in <module>
proxy.run()
File "/home/wking/src/ikiwiki/plugins/proxy.py", line 316, in run
e, traceback.format_exc(sys.exc_info()[2])))
File "/usr/lib/python3.2/traceback.py", line 269, in format_exc
...
TypeError: unorderable types: int() < traceback()
The syntax for format_exc in Python 2.x is:
traceback.format_exc([limit])
In Python 3.x, it is:
traceback.format_exc(limit=None, chain=True)
Neither of these need any information from sys.exc_info() passed in.
2012-09-29 07:12:59 -04:00
W. Trevor King
6e44dc1ff5
proxy: SimpleXMLRPCServer renamed to xmlrpc.server in Python 3
2012-09-29 07:03:51 -04:00
W. Trevor King
e00a8f0217
proxy: xmlrpclib renamed to xmlrpc.client in Python 3
2012-09-29 07:03:51 -04:00
W. Trevor King
03bbdfa116
proxy: update string formatting and error catching syntax
2012-09-29 07:03:45 -04:00
W. Trevor King
3f4f5fc779
proxy: bump to version 0.2
2012-09-28 02:20:26 -04:00
W. Trevor King
58262a45db
proxy: update copyright owners (based on the Git history)
2012-09-28 02:20:05 -04:00
W. Trevor King
792816e01d
rst: update string formatting and error catching syntax
2012-09-28 02:16:29 -04:00
W. Trevor King
82fddabcec
rst: bump to version 0.4
2012-09-28 02:13:37 -04:00
W. Trevor King
173db9cf87
rst: strip trailing whitespace
2012-09-28 02:13:06 -04:00
W. Trevor King
3dc8d9c024
rst: update copyright owners (based on the Git history)
2012-09-28 02:12:14 -04:00
Joey Hess
de002d0c2c
update an url
2012-09-27 21:10:22 -04:00
Joey Hess
268c4e9c85
remove obsolte cia shortcuts
2012-09-27 20:25:07 -04:00
Joey Hess
21082fb5fe
remove obsolete new item about dead service
2012-09-27 20:19:59 -04:00
Joey Hess
f189a3e5fc
remove cia mention
2012-09-27 20:06:16 -04:00