From: Guillaume Pellerin Date: Sun, 11 Mar 2012 20:56:42 +0000 (+0100) Subject: make video optional, fix css, fix settings X-Git-Tag: 0.9~74^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2e8a28df3af3f476ea405bfd797e457ef4440efd;p=telecaster-client.git make video optional, fix css, fix settings --- diff --git a/README.rst b/README.rst index ef673f0..e66e745 100644 --- a/README.rst +++ b/README.rst @@ -2,8 +2,7 @@ README - TELECASTER =================== -TeleCaster is a web controlled audio/video recording and braodcasting system. - +Video LIVE recording and streaming system based on Gstreamer, JACK, VncServer, Fluxbox LICENCE ======= diff --git a/example/settings.py b/example/settings.py index a1f0fb3..4c25f3f 100644 --- a/example/settings.py +++ b/example/settings.py @@ -99,5 +99,6 @@ INSTALLED_APPS = ( 'south', ) -TELECASTER_CONF = '../conf/etc/telecaster/telecaster.xml' +TELECASTER_CONF = '/etc/telecaster/telecaster.xml' +TELECASTER_DISPLAY_VIDEO = False diff --git a/telecaster/htdocs/css/telecaster.css b/telecaster/htdocs/css/telecaster.css index 666cf28..6dc3936 100644 --- a/telecaster/htdocs/css/telecaster.css +++ b/telecaster/htdocs/css/telecaster.css @@ -5,8 +5,8 @@ body { div.header { background-color: #030250; color: #FFFFFF; - padding: 0.5em; - height: 42px; + padding: 0.5em; + height: 42px; font: 0.8125em/1em Verdana, sans-serif; -moz-border-radius: 25px 25px 5px 5px; -webkit-border-radius: 25px 25px 5px 5px; @@ -32,7 +32,7 @@ div.main { display: block; background-color: transparent; color: #000033; - padding: 1em; + padding: 1em; position: relative; font: 1em/1em Verdana, sans-serif; } @@ -49,7 +49,7 @@ div.tools { background-color: #030250; div.colophon { background-color: transparent; color: #000000; - font-size: 80%; + font-size: 80%; float: right; padding: 0.5em 0px 0px 1em; font: 0.8125em/1em Verdana, sans-serif; diff --git a/telecaster/templates/telecaster/base.html b/telecaster/templates/telecaster/base.html index 3c0fe23..d92ea2e 100644 --- a/telecaster/templates/telecaster/base.html +++ b/telecaster/templates/telecaster/base.html @@ -43,11 +43,13 @@ _V_("my_video_1").ready(function(){
Status
{% block video %} +{% if settings.TELECASTER_DISPLAY_VIDEO %}
+{% endif %} {% endblock video %}