1
vote
1answer
33 views
Selecting Comments by their inner xml in xpath/xsl
Hi,
Given the following xml document
<root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--Comment2-->
…
0
votes
1answer
64 views
Adding my comments to the index view…Ruby on Rails
Ok...I am new to rails so this may be a stupid question but need help. I just watched and implemented Ryan Bates screencaset about setting up a blog. You can see it here …
2
votes
3answers
57 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, …
4
votes
5answers
170 views
Is there any tool for commenting JavaScript code?
Hi All,
Is there any tool for javascript commenting as it is in c# like ghost doc.
/// <summary>
/// Method to calculate distance between two points
/// </summary>
/// <param …
1
vote
2answers
109 views
Subversion for revision history and logging on Source codes
I have tried to find some resource for Subversion how to make revision history and logging message on source code; This question might be a simple
We changed our CVS to Subversion. I am having a …
0
votes
3answers
41 views
How should page and author information be displayed in the sourcecode of html pages?
I'm creating web pages (html) every day, but I would like the pages to have a comment in the source code.
In php you can set something like this
/**
* this is the info on the page
* @param x
* …
5
votes
6answers
286 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 …
1
vote
1answer
47 views
.NET Resgen.exe file comment?
Anyone know if there is a way to add comments to a file passed to resgen.exe?
Example:
ApplicationName=Hello World
ApplicationVersion=1.0
ApplicationMaker=Hello World Maker
;CommentHere
ValueYes=Yes
…
0
votes
2answers
94 views
Is there a way to comment code in Notepad2?
Notepad2 is by far my most favorite editor to do quick edits to HTML, XML, etc...
One thing that would be absolutely awesome is the ability to highlight a chunk of XML and comment it out or uncomment …
0
votes
2answers
115 views
Tag, comment, rating etc. database design
Hi i want to implement modules such as comment, rating, tag etc to my entities. What i thought was:
comments_table -> comment_id, comment_text
entity1 -> entitity1_id, entity1_text
entity2 -> …
0
votes
6answers
691 views
PHP/MySQL: How to create a comment section in your website.
Instead of asking 'how to use PHP/MySQL to let users affect webpages' I'll ask this, because I learn better from projects and examples.
So how would I incorporate a VERY basic comment feature using …
3
votes
1answer
135 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 …
0
votes
3answers
200 views
Designing a comment system using ASP.NET/C#
I'm coding a comment system for an ASP.NET application written in C#. Ideally, I want something similar to what we have on Stack Overflow. Is there an existing library that would allow me to parse …
0
votes
3answers
49 views
off-the-shelf control for text entry/commenting in asp classic and asp.net
I've got an application that allows multiple teachers to comment on a single student's writing and would like a rich web control that allows those comments to work like Word. That is, I'd like for …
0
votes
1answer
96 views
Is [---] a comment in .gitconfig?
This question is based on this thread.
Is [---] a comment in Git such that I can use only % tool=opendiff % once in my .gitconfig?
