Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add missing build-depends on libcgi-formbuilder-perl, needed for t/relativity.t | Joey Hess | 2014-10-20 |
| | |||
* | add ikiwiki-comment program | Joey Hess | 2014-10-20 |
| | |||
* | bit on how inlinability isn't only bad | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | Add link to the proposed wrapper generation patch | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | initial description of signinview plugin | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | more on caching behavior | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | make formatting more consistent | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | discuss zoned-ikiwiki implementation approaches, including signinview plugin | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | it helps to distinguish some use cases | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | also search | Amitai Schlair | 2014-10-19 |
| | |||
* | start fleshing out "things that make zoned ikiwiki hard" | http://anastigmatix.net/ | 2014-10-19 |
| | |||
* | sign previous | Amitai Schlair | 2014-10-19 |
| | |||
* | Match word boundary (think "/usr/bin/perl5.18"). | Amitai Schlair | 2014-10-19 |
| | |||
* | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawlGzzISNi9sKsbbqyRjCZEecyypgaFV56U | 2014-10-19 |
| | |||
* | [patch], patch | https://www.google.com/accounts/o8/id?id=AItOawlGzzISNi9sKsbbqyRjCZEecyypgaFV56U | 2014-10-19 |
| | |||
* | Added a comment | openmedi | 2014-10-17 |
| | |||
* | Remove space from perl shebang path. | Amitai Schlair | 2014-10-17 |
| | |||
* | Disambiguate myself a bit (like that's needed). | Amitai Schlair | 2014-10-16 |
| | |||
* | reformat | Simon McVittie | 2014-10-17 |
| | |||
* | news | Simon McVittie | 2014-10-17 |
| | |||
* | Merge remote-tracking branch 'refs/remotes/dgit/dgit/sid' | Simon McVittie | 2014-10-17 |
|\ | |||
| * | Record ikiwiki (3.20140916) in archive suite sid | Simon McVittie | 2014-09-12 |
| |\ | |||
| | * | ikiwiki (3.20140916) unstable; urgency=low | Simon McVittie | 2014-09-12 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Don't double-decode CGI submissions with Encode.pm >= 2.53, fixing "Error: Cannot decode string with wide characters". Thanks, Antoine Beaupré * Avoid making trails depend on everything in the wiki by giving them a better way to sort the pages * Don't let users post comments that won't be displayed * Fix encoding of Unicode strings in Python plugins. Thanks, chrysn * Improve performance and correctness of the [[!if]] directive * Let [[!inline rootpage=foo postform=no]] disable the posting form * Switch default [[!man]] shortcut to manpages.debian.org. Closes: #700322 * Add UUID and TIME variables to edittemplate. Closes: #752827 Thanks, Jonathon Anderson * Display pages in linkmaps as their pagetitle (no underscore escapes). Thanks, chrysn * Fix aspect ratio when scaling small images, and add support for converting SVG and PDF graphics to PNG. Thanks, chrysn - suggest ghostscript (required for PDF-to-PNG thumbnailing) and libmagickcore-extra (required for SVG-to-PNG thumbnailing) - build-depend on ghostscript so the test for scalable images can be run * In the CGI wrapper, incorporate $config{ENV} into the environment before executing Perl code, so that PERL5LIB can point to a non-system-wide installation of IkiWiki. Thanks, Lafayette Chamber Singers Webmaster * filecheck: accept MIME types not containing ';' * autoindex: index files in underlays if the resulting pages aren't going to be committed. Closes: #611068 * Add [[!templatebody]] directive so template pages don't have to be simultaneously a valid template and valid HTML * Add myself to Uploaders and release to Debian # imported from the archive | ||
* | | release | Simon McVittie | 2014-10-16 |
| | | |||
* | | debian: fix some wrong paths in the copyright file | Simon McVittie | 2014-10-16 |
| | | |||
* | | debian: rename debian/link to debian/links so the intended symlinks appear | Simon McVittie | 2014-10-16 |
| | | |||
* | | close a bug | Simon McVittie | 2014-10-16 |
| | | |||
* | | Drop unused python-support dependency | Simon McVittie | 2014-10-16 |
| | | |||
* | | changelog so far | Simon McVittie | 2014-10-16 |
| | | |||
* | | build-depend on libcgi-pm-perl too, for tests | Simon McVittie | 2014-10-16 |
| | | |||
* | | Explicitly depend on CGI.pm, which is no longer in Perl core | Simon McVittie | 2014-10-16 |
| | | | | | | | | | | I was going to depend on the version that has CGI->param_fetch, but that has been supported since 2.37, which is older than oldstable. | ||
* | | IkiWiki::Plugin::openid: as a precaution, do not call non-coderefs | Amitai Schlair | 2014-10-16 |
| | | | | | | | | | | | | | | | | We're running under "use strict" here, so if CGI->param's array-context misbehaviour passes an extra non-ref parameter, it shouldn't be executed anyway... but it's as well to be safe. [commit message added by smcv] | ||
* | | Call CGI->param_fetch instead of CGI->param in array context | Amitai Schlair | 2014-10-16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | CGI->param has the misfeature that it is context-sensitive, and in particular can expand to more than one scalar in function calls. This led to a security vulnerability in Bugzilla, and recent versions of CGI.pm will warn when it is used in this way. In the situations where we do want to cope with more than one parameter of the same name, CGI->param_fetch (which always returns an array-reference) makes the intention clearer. [commit message added by smcv] | ||
* | | Make sure we do not pass multiple CGI parameters in function calls | Simon McVittie | 2014-10-16 |
| | | | | | | | | | | | | | | | | | | | | | | When CGI->param is called in list context, such as in function parameters, it expands to all the potentially multiple values of the parameter: for instance, if we parse query string a=b&a=c&d=e and call func($cgi->param('a')), that's equivalent to func('b', 'c'). Most of the functions we're calling do not expect that. I do not believe this is an exploitable security vulnerability in ikiwiki, but it was exploitable in Bugzilla. | ||
* | | Added a comment: It was an Apache problem... | https://www.google.com/accounts/o8/id?id=AItOawk8U772S3jDrZJCO0WA5WaDLjJv5mMl6Yw | 2014-10-16 |
| | | |||
* | | branch | smcv | 2014-10-16 |
| | | |||
* | | comment | smcv | 2014-10-16 |
| | | |||
* | | Replace PayPal and Flattr buttons with text links | Simon McVittie | 2014-10-16 |
| | | | | | | | | | | | | In particular, this avoids loading third-party resources from the offline documentation (see <https://lintian.debian.org/tags/privacy-breach-donation.html>). | ||
* | | mention pagespec_alias patches | http://anastigmatix.net/ | 2014-10-15 |
| | | |||
* | | Added a comment | smcv | 2014-10-15 |
| | | |||
* | | Added a comment | smcv | 2014-10-15 |
| | | |||
* | | Added a comment | openmedi | 2014-10-15 |
| | | |||
* | | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawlcaGfdn9Kye1Gc8aGb67PDVQW4mKbQD7E | 2014-10-15 |
| | | |||
* | | Added a comment | openmedi | 2014-10-15 |
| | | |||
* | | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawmbuZI4n1RsTe3Yeaqb5F-yhtR7a8BWEIE | 2014-10-15 |
| | | |||
* | | as usual, macports hasn't moved | Amitai Schlair | 2014-10-14 |
| | | |||
* | | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawlcaGfdn9Kye1Gc8aGb67PDVQW4mKbQD7E | 2014-10-14 |
| | | |||
* | | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawlobQ5j7hQVIGkwMWW3yKB_DWqthJcpnsQ | 2014-10-14 |
| | | |||
* | | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawlcaGfdn9Kye1Gc8aGb67PDVQW4mKbQD7E | 2014-10-14 |
| | | |||
* | | one report suffices; not yet clear there's a bug | Amitai Schlair | 2014-10-14 |
| | |