#!/usr/bin/python
#

from xmlrpclib  import *
from SimpleXMLRPCServer import *
from time import *
from math import *

def upcoming_show():
	show='http://localhost/ogg/play30.ogg'
	#timestamp= floor(time())
	timestamp= floor(time())+60
	return (timestamp,show)



cgi = CGIXMLRPCRequestHandler()
cgi.register_function(upcoming_show)
cgi.register_introspection_functions()
cgi.handle_request()


