Overview

etm is an acronym for event and task manager. It provides a format for using plain text files to store actions, events, notes, and tasks. Items can be created, modified and viewed in a variety of convenient ways using either using the command line or a cross-platform, PyQt based GUI. Available data types are discussed in the Data section. Possible views include Day, Week, Month, Now, Next, Folder, Keyword and Tag. These are discussed in the Views section. Custom, report views that can be exported and printed are discussed in the Reports section. There are keyboard shortcuts for all actions which are discussed in the Shortcuts section. Possible user preference settings are discussed in the Preferences section.

The main window is illustrated below with the Day view selected.

Use Control-J to jump to a fuzzy parsed date, e.g., "-1/1" to go the first day of the previous month or "+90" to go to the date that is 90 days from today. The Day, Week and Month views will all change to show the selected date.

GTD with etm

etm's main goal is to make Getting Things Done easier. Commonly abbreviated as GTD, Getting Things Done is an action management method, and the title of a popular book by David Allen. It rests on the common sense notion that with a complete and current inventory of all commitments, organized and reviewed in a systematic way, the mind is freed from the job of remembering everything that needs to be done, and can focus on actually performing those tasks.

Three observations are critical:

  1. Projects usually involve a series of steps, some of which must be carried out consecutively, e.g., parts must be acquired before assembly can begin.

  2. The steps of a project are carried out in a context which may vary from step to step, e.g., parts may be acquired in the context 'errands' but assembly may be in the context 'workshop'.

  3. While focusing on projects is great for planning, for actually doing things it would be more convenient to focus on context so that, for example, you could see all actions from all projects with context 'errands' before you drive off. To focus on what needs to be done, it would also be useful to be able to deemphasize actions that are not yet available so that, for example, 'assemble parts' is not prominently displayed until 'acquire parts' is complete.

GTD thus requires convenient methods for:

planning

storing and organizing all the bits.

acting

displaying just the information you need, when you need it.

reviewing

checking the status of all items your projects.

etm allows you to store and organize your commitments using a simple, intuitive format using plain text files. Here, for example, is a simple task

- pay bills @s Oct 25

and here is a task group in which the individual jobs must be finished in @q (queue) order, i.e., assemble is a prerequisite for paint.

+ dog house
  @j pickup lumber and paint      &q 1
  @j cut pieces                   &q 2
  @j assemble                     &q 3
  @j paint                        &q 4

Day view shows your commitments grouped and sorted by date. Now view shows your past due tasks grouped into available, waiting and delegated categories and sorted by due date. Next view shows your undated tasks grouped by context and sorted by priority and estimated completion time. Folder view provides project review in a glance by showing your commitments grouped by project file (folder) and displaying the relevant datetimes, i.e., the past due date for past due tasks, the starting datetime for non-repeating items and the datetime of the next instance for any repeating items. Keyword view provides another heirarchial view of your commitments again displaying relevant datetimes but grouped by keyword rather than folder. Tag view shows your commitments grouped by tag. Within each of these views, a filter can be used to limit the display to items matching a case-insensitive, regular expression.

In addition to these built-in views, report view gives you complete freedom to group, sort and filter your data in any way you wish.

In short, etm makes it easy for you to store and organize all the bits and to display just the information you need, when you need it.

Starting etm

etm can be started using the command etm_qt [arguments] in a terminal window. With no arguments, etm will use settings from the configuration file ~/.etm/etm.cfg and open the GUI.

If the first argument is the path to a directory which contains a file named etm.cfg, then settings from that file will be used instead.

If the first argument, other than the optional path, is either "a", "c", "m", "n", "s", "v", "?" or "l" (lower case L), then the remaining arguments will be executed by etm without opening the GUI.

See the report help section for details about creating reports and the preferences help section for details about the possible settings for etm.cfg.

New items

Details about item types and options are available in the Data section.

Details

To examine the details of an item, either select it and press Return or double click on it. The details of the selected item will be displayed along with a number of possible actions related to the item:

With repeating items, choosing either edit or delete entails a further choice of what to change/delete:

Only the datetime of this instance
This option only applies to edit. Use it, for example, when you have a repeating event and you want to change the day or time for this instance only. This is a shortcut in which you simply enter the new fuzzy parsed datetime and the change is made without opening the editor.
This instance
Use this, for example, if you want to change the summary or add something to the description of this instance of the item or you want to delete this single instance.
This and all subsequent instances
Use this, for example, if a repeating event is changing to a new week day or time or a repeating event is ending and you want to remove all the future repetitions.
All instances
Use this, for example, to change the summary and have the change apply to all repetitions of the item.

Filtering

You can enter an expression, either a plain string or a regular expression, in the pattern filter to limit the display in any of the tree (outline) views to items whose summaries (titles) or branches match the pattern. As each character is entered the display is updated to show only items that still match. Note the effect of changing the pattern from "v" to "vo" in the day view below:

You can identify items with a particular tag by switching to the tag view and then entering a pattern for the tag(s) you want in the pattern filter. Only items from the matching tag branches will be displayed. This approach also works for filtering items in the keyword or folder view, the latter illustrated below. Note that the effect of entering "us" in the pattern filter is to expand the matching branches and summaries:

Press Escape to clear the filter and activate the Select view menu.

Editing

The etm editor supports both syntax highlighting for etm data files and automatic completion. As illustrated below, different colors are provided for different item types and both @key and &key entries are highlighted. Entries using unsupported keys, such as @h below, are also highlighted as errors.

Automatic completion uses a list of possible completions in a text file specified by auto_completions in your etm.cfg. Each line in this file provides a possible completion, for example:

@c computer
@c home
@c errands
@c office
@c phone
@z US/Eastern
@z US/Central
@z US/Mountain
@z US/Pacific
dnlgrhm@gmail.com

As soon as you enter "@c", for example, a list of possible context completions will pop up and then, as you type further characters, the list will shrink to show only those that still match:

Up and down arrow keys change the selection and either Tab or Return inserts the selection.

Working with other applications

Pressing Ctrl-S in the etm main window will open a schedule dialog showing items from your day view for the next few days plus items, if any, from your now and next views. This schedule can be printed or sent by email to an address you specify. Using settings for agenda in your etm.cfg the display can be customized to, for example, fit nicely in the display of your mobile phone:

If you set current_htmlfile and/or current_textfile in your etm.cfg then etm will automatically update the contents of the relevant files with with your current schedule. You could then, for example, use the text file with geektool to display your current schedule on your desktop. Another option would be to place current_textfile in your Google Drive or Dropbox and thus have automatic access to your current schedule in your mobile device. Here's mine on my iPhone:

Both the schedule and report dialogs support exporting displayed items in CSV (comma separated values) format to a file you specify. Files in this format can be imported by most spreadsheet programs.

Pressing F8 in the main windown will export items in iCalendar format to the file specified by icscal_file in etm.cfg. If calendars is set in your etm.cfg, then only items from selected calendars will be exported, otherwise all items will be exported. This file can be imported by most calendar applications.

Pressing F8 in the details view will export the selected item in iCalendar format to the file specified by icsitem_file in etm.cfg. This file can, for example, be attached to an email to share the details of the item. If the item is repeating, you will have the choice of exporting 1) just the selected instance, 2) the selected and all subsequent instances or 3) all instances.

Pressing Shift-F8 in the main window will open dialogs first to select an .ics file to import into etm and then to select an etm data file to hold the imported item(s). This file will then be opened for editing with the added item(s) selected.

iCalendar export and import limitations

Although tasks are exported as VTODO elements and notes and actions as VJOURNAL elements, these elements will be ignored by most calendar applications.

Additionally, Apple's iCal does not support some repetition features. Dates added using etm's @+, for example are not recognized by iCal though they are by Google Calendar and most other calendar apps.

Currently, etm @a alerts are not exported. Task groups are exported as standard tasks.

Version numbers

etm's version numbering now uses the major.minor.patch format where each of the three components is an integer:

When the major version number is incremented, both the minor version number and patch number will be reset to zero. Similarly, when the minor version number is incremented, the patch number will be reset to zero. All increments are by one.

Data

Items in etm begin with a type character such as an asterisk (event) and continue on one or more lines either until the end of the file is reached or another line is found that begins with a type character. The beginning type character for each item is followed by the item summary and then, perhaps, by one or more @key value pairs. The order in which such pairs are entered does not matter.

Sample entries

Characters and Types

~ Action

A record of an action involving the expenditure of time (@e) and/or money (@x). Actions are not reminders, they are instead records of how time and/or money was actually spent. Action lines begin with a tilde, ~.

    ~ picked up lumber and paint @s mon 3p @e 1h15m @x 127.32

Entries such as @s mon 3p, @e 1h15m and @x 127.32 are discussed below under Item details. Action entries form the basis for time and expense billing using action reports - see help/reports.

* Event

Something that will happen on particular day(s) and time(s). Event lines begin with an asterick, *.

    * dinner with Karen and Al @s sat 7p @e 3h

Events have a starting datetime, @s and an extent, @e. The ending datetime is given implicitly as the sum of the starting datetime and the extent. Events that span more than one day are possible, e.g.,

    * Sales conference @s 9a wed @e 2d8h

begins at 9am on Wednesday and ends at 5pm on Friday.

An event without an @e entry or with @e 0 is regarded as a reminder and, since there is no extent, will not be displayed in the week view.

^ Occasion

Holidays, anniversaries, birthdays and the like. Like an event with a date but no starting time and no extent. Occasions begin with a caret sign, ^.

    ^ The !1776! Independence Day @s 2010-07-04 @r y &M 7 &m 4

On July 4, 2013, this would appear as The 237th Independence Day.

! Note

A record of some useful information. Note lines begin with an exclamation point, !.

! xyz software @d user: dnlg, pw: abc123def

- Task

Something that needs to be done. It may or may not have a due date. Task lines begin with a minus sign, -.

- pay bills @s Oct 25

A task with an @s entry becomes due on that date and past due when that date has passed. If the task also has an @b begin-by entry, then advance warnings of the task will begin appearing the specified number of days before the task is due. An @e entry in a task is interpreted as an estimate of the time required to finish the task.

% Delegated task

A task that is assigned to someone else, usually the person designated in an @u entry. Delegated tasks begin with a percent sign, %.

    % make reservations for trip @u joe @s fri

+ Task group

A collection of related tasks, some of which may be prerequities for others. Task groups begin with a plus sign, +.

    + dog house
      @j pickup lumber and paint      &q 1
      @j cut pieces                   &q 2
      @j assemble                     &q 3
      @j paint                        &q 4

Note that a task group is a single item and is treated as such. E.g., if any job is selected for editing then the entire group is displayed.

Individual jobs are given by the @j entries. The queue entries, &q, set the order --- tasks with smaller &q values are prerequisites for subsequent tasks with larger &q values. In the example above, neither "pickup lumber" nor "pickup paint" have any prerequisites. "Pickup lumber", however, is a prerequisite for "cut pieces" which, in turn, is a prerequisite for "assemble". Both "assemble" and "pickup paint" are prerequisites for "paint".

The way a task group is displayed is illustrated below. Note that jobs are numbered and that jobs with unfinished prerequisites are labeled with a different icon.
When a job is completed, its icon is changed and it is displayed on the date the job was completed. Note that completing "pickup lumber" makes "cut pieces" available for completion.

$ In basket

A quick, don't worry about the details item to be edited later when you have the time. In basket entries begin with a dollar sign, $.

    $ joe 919 123-4567

If you create an item using etm and forget to provide a type character, an $ will automatically be inserted.

? Someday maybe

Something are you don't want to forget about altogether but don't want to appear on your next or scheduled lists. Someday maybe items begin with a question mark, ?.

    ? lose weight and exercise more

# Hidden

Hidden items begin with a hash mark, #. Such items are ignored by etm save for appearing in the folder view. Stick a hash mark in front of any item that you don't want to delete but don't want to see in your other views.

= Defaults

Default entries begin with an equal sign, =. These entries consist of @key value pairs which then become the defaults for subsequent entries in the same file until another = entry is reached.

Suppose, for example, that a particular file contains items relating to "project_a" for "client_1". Then entering

= @k client_1:project_a

on the first line of the file and

=

on the twentieth line of the file would set the default keyword for entries between the first and twentieth line in the file.

Dates

Fuzzy dates and time periods

When either a datetime or an time period is to be entered, special formats are used in etm. Examples include entering a starting datetime for an item using @s, jumping to a date using Ctrl-J and calculating a date using F5.

Suppose, for example, that it is currently 8:30am on Friday, February 15, 2013. Then, fuzzy dates would expand into the values illustrated below.

Note that 12am is the default time when a time is not explicity entered. E.g., +2/15 in the examples above gives 12:00am on April 15.

To avoid ambiguity, always append either 'a', 'p' or 'h' when entering an hourly time, e.g., use 1p or 13h.

Time periods are entered using the format DdHhMm where D, H and M are integers and d, h and m refer to days, hours and minutes respectively. For example:

As an example, if it is currently 8:50am on Friday February 15, 2013, then entering now + 2d4h30m into the date calculator would give 2013-02-17 1:20pm. If, at the same time, an item were saved on a system in the US/Eastern time zone which contained the entry @s now @z Australia/Sydney then the expanded value would be @s 2013-02-16 12:50am, which is "now" in Sydney.

Dates and times are always stored in etm data files as times in the time zone given by the entry for @z. On the other hand, dates and times are always displayed in etm using the local time zone of the system. In the previous illustration, for example, the data file would contain @s 2013-02-16 12:50am @z Australia/Sydney but this item would be displayed as starting at 2013-02-15 8:50am on a system in the US/Eastern time zone.

Anniversary substitutions

An anniversary substitution is an expression of the form !YYYY! that appears in an item summary. Consider, for example, the occassion

^ !2010! anniversary @s 2011-02-20 @r y

This would appear on Feb 20 of 2011, 2012, 2013 and 2014, respectively, as 1st anniversary, 2nd anniversary, 3rd anniversary and 4th anniversary.The suffixes, st, nd and so forth, depend upon the translation file for the locale.

@key-value pairs

@a alert

The specification of the alert(s) to use with the item. One or more alerts can be specified in an item. E.g.,

@a 10m, 5m
@a 1h: s

would trigger the alert(s) specified by default_alert in your etm.cfg at 10 and 5 minutes before the starting time and a (s)ound alert one hour before the starting time.

The alert

@a 2d: e; who@what.com, where2@when.org; filepath1, filepath2

would send an email to the two listed recipients exactly 2 days (48 hours) before the starting time of the item with the item summary as the subject, with file1 and file2 as attachments and with the body of the message composed using email_template from your etm.cfg.

Similarly, the alert

@a 10m: t; 9191234567@vtext.com, 9197654321@txt.att.net

would send a text message 10 minutes before the starting time of the item to the two mobile phones listed (using 10 digit area code and carrier mms extension) together with the settings for sms in etm.cfg. If no numbers are given, the number and mms extension specified in sms.phone will be used. Here are the mms extensions for the major US carriers:

Alltel          @message.alltel.com
AT&T            @txt.att.net
Nextel          @messaging.nextel.com
Sprint          @messaging.sprintpcs.com
SunCom          @tms.suncom.com
T-mobile        @tmomail.net
VoiceStream     @voicestream.net
Verizon         @vtext.com

Finally,

@a 0: p; program_path

would execute program_path at the starting time of the item.

The format for each of these:

@a <trigger times> [: action [; arguments]]

In addition to the default action used when the optional : action is not given, there are the following possible values for action:

Note: either e or p can be combined with other actions in a single alert but not with one another.

@b beginby

An integer number of days before the starting date time at which to begin displaying begin by notices. When notices are displayed they will be sorted by the item's starting datetime and then by the item's priority, if any.

@c context

Intended primarily for tasks to indicate the context in which the task can be completed. Common contexts include home, office, phone, computer and errands. The "next view" supports this usage by showing undated tasks, grouped by context. If you're about to run errands, for example, you can open the "next view", look under "errands" and be sure that you will have no "wish I had remembered" regrets.

@d description

An elaboration of the details of the item to complement the summary.

@e extent

A time period string such as 1d2h (1 day 2 hours). For an action, this would be the elapsed time. For a task, this could be an estimate of the time required for completion. For an event, this would be the duration. The ending time of the event would be this much later than the starting datetime.

@f done[; due]

Datetimes; tasks, delegated tasks and task groups only. When a task is completed an @f done entry is added to the task. When the task has a due date, ; due is appended to the entry. Similarly, when a job from a task group is completed in etm, an &f done or &f done; due entry is appended to the job and it is removed from the list of prerequisites for the other jobs. In both cases done is the completion datetime and due, if added, is the datetime that the task or job was due. The completed task or job is shown as finished on the completion date. When the last job in a task group is finished an @f done or @f done; due entry is added to the task group itself reflecting the datetime that the last job was done and, if the task group is repeating, the &f entries are removed from the individual jobs.

Another step is taken for repeating task groups. When the first job in a task group is completed, the @s entry is updated using the setting for @o (above) to show the next datetime the task group is due and the @f entry is removed from the task group. This means when some, but not all of the jobs for the current repetition have been completed, only these job completions will be displayed. Otherwise, when none of the jobs for the current repetition have been completed, then only that last completion of the task group itself will be displayed.

Consider, for example, the following repeating task group which repeats monthly on the last weekday on or before the 25th.

+ pay bills @s 11/23 @f 10/24;10/25
  @r m &w MO,TU,WE,TH,FR &m 23,24,25 &s -1
  @j organize bills &q 1
  @j pay on-line bills &q 3
  @j get stamps, envelopes, checkbook &q 1
  @j write checks &q 2
  @j mail checks &q 3

Here "organize bills" and "get stamps, envelopes, checkbook" have no prerequisites. "Organize bills", however, is a prerequisite for "pay on-line bills" and both "organize bills" and "get stamps, envelops, checkbook" are prerequisites for "write checks" which, in turn, is a prerequisite for "mail checks".

The repetition that was due on 10/25 was completed on 10/24. The next repetition was due on 11/23 and, since none of the jobs for this repetition have been completed, the completion of the group on 10/24 and the list of jobs due on 11/23 will be displayed initially. The following sequence of screen shots show the effect of completing the jobs for the 11/23 repetition one by one on 11/27.

@g goto

The path to a file or a URL to be opened using the system default application when the user presses Control-G in the GUI.

@j job

Component tasks or jobs within a task group are given by @j job entries. @key value entries prior to the first @j become the defaults for the jobs that follow. &key value entries given in jobs use & rather than @ and apply only to the specific job.

Many key-value pairs can be given either in the group task using @ or in the component jobs using &:

The key-value pair &q (queue position) can only be given in component jobs where it is required. Key-values other than &q and those listed above, can only be given in the initial group task entry and their values are inherited by the component jobs.

@k keyword

A heirarchical classifier for the item. Intended for actions to support time billing where a common format would be client:job:category. etm treats such a keyword as a heirarchy so that an action report grouped by month and then keyword might appear as follows

    27.5h) Client 1 (3)
        4.9h) Project A (1)
        15h) Project B (1)
        7.6h) Project C (1)
    24.2h) Client 2 (3)
        3.1h) Project D (1)
        21.1h) Project E (2)
            5.1h) Category a (1)
            16h) Category b (1)
    4.2h) Client 3 (1)
    8.7h) Client 4 (2)
        2.1h) Project F (1)
        6.6h) Project G (1)

An arbitrary number of heirarchical levels in keywords is supported.

@l location

The location at which, for example, an event will take place.

@m memo

Further information about the item not included in the summary or the description. Since the summary is used as the subject of an email alert and the descripton is commonly included in the body of an email alert, this field could be used for information not to be included in the email.

@o overdue

Repeating tasks only. One of the following choices: k) keep, r) restart, or s) skip. Details below.

@p priority

Either 0 (no priority) or an intger between 1 (highest priority) and 9 (lowest priority). Primarily used with undated tasks.

@r repetition rule

The specification of how an item is to repeat. Repeating items must have an @s entry as well as one or more @r entries. Generated datetimes are those satisfying any of the @r entries and falling on or after the datetime given in @s. Note that the datetime given in @s will only be included if it matches one of the datetimes generated by the @r entry.

A repetition rule begins with

@r frequency

where frequency is one of the following characters:

The @r frequency entry can, optionally, be followed by one or more &key value pairs:

Repetition examples:

Optionally, @+ and @- entries can be given.

A repeating task may optionally also include an @o <k|s|r> entry (default = k):

@s starting datetime

When an action is started, an event begins or a task is due.

@t tags

A tag or list of tags for the item.

@u user

Intended to specify the person to whom a delegated task is assigned. Could also be used in actions to indicate the person performing the action.

@v action_rates key

Actions only. A key from action_rates in your etm.cft to apply to the value of @e. Used in actions to apply a billing rate to time spent in an action. E.g., with

    minutes: 6
    action_rates:
        br1: 45.0
        br2: 60.0

then entries of @v br1 and @e 2h25m in an action would entail a value of 45.0 * 2.5 = 112.50.

@w action_markups key

A key from action_markups in your etm.cfg to apply to the value of @x. Used in actions to apply a markup rate to expense in an action. E.g., with

    weights:
        mr1: 1.5
        mr2: 10.0

then entries of @w mr1 and @x 27.50 in an action would entail a value of 27.50 * 1.5 = 41.25.

@x expense

Actions only. A currency amount such as 27.50. Used in conjunction with @w above to bill for action expenditures.

@z time zone

The time zone of the item, e.g., US/Eastern. The starting and other datetimes in the item will be interpreted as belonging to this time zone.

@+ include

A datetime or list of datetimes to be added to the repetitions generated by the @r rrule entry. If only a date is provided, 12:00am is assumed.

@- exclude

A datetime or list of datetimes to be removed from the repetitions generated by the @r rrule entry. If only a date is provided, 12:00am is assumed.

Note that to exclude a datetime from the recurrence rule, the @- datetime must exactly match both the date and time generated by the recurrence rule.

Folders

etm offers two heirarchical ways of organizing your data: by folder (file path) and by keyword. There are no hard and fast rules about how to use these heirarchies but the goal is a system that makes complementary uses of folder and keyword and fits your needs. As with any filing system, planning and consistency are paramount.

For example, one pattern of use for a business would be to use folders for people and keywords for client-project-category.

Similarly, a family could use folders to separate personal and shared items for family members, for example:

root etm data directory
    dag
    erp
    shared
        holidays
        birthdays
        events

Here

~dag/.etm/etm.cfg
~erp/.etm/etm.cfg

would both contain datadir entries specifying the common root data directory. Additionally, if these configuration files contained, respectively, the entries

calendars
- [dag, true, dag]
- [erp, false, erp]
- [shared, true, shared]

and

calendars
- [erp, true, erp]
- [dag, false, dag]
- [shared, true, shared]

then, by default, both dag and erp would see the entries from their personal files as well as the shared entries and each could optionally view the entries from the other's personal files as well. See the Preferences tab for details on the calendars entry.

Views

Day

All scheduled (dated) items appear in this view, grouped by date and sorted by starting time and item type. Hovering the mouse over an item brings up a tooltip with details.

Double clicking on an item or pressing Return with an item selected opens a details dialog for the item with further options. Press F1 when the details dialog is active for help information on that view.

Begin by warnings for upcoming events and tasks also appear in this view on the current date when the current date falls within the range of the begin by warning.

Week

A graphical view of a week showing scheduled events and free periods. The background for the current date is highlighted and a bar shows the current time. Dates with scheduled occasions are also highlighted and hovering over a free period on such a date brings up a tooltip listing the occasions.

Hovering over a busy period brings up a tooltip with the details of the event. Double clicking on a busy period opens the details dialog for the item. Double clicking on a free period opens a dialog to create a new event for that date and time.

This view conforms to the iso standard in which weeks begin on Monday and the first week in a year is the week that contains the first Thursday. This first week is assigned number 1 and the last week number in the year will then either be 52 or 53. E.g., in 2015, week number 1 is December 29, 2014 --- January 4, 2015 and week number 53 is December 28, 2015 --- January 3, 2016.

If you have an entry for calendars in your etm.cfg, then busy times from your default calendars will appear in one color and busy times from your non-default calendars will appear in another color.

Need to tell someone when you are available during a given week? Select the week in this view, press Control-B to display the periods during the week when you are busy and then copy and paste these into an email.

Month

A monthly calendar view with the date numbers colored to indicate the amount of scheduled time for events for that date.

Double clicking on a date, switches to the week view for that date and scrolls the day view to that date as well. Month view also conforms to the iso standard in which weeks begin on Monday.

Now

Tasks requiring attention now. All scheduled (dated) tasks whose due dates have passed including delegated tasks and waiting tasks (tasks with unfinished prerequisites) grouped by available, delegated and waiting and, within each group, by the due date.

When there are tasks in this view, a red warning button appears in the lower, right-hand corner of the main display --- see, for example, the week and month view screen shots above. This button disappears when there are no tasks in this view.

Next

All unscheduled (undated) tasks grouped by context (home, office, phone, computer, errands and so forth) and sorted by priority and extent. These tasks correspond to GTD's next actions. These are tasks which don't really have a deadline and can be completed whenever a convenient opportunity arises. Check this view, for example, before you leave to run errands for opportunities to clear other errands.

Items without contexts are automatically assigned the context "none".

"In basket" and "someday maybe" items are also displayed in this view.

Folder

All items grouped by folder (project file path) and sorted by type and relevant datetime. Use this view to review the status of your projects.

The relevant datetime is the past due date for any past due tasks, the starting datetime for any non-repeating items and the datetime of the next instance for any repeating items.

Keyword

All items grouped by keyword and sorted by type and relevant datetime.

Items without keywords are automatically assigned the keyword "none".

Tag

All items with tag entries grouped by tag and sorted by type and relevant datetime. Note that items with multiple tags will be listed under each tag.

Reports

etm supports creating, printing and exporting reports. Either click on the report icon in the main window or press Control-R to open the report dialog.

Usage:  <report type character> <groupby setting> [report options]

A report specification is created by entering a report type character followed by a groupby setting and, perhaps, by one or more report options. Together, the type character, groupby setting and options determine which items will appear in the report and how they will be organized and displayed.

There are two possible report type characters, a and c:

Available action_template expansions for action reports include:

Note: when aggregating amounts in action reports, billing and markup rates are applied first to times and expenses for individual actions and the resulting amounts are then aggregated. Similarly, when times are rounded up, the rounding is done for individual actions and the results are then aggregated.

See help/preferences for further details about setting action_template.

You can select a report specification from a list of saved specifications, modify an existing specification or create an entirely new specification. Clicking on the create report icon or pressing Control-R will create a report based on the current specification.

When you edit an existing specification, the background color of the entry field will change to yellow to indicate that this is a new, as yet unsaved specification. Pressing Return will add the new specification temporarily to the list without affecting the original specification.

If the current specification has been modified, then deleting it by clicking on the delete icon or pressing Control-D will replace the modified specification with the original. If the current specification has not been modified, then deleting it will temporarily remove it from the list.

When temporary changes have been made to the list, the save button will be enabled and you can either click on this button or press Control-S to save the changes. If you attempt to close the reports dialog while there are unsaved changes, you will be given the opportunity to save them.

groupby

A semicolon separated list that determines how items will be grouped and sorted. Possible elements include date specifications and elements from

c

context

f

file path

k

keyword

t

tag

u

user

A date specification is either:

w
week number

or a combination of one or more of the following:

yy

2-digit year

yyyy

4-digit year

M

month: 1 - 12

MM

month: 01 - 12

MMM

locale specific abbreviated month name: Jan - Dec

MMMM

locale specific month name: January - December

d

month day: 1 - 31

dd

month day: 01 - 31

ddd

locale specific abbreviated week day: Mon - Sun

dddd

locale specific week day: Monday - Sunday

For example, c ddd, MMM d yyyy would group by year, month and day together to give output such as

Fri, Apr 1 2011
    items for April 1
Sat, Apr 2 2011
    items for April 2
...

On the other hand, a w; u; k[0]; k[1:] would group by week number, user and keywords to give output such as

13.1) Week 14: Mar 31 - Apr 6, 2014
   6.3) agent 1
      1.3) client 1
         1.3) project 2
            1.3) Activity (12)
      5) client 2
         4.5) project 1
            4.5) Activity (21)
         0.5) project 2
            0.5) Activity (22)
   6.8) agent 2
      2.2) client 1
         2.2) project 2
            2.2) Activity (13)
      4.6) client 2
         3.9) project 1
            3.9) Activity (23)
         0.7) project 2
            0.7) Activity (23)

As another example, c t -t tag 1, !tag 3 would group by tag showing items that have a tag matching tag 1 but not one matching tag 3.

With the heirarchial elements, file path and keyword, it is possible to use parts of the element as well as the whole. Consider, for example, the file path A/B/C with the components [A, B, C]. Then for this file path:

f[0] = A
f[:2] = A/B
f[2:] = C
f = A/B/C

Suppose that keywords have the format client:project. Then c MMM yyyy; k[0]; k[1] would group by year and month, then client and finally project to give output such as

Apr 2011
    client a
        project 1
            items for client a project 1 for April
        project 2
            items for client a project 2 for April
    client b
        project i
            items for client b project i for April
...

Items that are missing an element specified in groupby will be omitted from the output. E.g., undated tasks and notes will be omitted when a date specification is included, items without keywords will be omitted when k is included and so forth.

When a date specification is not included in groupby, undated notes and tasks will be potentially included, but only those instances of dated items that correspond to the relevant datetime of the item of the item will be included, where the relevant datetime is the past due date for any past due tasks, the starting datetime for any non-repeating item and the datetime of the next instance for any repeating item.

Within groups, items are automatically sorted by date, type and time.

options

Report options are listed below. Report types c supports all options except -d. Report type a supports all options except -o and -h.

-b BEGIN_DATE

Fuzzy parsed date. Limit the display of dated items to those with datetimes falling on or after this datetime. Relative day and month expressions can also be used so that, for example, -b -14 would begin 14 days before the current date and -b -1/1 would begin on the first day of the previous month. It is also possible to add (or subtract) a time period from the fuzzy date, e.g., -b mon + 7d would begin with the second Monday falling on or after today. Default: None.

-c CONTEXT

Regular expression. Limit the display to items with contexts matching CONTEXT (ignoring case). Prepend an exclamation mark, i.e., use !CONTEXT rather than CONTEXT, to limit the display to items which do NOT have contexts matching CONTEXT.

-d DEPTH

The default, -d 0, includes all outline levels. Use -d 1 to include only level 1, -d 2 to include levels 1 and 2 and so forth. For example, a report that appears as follows with the default, -d 0:

Exporting this report (CSV format) would give:

With -d 3, these would change to

and, with -d 2 to

In this example, the relevant settings from etm.cfg are

action_minutes: 6
action_rates:
    default: 100.0
    br1:    125.0
    br2:    150.0
action_template: '!hours!h $!value! !label! (!count!)'

The default action_rate is used for client 1, br1 for client 2 and br3 for client 3.

-e END_DATE

Fuzzy parsed date. Limit the display of dated items to those with datetimes falling before this datetime. As with BEGIN_DATE relative month expressions can be used so that, for example, -b -1/1 -e 1 would include all items from the previous month. As with -b, period strings can be appended, e.g., -b mon -e mon + 7d would include items from the week that begins with the first Monday falling on or after today. Default: None.

-f FILE

Regular expression. Limit the display to items from files whose paths match FILE (ignoring case). Prepend an exclamation mark, i.e., use !FILE rather than FILE, to limit the display to items from files whose path does NOT match FILE.

-h HUE

0, 1 or 2. -h 2 uses all possible colors for leaf fonts, -h 1 uses red for past due items and black for everything else and -h 0 uses black for everything. The default is taken from the setting for colors in emt.cfg.

-k KEYWORD

Regular expression. Limit the display to items with contexts matching KEYWORD (ignoring case). Prepend an exclamation mark, i.e., use !KEYWORD rather than KEYWORD, to limit the display to items which do NOT have keywords matching KEYWORD.

-l LOCATION

Regular expression. Limit the display to items with location matching LOCATION (ignoring case). Prepend an exclamation mark, i.e., use !LOCATION rather than LOCATION, to limit the display to items which do NOT have a location that matches LOCATION.

-o OMIT

String. Show/hide a)ctions, d)elegated tasks, e)vents, g)roup tasks, n)otes, o)ccasions and/or other t)asks. For example, -o on would show everything except occasions and notes and -o !on would show only occasions and notes.

-s SUMMARY

Regular expression. Limit the display to items containing SUMMARY (ignoring case) in the item summary. Prepend an exclamation mark, i.e., use !SUMMARY rather than SUMMARY, to limit the display to items which do NOT contain SUMMARY in the summary.

-t TAGS

Comma separated list of case insensitive regular expressions. E.g., use

-t tag1, !tag2

to display items with one or more tags that match 'tag1' but none that match 'tag2'.

-u USER

Regular expression. Limit the display to items with user matching USER (ignoring case). Prepend an exclamation mark, i.e., use !USER rather than USER, to limit the display to items which do NOT have a user that matches USER.

-w WIDTH1

Integer. Limit the first column display width to this number of characters. Default: report_width1 in etm.cfg.

-W WIDTH2

Integer. Limit the second column display width to this number of characters. Default: report_width2 in etm.cfg.

Shortcuts

Note: On Mac OS X, use the Command key instead of the Control key.

General

F1
Show this help information.
F2
Show information about etm.
F3
Check for a newer version of etm.
F4
Display a twelve month calendar. Use Left and Right cursor keys to change years and Space to return to the current year.
F5
Open the datetime calculator.
F6
Show local Yahoo weather information. (Requires "weather_location" in etm.cfg.)
F7
Show local USNO sun and moon data. (Requires "sunmoon_location" in etm.cfg.)
F8

Export items in iCalendar format to the file specified by icscal_file in etm.cfg. If calendars is set in your etm.cfg, only items in selected calendars will be exported, otherwise all items will be exported.

Shift-F8

Import an iCalendar (ics) file into etm using dialogs to select the ics file and the etm data file to which the added item(s) will be appended. This data file will be opened for editing with the added items selected.

Comma
Switch to the day view.
Period
Switch to the week due view.
Slash
Switch to the month view.
Semicolon
Switch to the now view.
Apostrophe
Switch to the next view.
Left Bracket
Switch to the folder view.
Right Bracket
Switch to the keyword view.
Back Slash
Switch to the tag view.
Escape
In the main window, clear the pattern filter and activate the view menu.
In dialogs, cancel any changes and close the dialog.
Tab
Toggle the focus between the view menu and the main window.
Space
Display the current date in the day, week and month views. See also Control-J below.
Control-A
Show the remaining alerts for today, if any.
Control-C

If you have a entry for calendars in your etm.cfg file, then open a dialog to choose which calendars to display.

Control-E
Show the list of file loading error messages.
Control-F
Enter an expression in the pattern filter to limit the display to items with matching summaries (titles) or branches. See Filtering in the Overview tab.
Control-J
Jump to a fuzzy parsed date in the day, week and month views. Relative days and months can be entered in this dialog. E.g., +21 to go forward 21 days or -1/1 to go to the first day of the previous month. See also Space above. If nothing is scheduled for the specified date, the last date with scheduled items before the specified date will be selected in the day view.
Control-L
Activate the view menu pop up list. You can then select a view using the up and down arrow keys or the first letter of the view name.
Control-N
Create a new event, note or task.
Control-P
Open the etm scratch pad.
Control-R
Create a custom report.
Control-S
Show the current schedule.
Control-T
If the action timer is inactive, create a new action timer. Otherwise toggle the timer between paused and running.
Shift Control-H
Select a file to edit from a list of those most recently modified in the current session.
Shift Control-O
Open etm.cfg for editing.
Shift Control-C
Open your auto_completions file for editing.
Shift Control-R
Open your report_specifications file for editing.
Shift Control-T
If the action timer is active, stop the timer and record the action.

Day View

Return
If a leaf is selected, open the details view for the leaf.
LeftArrow
Display the last date with scheduled items before the current. Display the week containing this date in week view and the month containing this date in month view.
RightArrow
Display the first date with scheduled items after the current. Display the week containing this date in week view and the month containing this date in month view.

Week View

Double-Click
In a busy time slot, open the details dialog for the relevant event.
In an empty time slot, open a dialog to create a new event for the relevant date and time.
LeftArrow
Display the previous week.
RightArrow
Display the next week.
Control-B
Open a display showing the periods during the week when you are busy.

Month View

Double-Click
Make the selected date visible in both the day and week views and switch to the week view.
LeftArrow
Move the selection to the previous month.
RightArrow
Move the selection to the next month.
UpArrow
Move the selection to the previous week.
DownArrow
Move the selection to the next week.

Tree Views

The following apply to all views other than the week and month views. Hovering the mouse over a leaf displays a tooltip with the details of the relevant item.

Double-Click
On a branch, toggle between expanded and collapsed.
On a leaf, open the details dialog for the selected item.
Return
When a leaf is selected, open the details dialog for the selected item.
Control-/
Open a dialog to choose the level of expansion for the tree.
UpArrow
Moves the cursor to the item in the same column on the previous row. If the parent of the current item has no more rows to navigate to, the cursor moves to the relevant item in the last row of the sibling that precedes the parent.
DownArrow
Moves the cursor to the item in the same column on the next row. If the parent of the current item has no more rows to navigate to, the cursor moves to the relevant item in the first row of the sibling that follows the parent.
LeftArrow
Hides the children of the current item (if present) by collapsing a branch.
Minus
Same as LeftArrow.
RightArrow
Reveals the children of the current item (if present) by expanding a branch.
Plus
Same as RightArrow.
Asterisk
Expands all children of the current item (if present).
PageUp
Moves the cursor up one page.
PageDown
Moves the cursor down one page.
Home
Moves the cursor to an item in the same column of the first row of the first top-level item in the model.
End

Moves the cursor to an item in the same column of the last row of the last top-level item in the model.

Alphabetic and/or numeric character(s)

Jump to the next appearance of the character(s).

Details view

Return
Edit this item.
Control-C
Edit a copy of this item.
Control-D
Delete this item.
Control-E
Edit the file containing this item.
Control-F
If the selected item is a task, enter a finish date.
Control-G
If the item has an @g entry, open it using the system default application.
Shift Control-H
Show the history of changes to this item's file.
Control-M
Move this item to a different file.
Control-P
Print.
Control-R
If this is a repeating item, show its repetitions.
Shift Control-S
Change the datetime of this item or, if repeating, this instance.
Control-T
Start the timer for a new action based on the selected item.
Space
In the "edit which instance" dialog, move the selection to the next alernative.
F8
Export this item in iCalendar format to the file specified by icsitem_file in etm.cfg. If the item is repeating, you can choose whether to export just the selected instance, the selected and all subsequent instances or all instances.

Reports dialog

Escape
If the list of report specifications is open, close it.
Return
In the report specification field, add the current specification to the list if it is not already included. Use Control-S to save such changes to the list.
Control-D
Remove the current report specification from the list if it is included. Use Control-S to save such changes to the list.
Control-E
Export the current report in CSV format.
Control-L
Open the list of report specifications.
Control-P
Print.
Control-R
Refresh the report using the selected report options setting.
Control-S
Save changes to the list of report options settings.

Editor

Control-Return
Save changes if modified and close the editor.
Control-C
Copy selection to clipboard.
Control-I
Insert the contents of the etm scratch pad at the cursor position.
Control-P
Print.
Control-S
Save changes.
Control-V
Paste clipboard at cursor position.
Control-W
Close the editor, prompting to save changes if modified.
Control-X
Delete selection and copy to clipboard.
Control-Z
Undo.
Shift Control-Z
Redo.

Preferences

Each configuration option is listed below with an illustrative entry and a brief discussion. These entries are stored, by default, in ~/.etm/etm.cfg. When this file is edited in etm (Shift Ctrl-O), your changes become effective as soon as they are saved --- you do not need to restart etm.

The following template expansions can be used in alert_displaycmd, alert_template, alert_voicecmd, email_template, sms_message and sms_subject below.

The value of !time_span! depends on the starting and ending datetimes. Here are some examples:

Here are values of !time_left! and !when! for some illustrative periods:

Note that 'now', 'from now', 'days', 'day', 'hours' and so forth are determined by the translation file in use.

Available template expansions for action_template (below) include:

Note: when aggregating amounts in action reports, billing and markup rates are applied first to times and expenses for individual actions and the resulting amounts are then aggregated. Similarly, when times are rounded up, the rounding is done for individual actions and the results are then aggregated.

action_interval

action_interval: 1

Every action_interval minutes, execute action_timercmd when the timer is running and action_pausecmd when the timer is paused. Choose zero to disable executing these commands.

action_markups

action_markups:
    default: 1.0
    mu1: 1.5
    mu2: 2.0

Possible markup rates to use for @x expenses in actions. An arbitrary number of rates can be entered using whatever labels you like. These labels can then be used in actions in the @w field so that, e.g.,

... @x 25.80 @w mu1 ...

in an action would give this expansion in an action template:

!expense! = 25.80
!charge! = 38.70

action_minutes

action_minutes: 6

Round action times up to the nearest action_minutes in action reports. Possible choices are 1, 6, 12, 15, 30 and 60. With 1, no rounding is done and times are reported as integer minutes. Otherwise, the prescribed rounding is done and times are reported as floating point hours.

action_rates

<!-- action_rates: -->
    default: 30.0
    br1: 45.0
    br2: 60.0

Possible billing rates to use for @e times in actions. An arbitrary number of rates can be entered using whatever labels you like. These labels can then be used in the @v field in actions so that, e.g., with action_minutes: 6 then:

... @e 75m @v br1 ...

in an action would give these expansions in an action template:

!hours! = 1.3
!value! = 58.50

If the label default is used, the corresponding rate will be used when @v is not specified in an action.

Note that etm accumulates group totals from the time and value of individual actions. Thus

... @e 75m @v br1 ...
... @e 60m @v br2 ...

would aggregate to

!hours!  = 2.3     (= 1.3 + 1)
!value! = 118.50   (= 1.3 * 45.0 + 1 * 60.0)

action_template

action_template: '!hours!h) !label! (!count!)'

Used for action reports. With the above settings for action_minutes and action_template, a report might appear as follows:

27.5h) Client 1 (3)
    4.9h) Project A (1)
    15h) Project B (1)
    7.6h) Project C (1)
24.2h) Client 2 (3)
    3.1h) Project D (1)
    21.1h) Project E (2)
        5.1h) Category a (1)
        16h) Category b (1)
4.2h) Client 3 (1)
8.7h) Client 4 (2)
    2.1h) Project F (1)
    6.6h) Project G (1)

action_timer

action_timer:
    paused: '/usr/bin/play /home/dag/.etm/sounds/timer_paused.wav'
    running: '/usr/bin/play /home/dag/.etm/sounds/timer_running.wav'

The command running is executed every action_interval minutes whenever the action timer is running and paused every minute when the action timer is paused.

action_status

action_status:
    paused:    'echo !summary! !time! paused > ~/.etm/status.text'
    running:   'echo !summary! !time! running > ~/.etm/status.text'
    stopped:   'echo  > ~/.etm/status.text'

The expansion of the appropriate command will be executed whenever the status of the action timer changes.

Available expansions for paused, running and stopped include:

The illustrative running might, for example, expand as follows:

jones deposition 0:27 running

With the above example, note that an application such as conky or geektool could be used to display the contents of ~/.etm/status.text on the user's desktop.

agenda

agenda_colors:  2
agenda_days:    4
agenda_indent:  2
agenda_width1: 24
agenda_width2:  8

The agenda setup. With colors 2, all colors are used, with 1 only red is used (past due tasks) and with 0 no colors are used. days is the number of active days to display. indent gives the indentation for each level of the tree. width1 and width2 give, respectively, the maximum width for columns 1 and 2.

alert_default

alert_default: [m]

The alert or list of alerts to be used when an alert is specified for an item but the type is not given. Possible values for the list include: - d: display (requires alert_displaycmd) - m: message (using alert_template) - s: sound (requires alert_soundcmd) - v: voice (requires alert_voicecmd)

alert_displaycmd

alert_displaycmd: /usr/local/bin/growlnotify -t !summary! -m '!time_span!'

The command to be executed when d is included in an alert. Possible template expansions are discussed at the beginning of this tab.

alert_soundcmd

alert_soundcmd: '/usr/bin/play /home/dag/.etm/sounds/etm_alert.wav'

The command to execute when s is included in an alert. Possible template expansions are discussed at the beginning of this tab.

alert_template

alert_template: '!time_span!\n!l!\n\n!d!'

The template to use for the body of m (message) alerts. See the discussion of template expansions at the beginning of this tab for other possible expansion items.

alert_voicecmd

alert_voicecmd: /usr/bin/say -v 'Alex' '!summary! begins !when!.'

The command to be executed when v is included in an alert. Possible expansions are are discussed at the beginning of this tab.

alert_wakecmd

alert_wakecmd: /Users/dag/bin/SleepDisplay -w

If given, this command will be issued to "wake up the display" before executing alert_displaycmd.

ampm

ampm: true

Use ampm times if true and twenty-four hour times if false. E.g., 2:30pm (true) or 14:30 (false).

auto_completions

    auto_completions: ~/.etm/completions.cfg

The absolute path to the file to be used for autocompletions. Each line in the file provides a possible completion. E.g.

@c computer
@c home
@c errands
@c office
@c phone
@z US/Eastern
@z US/Central
@z US/Mountain
@z US/Pacific
dnlgrhm@gmail.com

As soon as you enter, for example, "@c" in the editor, a list of possible completions will pop up and then, as you type further characters, the list will shrink to show only those that still match:

Up and down arrow keys change the selection and either Tab or Return inserts the selection.

calendars

calendars:
- [dag, true, personal/dag]
- [erp, false, personal/erp]
- [shared, true, shared]

These are (label, default, path relative to datadir) tuples to be interpreted as separate calendars. Those for which default is true will be displayed as default calendars. E.g., with the datadir below, dag would be a default calendar and would correspond to the absolute path /Users/dag/.etm/data/personal/dag. With this setting, the calendar selection dialog would appear as follows:

When non-default calendars are selected, busy times in the "week view" will appear in one color for events from default calendars and in another color for events from non-default calendars.

Note that the calendar icon only appears in the main gui if this setting is provided.

current files

current_htmlfile:  ''
current_textfile:  ''
current_indent:    3
current_opts:      ''
current_width1:    40
current_width2:    17

If absolute file paths are entered for current_textfile and/or current_htmlfile, then these files will be created and automatically updated by etm as as plain text or html files, respectively. If current_opts is given then the file will contain a report using these options; otherwise the file will contain an agenda. Indent and widths are taken from these setting with other settings, including color, from report or agenda, respectively.

Hint: fans of geektool can use the shell command cat <current_textfile> to have the current agenda displayed on their desktops.

datadir

datadir: ~/.etm/data

All etm data files are in this directory.

dayfirst

dayfirst: false

If dayfirst is False, the MM-DD-YYYY format will have precedence over DD-MM-YYYY in an ambiguous date. See also yearfirst.

edit_cmd

edit_cmd: ~/bin/vim !file! +!line!

This command is used in the command line version of etm to create and edit items. When the command is expanded, !file! will be replaced with the complete path of the file to be edited and !line! with the starting line number in the file. If the editor will open a new window, be sure to include the command to wait for the file to be closed before returning, e.g., with vim:

edit_cmd: ~/bin/gvim -f !file! +!line!

or with sublime text:

edit_cmd: ~/bin/subl -n -w !file!:!line!

email_template

email_template: 'Time: !time_span!
Locaton: !l!


!d!'

Note that two newlines are required to get one empty line when the template is expanded. This template might expand as follows:

    Time: 1pm - 2:30pm Wed, Aug 4
    Location: Conference Room

    <contents of @d>

See the discussion of template expansions at the beginning of this tab for other possible expansion items.

etmdir

etmdir: ~/.etm

Absolute path to the directory for etm.cfg and other etm configuration files.

encoding

encoding: {file: utf-8, gui: utf-8, term: utf-8}

The encodings to be used for file IO, the GUI and terminal IO.

filechange_alert

filechange_alert: '/usr/bin/play /home/dag/.etm/sounds/etm_alert.wav'

The command to be executed when etm detects an external change in any of its data files. Leave this command empty to disable the notification.

fontsize

fontsize: 13

Use this font size in the gui treeviews.

Mercurial commands

If Mercurial is installed on your system, then the default versions of the hg commands given below should work without modification. If you want to use another version control system, then enter the commands for your version control system. {repo} will be replaced with the internally generated name of the repository in hg_commit and hg_history, {file} with the internally generated file name in hg_history, {mesg} with the internally generated commit message in hg_commit and {0} with the name of the repository in hg_init.

hg_commit

The command to commit changes to the repository.

hg_commit: /usr/local/bin/hg commit -A -R {repo} -m '{mesg}'

hg_history

The command to show the history of changes for a particular data file.

hg_history: '/usr/local/bin/hg log --style compact \
    --template `{rev}: {desc}\n` \
    -R {repo} -p -r `tip`:0 {file}'

hg_init

The command to initialize or create a repository.

hg_init: /usr/local/bin/hg init {0}

iCalendar files

icscal_file

Pressing F8 in the gui main window will export the selected calendars in iCalendar format to this file.

icscal_file: ~/.etm/etmcal.ics

icsitem_file

Pressing F8 in the gui detail view will export the selected item in iCalendar format to this file.

icsitem_file: ~/.etm/etmitem.ics

local_timezone

local_timezone: US/Eastern

This timezone will be used as the default when a value for @z is not given in an item.

monthly

monthly: monthly

Relative path from datadir. With the settings above and for datadir the suggested location for saving new items in, say, October 2012, would be the file:

~/.etm/data/monthly/2012/10.txt

The directories monthly and 2012 and the file 10.txt would, if necessary, be created. The user could either accept this default or choose a different file.

report

report_begin:           '1'
report_end:             '+1/1'
report_colors:          2
report_specifications:  ~/.etm/reports.cfg
report_width:           54

Report begin and end are fuzzy parsed dates specifying the default period for reports that group by dates. Each line in the file specified by report_specifications provides a possible specification for a report. E.g.

a MMM yyyy; k[0]; k[1:] -b -1/1 -e 1
a k, MMM yyyy -b -1/1 -e 1
c ddd MMM d yyyy
c f

In the reports dialog these appear in the report specifications pop-up list. A specification from the list can be selected and, perhaps, modified or an entirely new specification can be entered. See the Reports tab for details. See also the agenda settings above.

rowsize

rowsize: 18

If positive, use this vertical size in GUI tree views.

show_finished

show_finished: 1

Show this many of the most recent completions of repeated tasks or, if 0, show all completions.

smtp

smtp_from: dnlgrhm@gmail.com
smtp_id: dnlgrhm
smtp_pw: **********
smtp_server: smtp.gmail.com

Required settings for the smtp server to be used for email alerts.

sms

sms_message: '!summary!'
sms_subject: '!time_span!'
sms_from: dnlgrhm@gmail.com
sms_pw:  **********
sms_phone: 0123456789@vtext.com
sms_server: smtp.gmail.com:587

Required settings for text messaging in alerts. Enter the 10-digit area code and number and mms extension for the mobile phone to receive the text message when no numbers are specified in the alert. The illustrated phone number is for Verizon. Here are the mms extensions for the major carriers:

Alltel          @message.alltel.com
AT&T            @txt.att.net
Nextel          @messaging.nextel.com
Sprint          @messaging.sprintpcs.com
SunCom          @tms.suncom.com
T-mobile        @tmomail.net
VoiceStream     @voicestream.net
Verizon         @vtext.com

sundayfirst

sundayfirst: false

The setting affects only the twelve month calendar display. The first column in each month is Sunday if true and Monday otherwise. Both the week and month views list Monday first regardless of this setting since both reflect the iso standard for week numbering in which weeks begin with Monday.

sunmoon_location

sunmoon_location: [Chapel Hill, NC]

The USNO location for sun/moon data. Either a US city-state 2-tuple such as [Chapel Hill, NC] or a placename-longitude-latitude 7-tuple such as [Home, W, 79, 0, N, 35, 54].

Enter a blank value to disable sunmoon information.

weather_location

weather_location: w=615702

To get the yahoo weather location code (WOEID) go to http://weather.yahoo.com/, enter your location and hit return. When the weather page for your location opens, the WOEID will be in the url for your location, e.g., for Paris, FR the url is

http://weather.yahoo.com/france/ile-de-france/paris-615702/

and the WOEID is 615702. For US locations you can us the US 5-digit zip code for your location. E.g. my zip code in Chapel Hill, NC is 27517 and I would enter

weather_location: p=27517

Note that p= replaces w= when using a zip code instead of a WOEID. By default temperatures are given in degrees Farenheit. If you would prefer Celcius append &u=c to either the WOEID or the zip code in your weather_location. Note that choosing Celsius degree units changes all the weather units to metric, for example, wind speed will be reported as kilometers per hour and barometric pressure as millibars.

Enter a blank value to disable weather information.

weeks_after

weeks_after: 52

In the day view, all non-repeating, dated items are shown. Additionally all repetitions of repeating items with a finite number of repetitions are shown. This includes 'list-only' repeating items and items with &u (until) or &t (total number of repetitions) entries. For repeating items with an infinite number of repetitions, those repetitions that occur within the first weeks_after weeks after the current week are displayed along with the first repetition after this interval. This assures that for infrequently repeating items such as voting for president, at least one repetition will be displayed.

window height and width

window_height: 428
window_width: 464

The height and width for the GUI main window.

yearfirst

yearfirst: true

If yearfirst is true, the YY-MM-DD format will have precedence over MM-DD-YY in an ambiguous date. See also dayfirst.