Make sure the gtd base path has a trailing slash.
[matthijs/upstream/mobilegtd.git] / src / config / defaultconfig.py
1 import os
2
3 main_config_file = 'C:/System/Data/mobile_gtd.cfg'
4
5 default_configuration = {"screen":"normal",
6 # Make the path absolute. This is a no-op on Symbian, since it is
7 # already absolute, but helps when running on other systems (some of the
8 # code relies on this path being absolute).
9 "path": os.path.abspath("C:/Data/GTD") + os.sep,
10 "inactivity_threshold":"7",
11 "read_sms":"1",
12 "action_editor":"form"
13 }
14
15 default_actions_menu = {
16 "switch_entry_filter":"1,Toggle Active/All/Inactive Actions",
17 "add_action":"2,Add Action",
18 "add_info":"4,Add Info",
19 "change_status":"7,Change Status",
20 #"change":"8,Change Text",
21 "search_item":"0,Search Item",
22 "edit_menu":"5,Edit menu configuration",
23 "remove":"Backspace,Remove Item",
24 }
25
26 default_projects_menu = {
27 "switch_entry_filter":"1,Toggle Active/All/Inactive Projects",
28 "activate":"2,Schedule as active",
29 "defer":"3,Defer Project",
30 "reread_projects":"4,Reread Projects",
31 "process_all":"6,Process all Projects",
32 "review":"7,Review Project",
33 "tickle":"8,Tickle project",
34 "rename":"9,Rename project",
35 "search_item":"0,Search Item",
36 "remove":"Backspace,Set project to done",
37 "new_project":"Star,Create new project",
38 "new_action":"Hash,Create new action",
39 "edit_menu":"5,Edit menu configuration",
40 "edit_config":"5,Edit global configuration"
41 }
42
43
44 default_abbreviations = {
45 "1":"Agenda/",
46 "2":"Computer/",
47 "26":"Computer/Online/",
48 "26":"Computer/Online/Mail ",
49 "3":"Errands/",
50 "4":"Anywhere/",
51 "42":"Anywhere/Brainstorm/",
52 "47":"Anywhere/Phone/",
53 "46":"Anywhere/MobilePhone/",
54 "9":"WaitingFor/"
55 }