Removed URLFetch module (its functionality is now provided by Fetcher module).
[straw.git] / straw / ConfigOptions.py
blob08f64c3c01140e4ffd881657228e6378ea83415f
1 OPTION_LAST_POLL = "/general/last_poll"
2 OPTION_ITEMS_STORED = "/general/number_of_items_stored"
3 OPTION_ITEM_ORDER = "/general/item_order_newest"
4 OPTION_BROWSER_CMD = "/general/browser_cmd"
5 OPTION_WINDOW_SIZE_W = "/ui/window_width"
6 OPTION_WINDOW_SIZE_H = "/ui/window_height"
7 OPTION_MAIN_PANE_POS = "/ui/main_pane_position"
8 OPTION_SUB_PANE_POS = "/ui/sub_pane_position"
9 OPTION_WINDOW_MAX = "/ui/window_maximized"
10 OPTION_MAGNIFICATION = "/ui/text_magnification"
11 OPTION_PANE_LAYOUT = "/ui/pane_layout"
12 OPTION_OFFLINE = "/general/offline"
13 OPTION_POLL_FREQUENCY = "/general/poll_frequency"
15 config_options_defaults = \
17 OPTION_LAST_POLL: 0,
18 OPTION_ITEMS_STORED: 30,
19 OPTION_ITEM_ORDER: True,
20 OPTION_BROWSER_CMD: "",
21 OPTION_WINDOW_SIZE_W: 640,
22 OPTION_WINDOW_SIZE_H: 480,
23 OPTION_MAIN_PANE_POS: 100,
24 OPTION_SUB_PANE_POS: 100,
25 OPTION_WINDOW_MAX: False,
26 OPTION_MAGNIFICATION: 1.0,
27 OPTION_PANE_LAYOUT: "vertical",
28 OPTION_OFFLINE: True,
29 OPTION_POLL_FREQUENCY: 1800