Hi I need a xxxreport like program to generate a todo list from java source files (in other words extract all //TODO comments) idealy to a latex list or are there any other good java 2 latex tools ? Thanks

link|improve this question

1  
Eclipse has the option to see all TODOS , FIXME, etc. You can copy them to wherever you want. This is more a tip if you don't find any dedicated software to do it, so I made a comment with this and not an answer – reistiago Mar 28 '11 at 15:09
feedback

3 Answers

Have you considered "grep -R" with post-massaging with awk or perl into the final form?

link|improve this answer
yes that is always an option I was just curious if there is an application for this. still thanks for your answer – sherif Mar 28 '11 at 17:49
feedback

Eclipse generates a TODO list. Look at the Tasks view.

link|improve this answer
I know I was looking for a command line tool still thanks for your answer – sherif Mar 28 '11 at 17:53
feedback
up vote 0 down vote accepted

Ive made a simple python script which achieves this task thanks for the grep suggestion

 


#!/usr/bin/python
import commands
import sys
path= sys.argv[1]

a=commands.getoutput("grep -e //.*todo -e //.*TODO -R "+path).split("\n")
print "\\begin{itemize}"
lastFileName=""
firstItem=1;
open=0
for ln in a:

    ln=ln.replace("\t","").replace("//","").replace("{","").replace("}","").replace("\\","")
    if lastFileName!= ln[0:ln.find(":")]:

        lastFileName= ln[0:ln.find(":")]
        if firstItem!=1:
            print " \\end{itemize}"     
            open=1  
        print "\\item "+lastFileName+" \n   \\begin{itemize}"
        firstItem=0
        open=1

    print " \\item  "+ln[ln.find(":"):len(ln)]


if open:
    print " \\end{itemize}"
print "\\end{itemize}"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.