Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
7answers
20k views

Is there a way to comment out markup in an .ASPX page?

Is there a way to comment out markup in an .ASPX page so that it isnt delivered to the client? I have tried the standard comments but this just gets delivered as a comment and doesn't prevent the ...
21
votes
7answers
904 views

How to comment a few lines, with comments inside

I have a program like this int main(){ char c; int i; /* counter */ double d; return 0; } if I want to comment out char, int and double, and just have return uncommented, can I ...
15
votes
3answers
253 views

Why /*@ isn't a comment in JavaScript?

This script http://html5shiv.googlecode.com/svn/trunk/html5.js looks like a big comment, but it works. Why /*@ doesn't behave like a comment?
10
votes
3answers
288 views

Understanding strange Perl multiline comment mechanism

EDIT: Note to new Perl programmers: This mechanism should NOT be used for multiline comments! It has a flaw decreases readability. In this PerlMonks post on mechanisms to produce multiline comments ...
10
votes
4answers
3k views

single line comment in HTML

Is there a way to comment out a single line in HTML using just an escape sequence at the start of the line? Similar to using # or // in other languages? Or is <!-- ... --> the only option for ...
9
votes
6answers
2k views

Does the C preprocessor strip comments or expand macros first?

Consider this (horrible, terrible, no good, very bad) code structure: #define foo(x) // commented out debugging code // Misformatted to not obscure the point if (a) foo(a); bar(a); I've seen two ...
9
votes
13answers
1k views

Old Code in comments

How long should you keep old code commented out in your code base. The contractors continue to keep old code in code base by turning it into comments. This is really frustrating and I want them to ...
8
votes
4answers
128 views

Should I use /* */ or /** */ for the copyright in the top of a java file?

There is a copyright comment in each java file, but I don't know which one should I use: /* */ or /** */? /* * Copyright ... */ import java.util.* ... or /** * Copyright ... */ import ...
8
votes
2answers
551 views

Coffeescript: How to comment? - “/* my comments */” doesn't work?

In what ways can you comment in Coffeescript? The docs say you can use 3 hash symbols to start and close a comment block ### comments go here ### I've found that I can sometimes use the ...
8
votes
4answers
214 views

Lisp commenting convention

What is the Lisp convention about how many semicolons to use for different kinds of comments (and what the level of indentation for various numbers of semicolons should be)? Also, is there any ...
8
votes
2answers
851 views

What does Bump Version stands for?

I saw this comment in git many times. What does it mean actually? P.S. for those who are not native english speakers
8
votes
6answers
1k views

Comment Inheritance for C# (actually any language)

Suppose I have this interface public interface IFoo { ///<summary> /// Foo method ///</summary> void Foo(); ///<summary> /// Bar method ...
7
votes
9answers
2k views

python equivalent of '#define func() ' or how to comment out a function call in python

my python code is interlaced with lots of function calls used for (debugging|profiling|tracing etc.) for example: import logging logging.root.setLevel(logging.DEBUG) logging.debug('hello') j = 0 for ...
6
votes
1answer
319 views

Editing method comment template in Netbeans 6.9.1

When I create a method comment in Netbeans by typing /** + ENTER I get something like this /** * * @param nameOfParam * @return * @throws SQLException */ but in my case I like comments looking ...
6
votes
2answers
2k views

Possible to comment-out JSTL code?

If you want to temporarily comment-out a piece of JSTL code that you may re-enable later, is this possible? Would this work? <!--<c:out value="${someVar}"/>-->
6
votes
6answers
802 views

How to comment/uncomment in HTML code

Often while coding view templates in html, my habit of adding some helpful comments causes lots of time-consuming effort while testing. Consider this code... <!-- Here starts the sidebar --> ...
6
votes
2answers
500 views

Commenting JavaScript functions á la Python Docstrings

It is valid JavaScript to write something like this: function example(x) { "Here is a short doc what I do."; // code of the function } The string actually does nothing. Is there any reason, ...
6
votes
2answers
2k views

Setting the comment of a column to that of another column in Postgresql

Suppose I create a table in Postgresql with a comment on a column: create table t1 ( c1 varchar(10) ); comment on column t1.c1 is 'foo'; Some time later, I decide to add another column: alter ...
5
votes
4answers
337 views

C++ Multi-line comments using backslash

Can // style comments be continued to the next line by using a back slash, like multi-line macros? E.g. // here is a comment \ and this is more comments \ const char* x = "hello"; // this line of ...
5
votes
3answers
793 views

C# Style XML Comments in Delphi 2010

does Delphi 2010 have C# Style XML comments that show up when hovering over the method call? /// <summary> /// My comment here /// </summary>
5
votes
1answer
436 views

How can I reference a constructor from C# XML comment?

Dear ladies and sirs. Is it possible to reference a constructor from a C# XML comment without resorting to the explicit prefixes (like M: or T:)? For instance, the following yields compilation ...
5
votes
2answers
3k views

How to reformat multi-line comments in Eclipse PDT?

In Eclipse PDT, Ctrl-Shift-F reformats code. However, it doesn't modify comments at all. Is there some way to reformat ragged multi-line comments to 80 characters per line (or whatever)? i.e. ...
4
votes
1answer
40 views

Auto generate method comment in XCode

Is there a way in Xcode to generate method comment automatically similar to what you do in Eclipse for javadoc comments. For example press you may hit /** one row before a method declaration and ...
4
votes
4answers
100 views

How to Interpret /***/ in java?

What I am Doing? I am now constructing a comments segregator as a part of my simple IDE stimulator (Which will detect all the comments in the java code). In that my task is to note down all the ...
4
votes
1answer
359 views

How to add a hyperlink in a comment in eclipse javadocs

I would like Eclipse to resolve e.g. this hyperlink: /* * for reference, look here: http://www.google.com */ I would like to have it in a Java Source Code, but I'm not sure if the language ...
4
votes
3answers
863 views

Latex: Convert “Comment” into “Marginal Note”

using LyX I'm trying to convert the "comments" into "marginal notes". I tried several things but without luck. The best shot was like this: \makeatletter \@ifundefined{comment}{}{% ...
4
votes
6answers
933 views

Why can't I comment attributes in XAML?

This has been bothering me for a while, maybe I am missing something. The following throws an error with the commented attribute (expected >), but shouldn't I be able to do something like this? ...
4
votes
5answers
481 views

What information to put in comments at the top of a sourcecode file?

What information do you consider worth to put in the comment at the beginning of a sourcecode file? All I could think about was the name of the author and perhaps the date the file was created ...
3
votes
7answers
93 views

Inline comments in Java: /** opposed to /*?

is there a reason i should prefer to write inline-comments in java like this: /** Init operation */ mindControlLaser.engage(); as opposed to use just one *: /* i'm a happy comment */ Eclipse ...
3
votes
3answers
92 views

Is it possible insert image to a code comment?

My question is probably a insane idea, however, it's very valuable when I write code for educational purpose. Especially when code is relevant to math and physics subject, images inserted in comment ...
3
votes
2answers
430 views

How to do block comments in Gherkin?

In gherkin syntax (used by Cucumber and SpecFlow, I can comment out a line by prefixing it with '#' Is there any way to block-comment multiple lines?
3
votes
1answer
94 views

Comment / Note in a JFree Chart

I am looking for a way to insert a specific comment / note in an image created by JFree Chart. The note can be anywhere on the image (png), above or below the chart. Is there a way to do this?
3
votes
2answers
143 views

Mid-line comment in Python?

I'm wondering if there is any way to comment out part of a line like you can do in c++ with /*this guy*/.. the only comments i know about are #this which goes to the end of the line and the ...
3
votes
1answer
111 views

How do you inspect the type of (*) on OCaml's toplevel?

I wanted to see the type of the multiplication function (*), so I tapped it into the OCaml toplevel. # (*) However, the toplevel echoed: (*);; 1: this is the start of a comment. and then consumed ...
3
votes
6answers
266 views

lisp on emacs: how to comment a multi-line expression?

For example, if I want to comment this: (defun noop () nil) Every time I try to put a semicolon before the "(defun", the defun runs away to the next line. So how is that supposed to be done? GNU ...
3
votes
5answers
607 views

Removing C++ Comment From Source Code

I have some c++ code with /* */ and // style comments. I want to have a way to remove them all automatically. Apparently, using an editor (e.g. ultraedit) with some regexp searching for /*, */ and ...
3
votes
2answers
173 views

Multiple @ JS Comment bug in IE

I've come across a bug/undocumented feature in IE 7, 6.5 (perhaps others?). This doesn't effect Opera (10.5x) Firefox (3.5.x) or likely any other browser (this is all I've tested so far). It doesn't ...
3
votes
4answers
402 views

HTML comments within comments?

Is there a way to comment multiple lines... which already have some comments in them? i.e. <html> <!-- Multi-line comment begin <head> <!-- This script does abcxyz --> ...
2
votes
1answer
56 views

Matlab adapting comments to a certain length per line

I like MATLAB automatically linebreaking comments on a certain limit per line. Now let's assume I have added the following comment: % a) this is a test comment. this is a test comment. this is a test ...
2
votes
1answer
58 views

Doxygen support for Python in Emacs?

It seems to me that doxymacs only supports C/C++. Are there any tools for auto/semi-auto doxygen documentation for Python codes in Emacs?
2
votes
7answers
108 views

Semicolon after double slash in C

I have a question about comments in C language. When we write for example //this is the first step This means a comment. But when we write //this is the first step; Does this also mean a ...
2
votes
3answers
111 views

C# hide and unhide comments

I am trying to find solution how to hide and unhide comments in VS2010. What i found is: # region comments for code #endregion and: ...
2
votes
1answer
59 views

Post comment on note via Javascript SDK

I am attempting to use the JavaScript SDK to post a note from my site and then allow a comment to be posted to that note immediately following. I am successful in the first part. Here is a relevant ...
2
votes
1answer
40 views

Nhibernate : QueryOver equivalent for ICriteria's SetComment?

Is is possible to add a comment to generated by queryover query in Visual Studio's output? Previously when we were using ICriteria, there was simple SetComment method and we could set the query name ...
2
votes
1answer
74 views

How to insert multi-line comment in Doxygen code examples

I am trying to include a code example in a Doxygen comment that contains a multi-line comment. The preprocessor interprets the */ as the end of my Doxygen comment and therefore the syntax of the file ...
2
votes
1answer
71 views

Java ImageIO, unable to change metadata tree

I'm trying to use ImageIO to change the JPEG Comment field (COM) of a file. I read the metadata, do some changes to the DOM (change attribute of the comment field), then save / print the metadata. But ...
2
votes
2answers
79 views

Commenting code in Scheme

I am looking at some code in Scheme from Festival and cannot seem to figure out the comments. Currently, I can see ;, ;; and ;;; used to indicate comment lines. Other sources on the web indicate that ...
2
votes
4answers
120 views

Removing comments and text nodes from jQuery collection

$html = $("<!-- comment --> <p>text</p>"); creates a jQuery collection like so $( [the comment], [text node], p ) How can I access the paragraph only? .find("p") returns an ...
2
votes
2answers
127 views

Add comment between continue line (underbar) on ASP Classic VBScript

I am currently trying to figure out how to add comment within a line continuation statement on ASP classic. Our code management requirement requires us to write a Start block and End block to mark the ...
2
votes
2answers
279 views

HTMLAgilityPack Select Nodes between Comments

I am replacing some head script that pertains to a specific widget. I want to be able to find all nodes relating to that widget located between the comments. Also, I want to easily remove any code ...

1 2 3 4 5 7