todo

How do I handle TODO comments in VisualStudio 2010?

痴心易碎 提交于 2019-12-23 09:33:08
问题 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

Eclipse tasks is empty

青春壹個敷衍的年華 提交于 2019-12-22 11:57:09
问题 I'm using Eclipse (Helios) and I added some tasks in my java classes, using // TODO: blah blah. Near the line counting, I have the little icon that indicates the tasks is recognized but I can't see them in the Tasks view (I tried the tasks view and Task list view they're empty). However, when I add a Task by right clicking near the line counting and choosing "Add a task", this new one appears in the "Tasks" view correctly! What am I missing to make this work? 回答1: First, check the

How to use ant to check for tags (TODO: etc) in java source

强颜欢笑 提交于 2019-12-22 06:48:40
问题 it's common to see something like this in code, hopefully only during development: //XXX: not in production! String password = "hello"; // getActualPassword(...); ... catch(Exception e) { /* TODO: Auto-generated catch block*/ } I would like ant to be able to a) warn (on TODO: / FIXME: tags) or fail (on XXX: or simmilar) The build server is linux, home grown and based on ant. Would need to work at least on linux if not on windows. We also use perforce if an alternative is to block file commits

SVN + PROJECT MANAGEMENT + WIKI + TODO LIST [closed]

本小妞迷上赌 提交于 2019-12-20 15:19:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Let's say I have web hosting account on linux on which i wish to host a svn server with wiki, project management to do lists, bugs, etc. Can you recommend me such a tool(which has all of those - if is possible ) or do I have to put them separately? do you know a good link with tutorial about how to setup those?

Getting Doxygen and MSVC TODO tags to work together

我只是一个虾纸丫 提交于 2019-12-18 13:25:53
问题 In doxygen, the standard "/// \todo stuff" is used to tag a todo item. I do most of my coding in MSVC so it's handy to be able to see the TODO's in the Task List. MSVC uses "//TODO stuff" for their tags. Is there any way to make them work together? I found the properties pane for the Task list and try to add "\todo" to the list, but it doesn't like the "\" character. Can I make these two work together? Edit: I am specifically interested to find out how to do this in Visual Studio 10. 回答1:

View all TODO items in Visual Studio using GhostDoc

廉价感情. 提交于 2019-12-18 10:31:53
问题 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 (the documentation tool that I use)? 回答1: If you are referring to TODOs that are defined with the // TODO comments, open the Task List and set it to the Comments filter. Also be careful with GhostDoc. Always read the comment that was generated. I remember that older versions would generate comments like: "Toes the string" for a method like ToString().

第一个微信小程序

夙愿已清 提交于 2019-12-18 02:00:41
微信官方已经开放微信小程序的官方文档和开发者工具。前两天都是在看相关的新闻来了解小程序该如何开发,这两天官方的文档出来之后,赶紧翻看了几眼,重点了解了一下文档中框架与组件这两个部分,然后根据简易教程,做了一个常规的todo app。这个app基于微信小程序的平台,实现了todo app的常规功能,同时为了让它更接近实际的工作场景,也用到了loading与toast这两个组件来完成一些操作的交互与反馈。这个平台给我的直观感受是,技术层面,它跟vue有相似性,但是远没有vue强大;开发时候的思路,不像vue,反倒觉得比较像backbone。所以要是使用过backbone,vue等mvc,mvvm框架的人,会觉得这个平台上手很容易。本文主要介绍这个todo app实现的一些要点。 先补充下本文相关的资料: 官方文档: https://mp.weixin.qq.com/debug/wxadoc/dev/index.html 官方开发者工具下载: https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html 本文todo app的功能演示: 注:需长按todo的text,才能直接编辑。因为是在手机端,所以不能使用双击事件来进行编辑,改成了长按事件。小程序的平台也没有提供双击事件的绑定。 相关源码: https:/

IDE comment keywords

时光总嘲笑我的痴心妄想 提交于 2019-12-17 22:46:46
问题 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

List javascript tasks in Visual Studio Task list

末鹿安然 提交于 2019-12-10 12:33:28
问题 Is there a way to configure Visual Studio 2008 to display TODO comments in .js files or script-tags in the task list? Now only todo comments from the C# code is displayed. 回答1: Another option is to just use Resharper's To-do Explorer window, which you probably already have and if not, should have. You can dock it right with the other windows. It parses all the files (cs, js, css, etc.). 回答2: http://forums.asp.net/t/414634.aspx/1 The tasks will show up under the task list under Add-Ins and

How to set Netbeans Action Item filters to ignore third party folders?

烈酒焚心 提交于 2019-12-10 02:12:18
问题 I do not want to see errors and warnings for third party libraries in Netbeans Action Items list, so I created a filter as shown below: The filter is turned on, but I still see many items from node_modules folders. What am I doing wrong? How should the filter be configured to ignore everything coming from node_modules and vendor folders? 回答1: I found a solution to hide all parser errors in folder node_modules from this link: How do I Ignore the build folder in NetBeans 'Find In Projects'? But