Started integration of pypo with Campcaster. Refactored pypo so that

it can work with either OBP or Campcaster.  Added the liquidsoap
binary.  Started to add the PHP API scripts to send the correct data
to pypo (those these are not pretty - all one-off scripts for each
API command). Added Zend to the default path.
This commit is contained in:
paul.baranowski 2010-11-08 16:54:54 -05:00
parent d6eb1412b7
commit 4a055dde50
16 changed files with 706 additions and 415 deletions

View file

@ -21,7 +21,7 @@ propagate=0
[handler_consoleHandler]
class=StreamHandler
level=ERROR
level=DEBUG
formatter=simpleFormatter
args=(sys.stdout,)
@ -29,13 +29,13 @@ args=(sys.stdout,)
class=FileHandler
level=WARNING
formatter=simpleFormatter
args=("/var/log/obp/pypo/error.log",)
args=("./error.log",)
[handler_fileHandlerDEBUG]
class=FileHandler
level=DEBUG
formatter=simpleFormatter
args=("/var/log/obp/pypo/debug.log",)
args=("./debug.log",)
[handler_nullHandler]
class=FileHandler
@ -44,8 +44,6 @@ formatter=simpleFormatter
args=("/tmp/sessionlog_null.log",)
[formatter_simpleFormatter]
format=%(asctime)s %(levelname)s - [%(name)s] - %(message)s
datefmt=