Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
2c8180d9b2 | |||
12f87afe63 | |||
3496e21af5 | |||
40906eebf8 |
10
build.xml
10
build.xml
@ -8,6 +8,16 @@
|
|||||||
<mkdir dir="${build.dir}/main/classes"/>
|
<mkdir dir="${build.dir}/main/classes"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="jlp-docs">
|
||||||
|
<exec executable="jlp">
|
||||||
|
<arg value="--no-source"/>
|
||||||
|
<arg value="--output-dir"/>
|
||||||
|
<arg value="doc"/>
|
||||||
|
<arg value="src"/>
|
||||||
|
<arg value="README.md"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="ng-deploy" depends="build">
|
<target name="ng-deploy" depends="build">
|
||||||
<!-- Stop the Nailgun Server -->
|
<!-- Stop the Nailgun Server -->
|
||||||
<exec executable="cmd" os="Windows XP">
|
<exec executable="cmd" os="Windows XP">
|
||||||
|
Binary file not shown.
BIN
lib/compile/jar/jdb-util-3.2.jar
Normal file
BIN
lib/compile/jar/jdb-util-3.2.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
lib/runtime/jar/jdb-util-3.2.jar
Normal file
BIN
lib/runtime/jar/jdb-util-3.2.jar
Normal file
Binary file not shown.
@ -1,8 +1,8 @@
|
|||||||
#Tue, 05 Nov 2013 08:44:25 -0600
|
#Wed, 19 Nov 2014 12:50:01 -0600
|
||||||
lib.local=true
|
lib.local=true
|
||||||
name=jdb-gtd
|
name=jdb-gtd
|
||||||
version=1.9
|
version=1.10
|
||||||
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=5
|
build.number=1
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<init-param>
|
<init-param>
|
||||||
<param-name>gtdRootDir</param-name>
|
<param-name>gtdRootDir</param-name>
|
||||||
<param-value>/home/jdbernard/Dropbox/gtd</param-value>
|
<param-value>/home/jdbernard/gtd</param-value>
|
||||||
</init-param>
|
</init-param>
|
||||||
</servlet>
|
</servlet>
|
||||||
|
|
||||||
|
@ -203,7 +203,7 @@ public class GTDCLI {
|
|||||||
|
|
||||||
if (opts.h) { printUsage(null); return }
|
if (opts.h) { printUsage(null); return }
|
||||||
if (opts.v) { println "GTD CLI v$VERSION"; return }
|
if (opts.v) { println "GTD CLI v$VERSION"; return }
|
||||||
if (opts.d) workingDir = new File(opts.d)
|
if (opts.d) workingDir = new File(opts.d[0])
|
||||||
|
|
||||||
/// View the arguments as a [`LinkedList`][1] so we can use [`peek`][2]
|
/// View the arguments as a [`LinkedList`][1] so we can use [`peek`][2]
|
||||||
/// and [`poll`][3].
|
/// and [`poll`][3].
|
||||||
@ -681,6 +681,15 @@ public class GTDCLI {
|
|||||||
else setLoggingThreshold(level) }
|
else setLoggingThreshold(level) }
|
||||||
else log.error "Unrecognized debug command: '${command}'." }
|
else log.error "Unrecognized debug command: '${command}'." }
|
||||||
|
|
||||||
|
/** #### `delegate`
|
||||||
|
* Implement the `delegate` command. This allows you to move an action
|
||||||
|
* from the next action list to the delegate list, providing the name of
|
||||||
|
* the responsible party and optionally renaming the item. For detailed
|
||||||
|
* information see the [online help][help-delegate] by running
|
||||||
|
* `gtd help delegate`.
|
||||||
|
*
|
||||||
|
* [help-delegate]: jlp://gtd.jdb-labs.com/cli/GTDCLI/help/delegate
|
||||||
|
*/
|
||||||
protected void delegateAction(LinkedList args) {
|
protected void delegateAction(LinkedList args) {
|
||||||
def selectedFilePath
|
def selectedFilePath
|
||||||
|
|
||||||
@ -926,6 +935,16 @@ This command lists all the tasks for a given context or project. The purpose is
|
|||||||
to list in one place items that are sitting in the next-actions folder or the
|
to list in one place items that are sitting in the next-actions folder or the
|
||||||
waiting folder for a specific context or list items for a given project. If no
|
waiting folder for a specific context or list items for a given project. If no
|
||||||
context or project is named, all contexts are listed."""
|
context or project is named, all contexts are listed."""
|
||||||
|
|
||||||
|
/// Online help for the `delegate` command.
|
||||||
|
/// @org gtd.jdb-labs.com/cli/GTDCLI/help/delegate
|
||||||
|
case ~/delegate/: println """\
|
||||||
|
usage gtd delegate [<action-file> ...]
|
||||||
|
|
||||||
|
This command moves an action item from a next-action context or project folder
|
||||||
|
to the delegate folder. It allows the user to attach the name of the newly
|
||||||
|
responsible party and optionally rename the item."""
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user