Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | releasing version 3.20121016 | Joey Hess | 2012-10-16 |
| | |||
* | really fix diff display to not show both types of diff | Joey Hess | 2012-10-16 |
| | | | | 12fa9c031f7a9dc25dba628aa91fc347586e4ab6 porported to fix this, but failed | ||
* | fix bad cut and paste in diff toggle title | Joey Hess | 2012-10-16 |
| | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info | Joey Hess | 2012-10-15 |
|\ | |||
| * | (no commit message) | http://jmtd.net/ | 2012-10-15 |
| | | |||
* | | Add back a 1em margin between archivepage divs. | Joey Hess | 2012-10-15 |
|/ | | | | This was lost in commit 954e2e4ef1952fc30dca260b76d7d51e1d05b8b9 | ||
* | clean up | Joey Hess | 2012-10-14 |
| | |||
* | typo | Joey Hess | 2012-10-14 |
| | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info | Joey Hess | 2012-10-11 |
|\ | |||
| * | forum question »creating CGI script and HTTPS« | PaulePanter | 2012-10-11 |
| | | |||
* | | add cgi_overload_message | Joey Hess | 2012-10-11 |
|/ | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info | Joey Hess | 2012-10-10 |
|\ | |||
| * | Added a comment | http://smcv.pseudorandom.co.uk/ | 2012-10-10 |
| | | |||
* | | Merge branch 'master' of git://github.com/wking/ikiwiki | Joey Hess | 2012-10-10 |
|\ \ | |/ |/| | |||
| * | proxy: add indexes to format strings | W. Trevor King | 2012-10-10 |
| | | |||
| * | rst: add indexes to format strings | W. Trevor King | 2012-10-10 |
| | | | | | | | | | | For Python 2.6 compatibility. You're only allowed to omit the positional argument specifiers in Python 2.7 and later. | ||
* | | add cgi_overload_delay tunable | Joey Hess | 2012-10-09 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||
* | | Merge branch 'master' of ssh://git.ikiwiki.info | Joey Hess | 2012-10-09 |
|\ \ | |||
| * | | Added a comment: A Few Ways To Do This | http://kerravonsen.dreamwidth.org/ | 2012-10-08 |
| | | | |||
| * | | (no commit message) | jp | 2012-10-08 |
| | | | |||
| * | | add patch tag | http://luca.pca.it/ | 2012-10-07 |
| | | | |||
| * | | thx | http://openid.ppke.hu/cstamas | 2012-10-07 |
| | | | |||
| * | | add Git patch | http://luca.pca.it/ | 2012-10-06 |
| | | | |||
| * | | add question about the lack of the language attribute | http://luca.pca.it/ | 2012-10-06 |
| | | | |||
| * | | [Personal] add myself | http://luca.pca.it/ | 2012-10-06 |
| | | | |||
| * | | initial version | http://luca.pca.it/ | 2012-10-06 |
| | | | |||
* | | | thanks Luca Capello | Joey Hess | 2012-10-06 |
|/ / | |||
* | | Description of the problem. | https://www.google.com/accounts/o8/id?id=AItOawmZriTGyRP3RH7wUzOT0Q2VLiqiY5UarKU | 2012-10-04 |
| | | |||
* | | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawk4daAfIEJbqRDQ8kjmDjIIIDlfyeM8ZFo | 2012-10-04 |
| | | |||
* | | Add Paris Observatory Information System website | https://www.google.com/accounts/o8/id?id=AItOawkXyVcd-H-qQEXQk_6V2yb_3bl2y4mbync | 2012-10-02 |
| | | |||
* | | Add a fast ugly patch for people in hurry | http://beaufils.myopenid.com/ | 2012-10-01 |
| | | |||
* | | (no commit message) | http://openid.ppke.hu/cstamas | 2012-09-29 |
|/ | |||
* | changelog | Joey Hess | 2012-09-29 |
| | |||
* | proxy: convert iteritems() and and itervalues() to items() and values() | W. Trevor King | 2012-09-29 |
| | | | | The former no longer exist in Python 3. | ||
* | proxy: don't pass arguments to format_exc() in IkiWikiProcedureProxy.run() | W. Trevor King | 2012-09-29 |
| | | | | | | | | | | | | | | | | | | | | | | | 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. | ||
* | proxy: SimpleXMLRPCServer renamed to xmlrpc.server in Python 3 | W. Trevor King | 2012-09-29 |
| | |||
* | proxy: xmlrpclib renamed to xmlrpc.client in Python 3 | W. Trevor King | 2012-09-29 |
| | |||
* | proxy: update string formatting and error catching syntax | W. Trevor King | 2012-09-29 |
| | |||
* | proxy: bump to version 0.2 | W. Trevor King | 2012-09-28 |
| | |||
* | proxy: update copyright owners (based on the Git history) | W. Trevor King | 2012-09-28 |
| | |||
* | rst: update string formatting and error catching syntax | W. Trevor King | 2012-09-28 |
| | |||
* | rst: bump to version 0.4 | W. Trevor King | 2012-09-28 |
| | |||
* | rst: strip trailing whitespace | W. Trevor King | 2012-09-28 |
| | |||
* | rst: update copyright owners (based on the Git history) | W. Trevor King | 2012-09-28 |
| | |||
* | update an url | Joey Hess | 2012-09-27 |
| | |||
* | remove obsolte cia shortcuts | Joey Hess | 2012-09-27 |
| | |||
* | remove obsolete new item about dead service | Joey Hess | 2012-09-27 |
| | |||
* | remove cia mention | Joey Hess | 2012-09-27 |
| | |||
* | kill dead cia link | Joey Hess | 2012-09-27 |
| | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info | Joey Hess | 2012-09-27 |
|\ |