Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix other 2 cases of conflicting destdir files | Joey Hess | 2010-07-18 |
| | | | | | | | | | | | | | | | Cleanly fixed case where destdir file failed to be written because there was a directory with the same name. This can be detected with no extra system calls, and dealt with by finding all pages that wrote files inside the directory, and removing them and the directory. The other, inverse case would be expensive to detect in will_render, since it would need to check each parent directory of the file to see if the directory is really a conflicting file. But prep_writefile already does a similar scan for symlinks in the path, so I added code there to remove the conflicting file. This fix assumes that the file is written using writefile, and not some other means (but using other means would be a security hole too, so hopefully nothing does). | ||
* | another class of conflicts: subdir/file conflicts | Joey Hess | 2010-07-18 |
| | |||
* | check oldrenderedfiles too | Joey Hess | 2010-07-18 |
| | | | | Handles the case where foo.mdwn is moved too foo/index.html | ||
* | 2 more cases | Joey Hess | 2010-07-18 |
| | |||
* | avoid error if two source files render the same destination file | Joey Hess | 2010-07-18 |
| | | | | | | | There are two sub-caces. If both source files still exist, the winner that renders the destination file is undefined. If one source file is deleted and the other added, in a refresh, the new file will take over the destination file. | ||
* | class of bugs I am working on | Joey Hess | 2010-07-18 |
| | |||
* | some other (similar) failure cases | Joey Hess | 2010-07-18 |
| | |||
* | update | Joey Hess | 2010-07-17 |
| | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | 2010-07-17 |
|\ | |||
| * | Add Banu | https://mukund.startssl.com/ | 2010-07-17 |
| | | |||
* | | turning into complete source file conflict test suite | Joey Hess | 2010-07-17 |
|/ | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | 2010-07-16 |
|\ | |||
| * | Added a comment | http://joey.kitenet.net/ | 2010-07-16 |
| | | |||
| * | Fix a couple of grammar errors. | Jonas Smedegaard | 2010-07-16 |
| | | |||
| * | (no commit message) | tkane | 2010-07-16 |
| | | |||
| * | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawlzADDUvepOXauF4Aq1VZ4rJaW_Dwrl6xE | 2010-07-15 |
| | | |||
* | | add 2 failing test cases | Joey Hess | 2010-07-16 |
| | | |||
* | | add test of file replace | Joey Hess | 2010-07-16 |
|/ | |||
* | add getsetup hook | Joey Hess | 2010-07-14 |
| | |||
* | add section to getsetup info | Joey Hess | 2010-07-14 |
| | |||
* | add 2 more missing getsetup hooks | Joey Hess | 2010-07-14 |
| | |||
* | note on escaping | Joey Hess | 2010-07-14 |
| | |||
* | escape example wikilink | Joey Hess | 2010-07-14 |
| | |||
* | response | Joey Hess | 2010-07-14 |
| | |||
* | more detail on manual moderation | Joey Hess | 2010-07-14 |
| | |||
* | respond | Joey Hess | 2010-07-14 |
| | |||
* | Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info | Joey Hess | 2010-07-14 |
|\ | |||
| * | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawlzADDUvepOXauF4Aq1VZ4rJaW_Dwrl6xE | 2010-07-14 |
| | | |||
| * | (no commit message) | http://hendry.iki.fi/ | 2010-07-14 |
| | | |||
| * | finding unmoderated comments | http://hendry.iki.fi/ | 2010-07-14 |
| | | |||
| * | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawlzADDUvepOXauF4Aq1VZ4rJaW_Dwrl6xE | 2010-07-14 |
| | | |||
* | | Drop Cache-Control must-revalidate (Firefox 3.5.10 does not seem to have the ↵ | Joey Hess | 2010-07-14 |
| | | | | | | | | caching problem that was added to work around). Closes: #588623 | ||
* | | add missing getsetup hook | Joey Hess | 2010-07-13 |
|/ | |||
* | merged | Joey Hess | 2010-07-12 |
| | |||
* | changelog | Joey Hess | 2010-07-12 |
| | |||
* | po: added an optional target percentage to needstranslation | intrigeri | 2010-07-12 |
| | | | | (cherry picked from commit 98cc9460ac67fee606437712882cfa1e5d259729) | ||
* | merged filter-full | Joey Hess | 2010-07-12 |
| | |||
* | Merge branch 'filter-full' | Joey Hess | 2010-07-12 |
|\ | |||
| * | remove unnecessary and troublesome filter calls | Joey Hess | 2010-07-04 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This better defines what the filter hook is passed, to only be the raw, complete text of a page. Not some snippet, or data read in from an unrelated template. Several plugins that filtered text that originates from an (already filtered) page were modified not to do that. Note that this was not done very consistently before; other plugins that receive text from a page called preprocess on it w/o first calling filter. The template plugin gets text from elsewhere, and was also changed not to filter it. That leads to one known regression -- the embed plugin cannot be used to embed stuff in templates now. But that plugin is deprecated anyway. Later we may want to increase the coverage of what is filtered. Perhaps a good goal would be to allow writing a filter plugin that filters out unwanted words, from any input. We're not there yet; not only does the template plugin load unfiltered text from its templates now, but so can the table plugin, and other plugins that use templates (like inline!). I think we can cross that bridge when we come to it. If I wanted such a censoring plugin, I'd probably make it use a sanitize hook instead, for the better coverage. For now I am concentrating on the needs of the two non-deprecated users of filter. This should fix bugs/po_vs_templates, and it probably fixes an obscure bug around txt's use of filter for robots.txt. | ||
* | | (no commit message) | test | 2010-07-12 |
| | | |||
* | | Added a comment | jeanm | 2010-07-12 |
| | | |||
* | | openid: Fix handling of utf-8 nicknames. | Joey Hess | 2010-07-11 |
| | | |||
* | | response | Joey Hess | 2010-07-11 |
| | | |||
* | | response | Joey Hess | 2010-07-11 |
| | | |||
* | | reply, proposed a few possible solutions. | intrigeri | 2010-07-11 |
| | | |||
* | | implemented, please merge | intrigeri | 2010-07-11 |
| | | |||
* | | reply. and now? | intrigeri | 2010-07-11 |
| | | |||
* | | the filter-full branch works nicely | intrigeri | 2010-07-11 |
| | | |||
* | | Added a comment: I still don't get it | http://kerravonsen.dreamwidth.org/ | 2010-07-11 |
| | | |||
* | | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawlzADDUvepOXauF4Aq1VZ4rJaW_Dwrl6xE | 2010-07-10 |
| | |