From 0ab2169c6502c0c33ccaa53f55fd8302a251f052 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 2 Jan 2010 22:35:56 -0500 Subject: [PATCH] Documentation Update - Added a task-tutorial man page mention to the help and version command. - Corrected comment about attribute entity encoding/decoding. --- src/Att.cpp | 3 ++- src/command.cpp | 4 ++-- src/report.cpp | 6 ++---- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/Att.cpp b/src/Att.cpp index 5f4da0904..515dd7b4f 100644 --- a/src/Att.cpp +++ b/src/Att.cpp @@ -742,7 +742,8 @@ void Att::dequote (std::string& value) const //////////////////////////////////////////////////////////////////////////////// // Encode values prior to serialization. // \t -> &tab; -// " -> " +// ' -> &squot; +// " -> &dquot; // , -> , // [ -> &open; // ] -> &close; diff --git a/src/command.cpp b/src/command.cpp index d50bba3d4..858d60c05 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -443,8 +443,8 @@ int handleVersion (std::string &outs) link.setColumnWidth (0, Table::flexible); link.setColumnJustification (0, Table::left); link.addCell (link.addRow (), 0, - "Documentation for task can be found using 'man task' and 'man taskrc', or " - "at http://taskwarrior.org"); + "Documentation for task can be found using 'man task', 'man taskrc', or " + "'man task-tutorial' at http://taskwarrior.org"); Color bold ("bold"); diff --git a/src/report.cpp b/src/report.cpp index d01f720d5..a03c52ca2 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -210,10 +210,8 @@ int shortUsage (std::string &outs) std::stringstream out; out << table.render () << std::endl - << "See http://taskwarrior.org/wiki/taskwarrior/Download for the latest " - << "releases and a full tutorial. New releases containing fixes and " - << "enhancements are made frequently. Join in the discussion of task, " - << "present and future, at http://taskwarrior.org" + << "Documentation for task can be found using 'man task', 'man taskrc', " + << "or 'man task-tutorial' at http://taskwarrior.org" << std::endl << std::endl;