如何显示待办事项列表之间的关系?
如何显示待办事项列表之间的关系? 我正在使用 Devtodo。
我举个例子。 我在一个 XML 文件中体现了 MIT 的幽默:
<注意优先级=“低”时间=“1237320287”> 观看麻省理工学院的幽默视频
其他文件是关于 Usenet-humor 的
<注意优先级=“非常低”时间=“1237321441”> 了解新闻组幽默
当我更改一个幽默文件时,我希望收到一个警报,向我显示标题中包含“幽默”一词的其他待办事项列表。
部分解决方案
我尝试向 .bashrc 中的 cd 命令添加一个属性,该属性不断向我显示我的主要待办事项列表:
alias='ls(); 查找 /* -name mainlist'
但我觉得我正在艰难地完成这项工作。 您如何管理文件夹之间的待办事项列表? 您是否有很多脚本来显示待办事项列表之间的关系?
How can I show relations between ToDo-lists? I am using Devtodo.
I will give an example. I have my MIT humor in one XML-file:
<todo version="0.1.19"> <note priority="low" time="1237320287"> see the MIT humor-video </note> </todo>
Other file is about Usenet-humor
<todo version="0.1.19"> <note priority="verylow" time="1237321441"> read about Usenet Humor </note> </todo>
When I change one of my humor-file, I would like to have an alert that shows me my other Todo-lists that have a word "humor" in the title.
Partial Solution
I tried to add a property to the cd-command in my .bashrc that keep showing me my main Todo-lists:
alias='ls (); find /* -name mainlist'
but I feel I am doing the job in a hard way. How are you managing your Todo-lists between folders? Have you got a lot of scripts to show relationships between Todo-lists?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我会用“
humor
”标签标记一些单词作为键,然后编写一些内容来搜索待办事项以查找相关的内容。但我认为主题会少一些。 因此,只需在您的应用程序中(而不是在 XML 中)保留所有打开的待办事项的主题索引以及这些主题即可。
I think I would markup some words as keys say with a '
<topic>humor</topic>
tag then write some thing that would search through the todos to find the related ones .but I'm thinking that the topics would be fewer. So just keep an index by topic of all open todos with those topics in your app, not in the XML.