EzDevInfo.com

Todo

A todo list app written in Swift

Why TODO in controllers sometimes can't be compiled, in play2?

TODO is convenient when coding controllers:

object Application extends Controller {

   def test = Action { TODO }

}

It's fine. But this:

def login = Action { implicit request => TODO }

It won't pass the compilation, the error message is:

type mismatch; found : play.api.mvc.Action[play.api.mvc.AnyContent] 
required: play.api.mvc.Result

I have to remove the iplicit request part, or use Ok("todo") instead, which is not convenient.

How to fix it or do I miss something?


Source: (StackOverflow)

View all TODO items in Visual Studio using Ghostdoc

I'm also using GhostDoc in Visual Studio 2008. How do I view all to-do items and if that's a function already in Visual Studio or in GhostDoc (documentation tool that I use)?


Source: (StackOverflow)

Advertisements

Textbased issue-tracker/todo list for Git?

I've been managing all of my todo-lists as

~/git-repo/todo

which is kept under git. THen I add/delete files from the todo list, and have git autocommit all changes. However, I feel there should be more powerful tools.

Besides "cil" and git-issues [neither of which I've tried], what tools are available?

PS I want something that's entirely text/command line based.

Thanks!


Source: (StackOverflow)

How do I add a high-priority TODO comment in Visual Studio?

Adding a comment such as this:

// TODO: Refactor this code

...creates a task in the Task List that I can view etc. There is a column labeled ! that lets you sort these tasks by priority.

How can I set a specific task's priority?


Source: (StackOverflow)

Manage #TODO (lots of files) with VIM

Hi stackoverflow community,

I've already search for this here and haven't found what I need. I use VIM/GVIM to develop my python projects and I randomly I leave #TODO comments in my code.

Is there any way to manage (search, list and link) all the #TODO occurrences inside VIM? I tried the tasklist plugin, it's almost what I need, but it only lists the current file #TODO occurrences. Generally my projects has some sub-folders and many .py files, so I'd like to find a way to search through all folders and files in the current working directory and list them.

Thanks...


Source: (StackOverflow)

IDE comment keywords

So I only recently discovered the TODO comment. For those of you that don't know, most modern IDE's will recognize this word in a comment and flag the comment line a different colour so It stands out.

EG.

//Need to talk to Bill about refactoring this code

//TODO:Need to talk to Bill about refactoring this code

You may notice in IDE's like Eclipse or Rubymine highlight the TODO comment and some nice other features to do with it.

My question is: What other keywords are there like the TODO? It seems like a much better way of communicating to developers through comments and a feature that should be a bit more widely known in IDE's. Their purpose is to help with development after all..


Source: (StackOverflow)

TODO tasks list in Flash Builder

Does Flash Builder support tasks list?
I'm testing Flash Builder for PHP, and I can see my // TODO in PHP code but not in AS or MXML.

I found this plugin:
http://www.richinternet.de/blog/index.cfm?entry=911D4B57-0F0D-5A73-AF6F4D4D04099757
but it's very old.

Do you know how can I see my TODO list in AS3 and MXML code with Flash Builder 4.5?

[UPDATE]: I've installed the plugin from richinternet.de and it works in Flash Builder 4.5 for PHP.
But it's very poor, it only detects the TODOs and FIXMEs if you open the file, it doesn't search all your src for TODOs and FIXMEs.
And also is case insensitive, that's a problem for me, because in spanish "todo" means "everything", so I can't use the word todo in my comments now.

I can't understand how Adobe doesn't include a plugin for this after so many years developing Flash Builder !! they are adding TODO comments when you generate a handler, method, etc !!! I don't know how that can be useful if you don't show it in the tasks!


Source: (StackOverflow)

Highlight // TODO in XCode

XCode 4 recognizes comments like // TODO: comment or // FIXME: comment and displays it in the Class overview drop-down.

Is there the possibility to highlight // TODO with a bright color in the source code, so one can quickly find open TODOs?

Thanks a lot...


Source: (StackOverflow)

Show TODO tasks only for pending changes in Visual Studio

The Task List in Visual Studio 2010 will show all the TODO comments in a solution, but is there some way to filter it to only show TODOs for files with pending changes or for files that are open? In other words, I don't want to see everyone else's TODOs, only the TODOs in my changeset. If it isn't built in, is there a plug-in that you like that can do that?


Source: (StackOverflow)

todo tags not working on eclipse and pydev

I'm using eclipse 3.7.0 on fedora and pydev 2.2.2

I tried to use the todo tags but it doesnt work. the todo tags on window > preferences looks fine. i can add a using left click beside the line.

please advice


Source: (StackOverflow)

Is it possible to use multiline todo's in IntelliJ IDEA 13?

If yes, how ?

If not, is there a workaround to get similar functionality ?

EDIT:

What I mean is something like this :

// TODO line1
// line2
// line3

and line1, line2, line3 belong to the same TODO and get highlighted with blue.


Source: (StackOverflow)

How do I handle TODO comments in VisualStudio 2010?

I'd like Visual Studio to list all lines having "TODO: " in their beginning (usually after a comment sign which may vary depending on the file type), that can be found in any textual file in a solution (whether it be C#, VB, F#, T-SQL, ASPX, XAML or just TXT) in a special panel showing what's written in the line to the right of "TODO: ", project name (I use many projects in one solution), file name, line number, and code block name (like class and method) if possible.

Do you know of such an extension, or maybe VisualStudio has this feature built-in somewhere? For example, NetBeans sort of has this out-of-the-box.


Source: (StackOverflow)

Task priorities in Eclipse

I know two ways to create tasks using Eclipse; with the tasks view or with the TODO annotation in a comment:

//TODO: wtf? Rewrite it using constants.
int foo = 3.1 * 3;

If I use the first way, I can edit tasks and set the "priority".

Can I do it for tasks that I create using TODO annotation?


Source: (StackOverflow)

Why don't I see my TODOs for my PHP files in Eclipse?

Why don't I see my TODOs for my PHP files in Eclipse?

I ran into this issue in PDT, I just wanted to put the answer up in case someone else did too.


Source: (StackOverflow)

How to Add Eclipse TODOs to JSPs

There is a way to add "TODO"s to Java classes so that they will show up in Eclipse's Tasks view.

//TODO: comment about what needs done

Does anyone know how to add a similar comment in a JSP so that it'll show up in the Tasks view in Eclipse? I've tried the obvious, but can't seem to make it show up.

<!-- TODO: this doesn't show up in the Tasks view in Eclipse -->

Source: (StackOverflow)