Goo::Zone - Show the tail of the Goo trail


Goo documentation Contained in the Goo distribution.

Index


Code Index:

NAME

Top

Goo::Zone - Show the tail of the Goo trail

SYNOPSIS

Top

use Goo::Zone;

DESCRIPTION

Top

Action handler for viewing the trail of the Goo Trail (i.e., [Z]one). It tries to answer the question, "what am I currently juggling?"

METHODS

Top

run

Show the tail of the Goo Trail

AUTHOR

Top

Nigel Hamilton <nigel@trexy.com>

SEE ALSO

Top


Goo documentation Contained in the Goo distribution.

package Goo::Zone;

###############################################################################
# Nigel Hamilton
#
# Copyright Nigel Hamilton 2005
# All Rights Reserved
#
# Author:       Nigel Hamilton
# Filename:     Zone.pm
# Description:  Show the tail of the Goo trail
#
# Date          Change
# -----------------------------------------------------------------------------
# 21/08/2005    Deleted method: generateProfile
# 21/08/2005    Deleted method: showProfile
# 21/08/2005    Deleted method: getGooTrailTable
#
###############################################################################

use strict;

use Goo::Object;
use Goo::Loader;

use base qw(Goo::Object);


###############################################################################
#
# run - go back!!
#
###############################################################################

sub run {

    my ($this, $thing) = @_;

    # get the previous action in the GooTrail
    # do the action again!
    my $trail = Goo::Loader::load("tail.trail");

    # do the action again!
    $trail->do_action("P");

}

1;


__END__