tweetcast/nodejs-bis/conf.js
changeset 374 0c4acfa2aea1
child 380 b3f66379fed7
equal deleted inserted replaced
373:66092f867c03 374:0c4acfa2aea1
       
     1 /* CONFIGURATION FILE USED BY BOTH CLIENT AND SERVER */
       
     2 
       
     3 var app_port = 8000,
       
     4     tracking_keywords = [ "sarkozy" ],
       
     5     annotations = {
       
     6         "default" : {
       
     7             "colors" : {
       
     8                 "tweet" : "#ffffff",
       
     9                 "timeline" : "#585858"
       
    10             }
       
    11         },
       
    12         "positive" : {
       
    13             "keywords" : [ /\+\+/ ],
       
    14             "colors" : {
       
    15                 "tweet" : "#c5e7cd",
       
    16                 "timeline" : "#1D973D"
       
    17             }
       
    18         },
       
    19         "negative" : {
       
    20             "keywords" : [ /\-\-/ ],
       
    21             "colors" : {
       
    22                 "tweet" : "#f6ced0",
       
    23                 "timeline" : "#CE0A15"
       
    24             }
       
    25         },
       
    26         "reference" : {
       
    27             "keywords" : [ /\=\=/ ],
       
    28             "colors" : {
       
    29                 "tweet" : "#ecedc1",
       
    30                 "timeline" : "#C5A62D"
       
    31             }
       
    32         },
       
    33         "question" : {
       
    34             "keywords" : [ /\?\?/ ],
       
    35             "colors" : {
       
    36                 "tweet" : "#bfdbec",
       
    37                 "timeline" : "#036AAE"
       
    38             }
       
    39         }
       
    40     }