fix autocomplete
[rainbowstream.git] / rainbowstream / config.py
index 4faf8156936648f0963dc321260dfc3f4f0e1ae8..12dffb29e7ea81d756fcba1fee2257e909c7a0de 100644 (file)
@@ -1,12 +1,9 @@
-# This is RainbowStream App info
-CONSUMER_KEY = 'Xk1DGhR1FJa4xjg7GbdogzLJw'
-CONSUMER_SECRET = 'SpHtDmbSGCSm55AAlIeb2PsD3kGEzxyo1325rJgrND5abeOh2T'
-
 # Max Search record
 SEARCH_MAX_RECORD = 5
 # Default home tweet
 HOME_TWEET_NUM = 5
-
+# Autocomplete history
+HISTORY_FILENAME = 'completer.hist'
 
 # Stream Domain
 USER_DOMAIN = 'userstream.twitter.com'
@@ -14,3 +11,11 @@ PUBLIC_DOMAIN = 'stream.twitter.com'
 SITE_DOMAIN = 'sitestream.twitter.com'
 # Actually called
 DOMAIN = USER_DOMAIN
+
+# Filter and Ignore list ex: ['@fat','@mdo']
+ONLY_LIST = []
+IGNORE_LIST = []
+
+# Image shift and size
+IMAGE_SHIFT = 10
+IMAGE_MAX_HEIGHT = 40
\ No newline at end of file