diff --git a/task.css b/task.css new file mode 100644 index 000000000..3775beb96 --- /dev/null +++ b/task.css @@ -0,0 +1,123 @@ +body { + text-align: center; + margin: 0; padding: 1em; +} + +#container { + width: 740px; + text-align: left; + margin: 0 auto; padding: 0; +} + +#header { + height: 60px; + margin: 0 0 15px; padding: 0; +} + +#page {} + +#content { + width: 500px; +} + +#header a:link, +#header a:visited { + color:#000; + text-decoration: none; +} + +#header h1 { + font: bold 400% georgia, serif; + letter-spacing: -1px; + margin: 0; + float: left; +} + +#header h2 { + font: normal 12px verdana, arial, sans-serif; + margin: 2.5em 0 0 0.8em; + float: left; +} + +#content {} + +#content h1, +#content h2, +#content h3, +#content h4, +#content h5 { + font-family: "lucidamac bold", "lucida grande", arial, sans-serif; + letter-spacing: -1px; +} + +#content h1 { + font-size: 24px; +} + +#content h2 { + font-size: 22px; +} + +#content h3 { + font-size: 20px; +} + +#content h4 { + font-size: 18px; +} + +#content h5 { + font-size: 18px; + background: #ffd; + border-bottom: 1px dotted #aaa; +} + +#content p { + line-height: 15px; +} + +#content ul, +#content ol { +} + +#content code { + font: normal 12px "bitstream vera sans mono", monaco "lucida console", "courier new", courier, serif; +} + +#content pre { + color: #63FF00; + background: #000; + overflow: auto; + font: normal 12px "bitstream vera sans mono", monaco "lucida console", "courier new", courier, serif; + margin: 0.9em 0; padding: 8px; +} + +dt { + font: bold 14px "lucida grande", verdana, arial, helvetica, sans-serif; +} + +dd { +} + +body { + font: normal 12px "lucida grande", verdana, arial, helvetica, sans-serif; +} + +.small { + font: normal 10px verdana, arial, sans-serif; +} + +.table_h { + background-color: #e0e0e0; +} + +.table_d { + background-color: #f7f7f7; +} +input, +textarea { font: normal 12px "bitstream vera sans", verdana, sans-serif; } + +abbr { border: none; } +cite { font-style: normal; } +a img { border: none; padding: 0; margin: 0; } + diff --git a/task.html b/task.html index 2b743ba56..e8b4d7c96 100644 --- a/task.html +++ b/task.html @@ -3,135 +3,7 @@ Task 1.3.1 - + @@ -170,6 +42,11 @@ a img { border: none; padding: 0; margin: 0; } of the task source code (6/19/2008).

+

+ Take a look at the troubleshooting guide + for tips and workarounds to problems. +

+

New in version 1.3.1

Source: task-1.3.1.tar.gz @@ -185,6 +62,9 @@ a img { border: none; padding: 0; margin: 0; }

New in version 1.3.0

Source: task-1.3.0.tar.gz +
+ Debian package: task_1.3.0-0_i386.deb + (Thanks to Richard Querin)

-

New in version 1.2.0

- Source: task-1.2.0.tar.gz -
- Debian package: task_1.2.0-1_i386.deb - (Thanks to Richard Querin) -

- - - -

-

New in version 1.1.0

- Source: task-1.1.0.tar.gz -
- Debian package: task_1.1.0-1_i386.deb - (Thanks to Richard Querin) -

- - - + (Find out what was new in prior versions)

diff --git a/troubleshooting.html b/troubleshooting.html new file mode 100644 index 000000000..0b1e636d8 --- /dev/null +++ b/troubleshooting.html @@ -0,0 +1,152 @@ + + + + Task Troubleshooting Guide + + + + + +

+ + + + + + + +
+ +
+
+
+
+

Task Troubleshooting Guide

+

+ Here you will find tips and suggestions for making task behave + properly, and bug workarounds. +

+ +
+

Segmentation Fault for certain commands

+
+

+ Task 1.3.0 and earlier has been generating segmentation faults + after upgrading to a new version of task. This is mostly + occurring for Ubuntu users. +

+ +

+ While a fix is being worked on, here is a workaround: +

+ +
% cd
+% mv .task .task_backup
+% mv .taskrc .taskrc_backup
+% task version
+(task will recreate .taskrc and .task)
+% rm -r .task
+% mv .task_backup .task
+ +

+ Please be careful with that "rm -r .task" command - it is all too + easy to make a mistake and delete something important. +

+
+ +
+

How to get rid of the "Age" column

+
+

+ The "Age" column that shows up on several reports is proving + to be unpopular. In task 1.2.0 and later, here is how to + remove it from the reports - make sure you have the line: +

+ +
showage=no
+ +

+ in your ~/.taskrc file. + + Note that the "task long" report does not obey this setting + in versions prior to 1.3.1. +

+ +

+ The "showage" setting is supported in task 1.2.0 or later. +
+ The "task long" report supports this setting in versions 1.3.1 + or later. +

+
+ +
+

How do I build task under Cygwin?

+
+

+ Task is built the same way everywhere. But under Cygwin, you'll + need to make sure you have the following packages available + first: + +

    +
  • gcc +
  • make +
  • ncurses +
+ + The gcc and make packages allow you to compile the code, and + are therefore required, but the ncurses package is optional. + Ncurses will allow task to determine the width of the window, and + therefore use the whole width and wrap text accordingly. +

+
+ +
+
+
+

+ Copyright 2006-2008, P. Beckingham. All rights reserved. +

+
+ +
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+ +
+ + + + + + + diff --git a/versions.html b/versions.html new file mode 100644 index 000000000..0aa282872 --- /dev/null +++ b/versions.html @@ -0,0 +1,133 @@ + + + + Task Prior Versions + + + + + +
+ + + + + + + +
+ +
+
+
+
+

Task Prior Versions

+
+ +
+

+

New in version 1.2.0

+ Source: task-1.2.0.tar.gz +
+ Debian package: task_1.2.0-1_i386.deb + (Thanks to Richard Querin) +

+ +
    +
  • Subprojects supported - please see documentation below, or TUTORIAL + file +
  • "dateformat" configuration variable now properly used to parse as + well as render dates +
  • "task list x" now performs a caseless comparison between "x" and + the task description +
  • "showage" configuration variable determines whether the "Age" column + should appear on the "task list" and "task next" reports +
  • Improvements to the TUTORIAL file and this page +
+ +

+

New in version 1.1.0

+ Source: task-1.1.0.tar.gz +
+ Debian package: task_1.1.0-1_i386.deb + (Thanks to Richard Querin) +

+ +
    +
  • "blanklines" configuration variable to stop displaying unnecessary + white space and thus work better on small-screen devices +
  • "dateformat" configuration now determines how dates are formatted +
  • Better formatting of "task tags" output +
  • This home page set up, with TUTORIAL +
  • Added tags to the "task long" report +
+ +

+

New in version 1.0.1

+ Source: task-1.0.1.tar.gz +

+ +
    +
  • Fixed bug where the UUID generator not properly terminating strings +
  • Fixed bug where srandom/srand not called prior to custom UUID generation +
+ +

+

Version 1.0.0

+ Source: task-1.0.0.tar.gz +

+ +

+ Task 1.0.0 was the first publicly available version of task. +

+ +
+ +
+
+
+

+ Copyright 2006-2008, P. Beckingham. All rights reserved. +

+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+ +
+ + + + + + +