-added new pypo

This commit is contained in:
mkonecny 2011-01-17 10:30:45 -05:00
parent 209e8b5998
commit fa991a56ad
73 changed files with 8609 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#######################################################################
# Dynamic variables
#######################################################################
playlist_type = ref '0'
pypo_data = ref '0'
def set_playlist_type(s)
playlist_type := s
end
def set_pypo_data(s)
pypo_data := s
end
server.register(namespace="vars", "playlist_type", fun (s) -> begin set_playlist_type(s) "Done!" end)
server.register(namespace="vars", "pypo_data", fun (s) -> begin set_pypo_data(s) "Done!" end)