Next refresh should show more results. ( run in 0.752 )
view release on metacpan or search on metacpan
lib/A1z/HTML5/Template.pm view on Meta::CPAN
view all matches for this distribution
2294229522962297229822992300230123022303# include write_file if you submit form to the same file ( TemplateAdmin.cgi )
say
$h
->body_article(
header
=>
"<a href='$sys{cgiurl}/TemplateAdmin.cgi' title='Refresh to get the latest/saved content'>Refresh</a> "
,
content
=>
$h
->write_file(
file
=>
"/absolute/path/to/app/open_file_example.txt"
)
);
view release on metacpan or search on metacpan
view all matches for this distribution
210211212213214215216217218219220
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
free software which everyone can redistribute and change under these
terms.
To
do
so, attach the following notices to the program. It is safest to
view release on metacpan or search on metacpan
inc/Devel/CheckLib.pm view on Meta::CPAN
8788899091929394959697=head2 assert_lib
This takes several named parameters, all of which are optional, and dies
with an error message if any of the libraries listed can
not be found. B<Note>: dying in a Makefile.PL or Build.PL may provoke
a 'FAIL' report from CPAN Testers' automated smoke testers. Use
C<check_lib_or_exit> instead.
The named parameters are:
=over
inc/Devel/CheckLib.pm view on Meta::CPAN
198199200201202203204205206207208209210211212# borrowed from Text::ParseWords
sub
_parse_line {
my
(
$delimiter
,
$keep
,
$line
) =
@_
;
my
(
$word
,
@pieces
);
no
warnings
'uninitialized'
;
# we will be testing undef strings
while
(
length
(
$line
)) {
# This pattern is optimised to be stack conservative on older perls.
# Do not refactor without being careful and testing it on very long strings.
# See Perl bug #42980 for an example of a stack busting input.
$line
=~ s/^
(?:
# double quoted string
(")
# $quote
inc/Devel/CheckLib.pm view on Meta::CPAN
548549550551552553554555556557=head1 PLATFORMS SUPPORTED
You must have a C compiler installed. We check for C<$Config{cc}>,
both literally as it is in Config.pm and also in the $PATH.
It has been tested with varying degrees of rigorousness on:
=over
=item gcc (on Linux, *BSD, Mac OS X, Solaris, Cygwin)
inc/Devel/CheckLib.pm view on Meta::CPAN
574575576577578579580581582583584=head1 WARNINGS, BUGS and FEEDBACK
This is a very early release intended primarily for feedback from
people who have discussed it. The interface may change and it has
not been adequately tested.
Feedback is most welcome, including constructive criticism.
Bug reports should be made using L<http://rt.cpan.org/> or by email.
When submitting a bug report, please include the output from running:
inc/Devel/CheckLib.pm view on Meta::CPAN
view all matches for this distribution
598599600601602603604605606607608David Golden E<lt>dagolden
@cpan
.orgE<gt>
Yasuhiro Matsumoto E<lt>mattn
@cpan
.orgE<gt>
Thanks to the cpan-testers-discuss mailing list
for
prompting us to
write
it
in the first place;
to Chris Williams
for
help
with
Borland support;
to Tony Cook
for
help
with
Microsoft compiler command-line options
view release on metacpan or search on metacpan
view all matches for this distribution
1234567Revision history
for
AAAA-Mail-SpamAssassin
0.002 2012-12-14
- POD cleanup and minimal test
0.001 2012-12-12
- initial CPAN release
view release on metacpan or search on metacpan
view all matches for this distribution
151617181920212223
requires
=> {},
pm_files
=> {
"aaa/AAAAAAAAA.pm"
=>
"lib/AAAAAAAAA.pm"
},
test_files
=>
"a/*.a"
,
);
$builder
->create_build_script;
view release on metacpan or search on metacpan
lib/AAC/Pvoice/Panel.pm view on Meta::CPAN
343344345346347348349350351352353
$self
->{tls}->Add(
$rowsizer
, 0, wxALIGN_CENTRE, 0);
$self
->{textrowsizer} =
$rowsizer
;
$self
->{text}->SetValue(
my
$x
=
$self
->RetrieveText);
$self
->{text}->SetStyle(0,
length
(
$self
->{text}->GetValue),
$self
->{ta});
$self
->{text}->Refresh();
# Added to test it on the Mercury...added text
# isn't visible there...
}
$self
->{title}->SetBackgroundColour(
$self
->BackgroundColour)
unless
$self
->{disabletitle};
$self
->{tls}->AddGrowableCol(0);
lib/AAC/Pvoice/Panel.pm view on Meta::CPAN
437438439440441442443444445446447sub
DisplayAddText
{
my
$self
=
shift
;
push
@{
$self
->{displaytextsave}},
$_
[0];
$self
->{text}->AppendText(
$_
[0]);
$self
->{text}->Refresh();
# Added to test it on the Mercury...added text
# isn't visible there...
}
sub
SpeechAddText
{
lib/AAC/Pvoice/Panel.pm view on Meta::CPAN
view all matches for this distribution
459460461462463464465466467468469470471472473474475476477478479480{
my
$self
=
shift
;
$self
->{displaytextsave}=[];
$self
->{speechtextsave}=[];
$self
->{text}->SetValue(
''
);
$self
->{text}->Refresh();
# Added to test it on the Mercury...added text
# isn't visible there...
}
sub
BackspaceText
{
my
$self
=
shift
;
pop
@{
$self
->{displaytextsave}};
pop
@{
$self
->{speechtextsave}};
$self
->{text}->SetValue(
my
$x
=
$self
->RetrieveText);
$self
->{text}->SetStyle(0,
length
(
$self
->{text}->GetValue),
$self
->{ta});
$self
->{text}->Refresh();
# Added to test it on the Mercury...added text
# isn't visible there...
}
sub
SpeechRetrieveText
{
view release on metacpan or search on metacpan
view all matches for this distribution
234567891011Revision history
for
Perl extension ABI.
1.0 Sat Nov 18 04:22:53 2006
- Changed to Module::Build
system
- Added test data
- Changed to Test::More
- Access to user modified sequence
- Access to user modified basecalls
view release on metacpan or search on metacpan
view all matches for this distribution
4567891011121314README
t/ABNF-Grammar.t
t/ABNF-Validator.t
t/ABNF-Generator-Liar.t
t/ABNF-Generator-Honest.t
t/data/test.abnf
lib/ABNF/Grammar.pm
lib/ABNF/Validator.pm
lib/ABNF/Generator.pm
lib/ABNF/Generator/Liar.pm
lib/ABNF/Generator/Honest.pm
view release on metacpan or search on metacpan
lib/AC/MrGamoo/FileList.pm view on Meta::CPAN
view all matches for this distribution
33343536373839404142
);
=head1 IMPORTANT
You can fire up the system, and get the servers talking to each other, and
perform some limited tests without this file.
But you must provide this file in order to actually run map/reduce jobs.
=head1 DESCRIPTION
view release on metacpan or search on metacpan
lib/AC/Yenta/Store/Tokyo.pm view on Meta::CPAN
view all matches for this distribution
9101112131415161718package
AC::Yenta::Store::Tokyo;
use
strict;
# does not work on sparc (tests sigbus)
# new version does not compile with gcc 3.4.3
#
# faster average performance than BDB
# worse worst-case performance than BDB
view release on metacpan or search on metacpan
lib/ACH/Generator.pm view on Meta::CPAN
1920212223242526272829May 2006
=head1 DESCRIPTION
ACH::Generator is a simple, generic subclass of ACH used to generate ACH files.
It's intentional use is for testing purposes ONLY. ACH-Generator will allow a
developer to create an ACH formatted file.
=head1 USING ACH-Generator
use ACH::Generator;
lib/ACH/Generator.pm view on Meta::CPAN
view all matches for this distribution
9293949596979899100101102}
=head2 CAVEATS
This package is created for testing purposes only. It shouldn't be used
for production programs or scripts. There are other commercial products
out there that may be a more efficient solution for accomplishing your
goals.
All records in an ACH file must be formatted in the following sequence
view release on metacpan or search on metacpan
lib/ACH/Parser.pm view on Meta::CPAN
19202122232425262728May 2006
=head1 DESCRIPTION
ACH::Parser is a simple, generic ACH file to ACH object parser.
It's intentional use is for testing purposes ONLY. ACH-Parser will
allow a developer to look at the particular fields in an ACH formatted
file.
=head1 USING ACH-Parser
lib/ACH/Parser.pm view on Meta::CPAN
view all matches for this distribution
919293949596979899100101}
=head2 CAVEATS
This package is created for testing purposes only. It shouldn't be used
for production programs or scripts. There are other commercial products
out there that may be a more efficient solution for accomplishing your
goals.
All records in an ACH file must be formatted in the following sequence
view release on metacpan or search on metacpan
15161718192021222324May 2006
=head1 DESCRIPTION
ACH is a simple, generic perl object that contains the data necesary to
create an ACH file. It's intentional use is for testing purposes ONLY.
ACH will allow a developer to manipulate specific data fields in an ACH
formatted object.
=head1 USING ACH
view all matches for this distribution
125126127128129130131132133134135}
=head2 CAVEATS
This package is created for testing purposes only. It shouldn't be used
for production programs or scripts. There are other commercial products
out there that may be a more efficient solution for accomplishing your
goals.
All records in an ACH file must be formatted in the following sequence
view release on metacpan or search on metacpan
view all matches for this distribution
15161718192021222324250.0002 Wed May 22 15:57:12 2013 CEST
[BUG FIXES]
* Execute POD tests only during release testing.
[ENHANCEMENTS]
* Add permissions method to retrieve list or hash reference of
permissions.
view release on metacpan or search on metacpan
view all matches for this distribution
10111213141516t/acl.permit.txt
t/acl.reject.txt
t/action.txt
t/actions.txt
t/required.txt
t/test_acl.pl
META.yml Module meta-data (added by MakeMaker)
view release on metacpan or search on metacpan
view all matches for this distribution
210211212213214215216217218219220
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
free software which everyone can redistribute and change under these
terms.
To
do
so, attach the following notices to the program. It is safest to