Changeset - 79c615718a2f
[Not reviewed]
default
0 4 0
Drew Perttula - 10 years ago 2015-06-08 09:28:55
drewp@bigasterisk.com
#status corner style. rm hardcoded show uri. fix 'add to current song' ajax path.
Ignore-this: e2da0be542cf51456c12a2bbe7f5bb5d
4 files changed with 8 insertions and 8 deletions:
0 comments (0 inline, 0 general)
bin/keyboardcomposer
Show inline comments
 
@@ -630,11 +630,7 @@ if __name__ == "__main__":
 
            log.warn("Can't (and won't!) start level server:")
 
            log.warn(e)
 

	
 
    root.protocol('WM_DELETE_WINDOW', reactor.stop)
 

	
 
    tksupport.install(root,ms=10)
 

	
 

	
 
#    prof.watchPoint("/usr/lib/python2.4/site-packages/rdflib-2.3.3-py2.4-linux-i686.egg/rdflib/Graph.py", 615)
 

	
 
    prof.run(reactor.run, profile=None)
bin/rdfdb
Show inline comments
 
@@ -413,13 +413,13 @@ if __name__ == "__main__":
 
                      help="logging.DEBUG")
 
    (options, args) = parser.parse_args()
 

	
 
    log.setLevel(logging.DEBUG if options.verbose else logging.INFO)
 

	
 
    db = Db(dirUriMap={os.environ['LIGHT9_SHOW'].rstrip('/') + '/':
 
                       URIRef('http://light9.bigasterisk.com/show/dance2014/')})
 
                       showconfig.showUri()})
 

	
 
    from twisted.python import log as twlog
 
    twlog.startLogging(sys.stdout)
 

	
 
    reactor.listenTCP(networking.rdfdb.port, cyclone.web.Application(handlers=[
 
        (r'/live', Live),
light9/subserver/effects.coffee
Show inline comments
 
@@ -26,13 +26,13 @@ class Model
 

	
 
model = new Model()
 

	
 
model.addToCurrentSong = (e) ->
 
  $.ajax({
 
    type: 'POST'
 
    url: '//localhost:8070/songEffects'
 
    url: '/effectEval/songEffects'
 
    data: {drop: e.uri}
 
  })
 

	
 
reconnectingWebSocket "../effectsUpdates", (msg) ->
 
  model.chases(msg.chases) if msg.chases?
 
  model.classes(msg.classes) if msg.classes?
light9/web/style.css
Show inline comments
 
@@ -24,14 +24,16 @@ input[type=text] {
 
    border: 1px inset rgb(177, 177, 177);
 
    background: rgb(230, 230, 230);
 
    padding: 3px;
 
}
 
#status {
 
    position: fixed;
 
    bottom: 10px;
 
    right: 10px;
 
    bottom: 0px;
 
    right: 0px;
 
    background: rgba(0, 0, 0, 0.47);
 
    padding-left: 6px;
 
}
 

	
 

	
 
.songs {
 
    -moz-column-width:205px;
 
    -webkit-column-width:205px;
 
@@ -124,12 +126,14 @@ button a {
 
    }
 
    .songs button {
 
        font-size: initial;
 
        height: initial;
 
        width: 100%;
 
        margin: initial;
 
        border-width: 1px;
 
        margin-bottom: 2px;
 
    }
 
    .num {
 
        font-size: initial;
 
        padding: initial;
 
    }
 
    .commands button {
0 comments (0 inline, 0 general)