ls command: include projects, list all if no specific context is named.

This commit is contained in:
Jonathan Bernard 2013-08-05 10:21:45 -05:00
parent 4339a7db2a
commit a2f8b7b7a6
2 changed files with 28 additions and 29 deletions

View File

@ -1,8 +1,8 @@
#Wed, 19 Jun 2013 10:34:26 -0500 #Mon, 05 Aug 2013 10:16:09 -0500
lib.local=true lib.local=true
name=jdb-gtd name=jdb-gtd
version=1.0 version=1.1
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
executable.jar=true executable.jar=true
main.class=com.jdblabs.gtd.cli.GTDCLI main.class=com.jdblabs.gtd.cli.GTDCLI
build.number=3 build.number=2

View File

@ -10,7 +10,7 @@ import org.joda.time.DateTime
public class GTDCLI { public class GTDCLI {
public static final String VERSION = "1.0" public static final String VERSION = "1.1"
private static String EOL = System.getProperty("line.separator") private static String EOL = System.getProperty("line.separator")
private static GTDCLI nailgunInst private static GTDCLI nailgunInst
@ -98,7 +98,7 @@ public class GTDCLI {
case ~/list-copies/: listCopies(parsedArgs); break case ~/list-copies/: listCopies(parsedArgs); break
case ~/new/: newAction(parsedArgs); break case ~/new/: newAction(parsedArgs); break
case ~/tickler/: tickler(parsedArgs); break case ~/tickler/: tickler(parsedArgs); break
case ~/ls|list-context/: ls(parsedArgs); break; case ~/ls|list/: ls(parsedArgs); break;
default: default:
println "Unrecognized command: ${command}" println "Unrecognized command: ${command}"
break } } } break } } }
@ -380,35 +380,33 @@ public class GTDCLI {
protected void ls(LinkedList args) { protected void ls(LinkedList args) {
def context = args.poll() def target = args.poll()
if (!context) return
def contextNextActions = new File(gtdDirs['next-actions'], context)
def contextWaiting = new File(gtdDirs.waiting, context)
def printItems = { dir -> def printItems = { dir ->
if (!dir.exists() || !dir.isDirectory()) return
println "-- ${getRelativePath(gtdDirs.root, dir)} --"
dir.eachFile { file -> dir.eachFile { file ->
if (!file.exists() || !file.isFile() || file.isHidden())
return
def item = new Item(file) def item = new Item(file)
println item.action } println item.action }
println "" } println "" }
if (!contextNextActions.exists()) // If we have a named context or project, look for those items
println "next-actions/${context} does not exist, skipping" // specifically
else if (!contextNextActions.isDirectory()) if (target) {
println "next-actions/${context} is not a directory, skipping"
else { printItems(new File(gtdDirs['next-actions'], target))
println "-- next-actions/${context} --" printItems(new File(gtdDirs.waiting, target))
printItems(contextNextActions) } printItems(new File(gtdDirs.projects, target)) }
if (!contextWaiting.exists())
println "waiting/${context} does not exist, skipping"
else if (!contextWaiting.isDirectory())
println "waiting/${context} is not a directory, skipping"
else { else {
println "-- waiting/${context} --" printItems(gtdDirs['next-actions'])
printItems(contextWaiting) } } printItems(gtdDirs['waiting'])
gtdDirs['next-actions'].eachDir(printItems)
gtdDirs['waiting'].eachDir(printItems) } }
protected void printUsage(LinkedList args) { protected void printUsage(LinkedList args) {
@ -532,11 +530,12 @@ and moves them out of the tickler file and into the next-actions file."""
break break
case ~/ls|list-context/: println """\ case ~/ls|list-context/: println """\
usage gtd ls <context> [<context> ...] usage gtd ls [<context> ...]
This command lists all the tasks for a given context. The purpose is to list in This command lists all the tasks for a given context or project. The purpose is
one place items that are sitting in the next-actions folder or the waiting to list in one place items that are sitting in the next-actions folder or the
folder for a specific context.""" waiting folder for a specific context or list items for a given project. If no
context or project is named, all contexts are listed."""
} }
} }
} }
@ -571,7 +570,7 @@ folder for a specific context."""
// parent path. // parent path.
return true } return true }
protected String getRelativePath(File parent, File child) { protected static String getRelativePath(File parent, File child) {
def parentPath = parent.canonicalPath.split("/") def parentPath = parent.canonicalPath.split("/")
def childPath = child.canonicalPath.split("/") def childPath = child.canonicalPath.split("/")