<?php

/* MusicTicker - XML version 1.4.2                           */
/* MAD props to Tom Pepper and Tag Loomis for all their help */
/* --------------------------------------------------------- */
/* SCXML configuration version 0.4.2                         */
/* December 01 2004 01:05 EST                                */

//manditory config items
$host "shoutcast_server_ip_address"// host or ip of shoutcast server
$port "shoutcast_server_port_number"// port of shoutcast server
$password "shoutcast_server_password"// password for shoutcast server
$maxsongs "20"// max number of songs to display (max is 20)
$rfrshrate "60"// reload rate of page
$timeat "0"// display starttime (0) or endtime (1)

//gui config items
$bodybgcolor "#f0f6fb";
$bodytext "#000000";
$bodylink "#708fbe";
$bodyvlink "#708fbe";
$bordercolor "#000000";
$csscolor "#708fbe";
$font "Arial, Helvetica";
$align "center";
$adjust "0"// change time to correct for server time (hour x 3600)

//master table color scheme
$mstrtext "#000000";
$mstrbgcolor "#f0f6fb";

//lead table color scheme
$tbl1bgcolor1 "#708fbe";
$tbl1bgcolor2 "#ffffff";
$tbl1text "#ffffff";

//content table color scheme
$tbl2bgcolor1 "#708fbe";
$tbl2bgcolor2 "#ffffff";
$tbl2text1 "#ffffff";
$tbl2text2 "#000000";

//error screen color scheme
$errorbgcolor "#f0f6fb";
$errortext "#708fbe";

//On screen messages
$pgtitle "Shoutcast Status Page";
$header "Shoutcast Status Page";
$timezone "EST (-0500 GMT)";
$errormsg1 "Sorry, The Server Is Currently Down";
$errormsg2 "It Will Be Back Up ASAP !!!";
$dsperror1 "Sorry, The Server Is Currently Unable To Retreive It's Source";
$dsperror2 "It Will Be Back Up ASAP !!!";

$error1 "<html>\n<head>\n</head>\n<body bgcolor=\"$errorbgcolor\">\n<h2>\n<p align=\"center\"><font color=\"$errortext\">$errormsg1</p>\n<br>\n<p align=\"center\">$errormsg2</p>\n</font>\n</h2>\n</body>\n</html>";
$error2 "<html>\n<head>\n</head>\n<body bgcolor=\"$errorbgcolor\">\n<h2>\n<p align=\"center\"><font color=\"$errortext\">$dsperror1</p>\n<br>\n<p align=\"center\">$dsperror2</p>\n</font>\n</h2>\n</body>\n</html>";

?>