diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-18 18:20:31 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-18 18:21:25 +0100 |
commit | 84c82da487906645eec2128aa4d8f1cde743d405 (patch) | |
tree | 91309c55bd4086abcee7e37eadcd58b539c37125 /cpan/CGI/examples/nph-clock.cgi | |
parent | 8db6555210da586fd395dac83edcff64f4451570 (diff) | |
download | perl-84c82da487906645eec2128aa4d8f1cde743d405.tar.gz |
Remove further IGNORABLE-like files under cpan/
These are all examples, demos and oddly named READMEs.
Diffstat (limited to 'cpan/CGI/examples/nph-clock.cgi')
-rw-r--r-- | cpan/CGI/examples/nph-clock.cgi | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cpan/CGI/examples/nph-clock.cgi b/cpan/CGI/examples/nph-clock.cgi deleted file mode 100644 index f34fde27e9..0000000000 --- a/cpan/CGI/examples/nph-clock.cgi +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/local/bin/perl -w - -use CGI::Push qw(:standard :html3); - -do_push(-next_page=>\&draw_time,-delay=>1); - -sub draw_time { - my $time = localtime(); - return start_html('Tick Tock'), - div({-align=>CENTER}, - h1('Virtual Clock'), - h2($time) - ), - hr, - a({-href=>'index.html'},'More examples'), - end_html(); -} - |