Why not adopt me?
This distribution is up for adoption!
        If you're interested then please contact the PAUSE module admins via
        email.
        
      
  NAME
Rudesind::UI - Functions used by the Rudesind UI
SYNOPSIS
my ( $gallery, $image ) = Rudesind::UI::new_from_path( $path );
my $html = Rudesind::UI::text_to_html( $image->caption );
DESCRIPTION
This module contains a few functions needed for Rudesind's Mason UI.
FUNCTIONS
Currently, this module provides two functions:
new_from_path($path)
Given a path based on the current URI, this function determines whether this path is for an image or gallery.
If it is for a gallery, it returns a list consisting of a single
Rudesind::Galleryobject. If it is for an image, it returns a list consisting of aRudesind::GalleryandRudesind::Imageobject.text_to_html($text)
Given a piece of text (a gallery or image caption), this method formats that text as HTML using
Text::WikiFormat, and returns the HTML.