Command: tip

- Removed (stubbed) 'tip' command from core.  Will be external, if
  and when it is developed.
This commit is contained in:
Paul Beckingham 2011-06-13 00:49:37 -04:00
parent d6670ba198
commit 5d2528bff6
4 changed files with 0 additions and 96 deletions

View file

@ -47,7 +47,6 @@ set (commands_SRCS Command.cpp Command.h
CmdSummary.cpp CmdSummary.h
CmdTags.cpp CmdTags.h
CmdTimesheet.cpp CmdTimesheet.h
CmdTip.cpp CmdTip.h
CmdUndo.cpp CmdUndo.h
CmdUrgency.cpp CmdUrgency.h
CmdVersion.cpp CmdVersion.h)

View file

@ -1,51 +0,0 @@
////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager.
//
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
//
// This program is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation; either version 2 of the License, or (at your option) any later
// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// this program; if not, write to the
//
// Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
//
////////////////////////////////////////////////////////////////////////////////
#include <stdlib.h>
#include <CmdTip.h>
#include <Context.h>
extern Context context;
////////////////////////////////////////////////////////////////////////////////
CmdTip::CmdTip ()
{
_keyword = "tip";
_usage = "task tip";
_description = "Displays helpful usage tips";
_read_only = true;
_displays_id = false;
}
////////////////////////////////////////////////////////////////////////////////
int CmdTip::execute (std::string&)
{
// TODO Read tips file, pick one, display it.
return 0;
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -1,42 +0,0 @@
////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager.
//
// Copyright 2006 - 2011, Paul Beckingham, Federico Hernandez.
// All rights reserved.
//
// This program is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation; either version 2 of the License, or (at your option) any later
// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// this program; if not, write to the
//
// Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor,
// Boston, MA
// 02110-1301
// USA
//
////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_CMDTIP
#define INCLUDED_CMDTIP
#define L10N // Localization complete.
#include <string>
#include <Command.h>
class CmdTip : public Command
{
public:
CmdTip ();
int execute (std::string&);
};
#endif
////////////////////////////////////////////////////////////////////////////////

View file

@ -69,7 +69,6 @@
#include <CmdSummary.h>
#include <CmdTags.h>
#include <CmdTimesheet.h>
#include <CmdTip.h>
#include <CmdUndo.h>
#include <CmdUrgency.h>
#include <CmdVersion.h>
@ -132,7 +131,6 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdSummary (); all[c->keyword ()] = c;
c = new CmdTags (); all[c->keyword ()] = c;
c = new CmdTimesheet (); all[c->keyword ()] = c;
c = new CmdTip (); all[c->keyword ()] = c;
c = new CmdUndo (); all[c->keyword ()] = c;
c = new CmdUrgency (); all[c->keyword ()] = c;
c = new CmdVersion (); all[c->keyword ()] = c;