It would be highly convenient and would save me a lot of time and frustration if there were two buttons on the batch validation report next to a file with problems.
1) When I click it, it makes the browser render the page itself, (not the list of problems). From there I can do a view source to edit it.
2) When I click it, it takes me back into the running non-batch Validatior and loads the corresponding html source file ready to revalidate, edit, etc.
How might you implement this?
1) is pretty simple, just a file:///somedir/somefile.html link.
2) is more complicated. You might trigger some Java script that uses black arts to send the name of the source file to HTML Validator. You might have a link to http:///localhost:99?somedir/somefile.html to send a GET when you click it with the name of the file. CSE Validator would act like a miniature webserver to intercept the message and load the file for edit. This sort of code is trivial in Java. I don't know about C++. See http://mindprod.com/products.html#ECHOSERVER



