Giter Club home page Giter Club logo

toodledo's Introduction

= toodledo

* http://toodledo.rubyforge.org
* mailto:[email protected]

== DESCRIPTION:

This is a Ruby API and client for http://toodledo.com, a task management 
website. It implements all of the calls from Toodledo's developer API, and 
provides a nice wrapper around the functionality.

The client allows you to work with Toodledo from the command line. It will
work in either interactive or command line mode.

You can also use the client in your shell scripts, or use the API directly
as part of a web application.  Custom private RSS feed?  Want to have the Mac 
read out your top priority?  Input tasks through Quicksilver?  Print out
tasks with a BetaBrite?  It can all happen.

== FEATURES/PROBLEMS:

* Command line client interface
* Interactive client interface
* Fully featured session based API
* Supports Proxy and SSL usage
* Easy configuration and automation (Quicksilver / Scripts / Automator)

== SYNOPSIS:

=== SETUP:

The first thing you should do is open up your browser and go to:

  http://www.toodledo.com/info/api_doc.php

and retrieve your userid.  You will need this for setup.

Then, install toodledo.  This is either 'gem install toodledo' or 
'sudo gem install toodledo' depending on your platform.

Then, type 'toodledo setup' and enter your userid and password in
the spaces provided.  Then save the file, and you're good to go.

=== COMMAND LINE:
 
You can add tasks.  The simplest form is here:

  toodledo add 'This is a test'
  
But tasks don't have to be simple.  Toodledo has a particularly rich model of 
a task, and allows full GTD type state to be attached to them.  The syntax 
for the client is as follows:

  *Folder
  @Context
  ^Goal
  !Priority

You can encase the symbol with square brackets if there is a space involved:

  *[Blue Sky]
  @[Someday / Maybe]
  ^[Write Toodledo Ruby API]
  !top
  
Let's use the command line client to list only the tasks you have in the office:

  toodledo list '@Office *Action'

Now let's add a task with several symbols:

  toodledo add '*Action @Programming ^[Write Toodledo Ruby API] Write docs'

You can also edit tasks, using the task id.  This sets the folder to Someday:

  toodledo edit '*Someday 15934131'

And finally you can complete or delete tasks, again using the task id.

  toodledo complete 15934131
  toodledo delete 15934131

=== INTERACTIVE MODE:

Toodledo also comes with an interactive mode that is used if no arguments are 
found:

  toodledo 
  > add This is a test
  
You can type help at the prompt for a complete list of commands.  The client 
makes for a nice way to enter in tasks as you think of them.

The client will also allow you to set up filters.  Filters are added with
the symbols, so in interactive mode

  filter @Office *Action
  list

Then it produces the same results as:

  toodledo list '@Office *Action'

Finally, if you want to write your own scripts, working with Toodledo is very
simple, since it will use the YAML config file:

  require 'rubygems'
  require 'toodledo'
  Toodledo.begin do |session|
    # work with session
  end

If you want to work with the session directly, then you should do
this instead:

  require 'rubygems'
  require 'toodledo'
  session = Session.new(userid, password)
  session.connect()

== REQUIREMENTS:

* A connection to the Internet
* An account to http://toodledo.com
* Your Toodledo userid (see http://www.toodledo.com/info/api_doc.php)
* cmdparse
* highline
* rubygems

== INSTALL:

* sudo gem install toodledo
* toodledo setup (sets up the YAML file with your credentials)
* toodledo

== LICENSE:
		   GPL v3

toodledo's People

Contributors

ahoward avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.