POE::XUL::Javascript - POE::XUL Javascript client library documentation


POE-XUL documentation Contained in the POE-XUL distribution.

Index


Code Index:

NAME

Top

POE::XUL::Javascript - POE::XUL Javascript client library documentation

SYNOPSIS

Top

DESCRIPTION

Top

This documentation needs to be written

OBJECTS

Top

$application

getSID

    var SID = $application.getSID();

runRequest

    $application.runRequest( { event: 'Something', 
                               source_id: 'Some-ID'
                           } );

crash

    $application.crash( "Something very bad happened" );

status

    $application.status( 'run' );

Firebug

POE::XUL includes wrappers for the most excelent Firebug debugging extension. You probably don't want to be writing XBL without Firebug.

These wrappers check to see that firebug is installed before logging to its console.

fb_log

    fb_log( "Short message for firebox's console" );

Sends a message to the most excelent Firebug debugging extension. You probably don't want to be writing XBL without Firebug.

fb_dir

fb_time

fb_timeEnd

LIBRARIES

Top

prototype.js

http://www.prototypejs.org/.

util.js

AUTHOR

Top

Philip Gwyn <gwyn-at-cpan.org>

CREDITS

Top

Based on XUL::Node by Ran Eilam.

COPYRIGHT AND LICENSE

Top

SEE ALSO

Top

perl(1), POE::XUL, POE::XUL::Node, , POE::XUL::TextNode.


POE-XUL documentation Contained in the POE-XUL distribution.

package POE::XUL::Javascript;
# $Id$
# Copyright Philip Gwyn 2007-2010.  All rights reserved.

use strict;


1;

__DATA__