comment

How to put comments on .html.tpl file

I am trying to do some commenting on a .html.tpl file I'm maintaining using <!-- --> but it would return syntax error. How do you put comment on such files? ...

Comment classification & colorization Plugin for Wordpress

Hi to all, is there any plugin that classificate the comments and colorize them related to their class. I mean; when commenters making comment, they should be able to choose a class from dropdown (such:General/Support/Suggestion/.. etc.) and related to this selection comment background will be colorized. Visitors can be able see only one...

Free Comment and Rating control for web page ?

Hi, Is there a free web control out there which can do following. Post new Comment Rate any posted comment Rating should not be duplicated. User can only rate any comment only once If there is nothing out there then I may just write one and publish it to the public. Thanks ...

JSoup - Select all comments

Hey, I want to select all comments from a document using JSoup. I would like to do something like this: for(Element e : doc.select("comment")) { System.out.println(e); } I have tried this: for (Element e : doc.getAllElements()) { if (e instanceof Comment) { } } But the following error occurs in eclipse "Incompatible condi...