diff -r f7ceddf99d6d -r bf5cf5a9e737 tweetcast/server-nodejs/conf.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tweetcast/server-nodejs/conf.js Wed Dec 14 12:46:53 2011 +0100 @@ -0,0 +1,43 @@ +/* CONFIGURATION FILE USED BY BOTH CLIENT AND SERVER */ + +RECORD_NEW_TWEETS = false; +STANDALONE_APP = true; + +var app_port = 8000, + tracking_keywords = [ "sarkozy" ], + annotations = { + "default" : { + "colors" : { + "tweet" : "#ffffff", + "timeline" : "#585858" + } + }, + "positive" : { + "keywords" : [ /\+\+/ ], + "colors" : { + "tweet" : "#c5e7cd", + "timeline" : "#1D973D" + } + }, + "negative" : { + "keywords" : [ /\-\-/ ], + "colors" : { + "tweet" : "#f6ced0", + "timeline" : "#CE0A15" + } + }, + "reference" : { + "keywords" : [ /\=\=/ ], + "colors" : { + "tweet" : "#ecedc1", + "timeline" : "#C5A62D" + } + }, + "question" : { + "keywords" : [ /\?\?/ ], + "colors" : { + "tweet" : "#bfdbec", + "timeline" : "#036AAE" + } + } + } \ No newline at end of file