view release on metacpan or search on metacpan
lib/App/Modular.pm view on Meta::CPAN
#!/usr/bin/perl -w
#----------------------------------------------------------------------------
# App::Modular - perl program modularization framewok
# App::Modular.pm: module management class
#
# Copyright (c) 2003-2004 Baltasar Cevc
#
# This code is released under the L<perlartistic> Perl Artistic
lib/App/Modular.pm view on Meta::CPAN
##################################
=pod
=head1 NAME
B<App::Modular> - modularization framework for perl programs
=head1 SYNOPSIS
package App::Modular::Module::Test;
lib/App/Modular.pm view on Meta::CPAN
exit;
=head1 DESCRIPTION
App::Modular aims to provide a framework which should it make very
easy to programmes to create any kind of modular program.
It supports:
=over 4
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/MojoSlides/MoreTagHelpers.pm view on Meta::CPAN
head
header
hr
html
i
iframe
img
label
legend
li
noscript
lib/App/MojoSlides/MoreTagHelpers.pm view on Meta::CPAN
=item html
=item i
=item iframe
=item img
=item label
view all matches for this distribution
view release on metacpan or search on metacpan
* lib/Mowyw.pm: Add line number to error message
* *: Changed license to Artistic 2.0
mowyw (0.5.2)
* lib/Mowyw.pm: configurable filter for which files to process
* lib/Mowyw/Datasource/Result.pm: First shot at a more general result set
framework. Not yet used by the rest of the program.
mowyw (0.5.1)
* mowyw: make mowyw encoding aware, added --encoding option. Default is
utf-8
mowyw (0.5.0)
* mowyw: Moved nearly all functionally to a module to allow better testing
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/MultiModule/Core.pm view on Meta::CPAN
return;
}
=head2 named_recur(%args)
This is the preferred method to schedule recurring code in this framework.
Typically called from within set_config(), it automatically ensures
that only a single POE recurring event is setup, no matter how many times
named_recur() is called.
Simply put: if your tasks has code that needs to run on an interval,
lib/App/MultiModule/Core.pm view on Meta::CPAN
};
=head2 get_multimodules_info
This returns a hash reference that contains information about every
task that the MultiModule framework is aware of. 'aware of' is not
limited to running and/or loaded. A MultiModule task module that
exists in the configured search path, even though it is not referenced
or configured, will also be in this structure.
The key to the return hash is the task name. The value is a reference
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ChordPro/Config.pm view on Meta::CPAN
my $i = {};
# Break out ;xx=yy properties.
while ( $v =~ s/\s*;\s*(\w+)\s*=\s*(.*?)\s*(;|$)/$3/ ) {
my ( $k, $v ) = ( $1, $2 );
if ( $k =~ /^(colou?r|background|frame|numbercolou?r|size)$/ ) {
$k =~ s/colour/color/;
$v =~ s/^(['"]?)(.*)\1$/$2/;
$i->{$k} = $v;
}
else {
view all matches for this distribution
view release on metacpan or search on metacpan
public/javascripts/ace.js view on Meta::CPAN
(function(){function o(n){var i=e;n&&(e[n]||(e[n]={}),i=e[n]);if(!i.define||!i.define.packaged)t.original=i.define,i.define=t,i.define.packaged=!0;if(!i.require||!i.require.packaged)r.original=i.require,i.require=r,i.require.packaged=!0}var ACE_NAMES...
window.require(["ace/ace"], function(a) {
if (a) {
a.config.init(true);
a.define = window.define;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Navegante.pm view on Meta::CPAN
=encoding utf-8
=head1 NAME
App::Navegante - a framework to build intrusive high order proxies
=head1 VERSION
Version 0.02
lib/App/Navegante.pm view on Meta::CPAN
Used to used the form that is going to be rendered in the application's
banner. For example:
C<iform(name=>text,"Set name!"=>submit)>
Would render a iframe with a two elements form: a text box named C<name>
and a submit button. See also C<iframe> for a more elaborate method
to define this form.
=item C<iframe(STRING)>
If defining the form that is used in the banner is not enough, you can
use C<iframe> to define the name of a function that returns the entire
iframe content. Note that C<iframe> always takes precedence over
C<iform> in case you define both.
=item C<quit(STRING)>
The function that is called when the appliccation's banner quit button
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Netdisco/DB/Result/DevicePort.pm view on Meta::CPAN
=head1 ADDITIONAL COLUMNS
=head2 native
An alias for the C<vlan> column, which stores the PVID (that is, the VLAN
ID assigned to untagged frames received on the port).
=cut
sub native { return (shift)->vlan }
lib/App/Netdisco/DB/Result/DevicePort.pm view on Meta::CPAN
=cut
sub pae_authsess_mab { return (shift)->get_column('pae_authsess_mab') }
=head2 pae_last_eapol_frame_source
Returns the pae_last_eapol_frame_source of the port.
=cut
sub pae_last_eapol_frame_source { return (shift)->get_column('pae_last_eapol_frame_source') }
=head2 remote_dns
Returns a hostname resolved from C<remote_ip> column.
view all matches for this distribution