Aliases
-------

 OK, at the begin I have to say: "Don't read this article!" ;-)

:-) Well, are you still here? I have made couple of aliases for diferrent scope in
namespace of script and webtools module.

Example:

<?perl
 main.yahoo = 'This';
 my $var = ' is just a test';
 my %script.fly = ('name'=>'Julian Lishev');
 #  @script.fly = ('name'=>'Julian Lishev');
 my script.yahoo = "Welcome dear user! main.yahoo$var";

 print script.yahoo;
 print "<BR>".$script.fly{'name'}."<BR>";
 # print "<BR>".$script.fly[0]."<BR>";
?>

this is eqivalent to:

<?perl
 $webtools::yahoo = 'This';
 my $var = ' is just a test';
 my %sys__scriptname_fly = ('name'=>'Julian Lishev');
 #  @sys__scriptname_fly = ('name'=>'Julian Lishev');
 my $sys__scriptname_yahoo = "Welcome dear user! $webtools::yahoo$var";

 print $sys__scriptname_yahoo;
 print "<BR>".$sys__scriptname_fly{'name'}."<BR>";
 # print "<BR>".$sys__scriptname_fly[0]."<BR>";
?>

NOTE: Recurse is not available for sub classes! (can't use main.var.var2...)

 Please use this aliases very carefully! Sometimes they can be useful but
sometimes you can get strange errors! Use it at your own risk!

Author: Julian Lishev,
e-mail: julian@proscriptum.com
URL: www.proscriptum.com