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
 
@@ -633,8 +633,4 @@ if __name__ == "__main__":
 
    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
 
@@ -416,7 +416,7 @@ if __name__ == "__main__":
 
    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)
light9/subserver/effects.coffee
Show inline comments
 
@@ -29,7 +29,7 @@ model = new Model()
 
model.addToCurrentSong = (e) ->
 
  $.ajax({
 
    type: 'POST'
 
    url: '//localhost:8070/songEffects'
 
    url: '/effectEval/songEffects'
 
    data: {drop: e.uri}
 
  })
 

	
light9/web/style.css
Show inline comments
 
@@ -27,8 +27,10 @@ input[type=text] {
 
}
 
#status {
 
    position: fixed;
 
    bottom: 10px;
 
    right: 10px;
 
    bottom: 0px;
 
    right: 0px;
 
    background: rgba(0, 0, 0, 0.47);
 
    padding-left: 6px;
 
}
 

	
 

	
 
@@ -127,6 +129,8 @@ button a {
 
        height: initial;
 
        width: 100%;
 
        margin: initial;
 
        border-width: 1px;
 
        margin-bottom: 2px;
 
    }
 
    .num {
 
        font-size: initial;
0 comments (0 inline, 0 general)