aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/attachment.pm
Commit message (Collapse)AuthorAge
...
* attachment: Add admin() pagespec to test if the uploading user is a wiki admin.Joey Hess2008-09-25
|
* humansize moved to filecheckJoey Hess2008-08-27
| | | | | It's not used there, but it makes sense to keep it there as it's the inverse of parsesize.
* filecheck: New plugin factoring out the PageSpec additions that were ↵Joey Hess2008-08-25
| | | | originally part of the attachment plugin.
* default to looking at page source file if no file is specifiedJoey Hess2008-08-12
| | | | This will allow these pagespecs to be used a bit more generally.
* fix inverted testJoey Hess2008-08-06
|
* add plugin safe/rebuild info (part 3 of 3)Joey Hess2008-08-03
|
* add plugin safe/rebuild info (part 1 of 2)Joey Hess2008-08-03
| | | | too many plugins.. brain exploding..
* remove description_html, add linkJoey Hess2008-08-03
|
* websetup form display doneJoey Hess2008-08-02
|
* hide deprecated values if empty after saveJoey Hess2008-08-01
|
* admin prefs move to setup file, stage 1Joey Hess2008-08-01
| | | | | | | The locked pages configuration is moving to a locked_pages option in the setup file, and the allowed attachments configuration to allowed_attachments. The admin prefs page can still be used for these, but that's depreacted and will only be shown if there's currently a value.
* remove default values in getsetupJoey Hess2008-07-26
| | | | | They were a bit confusing, since they did not actually set the default, and example values are sufficient.
* add missing setup options, tweak others' displayJoey Hess2008-07-26
|
* Merge branch 'master' into autoconfigJoey Hess2008-07-25
|\
| * attachment: Use relative paths when inserting links.Joey Hess2008-07-25
| |
* | added getsetup hooks for all plugins up to recentchangesJoey Hess2008-07-25
|/
* foldageJoey Hess2008-07-23
|
* Merge branch 'master' into tovaJoey Hess2008-07-23
|\
| * attachment: Do not escape _ when determining attachment filenames.Joey Hess2008-07-23
| |
* | Don't allow uploading an attachment with the same name as an existing page, ↵Joey Hess2008-07-22
| | | | | | | | to avoid confusion.
* | make message a bit more genericJoey Hess2008-07-22
| |
* | avoid uninitialised valueJoey Hess2008-07-22
| |
* | factor out check_canattachJoey Hess2008-07-21
|/ | | | Other plugins will need to use this.
* improve error message if virus checker fails w/o outputJoey Hess2008-07-09
|
* attachment: Support perl 5.8's buggy version of CGI.pm.Joey Hess2008-07-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is truely horribly disgusting. CGI::tmpFileName, in current perls, is an undocumented function (which should be a clue..) that takes the original filename of an uploaded attachment, and returns the name of the tempfile that CGI has stored it in. In old perls, though, CGI::tmpFileName does not take a filename. It takes a key from the object's {'.tmpfiles'} hash. This key is something crazy like '*Fh::fh00001group' -- apparently the stringification of a filehandle object. Just to add to the fun, tmpFileName doesn't take the key, it expects a refernce to the key. Argh?! But the fun doesn't stop there, because in perl 5.8, CGI.pm is also broken in two other ways. The upload() method is supposed to return a filehandle to the temp file. It doesn't. The param() method is supposed to return a filehandle to the temp file, that stringifies to the original filename. It returns just the original filename, no filehandle. Combine all these bugs, and you end up with this disgusting commit. Since I have no way to get the filehandle, I *need* to get the tempfile name. If I had the filehandle, I could probably pass it into tmpFileName, and it might strigify to the right key name. But I don't, so the only way to determine the key is to grub through the .tmpfiles hash ourselves. And finally, one the temp file name is discovered, a filehandle can finally be obtained by (re)opening it. I recommend that this commit be reverted when perl 5.8 is a mercifully faded memory. I'm really, really, really glad I'm actually being paid for working on this right now!
* explicitly set form type to multipartJoey Hess2008-07-08
| | | | | This is the default in unstable's formbuilder, but not in stable's, and CGI multipart is needed for fule uploads.
* check for tempfile being emptyJoey Hess2008-07-08
|
* undef $fh before openingJoey Hess2008-07-08
|
* another try at dealing with CGI.pm problemJoey Hess2008-07-08
| | | | open the temp file if all attempts to get a fd fail
* attachment: Support old versions of CGI.pm that lack an upload method.Joey Hess2008-07-08
|
* attachment: Fix an uninitialised value warning when editing a page that ↵Joey Hess2008-07-08
| | | | currently has no attachments.
* add virus checking to attachments pluginJoey Hess2008-07-06
|
* avoid uninitialised value warningsJoey Hess2008-07-06
|
* link to pagespec/attachmentJoey Hess2008-07-02
|
* factor out glob2reJoey Hess2008-07-02
|
* add mimetype checkingJoey Hess2008-07-02
|
* add user and ip support to attachment pagespecsJoey Hess2008-07-02
|
* xhtml fixesJoey Hess2008-07-02
|
* attachments interface visibility togglingJoey Hess2008-07-02
|
* fixesJoey Hess2008-07-01
|
* some fit and finish fixesJoey Hess2008-07-01
|
* only show one sig figJoey Hess2008-07-01
|
* display human sizesJoey Hess2008-07-01
|
* add both kinds of linksJoey Hess2008-07-01
|
* basic attachment listJoey Hess2008-07-01
|
* save attachments when page is saved tooJoey Hess2008-07-01
| | | | | A user might specify an attachment, but not click the upload button, and just save the whole page instead.
* check attachments in and refreshJoey Hess2008-07-01
|
* add allowed attachments field to admin prefsJoey Hess2008-07-01
|
* fix expensive move code pathJoey Hess2008-07-01
|
* better approach for cgi upload disablingJoey Hess2008-07-01
| | | | | Make it a config setting, this way subtle load order issues don't come into play. (As much?)