comments

How can I comment out only part of a line in Perl?

How do I comment a part of a single line in Perl, like the following line: if($clevel==0){#never happends} I would like to be able to comment that last closing bracket, without going to a new line. ...

django threadedcomments

Hi folks, I would like to setup a comment systems on my site, using django threadedcomments, and I follow all the steps in the Tutorial, however, I get the following error: No module named newforms.util I am not sure what causing this issue, here is my configuration: #settings.py INSTALLED_APPS = ( 'django.contrib.admin', 'dj...

Good sample of asynchronous comment system for ASP.NET MVC, JSON and JQuery

Good morning can anyone jot down a complete sample for creating an asynchronous comment mechanism like this, but focusing on ASP.NET MVC? ...

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 (may it be C#, VB, F#, T-SQL, ASPX, XAML or just TXT) in a special panel showing what's written in the line right to "TODO: ", project n...

Telling YUI compressor to remove specific non-commented code

In my javascript I have some bits of code specifically used for debugging which I don't want to include in the live site. Is there a way I can semi-comment these bits of code so that they run as javascript normally, but that yui compressor thinks they're comments and removes them? For example for(key in modules) { try { MyApp[k...

How do I browse Wordpress Comment Feed by page?

Can I browse a blog's comments feed further than the first page (usually 10 comments) I know there's a comments feed: /comments/feed and comments feed for a specific post: /feed?p=23 and posts feed which can be paginated: /feed?paged=2 and the ability to pageinate comments on a post using comment-page-2 or cpage=2 on a post (not in f...

ByteFlow installation Error on Windows

Hi Folks, When I try to install ByteFlow on my Windows development machine, I got the following MySQL error, and I don't know what to do, please give me some suggestion. Thank you so much!!! E:\byteflow-5b6d964917b5>manage.py syncdb !!! Read about DEBUG in settings_local.py and then remove me !!! !!! Read about DEBUG in settings_local....

Is it OK to put a link to Q&A sites in a program's comments?

In quite some codebase you can see comments stating things like: // Workaround for defect 'xxx', (See bug 1434594 on Sun's bugparade) So I've got a few questions, but they're all related. Is it OK to put link to SO questions in a program's comments: // We're now mapping from the "sorted-on column" to original indices. // // Ther...

Android -- How to post app rating/comments to Market from within app?

Hello all, This is a simple question. Is there a way to allow users to enter in a comment and or rating for my app from directly within my app and have that data posted back to the Android Market? If so, what would the code for that look like if I used an EditText view to allow user input? If not, then is my only other option directly l...

How to ignore comments when reading a XML file into a XmlDocument?

Possible duplicate: How to remove all comment tags from XmlDocument Hello, I am trying to read a XML document with C#, I am doing it this way: XmlDocument myData = new XmlDocument(); myData.Load("datafile.xml"); anyway, I sometimes get comments when reading XmlNode.ChildNodes. For the benefit of who's experiencing the same requi...

web2py server-side comments

In a web2py view, how do I comment out server-side code? In ASP.NET, I can surround any HTML or code tags with <%-- and --%> and that block will not be compiled or sent to the client. Velocity does the same thing with #* and *#. Is there an equivalent in web2py? ASP.NET <div> <p><%=foo.bar%></p> <%-- don't print twice! <p><%...

VB.net: Custom ' TODO: List on an Interface

How do I add my own todo and comments list to appear on Interfaces? I want it to pop up like IDisposable does: Public Class Foo : Implements IDisposable Private disposedValue As Boolean = False ''# To detect redundant calls ''# IDisposable Protected Overridable Sub Dispose(ByVal disposing As Boolean) If Not ...

How do I append to the end of the comments array in WordPress?

I'm trying to include something at the end of the comments array for a WordPress plugin. I currently have add_filter('comments_array', 'my_function'), where my_function($comments='') is something along the lines of: my_function($comments='') { echo 'something'; return $comments; } I obviously can't return the comments first, and...

Adding images into source code

Is there a way (or an editor) that allows me to link an image/files/http links from within a source file (*.java for instance), sort of like a rich text document ? This way, while reading the code I can quickly look at the appended image (augmenting the comments), instead of opening the browser etc. ...

Compiling code when only the comments change

Do you compile your code before committing it to the repository, even when you only change a few comments? I know comments are typically ignored by compilers, but I find myself doing this often out of habit. ...

Using JQuery to traverse DOM structure, finding a specific <table> element located after HTML 'comment'

I currently have a website source code (no control over the source) which contains certain content that needs to be manipulated. This would be simple on the surface, however there is no unique ID attribute on the tag in question that can uniquely identify it, and therefore allow for further traversal. Here is a snippet of the source co...

Facebook Comments Not allowing to post anonymous comments

I have recently integrated facebook comments on my photo gallery. I am facing a problem with fb:comments. The user is not allowed to comment if he is not logged in. The user is shown the screen for anonymous comments but will not be able to post the comment. when i check the social plugins of facebook, surprisingly it is not working ther...

Comments or remarks in an xcopy exclude file

I know how xcopy works, but is it possible to add comments to your exclude files? Something like this: .pdb .xml .config Some.dll /* excluded because ... */ ...

Wordpress - use comment-system outside of pages and posts

Hi, so currently i'm using pods to create some individual pages for a log, filled with custom stuff. now i want to use the comments-system for each of this pages e.g.: mydomain.com/podpages/page1 mydomain.com/podpages/page2 mydomain.com/podpages/page3 this are not pages created with wordpress so simply adding <?php comments_template...

polymorphic nested comments

Hi all i'm getting this error when I try to post a comment on a post. The error Cannot redirect to nil! /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.4/lib/action_controller/base.rb:1104:in `redirect_to' /Users/Mister/dev/blog/app/controllers/comments_controller.rb:9 Comments/Controller: class CommentsController < ApplicationCon...