Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: kelo81 on August 31, 2006, 03:31:08 pm

Title: To-Do List RFC
Post by: kelo81 on August 31, 2006, 03:31:08 pm
Hello everybody. I was testing the To-Do list and I find it really nice.
I just think that it will be really amazing if the plugin would be able you to save the list into a *.txt file. With this feature, It might be possible to have a quick report of the pending items readable from a normal "todo.txt" file.
What do you think about this RFC?  :)
Title: Re: To-Do List RFC
Post by: killerbot on August 31, 2006, 03:50:25 pm
sounds nice
Title: Re: To-Do List RFC
Post by: sethjackson on August 31, 2006, 06:43:24 pm
I like the idea :)
Title: Re: To-Do List RFC
Post by: David Perfors on August 31, 2006, 10:40:16 pm
Me too, go ahead ;)
Title: Re: To-Do List RFC
Post by: Michael on August 31, 2006, 10:47:22 pm
Hello,

The idea is good.

May be other than the txt format, the XML format could be used.

All the best,
Michael
Title: Re: To-Do List RFC
Post by: takeshimiya on August 31, 2006, 11:09:33 pm
May be other than the txt format, the XML format could be used.
Actually a user-string format will be much better:

Default TODO.xml format:
Code: xml
<?xml version="1.0" encoding="UTF-8" ?>
<todolist>
    $(BEGIN)
    <todo>
        <type>$(TYPE)</type>
        <user>$(USER)</user>
        <prio>$(PRIO)</prio>
        <line>$(LINE)</line>
        <file>$(FILE)</line>
        <text>$(TEXT)</text>
    </todo>
    $(END)
</todolist>

Default TODO.txt format:
Code: bash
This is my ToDo list:

$(BEGIN)
 * $(TYPE): $(TEXT)
$(END)

Along with checkboxes for:
[ ] Escape XML entities
[ ] Order by priority
[ ] Order by type


What do you think?
Title: Re: To-Do List RFC
Post by: kelo81 on August 31, 2006, 11:20:49 pm
Quote

Actually a user-string format will be much better:

Default TODO.xml format:

Code
<?xml version="1.0" encoding="UTF-8" ?><todolist>    $(BEGIN)    <todo>        <type>$(TYPE)</type>        <user>$(USER)</user>        <prio>$(PRIO)</prio>        <line>$(LINE)</line>        <file>$(FILE)</line>        <text>$(TEXT)</text>    </todo>    $(END)</todolist>
Default TODO.txt format:

Code
This is my ToDo list: $(BEGIN) * $(TYPE): $(TEXT)$(END)
Along with checkboxes for:
[ ] Escape XML entities
[ ] Order by priority
[ ] Order by type

What do you think?

I like it!!! It's even better than my original Idea, and more powerfull!!

Yiannis, would it be possible to work on the already existing plugin? (I mean, you are the one who created it, so you may know the possibilities), I think it doesn't make sense to rewrite the entire plugin, I mean, it is an amazing plugin as is; and nobody will do it better, just adding this feature will be enought...
Title: Re: To-Do List RFC
Post by: mandrav on September 01, 2006, 12:11:54 am
Quote
Yiannis, would it be possible to work on the already existing plugin?

Of course it is. If someone wants to work on it, I 'm here to answer any questions.