Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mojomojo::schema::result::content(3pm) [debian man page]

MojoMojo::Schema::Result::Content(3pm)			User Contributed Perl Documentation		    MojoMojo::Schema::Result::Content(3pm)

NAME
MojoMojo::Schema::Result::Content - Versioned page content DESCRIPTION
This table stores the actual page content; in other words, it's a table of page versions (revisions). It has a composite primary key "(page, version)", where "page" is the id of a page, and "version" is its version number. Each version has a content "body", a "status" ("released" or "removed"), and a "release_date". Revisions that have been replaced by a newer revision have a "remove_date" and a "comments" set to "Replaced by version x.". The "type", "abstract" and "precompiled" columns are for future use. "created" is essentially equal to "release_date" (there can be a 1-second difference), and is used externally by other modules and in templates. "release_date" and "remove_date" are used internally. COLUMNS
page References MojoMojo::Schema::Result::Page. creator References MojoMojo::Schema::Result::Person. METHODS
highlight Returns an HTML string highlighting the changes between this version and the previous version. The changes are in "<span>" or "<div>" tags with the class "fade". formatted_diff <context> <old_content> Compare this content version to <old_content>, using Algorithm::Diff. Sets a "diffins" CSS class for added lines, and a "diffdel" CSS class for deleted lines. The "<ins>" and "<del>" HTML tags are also used. formatted Return the content after being run through MojoMojo::Formatter::*. merge_content Show the merge conflict of the content for two different edit sessions of the same page. max_version Return the highest numbered revision. previous Return the previous version of this content, or undef for the first version. pub_date Return the publishing date of this version in a format suitable for RSS 2.0. store_links Extract and store all links and wanted paged from a given content version. encoded_body Encode content body using numeric entities. AUTHOR
Marcus Ramberg <mramberg@cpan.org> 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::Schema::Result::Content(3pm)

Check Out this Related 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)
Man Page