Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mojomojo::controller::attachment(3pm) [debian man page]

MojoMojo::Controller::Attachment(3pm)			User Contributed Perl Documentation		     MojoMojo::Controller::Attachment(3pm)

NAME
MojoMojo::Controller::Attachment - Attachment controller DESCRIPTION
MojoMojo supports attaching files to nodes. This controller handles administration and serving of these assets. ACTIONS
auth Return whether the current user has attachment manipulation rights (upload/delete). unauthorized Private action to return a 403 with an explanatory template. default Private action to return a 404 not found page. attachments Main attachment screen. Handles uploading of new attachments. list Display the list of attachments if the user has view permissions. template: attachments/list.tt plain_upload Upload feature that uses the traditional upload technique. check_file Check if the file(s) uploaded could be added to the Attachment table. flash_upload Upload feature that uses flash attachment Find and stash an attachment. defaultaction Set the default action for an attachment which is forwarding to a view. view Render the attachment in the browser ("Content-Disposition: inline"), with caching for 1 day. download Forwards to "view" then forces the attachment to be downloaded ("Content-Disposition: attachment") and disables caching. thumb Thumb action for attachments. Makes 100x100px thumbnails. inline Show 800x600 inline versions of photo attachments. delete Delete the attachment from this node. Will leave the original file on the file system but delete its thumbnail and inline versions. AUTHOR
Marcus Ramberg "marcus@nordaaker.com" LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-05-23 MojoMojo::Controller::Attachment(3pm)

Check Out this Related Man Page

RT::Client::REST::Attachment(3pm)			User Contributed Perl Documentation			 RT::Client::REST::Attachment(3pm)

NAME
RT::Client::REST::Attachment -- this object represents an attachment. SYNOPSIS
my $attachments = $ticket->attachments; my $count = $attachments->count; print "There are $count attachments. "; my $iterator = $attachments->get_iterator; while (my $att = &$iterator) { print "Id: ", $att->id, "; Subject: ", $att->subject, " "; } DESCRIPTION
An attachment is a second-class citizen, as it does not exist (at least from the current REST protocol implementation) by itself. At the moment, it is always associated with a ticket (see parent_id attribute). Thus, you will rarely retrieve an attachment by itself; instead, you should use "attachments()" method of RT::Client::REST::Ticket object to get an iterator for all attachments for that ticket. ATTRIBUTES
id Numeric ID of the attachment. creator_id Numeric ID of the user who created the attachment. parent_id Numeric ID of the object the attachment is associated with. This is not a proper attribute of the attachment as specified by REST -- it is simply to store the ID of the RT::Client::REST::Ticket object this attachment belongs to. subject Subject of the attachment. content_type Content type. file_name File name (if any). transaction_id Numeric ID of the RT::Client::REST::Transaction object this attachment is associated with. message_id Message ID. created Time when the attachment was created content Actual content of the attachment. headers Headers (not parsed), if any. parent Parent (not sure what this is yet). content_encoding Content encoding, if any. METHODS
RT::Client::REST::Attachment is a read-only object, so you cannot "store()" it. Also, because it is a second-class citizen, you cannot "search()" or "count()" it -- use "attachments()" method provided by RT::Client::REST::Ticket. retrieve To retrieve an attachment, attributes id and parent_id must be set. INTERNAL METHODS
rt_type Returns 'attachment'. SEE ALSO
RT::Client::REST::Ticket, RT::Client::REST::SearchResult. AUTHOR
Dmitri Tikhonov <dtikhonov@yahoo.com> LICENSE
Perl license with the exception of RT::Client::REST, which is GPLed. perl v5.14.2 2011-12-27 RT::Client::REST::Attachment(3pm)
Man Page