#!/usr/bin/perl # IRC/Jabber credentials $jabberuser = ''; $jabberpass = ''; $jabberserver = ''; $ircnick = ''; $ircserver = ''; $ircport = 6667; $ircname = ''; $ircuser = ''; $ircpass = ''; $ichan = ''; $nickpass = ''; # Jam internal stuff $xmlfile = ''; $port = 9001; $realm = ''; $groupfile = 'jam-group'; %months = (Jan=>'0', Feb=>'1', Mar=>'2', Apr=>'3', May=>'4', Jun=>'5', Jul=>'6', Aug=>'7', Sep=>'8', Oct=>'9', Nov=>'10', Dec=>'11'); $doc = ''; $country = 'country.out'; $post = 'uk.out'; $helpfile = 'jam-help'; # Database credentials $dbuser = ''; $dbpass = ''; $dbhost = 'localhost'; $dbwikidb = 'mediawiki'; $dbwikitab = 'revision'; $dbphonedb = 'payphones'; $dbphonestab = 'payphones'; $dbphonesarchivetab = 'payphones_archive'; # SVN settings $path = '/var/svn/bb-repos'; $svnbin = '/usr/bin/svnlook'; # Data feeds $weatherfeed = 'http://feeds.bbc.co.uk/weather/feeds/rss/5day/'; $curweatherfeed = 'http://feeds.bbc.co.uk/weather/feeds/rss/obs/'; $breakingnewsfeed = 'http://news.bbc.co.uk/nol/shared/bsp/hi/services/desktop_alerts/xml/ifs/alert_data.xml'; $bbcfrontpage = 'http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml'; $tinyurl = 'http://tinyurl.com/api-create.php?url='; $tflurl = 'http://www.socialanimal.com/tube/status.php?format=xml'; $moonfeed = 'http://interglacial.com/rss/moon_phase.rss'; $eqfeed = 'http://earthquake.usgs.gov/eqcenter/catalogs/7day-M5.xml'; # Resistor colour code data @colour = qw(Black Brown Red Orange Yellow Green Blue Purple Grey White Silver Gold); %tolerance = (0.5 => 'Green', 1 => 'Brown', 2=> 'Red', 5 => 'Gold', 10 => 'Silver'); %resnumcol = (black => '0', brown => '1', red => '2', orange => '3', yellow => '4', green => '5', blue => '6', purple => '7', grey => '8', white => '9'); %resnumcol1 = (black => 1, brown => 10, red => 100, orange => 1000, yellow => 10000, green => 100000, blue => 1000000, purple => 10000000, grey => 100000000, white => 1000000000, silver => 0.01, gold => 0.1); %resnumtol = (green => 0.5, brown => 1, red => 2, gold => 5, silver => 10);