是否有任何 GTD 应用程序可以与任何常见的错误跟踪应用程序同步?
我正在尝试决定使用 GTD 应用程序。 有谁知道有一个可以自动与 Trac 同步,或者更好的是,FogBugz?
我怀疑没有人这样做。 这让我不得不编写一个为我做这件事的脚本。
Things 将其数据存储在 XML 中,但标签的内容都是二进制的,这使得编写脚本几乎不可能。
OmniFocus 将其数据存储在 XML 中,内容是文字文本。 可以使用插件或脚本。
命中列表将其数据存储在 sqlite3 数据库中。 可能比 XML 更容易,但我还不确定。 缺点是 THL 不支持重复任务,这使得它作为 GTD 应用程序不太有用。
有人试过这个吗? 我错过了一个明显的应用程序吗?
I'm trying to decide on a GTD app. Does anyone know of one that automatically syncs with Trac or, better yet, FogBugz?
My suspicion is that none does. Which leaves me with writing a script that does it for me.
Things stores its data in XML, but the contents of the tags are all binary, which makes writing a script nigh impossible.
OmniFocus stores its data in XML, and the contents are literal text. Plugin or script is possible.
The Hit List stores its data in a sqlite3 database. Possibly easier than XML, but I'm not sure yet. The downside is that THL doesn't support recurring tasks, which makes it less useful as a GTD app.
Has anyone tried this? Have I missed an obvious app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ThinkingRock - Java 应用程序,纯文本 XML 数据格式,支持重复任务。 据我所知,尚未构建自动集成,但有另一种可能的脚本选项。
ThinkingRock - Java application, XML data format with plain text, supports recurring tasks. No automatic integration built yet that I know of, but another possible option to script for.
Tomboy 具有一定程度的 Bugzilla 集成,但并不复杂。 或者,同步基于纯文本的内容也相当简单,例如 Vimoutliner(IMO:可能是有史以来最好的 GTD 应用程序)或 Taskpaper。
就易用性而言,可能会这样:
明文> XML> 数据库> 二进制格式 X
您可以仅使用 wget 和/或简单的 perl 脚本来下载任务,然后运行一些正则表达式以使其格式正确,例如
或在代码中:
Tomboy has some level of Bugzilla integration but nothing complex. Alternatively it would be fairly trivial to sync something plaintext based such as Vimoutliner (IMO: possibly the best GTD application ever) or Taskpaper.
Probably in terms of easiness it would go:
plaintext > XML > Database > Binary format X
You could just use wget and/or a simple perl script to download the tasks then run a few regular expressions to get it formatted correctly e.g.
or in code:
为什么不使用您正在使用的错误跟踪系统的任务功能作为 GTD 工具呢? 您还看过(任务教练)[http://en.wikipedia.org/wiki/Task_Coach ] 它将所有信息存储在 XML 中。
Why not use the task features of the bug tracking systems you're looking at as your GTD tool? Also have you looked at (task coach)[http://en.wikipedia.org/wiki/Task_Coach] It stores all its info in XML.