summaryrefslogtreecommitdiff
path: root/cpan/CGI/examples/nph-clock.cgi
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2013-10-18 18:20:31 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2013-10-18 18:21:25 +0100
commit84c82da487906645eec2128aa4d8f1cde743d405 (patch)
tree91309c55bd4086abcee7e37eadcd58b539c37125 /cpan/CGI/examples/nph-clock.cgi
parent8db6555210da586fd395dac83edcff64f4451570 (diff)
downloadperl-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.cgi18
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();
-}
-