Bot-Pastebot
view release on metacpan or search on metacpan
---
abstract: 'the original clipboard to chat gateway'
author:
- 'Rocco Caputo <rcaputo@cpan.org>'
build_requires: {}
configure_requires:
ExtUtils::MakeMaker: '6.30'
File::ShareDir::Install: '0.06'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.019, CPAN::Meta::Converter version 2.141520'
license: perl
meta-spec:
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker 6.30;
use File::ShareDir::Install;
$File::ShareDir::Install::INCLUDE_DOTFILES = 1;
$File::ShareDir::Install::INCLUDE_DOTDIRS = 1;
install_share dist => "static";
my %WriteMakefileArgs = (
"ABSTRACT" => "the original clipboard to chat gateway",
"AUTHOR" => "Rocco Caputo <rcaputo\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30",
"File::ShareDir::Install" => "0.06"
},
"DISTNAME" => "Bot-Pastebot",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "Bot::Pastebot",
"PREREQ_PM" => {
NAME
Bot::Pastebot - the original clipboard to chat gateway
VERSION
version 0.600
SYNOPSIS
pastebot -f configfile
DESCRIPTION
See pastebot for the full documentation, including syntax and options
for pastebot's configuration files.
README.mkdn view on Meta::CPAN
# NAME
Bot::Pastebot - the original clipboard to chat gateway
# VERSION
version 0.600
# SYNOPSIS
pastebot -f configfile
# DESCRIPTION
lib/Bot/Pastebot.pm view on Meta::CPAN
$Bot::Pastebot::VERSION = '0.600';
use warnings;
use strict;
1;
__END__
=head1 NAME
Bot::Pastebot - the original clipboard to chat gateway
=head1 VERSION
version 0.600
=head1 SYNOPSIS
pastebot -f configfile
=head1 DESCRIPTION
sub VERSION_MESSAGE {
my $output = shift;
print $output "$0 version $VERSION\n";
}
__END__
=head1 NAME
pastebot - the original clipboard to chat gateway
=head1 SYNOPSIS
pastebot -f configfile
=head1 DESCRIPTION
Pastebot is an IRC bot and a web server in one program. Users submit
short pieces of text to the web server, and the IRC bot announces them
in IRC.
static/paste-form.html view on Meta::CPAN
4. paste: <textarea name='paste' rows=25 cols=75 style='width:100%'></textarea><br><br>
5. <input type='submit' name='Paste it' value='Paste it'><input type='reset' name='Clear form' value='Clear form'>
</font>
</form><br>
<div align="right">
<a href="http://validator.w3.org/check/referer"><img border="0" src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88"></a><br><br>
</div>
<div>
[% $footer %]
</div>
<!-- Automatically put the clipboard contents into the paste field and select it. -->
<script language="jscript" type="">
onload=function () {
try {
document.pasteForm.paste.value=clipboardData.getData("Text") || "";
document.pasteForm.paste.select();
}
catch (oErr) {}
}
</script>
</body>
</html>
( run in 1.394 second using v1.01-cache-2.11-cpan-84e82930d8c )