cal
[rainbowstream.git] / rainbowstream / config.py
1 # Max Search record
2 SEARCH_MAX_RECORD = 5
3 # Default home tweet
4 HOME_TWEET_NUM = 5
5 # Default direct message's number
6 MESSAGES_DISPLAY = 5
7 # Max trending topics display
8 TREND_MAX = 10
9 # Autocomplete history
10 HISTORY_FILENAME = 'completer.hist'
11
12 # Stream Domain
13 USER_DOMAIN = 'userstream.twitter.com'
14 PUBLIC_DOMAIN = 'stream.twitter.com'
15 SITE_DOMAIN = 'sitestream.twitter.com'
16 # Actually called
17 DOMAIN = USER_DOMAIN
18
19 # Filter and Ignore list ex: ['@fat','@mdo']
20 ONLY_LIST = []
21 IGNORE_LIST = []
22
23 # Image shift and size
24 IMAGE_SHIFT = 10
25 IMAGE_MAX_HEIGHT = 40