active questions tagged comment - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:05:41Z http://stackoverflow.com/feeds/tag/comment http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1759672/selecting-comments-by-their-inner-xml-in-xpath-xsl 1 Selecting Comments by their inner xml in xpath/xsl CraftyFella 2009-11-18T22:40:11Z 2009-11-18T22:48:26Z <p>Hi,</p> <p>Given the following xml document</p> <pre><code>&lt;root&gt; &lt;childnode0/&gt; &lt;childnode2/&gt; &lt;!--Comment1--&gt; &lt;childnode3/&gt; &lt;childnode4/&gt; &lt;!--Comment2--&gt; &lt;/root&gt; </code></pre> <p>I know the xpath to select all the comments at a particular level in xsl</p> <pre><code>string xPath = "/root/comment()"; </code></pre> <p>However i'd like to select a comment where the inner xml is "Comment2".</p> <p>Any ideas?</p> <p>Thanks</p> <p>Dave</p> http://stackoverflow.com/questions/1746887/adding-my-comments-to-the-index-view-ruby-on-rails 0 Adding my comments to the index view...Ruby on Rails bgadoci 2009-11-17T05:59:50Z 2009-11-17T07:52:40Z <p>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 <a href="http://media.rubyonrails.org/video/rails%5Fblog%5F2.mov" rel="nofollow">http://media.rubyonrails.org/video/rails%5Fblog%5F2.mov</a>. Here is the skinny:</p> <p>Two tables: Posts and Comments. Everything works great including the addition of comments via AJAX. The default development of this blog gives you the index.html.erb view where you can view all the posts </p> <pre><code> def index @posts = Post.all respond_to do |format| format.html # index.html.erb format.xml { render :xml =&gt; @posts } format.json { render :json =&gt; @posts } format.atom end end </code></pre> <p>The comments are only viewed via the show.html.erb page and is displayed via this code in that file:</p> <pre><code>&lt;%= render :partial =&gt; @post %&gt; &lt;p&gt; &lt;%= link_to 'Edit', edit_post_path(@post) %&gt; | &lt;%= link_to 'Destroy', @post, :method =&gt; :delete, :confirm =&gt; "Are You Sure" %&gt; | &lt;%= link_to 'See All Posts', posts_path %&gt; &lt;/p&gt; &lt;h2&gt;Comments&lt;/h2&gt; &lt;div id="comments"&gt; &lt;%= render :partial =&gt; @post.comments %&gt; &lt;/div&gt; &lt;% remote_form_for [@post, Comment.new] do |f| %&gt; &lt;p&gt; &lt;%= f.label :body, "New Comment" %&gt;&lt;br/&gt; &lt;%= f.text_area :body %&gt; &lt;/p&gt; &lt;p&gt;&lt;%= f.submit "Add Comment"%&gt;&lt;/p&gt; &lt;% end %&gt; </code></pre> <p>What I am trying to do is to get similair representation of the comments functionality to exist in the index.html.erb view (which I will hide with javascript). Which currently just looks like this:</p> <pre><code>&lt;h1&gt;Listing posts&lt;/h1&gt; &lt;%= render :partial =&gt; @posts %&gt; &lt;%= link_to 'New post', new_post_path %&gt; </code></pre> <p>My initial thought was just to put this exact same code that is in the show.html.erb file in the index.html.erb file but that doesn't work. I have tried a bunch of things here but I am not familiar enough with Rails (or coding for that matter) yet to do this in a timely manner. I get two main errors. Either that I passed a nil.comments error or an undefined object/method (can't remember). </p> <p>My question is what do I need to included in the post_controller, the comments_controller and the index.html.erb file to accomplish this. To be complete I have included the code in each below. </p> <p>POSTS_CONTROLLER</p> <pre><code>class PostsController &lt; ApplicationController before_filter :authenticate, :except =&gt; [:index, :show] # GET /posts # GET /posts.xml def index @posts = Post.all respond_to do |format| format.html # index.html.erb format.xml { render :xml =&gt; @posts } format.json { render :json =&gt; @posts } format.atom end end # GET /posts/1 # GET /posts/1.xml def show @post = Post.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml =&gt; @post } end end # GET /posts/new # GET /posts/new.xml def new @post = Post.new respond_to do |format| format.html # new.html.erb format.xml { render :xml =&gt; @post } end end # GET /posts/1/edit def edit @post = Post.find(params[:id]) end # POST /posts # POST /posts.xml def create @post = Post.new(params[:post]) respond_to do |format| if @post.save flash[:notice] = 'Post was successfully created.' format.html { redirect_to(@post) } format.xml { render :xml =&gt; @post, :status =&gt; :created, :location =&gt; @post } else format.html { render :action =&gt; "new" } format.xml { render :xml =&gt; @post.errors, :status =&gt; :unprocessable_entity } end end end # PUT /posts/1 # PUT /posts/1.xml def update @post = Post.find(params[:id]) respond_to do |format| if @post.update_attributes(params[:post]) flash[:notice] = 'Post was successfully updated.' format.html { redirect_to(@post) } format.xml { head :ok } else format.html { render :action =&gt; "edit" } format.xml { render :xml =&gt; @post.errors, :status =&gt; :unprocessable_entity } end end end # DELETE /posts/1 # DELETE /posts/1.xml def destroy @post = Post.find(params[:id]) @post.destroy respond_to do |format| format.html { redirect_to(posts_url) } format.xml { head :ok } end end private def authenticate authenticate_or_request_with_http_basic do |name, password| name == "admin" &amp;&amp; password == "secret" end end end </code></pre> <p>COMMENTS_CONTROLLER</p> <pre><code>class CommentsController &lt; ApplicationController def create @post = Post.find(params[:post_id]) @comment = @post.comments.create!(params[:comment]) respond_to do |format| format.html { redirect_to @post} format.js end end end </code></pre> <p>INDEX.HTML.ERB</p> <pre><code>&lt;h1&gt;Listing posts&lt;/h1&gt; &lt;%= render :partial =&gt; @posts %&gt; &lt;%= link_to 'New post', new_post_path %&gt; </code></pre> http://stackoverflow.com/questions/1703888/commenting-javascript-functions-ala-python-docstrings 2 Commenting JavaScript functions á la Python Docstrings Boldewyn 2009-11-09T21:18:49Z 2009-11-10T07:42:05Z <p>It is valid JavaScript to write something like this:</p> <pre><code>function example(x) { "Here is a short doc what I do."; // code of the function } </code></pre> <p>The string actually does nothing. Is there any reason, why one shouldn't comment his/her functions in JavaScript in this way?</p> <p>Two points I could think of during wiriting the question:</p> <ul> <li><p>The string literal must be initiated, which could be costly in the long run</p></li> <li><p>The string literal will not be recognized as removable by JS minifiers</p></li> </ul> <p>Any other points?</p> <p><strong>Edit:</strong> Why I brought up this topic: I found something like this on <a href="http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/" rel="nofollow">John Resig's Blog</a>, where the new ECMA 5 standard uses a not assigned string literal to enable "strict mode". Now it was my interest to just evaluate, if there could be uses or dangers in doing such documentation.</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered 358 What is the best comment in source code you have ever encountered? [closed] Thomas Bratt 2008-10-08T20:08:07Z 2009-11-07T11:54:10Z <p>What is the best comment in source code you have ever encountered?</p> http://stackoverflow.com/questions/1510869/does-the-c-preprocessor-strip-comments-or-expand-macros-first 5 Does the C preprocessor strip comments or expand macros first? Novelocrat 2009-10-02T17:26:58Z 2009-11-03T12:27:12Z <p>Consider this (horrible, terrible, no good, very bad) code structure:</p> <pre><code>#define foo(x) // commented out debugging code // Misformatted to not obscure the point if (a) foo(a); bar(a); </code></pre> <p>I've seen two compilers' preprocessors generate different results on this code:</p> <pre><code>if (a) bar(a); // and if (a) ; bar(a) </code></pre> <p>Obviously, this is a bad thing for a portable code base.</p> <p>My question: What is the preprocessor supposed to do with this? Elide comments first, or expand macros first?</p> http://stackoverflow.com/questions/1195097/tag-comment-rating-etc-database-design 0 Tag, comment, rating etc. database design Efe Kaptan 2009-07-28T16:00:29Z 2009-11-01T10:00:03Z <p>Hi i want to implement modules such as comment, rating, tag etc to my entities. What i thought was:</p> <p>comments_table -> comment_id, comment_text</p> <p>entity1 -> entitity1_id, entity1_text</p> <p>entity2 -> entitity2_id, entity2_text</p> <p>entity1_comments -> entity1_id, comment_id</p> <p>entity2_comments -> entity2_id, comment_id</p> <p>....</p> <p>Is this approach correct?</p> http://stackoverflow.com/questions/1595783/is-there-any-tool-for-commenting-javascript-code 4 Is there any tool for commenting JavaScript code? Vijjendra 2009-10-20T16:16:05Z 2009-10-21T00:47:10Z <p>Hi All, Is there any tool for javascript commenting as it is in c# like ghost doc.</p> <pre><code>/// &lt;summary&gt; /// Method to calculate distance between two points /// &lt;/summary&gt; /// &lt;param name="pointA"&gt;First point&lt;/param&gt; /// &lt;param name="pointB"&gt;Second point&lt;/param&gt; function calculatePointDistance(pointA, pointB) { ... } </code></pre> <p>there any tool to automatically add the comments like above. like in c# code ghost doc did:</p> <pre><code>/// &lt;summary&gt; /// Method to calculate distance between two points /// &lt;/summary&gt; /// &lt;param name="pointA"&gt;First point&lt;/param&gt; /// &lt;param name="pointB"&gt;Second point&lt;/param&gt; private void calculatePointDistance(pointA, pointB) { ..... } </code></pre> <p>i want to do the similar in Client side ,javascript</p> http://stackoverflow.com/questions/1490258/net-resgen-exe-file-comment 1 .NET Resgen.exe file comment? Dave 2009-09-29T02:13:17Z 2009-10-17T09:30:53Z <p>Anyone know if there is a way to add comments to a file passed to resgen.exe?</p> <p>Example:</p> <pre><code>ApplicationName=Hello World ApplicationVersion=1.0 ApplicationMaker=Hello World Maker ;CommentHere ValueYes=Yes ValueNo=No </code></pre> http://stackoverflow.com/questions/1554342/subversion-for-revision-history-and-logging-on-source-codes 1 Subversion for revision history and logging on Source codes Tiger 2009-10-12T12:35:52Z 2009-10-12T12:39:56Z <p>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</p> <p>We changed our CVS to Subversion. I am having a problem that how to make Revision history and log message to show on source codes. In CVS , we had used </p> <pre><code>/** * Revision: * $Log$ * * * $Id$ */ </code></pre> <p>to commit to CVS with log message. I have tried to put "$Revision$ and $Id$" on Source Code to Subversion; however, it does not work to update the Revision history on Source Code. </p> <p>I used revision mark as follows for Subversion</p> <pre><code>/** * Revision: * $Revision$ * * * $Id$ */ </code></pre> <p>Do you have any idea how to add the revision history and comments to source code when the source code is committed ? </p> <p>Thanks</p> http://stackoverflow.com/questions/1537756/how-should-page-and-author-information-be-displayed-in-the-sourcecode-of-html-pag 0 How should page and author information be displayed in the sourcecode of html pages? Kennethvr 2009-10-08T13:19:30Z 2009-10-08T13:25:53Z <p>I'm creating web pages (html) every day, but I would like the pages to have a comment in the source code.</p> <p>In php you can set something like this</p> <pre><code>/** * this is the info on the page * @param x * @author me */ </code></pre> <p>Is there a similar standard that is used to set comments in html pages? I would like to specify at least these options:</p> <ul> <li>information on the page</li> <li>author</li> <li>copyright</li> <li>datetime</li> </ul> <p><em>EDIT: I know how comments are written in html, I only wonder if there is a standard used for this kind of information?</em></p> http://stackoverflow.com/questions/232811/boundary-for-comment-box 0 Boundary for comment box Shree 2008-10-24T08:14:34Z 2009-10-02T17:33:38Z <p>In my java application, I need to create a comment box for the users to add comments. Moreover, I need to provide the user with the provision for resizing and dragging the comment box. For this, I need to show a boundary around the comment box as in the case of comment box in Microsoft Excel which I have shown below:</p> <p><img src="http://lh3.ggpht.com/subinvarghesein/SQGDAcBgHjI/AAAAAAAAAJc/YVGvsQltkyk/boundary.jpg" alt="alt text" /></p> <p>I dont need the circles shown on the boundary for resizing because I will be using a triangle kind of a thing on the bottom-right of the box. But I need the dotted area.</p> <p>How do I create it for my application in java? Any good thoughts?</p> <p><hr /></p> <p>Currently I am in an analysis phase, just to find good options for this. What we have thought till now is to draw few dotted lines around the box to give the impression.</p> http://stackoverflow.com/questions/679805/get-all-comment-ids-within-a-drupal-node 1 Get all Comment ID's within a Drupal node alan 2009-03-25T00:34:43Z 2009-10-02T05:00:52Z <p>I have a node in Drupal with a few comments. Is there an easyish way to get the CID of every comment within the node? Also, is there a way to sort them by various parameters, chronology, karma of the comment etc. Thank you. </p> http://stackoverflow.com/questions/1114123/designing-a-comment-system-using-asp-net-c 0 Designing a comment system using ASP.NET/C# Furism 2009-07-11T16:53:23Z 2009-09-25T16:31:15Z <p>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 specific part of HTML/BBCode (to support only Basic HTML)? Or is it simply better to write one from scratch, including the Javascript, etc.. ?</p> <p>The Ajax Toolkit "Editor" control doesn't look all that safe and doesn't seem to exclude the HTML code that could be written but for which you didn't add any button.</p> http://stackoverflow.com/questions/1446786/is-there-a-way-to-comment-code-in-notepad2 0 Is there a way to comment code in Notepad2? AngryHacker 2009-09-18T20:51:39Z 2009-09-19T09:35:36Z <p>Notepad2 is by far my most favorite editor to do quick edits to HTML, XML, etc...</p> <p>One thing that would be absolutely awesome is the ability to highlight a chunk of XML and comment it out or uncomment it. </p> <p>Is this possible with Notepad2?</p> http://stackoverflow.com/questions/1171997/php-mysql-how-to-create-a-comment-section-in-your-website 0 PHP/MySQL: How to create a comment section in your website. Sam 2009-07-23T14:04:45Z 2009-08-26T09:07:17Z <p>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.</p> <p>So how would I incorporate a VERY basic comment feature using PHP and MySQL? </p> http://stackoverflow.com/questions/1176239/what-is-the-best-wiki-software-if-the-site-is-all-about-individual-people -1 What is the best wiki software if the site is all about individual people Peter 2009-07-24T07:31:29Z 2009-07-24T08:00:19Z <p>Hi Everyone</p> <p>I would like to build a wiki based website about professors, so that students can share information and check the reputation of the professor before working for him.</p> <p>The idea will be:</p> <ul> <li>every professor has its own wikipage ( I guess any wiki software should do that)</li> <li>visitors should be able to rate that professor, or technically, rate that particular wikipage. The rating could be as simple as leaving a comment or giving 1 to 5 stars</li> <li>the comments or rating has to be anonymous to protect privacy</li> </ul> <p>I am just a poor graduate student who wants to warn prospective students that some professors are too tough to work for.</p> <p>Any advice will be highly appreciated. </p> http://stackoverflow.com/questions/939624/how-can-i-fix-js-toolkit-comment-box-close-by-default 0 How can i fix js toolkit comment box close by default? Vivek Sharma 2009-06-02T13:41:37Z 2009-07-19T01:39:33Z <p>how can i fix js tool kit comment box close by default? i am using this code. Please guide me..</p> <p>Thanking you !!!!!!!!!!!!!!!</p> <p>I am watting for your positive response.</p> <pre><code>&lt;html&gt; &lt;head&gt;&lt;/head&gt; &lt;body&gt; &lt;div class="js-kit-comments" path="BE1"&gt;&lt;/div&gt; &lt;div class="js-kit-comments" path="BE2"&gt;&lt;/div&gt; &lt;div class="js-kit-comments" path="BE3"&gt;&lt;/div&gt; &lt;script src="http://js-kit.com/comments.js"&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1124181/how-can-i-reference-a-constructor-from-c-xml-comment 3 How can I reference a constructor from C# XML comment? mark 2009-07-14T08:36:37Z 2009-07-14T08:58:00Z <p>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:)?</p> <p>For instance, the following yields compilation warnings, because the compiler does not like ".ctor". Trying "PublishDynamicComponentAttribute.#ctor" is no good,<br /> "PublishDynamicComponentAttribute.PublishDynamicComponentAttribute" is no good too.</p> <pre><code>/// &lt;summary&gt; /// Constructs a new &lt;see cref="PublishEntityAttribute"/&gt; instance. /// &lt;/summary&gt; /// &lt;seealso cref="PublishDynamicComponentAttribute..ctor(Type)"/&gt; public PublishEntityAttribute(Type entityFactoryType) : base(entityFactoryType) { } </code></pre> <p>I am sure the type itself is visible.</p> <p>So, I am left to use the explicit prefix M:, which removes the compiler verification, so when a type is moved/renamed the cref will be invalid.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1084574/off-the-shelf-control-for-text-entry-commenting-in-asp-classic-and-asp-net 0 off-the-shelf control for text entry/commenting in asp classic and asp.net Caveatrob 2009-07-05T18:24:06Z 2009-07-08T06:31:00Z <p>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 teachers to be able to enter comments on particular passages and have those comments show, with the teacher name, when the student reads the essay.</p> <p>I'd like to purchase or use an existing library to do so; are there any such controls out there that would work with ASP classic or ASP.NET? </p> http://stackoverflow.com/questions/1081186/is-a-comment-in-gitconfig 0 Is [---] a comment in .gitconfig? Masi 2009-07-04T00:17:38Z 2009-07-04T00:26:02Z <p>This question is based on <a href="http://stackoverflow.com/questions/1063618/unable-to-understand-how-gits-difftool-configs-are-set/1063646">this thread</a>.</p> <p><strong>Is [---] a comment in Git such that I can use only % tool=opendiff % once in my .gitconfig?</strong></p> http://stackoverflow.com/questions/699131/net-comment-system 0 .net Comment System 2009-03-30T21:35:15Z 2009-06-29T13:00:00Z <p>Hi,</p> <p>I have my web site with a blog (created in blogengine), but i need to integrate a comment system to the site away from the blog.</p> <p>for example i have different modules to manage news and events and i want visitors to leave their comments for the modules (for difreent news and events). Is there any system (.net 2.0) to do this or i need to create my own system to manage users comments?</p> <p>thx a lot for your help</p> http://stackoverflow.com/questions/1022552/old-code-in-comments 3 Old Code in comments FortunateDuke 2009-06-20T21:06:49Z 2009-06-20T22:35:24Z <p>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 just remove the old code instead of commenting it out. </p> <p>Is there a valid reason to keep old code in the code base as comments?</p> <p><strong><em>Update</em></strong>: Version control by Visual Sourcesafe</p> http://stackoverflow.com/questions/860644/how-do-i-get-the-comments-under-a-status-update-using-the-facebook-api 0 How do I get the comments under a status update using the facebook API? Jimmy T 2009-05-13T21:58:52Z 2009-05-13T21:58:52Z <p>Hi, I have a user that has authenticated with facebook connect and given my app access to publish and read from his stream. I'm trying to get the comments from a specific status update using fql (see my query below), and I keep getting an error code of 1 ("An unknown error occurred"). However, when I try to get statuses, it works perfectly.</p> <p>Here's my comment fql: SELECT text from comment where post_id=83121613035</p> <p>Any help would be appreciated!</p> http://stackoverflow.com/questions/846889/what-information-to-put-in-comments-at-the-top-of-a-sourcecode-file 3 What information to put in comments at the top of a sourcecode file? Michael Barth 2009-05-11T06:02:02Z 2009-05-11T08:10:27Z <p>What information do you consider worth to put in the comment at the beginning of a sourcecode file?</p> <p>All I could think about was the name of the author and perhaps the date the file was created (although I'm not to sure if there is any useful value to this information).</p> <p><strong>[EDIT]</strong> To clarify, I don't mean comments before a class, but at the first lines of the file, before include statements and what else. Like</p> <pre><code>/** * Author: Name * Created: 11.05.2009 * * (c) Copyright by Blub Corp. **/ </code></pre> http://stackoverflow.com/questions/668466/how-do-i-print-a-single-comment-in-drupal 2 How do I print a single comment in drupal? alan 2009-03-21T00:26:55Z 2009-03-21T16:58:21Z <p>I want to print a individual comment in drupal based on it's comment ID. How can I do this? Google and other sources have yielded me nothing. Thank you. </p> http://stackoverflow.com/questions/323837/c-comments-on-closing 1 C# comments on closing {} ZombieSheep 2008-11-27T13:58:26Z 2009-03-17T15:50:53Z <p>I've been working a little with DevExpress CodeRush and Refactor! Pro this week, and I picked up a commentor plug-in that will automatically generate comments as you type code.</p> <p>I don't want to go into how good a job it does of picking out basic meaning (pretty good, actually) but it's default implementation does raise a question.</p> <p>By default, typing a } character to close a block will result in the plugin adding a comment like the following...</p> <pre><code>using(MyType myType = new MyType()) { myType.doWork(); } // using </code></pre> <p>(i.e. adding a comment to the closing brace labelling where it was opened.)</p> <p>While I can see that there are instances where this behaviour may be of great use, I feel that the resultant code looks very untidy with all the additional commenting.</p> <p>I was wondering what other people;'s take on this kind of comment was. Not just from an academic standpoint, but if I get a good number of negative comments about them I can decide whether to inflict them upon my co-workers or strip them out.</p> http://stackoverflow.com/questions/401668/how-can-i-get-css-comments-with-javascript 1 How can I get CSS comments with javascript? geuis 2008-12-30T22:07:05Z 2008-12-30T22:40:40Z <p>I am wondering how I can read CSS comments out of a linked stylesheet.</p> <p>I have this sample CSS loaded via:</p> <pre><code>&lt;link rel="stylesheet" type="text/css" media="all" href="test.css" /&gt; </code></pre> <p>&nbsp;</p> <pre><code>#test1{ border:1px solid #000; } #test2{ border:1px solid #000; } #test3{/* sample comment text I'm trying to read */} </code></pre> <p>I'm testing this in FF3. The following javascript reads the rules but doesn't read the comments in<code> #test3</code>.</p> <pre><code>window.onload = function(){ s=document.styleSheets; for(i=0;i &lt; s[0].cssRules.length;i++){ alert(s[0].cssRules[i].cssText); } } </code></pre> http://stackoverflow.com/questions/272438/setting-the-comment-of-a-column-to-that-of-another-column-in-postgresql 4 Setting the comment of a column to that of another column in Postgresql dland 2008-11-07T15:29:19Z 2008-12-08T21:08:56Z <p>Suppose I create a table in Postgresql with a comment on a column:</p> <pre><code>create table t1 ( c1 varchar(10) ); comment on column t1.c1 is 'foo'; </code></pre> <p>Some time later, I decide to add another column:</p> <pre><code>alter table t1 add column c2 varchar(20); </code></pre> <p>I want to look up the comment contents of the first column, and associate with the new column:</p> <pre><code>select comment_text from (what?) where table_name = 't1' and column_name = 'c1' </code></pre> <p>The (what?) is going to be a system table, but after having looked around in pgAdmin and searching on the web I haven't learnt its name.</p> <p>Ideally I'd like to be able to:</p> <pre><code>comment on column t1.c1 is (select ...); </code></pre> <p>but I have a feeling that's stretching things a bit far. Thanks for any ideas.</p> <p>Update: based on the suggestions I received here, I wound up writing a program to automate the task of transferring comments, as part of a larger process of changing the datatype of a Postgresql column. You can read about that <a href="http://wirespeed.wordpress.com/2008/11/07/alter-column-type-postgres/" rel="nofollow">on my blog</a>.</p> http://stackoverflow.com/questions/342964/comment-inheritance-for-c-actually-any-language 5 Comment Inheritance for C# (actually any language) themapguyde 2008-12-05T05:12:57Z 2008-12-05T06:48:25Z <p>Hi All,</p> <p>Suppose I have this interface</p> <pre><code>public interface IFoo { ///&lt;summary&gt; /// Foo method ///&lt;/summary&gt; void Foo(); ///&lt;summary&gt; /// Bar method ///&lt;/summary&gt; void Bar(); ///&lt;summary&gt; /// Situation normal ///&lt;/summary&gt; void Snafu(); } </code></pre> <p>And this class</p> <pre><code>public class Foo : IFoo { public void Foo() { ... } public void Bar() { ... } public void Snafu() { ... } } </code></pre> <p>Is there a way, or is there a tool that can let me automatically put in the comments of each member in a base class or interface?</p> <p>Because I hate re-writing the same comments for each derived sub-class!</p> http://stackoverflow.com/questions/229579/ant-replace-multiple-lines-of-text 0 Ant replace multiple lines of text Lieven Cardoen 2008-10-23T12:46:17Z 2008-10-24T23:15:29Z <p>I have an xml file where I need to comment out a whole piece of text with Ant.</p> <p>There's this ant task</p> <pre><code>&lt;replace file="${src.dir}/Version.as" token="@revisionPrana" value="${revision}"/&gt; </code></pre> <p>that I use to replace words, but in my case I need to replace a whole block like this:</p> <pre><code> &lt;value&gt; &lt;object class="edumatic.backoffice.view.modules.NavigationModuleInfo"&gt; &lt;property name="url" value="edumatic/backoffice/view/modules/support/ExamsNavigationModule.swf" /&gt; &lt;property name="icon" value="edumatic/backoffice/view/modules/support/assets/book.png" /&gt; &lt;property name="title" value="Assessments" /&gt; &lt;property name="pluginID" value="EXAM" /&gt; &lt;/object&gt; &lt;/value&gt; &lt;value&gt; &lt;object class="edumatic.backoffice.view.modules.ContentModuleInfo"&gt; &lt;property name="url" value="edumatic/backoffice/view/modules/support/ExamsContentModule.swf" /&gt; &lt;property name="pluginID" value="EXAM" /&gt; &lt;/object&gt; &lt;/value&gt; </code></pre> <p>Into </p> <pre><code> &lt;!--value&gt; &lt;object class="edumatic.backoffice.view.modules.NavigationModuleInfo"&gt; &lt;property name="url" value="edumatic/backoffice/view/modules/support/ExamsNavigationModule.swf" /&gt; &lt;property name="icon" value="edumatic/backoffice/view/modules/support/assets/book.png" /&gt; &lt;property name="title" value="Assessments" /&gt; &lt;property name="pluginID" value="EXAM" /&gt; &lt;/object&gt; &lt;/value&gt; &lt;value&gt; &lt;object class="edumatic.backoffice.view.modules.ContentModuleInfo"&gt; &lt;property name="url" value="edumatic/backoffice/view/modules/support/ExamsContentModule.swf" /&gt; &lt;property name="pluginID" value="EXAM" /&gt; &lt;/object&gt; &lt;/value--&gt; </code></pre> <p>So, basically I need to comment out a whole block of XML. Can I do this with a replace task (putting the whole block in the attribute token and value doesn't really work)? Or is there a quick way to read in the xml with ant and delete some nodes and save the xml again?</p> <p>Searching for and replace it by isn't an option because there are multiple value children and not all of them need to be commented out.</p> <p>Adding a attribute like isn't an option either because the xml is being parsed by an IOC container (Prana). Maybe prana will ignore the id="1" but it still iss messy, and I don't like messy on the long term.</p> <p>Thx, Lieven Cardoen aka Johlero</p>