~saurabhanandiit/gtg/exportFixed

« back to all changes in this revision

Viewing changes to GTG/core/firstrun_tasks.py

Merge of my work on liblarch newbase and all the backends ported to liblarch
(which mainly means porting the datastore).
One failing test, will check it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
    #Task 6@1: Learn how to use the QuickAdd Entry
106
106
    title7 = _("Learn how to use the QuickAdd Entry")
107
107
    text7 = _("""The quickadd entry is the quickest way to create a new task. You can show or hide it in the View menu.
 
108
 
108
109
For adding a task you just have to type its title in the entry and press return. The task will be created and selected in the task browser. If a tag is selected in the tag panel, this tag is applied to the task you create.
109
 
You can also create a task with attributes like tags, due date or defer date in the quickadd entry.
110
 
For that the syntax is :
111
 
 
112
 
tags:tag1,tag2,tag3 : This way you can apply as many tags as you wish using comma as separator
113
 
 
114
 
due:date or defer:date : This way you can apply a due date or a defer date. date can be yyyy-mm-dd (for example 2009-04-01) or yyyymmdd (20090401) or mmdd (0401, in this case the year is implicitly the current one) or today or tomorrow or a weekday name (due:monday means due next Monday)
 
110
 
 
111
You can also create a task with the attributes "tags", "due", and "defer" in the quickadd entry. The syntax for these attributes is:
 
112
 
 
113
tags:tag1,tag2,tag3
 
114
 - This way you can apply as many tags as you wish using comma as separator
 
115
 
 
116
due:date 
 
117
defer:date 
 
118
 - This way you can apply a due date or a defer date. date can be yyyy-mm-dd (for example 2009-04-01) or yyyymmdd (20090401) or mmdd (0401, in this case the year is implicitly the current one) or today or tomorrow or a weekday name (due:monday means due next Monday)
115
119
 
116
120
Attributes which are added in this way apply but do not appear in the title.
 
121
 
117
122
If a word begins with @, it is interpreted as a tag.""")
118
123
 
119
124
    t7 = addtask(doc, "6@1", title7, text7, [], [])