discourse-legacysite-perl/site/slowtwitch.com/cgi-bin/articles/ticker/coupons.cgi
2024-06-17 21:49:12 +10:00

20 lines
491 B
Perl
Executable File

#!/usr/local/bin/perl
#
# Handle requests for the client-side view of the Ticker.
#
# Returns an xml document containing all the tickers currently present in
# the database.
#
use strict;
use warnings;
use lib '/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin';
use GT::Template;
use Links qw(:objects);
use Ticker;
Links::init('/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin');
Links::init_user();
print $IN->header();
print Links->user_page('include_ticker_coupons.html');