MojoMojo(3pm) | User Contributed Perl Documentation | MojoMojo(3pm) |
MojoMojo - A Wiki with a tree
# Set up database (see mojomojo.conf first) ./script/mojomojo_spawn_db.pl # Standalone mode ./script/mojomo_server.pl # In apache conf <Location /mojomojo> SetHandler perl-script PerlHandler MojoMojo </Location>
Mojomojo is a content management system, borrowing many concepts from wikis and blogs. It allows you to maintain a full tree-structure of pages, and to interlink them in various ways. It has full version support, so you can always go back to a previous version and see what's changed with an easy diff system. There are also a some of useful features like live AJAX preview while editing, tagging, built-in fulltext search, image galleries, and RSS feeds for every wiki page.
To find out more about how you can use MojoMojo, please visit <http://mojomojo.org/> or read the installation instructions in MojoMojo::Installation to try it out yourself.
Accommodate a forcing of SSL if needed in a reverse proxy setup.
Return whether the request is an AJAX one (used by the live preview, for example), as opposed to a rgular request (such as one used to view a page).
Proxy method for the MojoMojo::Formatter::Wiki expand_wikilink method.
Format a wikiword as a link or as a wanted page, as appropriate.
Find or create a preference key. Update it if a value is passed, then return the current setting.
Get preference key/value from cache if possible.
Clean up wiki words: replace spaces with underscores and remove non-\w, / and . characters.
Convert timezone
Provide "No DB" message when one needs to spawn the db (script/mojomojo_spawn.pl).
We override this method to work around some of Catalyst's assumptions about dispatching. Since MojoMojo supports page namespaces (e.g. "/parent_page/child_page"), with page paths that always start with "/", we strip the trailing slash from "$c->req->base". Also, since MojoMojo indicates actions by appending a ".$action" to the path (e.g. "/parent_page/child_page.edit"), we remove the page path and save it in "$c->stash->{path}" and reset "$c->req->path" to $action. We save the original URI in "$c->stash->{pre_hacked_uri}".
Return "$c->req->base" as an URI object.
Override "$c->uri_for" to append path, if a relative path is used.
"/static/" has been remapped to "/.static/".
Lowercase the path and remove any double-slashes.
Generate all the intermediary paths to "/path/to/a/page", starting from "/" and ending with the complete path:
/ /path /path/to /path/to/a /path/to/a/page
Permissions are checked prior to most actions, including "view" if that is turned on in the configuration. The permission system works as follows:
$c->config->{permissions}{view_allowed} = 1; # or 0
Similar entries exist for "delete", "edit", "create" and "attachment". If these config variables are not defined, the default is to allow anyone to do anything.
TODO: clarify.
Get the list of role ids for a user.
Check user permissions for a path.
Check if a user can view a path.
Marcus Ramberg "marcus@nordaaker.com"
David Naughton "naughton@umn.edu"
Andy Grundman "andy@hybridized.org"
Jonathan Rockway "jrockway@jrockway.us"
A number of other contributors over the years: https://www.ohloh.net/p/mojomojo/contributors
Unless explicitly stated otherwise, all modules and scripts in this distribution are: Copyright 2005-2010, Marcus Ramberg
You may distribute this code under the same terms as Perl itself.
2018-01-13 | perl v5.26.1 |