This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- HelloWorld.mxml --> | |
<s:Application | |
xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx" | |
width="200" height="160"> | |
<s:Panel title="My Application" width="100%"> | |
<s:layout> | |
<s:VerticalLayout paddingTop="10" horizontalAlign="center"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"cache" : { | |
"driver" : "FastMmap", | |
"expires_variance" : "0.10" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host alumni *.alumni brunswickbowling.com cold dark dusk elitedesignsltd.com fog frost frozen medintellibasealerts.com mlri.org thegamecrafter.com server2.elitedesignsltd.com server29 server39 server40 mymhmin.org sge.plainblack.net ewc.edu hmgs-crs.org iccbba.plainblack.net qa.thegamecrafter.com smoke www2.acornnetsec.com zabbix thegamecrafter.com | |
User doug | |
ProxyCommand ssh dusk.plainblack.com "nc %h %p" 2>/dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* makeEditAsset( url ) | |
* Create a callback to edit an asset. Use when attaching to event listeners | |
*/ | |
WebGUI.Admin.prototype.makeEditAsset | |
= function (url) { | |
var self = this; // Scope correction | |
return function() { | |
self.editAsset( url ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package WhatsMyName; | |
use Moose; | |
extends 'WebGUI::Wizard'; | |
# Define our steps | |
has '+steps' => { | |
default => [qw( askForName respond )], | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package WebGUI::Content::Wizard; | |
sub process { | |
my ( $session ) = @_; | |
if ( $session->form->get('op') eq 'wizard' && my $class = $session->form->get('wizard_class') ) { | |
WebGUI::Pluggable->load($class); | |
if ( $class->isa( 'WebGUI::Wizard' ) { | |
my $wizard = $class->new( $session ); | |
return $class->dispatch; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use lib "/data/WebGUI/lib"; | |
use strict; | |
use Getopt::Long; | |
use WebGUI::Session; | |
use Time::HiRes; | |
foreach my $libDir ( readLines( "/data/WebGUI/sbin/preload.custom" ) ) { | |
if ( !-d $libDir ) { | |
warn "WARNING: Not adding lib directory '$libDir' from /data/WebGUI/sbin/preload.custom: Directory does not exist.\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting WebGUI 7.9.6 | |
Loading core.conf | |
$VAR1 = { | |
'REF-MIME::WordDecoder::US_ASCII' => 1, | |
'CHI::Stats' => 1, | |
'WebGUI::Config' => 1, | |
'Config' => 1, | |
'Log::Log4perl::Appender' => 2, | |
'Log::Log4perl::Appender::File' => 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting WebGUI 7.9.6 | |
Loading core.conf | |
CHI::Stats 1 | |
REF-Class::MOP::Attribute 7 | |
REF-Moose::Meta::TypeConstraint::Role 4 | |
REF-Moose::Meta::Role::Attribute 13 | |
Moose::Meta::Role::Composite 1 | |
REF-DateTime 2 | |
HASH 455 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use lib '/data/WebGUI/lib'; | |
use warnings; | |
use strict; | |
use Time::HiRes qw(usleep); | |
use WebGUI::Session; | |
use WebGUI::Asset; | |
use Devel::Gladiator qw(walk_arena); | |
use Devel::Size qw(size total_size); |