aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/CGI.pm
Commit message (Collapse)AuthorAge
...
* * Improved the canedit hook interface, allowing a callback function to beJoey Hess2008-01-07
| | | | | | | returned (and not run in some cases) rather than the plugins directly forcing a user to log in. * opendiscussion: allow editing of the toplevel discussion page, and, indirectly, allow creating new discussion pages.
* * Only try postsignin if no other action matched. Fixes a bug where theJoey Hess2008-01-07
| | | | | user goes back from the signin screen and does something else. * Improve behavior when trying to sign in with no cookies.
* fix an uninitialised value warningJoey Hess2008-01-05
|
* * Stop testing Encode::is_utf8 in decode_form_utf8: That doesn't work.Joey Hess2008-01-01
| | | | | | | | | | * decode_form_utf8 only fixed the utf-8 encoding for fields that were registered at the time it was called, which was before the formbuilder_setup hook. Fields added by the hook didn't get decoded. But it can't be put after the hook either, since plugins using the hook need to be able to use form values. To fix this dilemma, it's been changed to a decode_cgi_utf8, which is called on the cgi query object, before the form is set up, and decodes *all* cgi parameters.
* * Allow editing a page and deleting all content, while still disallowingJoey Hess2007-12-12
| | | | creating a new page that's entirely empty.
* * Ensure that web edited pages always end in a newline.Joey Hess2007-12-12
|
* * Change formbuilder hook to not be responsible for displaying a form,Joey Hess2007-12-12
| | | | | | so that more than one plugin can use this hook. I believe this is a safe change, since only passwordauth uses this hook. (If some other plugin already used it, it would have broken passwordauth!)
* MAJOR basewiki reorgJoey Hess2007-12-08
| | | | | Including redir pages for the moved basewiki pages. These will be removed in a future release.
* * In the cgi edit path, reload the index file before rendering. A bugjoey2007-10-10
| | | | | | | | | | showed up where a web edit that added a page caused a near-concurrent web edit to fail in will_render. While it would be hard to reproduce this, my analysis is that the failing cgi started first, loaded the index file (prior to locking) then the other cgi created the new page and rendered it, and then the failing cgi choked on the new file when _it_ tried to render it. Ensuring that the index file is loaded after taking the lock will avoid this bug.
* * Save index after previewing page edit, since even previewing can createjoey2007-09-22
| | | | | | files in some situations, and this is appropriate in some cases, such as the teximg plugin's error log file. Such files will be automatically cleaned up at an appopriate later time.
* * Support for looking in multiple directories for underlay files.joey2007-08-28
| | | | | | | * Plugins can add new directories to the search path with the add_underlay function. * Split out smiley underlay files into a separate underlay, so if the plugin isn't used, the wiki isn't bloated with all those files.
* * Add an editcontent hook.joey2007-08-26
|
* * Call the formbuilder hook for the edit page.joey2007-08-22
| | | | | | * Call decode_form_utf8 before running formbuilder_setup hooks. * Add editdiff plugin contributed by Jeremie Koenig. * Fix it to not leak path info.
* * Applied Jeremie Koenig's pluggable editpage buttons patch:joey2007-08-17
| | | | | | | | | | | | - add a title to the editpage form; - pass a reference to the list of buttons to the formbuilder_setup hooks, so we can add ours; - relax asumption about the possible submit values (use "Save Page" explicitly); - de-hardcode the submit buttons from the editpage template (This was needed for compatability with a bug in CGI::FormBuilder 3.0401, but ikiwiki already needs a newer version.) * Pass buttons to all other formbuilder_setup hooks too.
* proper fix for adding file, based on jkoenig's patchjoey2007-08-15
|
* * Fix bug when editing file from underlaydir, need to rcs_add it even thoughjoey2007-08-14
| | | | a page creation isn't occuring.
* * Fix bug in deletion/move during edit code introduced in 1.44. Need to takejoey2007-08-14
| | | | the underlaydir into account.
* Remove two header => 1 settings that were overridden by later header => 0joey2007-08-14
|
* * Move blog form code out of CGI.pm and into the inline plugin.joey2007-08-05
|
* * Add sessioncgi hook. joey2007-08-05
|
* remove cruftjoey2007-08-05
|
* * Wrap the editpage template in the standard misctemplate, this allows thejoey2007-07-16
| | | | | pagetemplate hook to work for that page. * Above change fixes the favicon plugin to work on edit pages.
* * Add a destpage parameter to the filter hook.joey2007-05-17
| | | | | * Fix links to smilies generated by the smiley plugin for inlined pages. The old links were often wrong, but often still worked by accident.
* * Make all templates have a footer div to ease themeing. Required templatejoey2007-05-11
| | | | | | | | and style sheet updates, and unless you're using customised versions, you'll want to rebuild wikis on upgrade to this version to avoid inconsistencies. * Allow WIKINAME to to used in footers, as an example of something to put there.
* * Use div layout for the signin and preferences forms, so that they can bejoey2007-04-30
| | | | | | styled using the stylesheet, rather than by creating signin and prefs templates. * Make the openid login form nicely styled.
* * Use fieldsets in the preferences form to group related options together.joey2007-04-29
| | | | Especially cleans up the ordering of the admin's preferences form.
* * Detect the case of two people independently creating the same page at thejoey2007-03-17
| | | | same time, and let the second person resolve the conflict.
* * Fix some broken logic in cgi creation of a subpage when a toplevel pagejoey2007-03-17
| | | | with the same name already exists, and generally simplify the edit code.
* simplify preview codejoey2007-03-17
|
* correct dup page name detect in blog posting codejoey2007-03-08
|
* * The underscore escaping support exposed a bug in edit links: Such linksjoey2007-03-08
| | | | | | | | | were titlepage escaped in the urls, and then doubly escaped by the CGI when editing. To fix this, I removed the titlepage escaping in the edit urls. * That means that *every edit link* on the wiki is potentially changed. Rebuilding wikis on upgrade to this version therefore necessary; enabled that in postinst.
* My fix to support encoded underscores in page titles broke links to pagesjoey2007-03-07
| | | | | | | with underscores in their filenames, since the link code also used titlepage. Create a new linkpage function and have the link code use that instead.
* * The slash escaping when adding to a blog from the CGI was not workingjoey2007-03-07
| | | | | | since it ended up being double-escaped. Instead, just remove slashes. * Fix some nasty issues with page name escaping during previewing (introduced in 1.44).
* * Add preview parameter to preprocesser calls, use this rather than thejoey2007-03-06
| | | | | | | | previous ugly hack used to avoid writing rss feeds in previews. * Fix the img plugin to avoid overwriting images in previews. Instead it does all the work to make sure the resizing works, and dummys up a resized image using width and height attributes. * Also fixes img preview display, the links were wrong in preview before.
* * Patch from Ethan to improve behavior if a page is deleted or moved whilejoey2007-02-24
| | | | | | someone is editing it. * Some cleanup of field setting in the failed edit and conflict handling code.
* * Correct a bug that could lead to infinite looping after signin in somejoey2007-02-24
| | | | circumstances.
* * Since the CGI had to drop the wiki lock to avoid deadlocking thejoey2007-02-21
| | | | | | | | commit hook, it was possible for one CGI to race another one and "win" the commit of both their files. This race has been fixed by adding a new commitlock, which when locked by the CGI, disables the commit hook (except for commit mails). The CGI then takes care of the updates the commit hook would have done.
* * Elegant patch from Ethan to clean up the display of page names in thejoey2007-02-21
| | | | dropdown when creating a new page.
* * Changed calling convention for httmllink slightly. The first threejoey2007-02-20
| | | | | | | | | | parameters remain the same, but additional options are now passed in using named parameters. * Change plugin interface version to 1.02 to reflect this change. * Add a new anchor option to htmllink. Thanks Ben for the idea. * Support anchors in wikilinks. * Add a "more" plugin based on one contributed by Ben to allow implementing those dreaded "Read more" links in blogs.
* * Many changes to make ikiwiki very resistant to write failuresjoey2007-02-15
| | | | | | | | including out of disk space situations. ikiwiki should never leave truncated files, and if the error occurs during a web-based file edit, the user will be given an opportunity to retry. Inspired by the many ways Moin Moin destroys itself when out of disk. :-) * Fix syslogging of errors.
* * Fix a security hole that allowed a web user to edit images and otherjoey2007-02-10
| | | | | | | | non-page format files in the wiki. To exploit this, the file already had to exist in the wiki, and the web user would need to somehow use the web based editor to replace it with malicious content. (Sorry Josh, this means you can't edit style.css directly anymore, although I do appreciate your fixes, actually..)
* * Add canedit hook, allowing arbitrary controls over when a page can bejoey2007-02-02
| | | | | | | | | | | | | edited. * Move code forcing signing before edit to a new "signinedit" plugin, and code checking for locked pages into a new "lockedit" plugin. Both are enabled by default. * Remove the anonok config setting. This is now implemented by a new "anonok" plugin. Anyone with a wiki allowing anonymous edits should change their configs to enable this new plugin. * Add an opendiscussion plugin that allows anonymous users to edit discussion pages, on a wiki that is otherwise wouldn't allow it. * Lots of CGI code reorg and cleanup.
* * Always call rcs_update after a commit during a web edit, to work aroundjoey2007-01-28
| | | | | the problem described in bugs/svn_fails_to_update. Thanks to Ethan for the analysis and patch.
* * Change the RecentChanges page to show the path of changed pages.joey2007-01-14
|
* Improve error message when postsignin (probably from openid) fails due tojoey2007-01-12
| | | | | cookies not being enabled. Adds a new translatable string..
* * Search in default location for templates as a fallback when templatedir isjoey2007-01-12
| | | | | pointed elsewhere, so that only modified templates need to be copied into a templatedir. Based on work by JeremyReed.
* added some comments for translatorsjoey2007-01-04
|
* * Corrected a bum regexp in openid munging.joey2007-01-03
|
* deal with http:// partjoey2006-12-31
|
* * Escape shashes in page titles entered in the blog post form.joey2006-12-31
| | | | * Munge openids of the form somehost.com/user (trial, may revert)