active questions tagged comments - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:34:16Z http://stackoverflow.com/feeds/tag/comments http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850439/double-hyphen-in-script-makes-firefox-render-strangely 1 double hyphen in script makes firefox render strangely No Refunds No Returns 2009-12-04T23:52:44Z 2009-12-05T00:26:39Z <pre><code>&lt;!-- &lt;script type="text/javascript"&gt;/*&lt;![CDATA[*/ c-- ;//]]&gt;&lt;/script&gt; --&gt; </code></pre> <p>When I have the above line in the &lt;head&gt; section of a plain html page, Firefox 3.5.5 renders the trailing --&gt; as text. If I change c-- to c- it doesn't. Any ideas what's going on here? I getting an artifact on my pages with this due to a very large script that's been crunched. I can change the statement to c-=1 and avoid the problem for now but.... I'd like to know what bit/byte is biting my a$$.</p> http://stackoverflow.com/questions/281177/commenting-code-that-is-removed 28 Commenting code that is removed? Andrew Jahn 2008-11-11T15:22:23Z 2009-12-04T18:05:02Z <p>Is it a good practice to comment code that is removed? For example:</p> <p><code> // Code to do {task} was removed by Ajahn on 10/10/08 because {reason}. </code></p> <p>Someone in my developer group during a peer review made a note that we should comment the lines of code to be removed, I thought this was a terrible suggestion as it clutters the code with useless comments. What are your thoughts.</p> http://stackoverflow.com/questions/1837717/comment-reflower-for-visual-studio 0 Comment reflower for Visual Studio Phillip Ngan 2009-12-03T04:50:50Z 2009-12-03T07:42:26Z <p>Is there a built-in command or tool that can reflow C# comments in Visual Studio?</p> <p>Sometimes, a section of code requires several lines of comments, and after extensive editing you have to manually insert the line breaks in the appropriately places so that it does not flow past the right edge of your editor window. I'd like to be able to do this with a single key command.</p> <p>After many years of using Visual Studio I still miss the ability to M-q (c-fill-paragraph) in emacs.</p> http://stackoverflow.com/questions/592189/creating-cell-comments-in-an-excel-spreadsheet-with-openxml-sdk 0 Creating cell comments in an Excel Spreadsheet with OpenXML SDK Tim Gebhardt 2009-02-26T20:04:41Z 2009-12-02T02:54:47Z <p>I'm trying to add comments to cells in an Excel 2007 spreadsheet. I'm using the OpenXml SDK 2.0 to do so. </p> <p>My use case is this: I've created a template Excel file that I copy and use that as my starting point, rather than create an OpenXML document from scratch. My template file has a comment in cell A1 so that Excel has already created a WorksheetCommentPart for me.</p> <p>Now my problem is that when I add Comment nodes to the Comments part the spreadsheet doesn't load and Excel asks if I want to recover.</p> <p>What really bothers me is that my original comment in A1 is still there, but any comments I added programmatically are gone!</p> <p>Here's the code I'm working with:</p> <p>using (MemoryStream spreadsheetStream = new MemoryStream()) { GetGradebookSpreadsheetTemplate(spreadsheetStream);</p> <pre><code>using (SpreadsheetDocument spDoc = SpreadsheetDocument.Open(spreadsheetStream, true)) { WorkbookPart wbPart = spDoc.WorkbookPart; WorksheetPart wsPart = wbPart.WorksheetParts.First(); SheetData sheet = wsPart.Worksheet.GetFirstChild&lt;SheetData&gt;(); Comments comments = wsPart.WorksheetCommentsPart.Comments; comments.Descendants&lt;Author&gt;().First().Text = string.Format("{0}, {1}", instructor.LastName, instructor.FirstName); comments.Descendants&lt;Text&gt;().First().Text = string.Format("{0}, {1}", instructor.LastName, instructor.FirstName); List&lt;DefinedName&gt; definedNames = new List&lt;DefinedName&gt;(); definedNames.Add(CreateDefinedName("COLWeb_Gradebook", sheet.NamespaceURI, "Gradebook", "1", "A")); uint index = 4; foreach (User u in users) CreateUserDataRow(index++, definedNames, comments.CommentList, sheet, u, coursesForUsers[u], assignments, submissions[u]); Cell lastCell = sheet.Descendants&lt;Cell&gt;().Last(); OpenXmlElement dimensionsElement = wsPart.Worksheet.Elements().Where(x =&gt; x.LocalName == "dimension").First(); dimensionsElement.SetAttribute(new OpenXmlAttribute("ref", null, "A1:" + lastCell.CellReference)); comments.Save(); wsPart.Worksheet.Save(); wbPart.Workbook.Save(); } return spreadsheetStream.ToArray(); </code></pre> <p>}</p> <p>And "CreateUserDataRow" creates a new row, but the relevant part is (where "comment" is my comment string and "c" is my Cell that I want to create the comment about):</p> <pre><code>if (!string.IsNullOrEmpty(comment)) { List&lt;OpenXmlElement&gt; runs = new List&lt;OpenXmlElement&gt;(); foreach (string row in comment.Split(new string[] { "&lt;p&gt;", "&lt;/p&gt;" }, StringSplitOptions.RemoveEmptyEntries)) { string trimmed = row.Trim(); if (!string.IsNullOrEmpty(trimmed)) { string escaped = System.Security.SecurityElement.Escape(trimmed); runs.Add(new Run(new RunProperties(), new Text(escaped))); } } Comment commentCell = new Comment(); commentCell.Reference = c.CellReference; commentCell.AuthorId = 0; commentCell.AppendChild(new CommentText(runs)); comments.AppendChild(commentCell); } </code></pre> <p>Now as far as my eye can see, and KDiff3 for that matter, my files are pretty much identical to the files that would be output if I were to open Excel and put the comments into the cells by hand in Excel.</p> <p>Does anyone have a good example of attaching a comment to a cell with OpenXml? Is there something I should know about maybe a relationship? Does it have something to do with using an Excel file that I created and then I'm using as a template (maybe some dimensions aren't set)?</p> <p>Thanks for any help I can get.</p> http://stackoverflow.com/questions/1830309/in-which-order-should-user-messages-comments-chat-be-displayed 0 In which order should user messages (comments/chat) be displayed? Anton 2009-12-02T02:33:23Z 2009-12-02T02:53:11Z <p>A typical chat widget will have a log of messages displayed in chronological order with the most recent message at the bottom. An input field is usually displayed below the log.</p> <p>Comment systems, like those on YouTube, seem to vary. Some display most recent comments up top, while some display most recent comments at the bottom. The location of the input field seems to change as well.</p> <p>Is there a best practice as to what display order/input position should be used when displaying data that is sensitive to a timeline (like chat messages and comments)?</p> <p>I'd be especially interested in any user experience studies that have been done.</p> http://stackoverflow.com/questions/1828789/ad-comment-tags-to-disqus-comments 0 Ad Comment Tags to Disqus Comments Mark P Neyer 2009-12-01T20:43:30Z 2009-12-01T20:43:30Z <p>I have a blog, and I'm using Disqus for comments. I want to give users the ability to tag comments, but I can't figure out where in the code this would go. Any help would be appreciated.</p> http://stackoverflow.com/questions/1822691/accessing-jcomments-permission-tab-in-joomla-enabling-hidden-menus 0 Accessing Jcomments permission tab in joomla / Enabling hidden menus Sam 2009-11-30T21:59:57Z 2009-12-01T20:18:35Z <p>hi!</p> <p>The copy of joomla i'm using is edited by the super administrator to <strong>not</strong> to show the unnecessary menus like installing/uninstalling modules etc etc.. but now, i want to set the permissions of Jcomments and i can't find the menu anywhere to do that.. i found a simple settings page using <strong>administrator/index.php?option=com_jcomments&amp;task=settings</strong></p> <p>but i can't get to the permissions page since it uses ajax(i guess).. i thought of editing the setting in the Database directly but that'd be a very <em>bad</em> practice.. so,</p> <p>1) Can anyone tell me how to enable those menus <strong>or</strong> at least how to reach them.</p> <p>2) If not possible i wanna uninstall the old version of Jcomments and install it with a new one</p> <p>please pour in your advices and suggetions :)</p> http://stackoverflow.com/questions/1819199/excel-comment-invisible-under-cell 0 Excel comment invisible under cell SmartestVEGA 2009-11-30T11:14:40Z 2009-11-30T11:22:27Z <p>My excel comment is gone under the cell ...how to make it always on top?</p> http://stackoverflow.com/questions/1817861/-comment-brackets-in-php 0 <!-- --> comment brackets in PHP gAMBOOKa 2009-11-30T04:34:32Z 2009-11-30T05:48:30Z <p>I just found out you can use <code>&lt;!-- --&gt;</code> brackets in PHP to inject commands in unsecured forms. I couldn't find any information about these brackets in PHP. I know they're used in XML structures. I tried googling but google simple escapes those brackets.</p> <p>Are they similar to <code>/* */</code> comments in PHP?</p> <p>Edit: Here's where I found out. <a href="http://nacereddine.wordpress.com/2008/10/02/hack-this-site-basic-8/" rel="nofollow">http://nacereddine.wordpress.com/2008/10/02/hack-this-site-basic-8/</a></p> http://stackoverflow.com/questions/1781322/how-do-i-render-all-comments-in-a-rails-view 1 How do I render all Comments in a Rails view? bgadoci 2009-11-23T05:55:13Z 2009-11-30T04:47:17Z <p>I am new to rails so go easy. I have created a blog. I have successfully implemented comments and attached them to each post. Now...I would like to display, in the sidebar, a list of the most recent comments from across all posts. I think there are two things involved here, an update to the comment_controller.rb, and then the call from the actual page. Here is the comments controller code. </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> http://stackoverflow.com/questions/1120139/getting-comment-post-not-allowed-400-when-using-django-comments 0 Getting "Comment post not allowed (400)" when using Django Comments kfordham281 2009-07-13T15:25:50Z 2009-11-27T09:01:10Z <p>I'm going through a Django book and I seem to be stuck. The code base used in the book is .96 and I'm using 1.0 for my Django install. The portion I'm stuck at is related to Django comments (django.contrib.comments). When I submit my comments I get "Comment post not allowed (400) Why: Missing content_type or object_pk field". I've found the Django documentation to be a bit lacking in this area and I'm hoping to get some help.</p> <p>The comment box is displayed just fine, it's when I submit the comment that I get the above error (or security warning as it truly appears).</p> <p>My call to the comment form:</p> <pre><code>{% render_comment_form for bookmarks.sharedbookmark shared_bookmark.id %} </code></pre> <p>My form.html code:</p> <pre><code>{% if user.is_authenticated %} &lt;form action="/comments/post/" method="post"&gt; &lt;p&gt;&lt;label&gt;Post a comment:&lt;/label&gt;&lt;br /&gt; &lt;textarea name="comment" rows="10" cols="60"&gt;&lt;/textarea&gt;&lt;/p&gt; &lt;input type="hidden" name="options" value="{{ options }}" /&gt; &lt;input type="hidden" name="target" value="{{ target }}" /&gt; &lt;input type="hidden" name="gonzo" value="{{ hash }}" /&gt; &lt;input type="submit" name="post" value="submit comment" /&gt; &lt;/form&gt; {% else %} &lt;p&gt;Please &lt;a href="/login/"&gt;log in&lt;/a&gt; to post comments.&lt;/p&gt; {% endif %} </code></pre> <p>Any help would be much appreciated.</p> <p>My view as requested:</p> <pre><code>def bookmark_page(request, bookmark_id): shared_bookmark = get_object_or_404( SharedBookmark, id=bookmark_id ) variables = RequestContext(request, { 'shared_bookmark': shared_bookmark }) return render_to_response('bookmark_page.html', variables) </code></pre> http://stackoverflow.com/questions/1769612/userimage-in-sharepoint-blog-comment 1 Userimage in Sharepoint Blog comment Ren Hoek 2009-11-20T10:31:10Z 2009-11-26T09:29:50Z <p>I´m searching for a way to display the userimage next to the name of a Blog-comment in sharepoint 07. First idea was to add a Image column to the comment list and use a add event to fill it, but this would not catch a change of the userimage and I still have no control over the rendering.</p> <p>Thanks for any suggestion </p> <p>ren</p> http://stackoverflow.com/questions/1799671/php-comment-code-help 4 PHP Comment Code Help iMaster 2009-11-25T20:15:00Z 2009-11-25T20:50:29Z <p>Hi guys! I'm in the process of coding my very first blog. With the help of various tutorials, and other forums I have managed to gather a semi-working code. </p> <p>Right now I have a code that takes and displays the comment, but the problem is coordinating which comments go on which post. My current set up is all my post are HTML files, and the comments are stored in a database. I also have a form that creates a new row with a unique post ID and title for each post.</p> <p>My basic DB setup right now is as follows: 1 database, 2 tables. A post table and a comments table. In the comments table I have the general name, website, comment, etc. and I also have a unique ID that auto-increments for each comment. Then I have a post_id which should match up with the designated post. </p> <p>On the post table, I have just two fields: entry_id and title. The title is manually set by me and the entry_id is auto-incremented. NOTE: The entry itself is NOT stored in the database. </p> <p>So my current problem is how to set the post_id for each page of comments and how to associate the entry_id with the actual post. I hope that's not too confusing. Thanks a ton for any help!</p> <p>-iMaster </p> http://stackoverflow.com/questions/1467058/space-between-line-comment-characters-and-start-of-actual-comment 1 Space between line-comment character(s) and start of actual comment Mark Rushakoff 2009-09-23T16:14:06Z 2009-11-24T19:49:57Z <p>I realize that this rule might differ from one company's coding standards to another, but in general, which is preferred?</p> <ol> <li>With a space after the line-comment:</li> </ol> <p><code></p> <pre><code>int foo = Bar(quux + 1); // compensate for quux being off by 1 foo = Bar(quux + 1) # compensate for quux being off by 1 </code></pre> <p></code> 2. No space after the line comment:</p> <p><code></p> <pre><code>int foo = Bar(quux + 1); //compensate for quux being off by 1 foo = Bar(quux + 1) #compensate for quux being off by 1 </code></pre> <p></code></p> <p>I haven't been able to find <em>anything</em> online regarding this aspect of coding style. My guess is that including a space is the preferred style for all languages, but I'd like some "hard evidence" to confirm or deny this.<br /> <hr/> It sounds so far like everyone has <strong>anecdotal</strong> evidence that using a space is preferred. Can anyone point me in the direction of some official or otherwise published <strong>coding standards</strong> that directly address the issue of comment formatting and whether a space should be used?</p> http://stackoverflow.com/questions/159597/how-to-convince-people-to-comment-their-code 26 How to convince people to comment their code hstoerr 2008-10-01T20:41:10Z 2009-11-23T20:34:05Z <p>What are good arguments to convince others to comment their code? </p> <p>I notice many programmers favor the perceived speed of writing code without comments over leaving some documentation for themselves and others. When I try to convince them I get to hear half baked stuff like "the method/class name should say what it does" etc. What would you say to them to change their minds?</p> <p>If you are against commenting, you please consider answering the opposite question <a href="http://stackoverflow.com/questions/163600/when-not-to-comment-code">When NOT to comment code</a> instead, or just leave comments. This should be a resource for people trying to convince people to comment the code, not otherwise. :-)</p> <p>Other related questions are: <a href="http://stackoverflow.com/questions/36432/commenting-code">Commenting code</a>, <a href="http://stackoverflow.com/questions/20922/do-you-comment-your-code">Do you comment your code</a> and <a href="http://stackoverflow.com/questions/121945/how-do-you-like-your-comments-best-practices">How would you like your comments</a>.</p> http://stackoverflow.com/questions/1379826/doxygen-style-comments-in-kate 2 Doxygen style comments in Kate Aamir 2009-09-04T15:04:08Z 2009-11-23T17:00:36Z <p>Kate features a very handy shortcut (Ctrl+D) to apply single- and multi-line comment to the selected region of text. How can I configure Kate to apply doxygen style comments in C/C++ source files?</p> <pre><code>/** * reduces the channel complexity * args: None * returns: None */ void Channel::reduce(); </code></pre> http://stackoverflow.com/questions/163600/when-not-to-comment-code 28 When NOT to comment code hstoerr 2008-10-02T17:40:01Z 2009-11-23T09:40:16Z <p>What are your "favourite" overuses / misconceptions about commenting the code? Why do you sometimes think commenting is a pain? What arguments would you use to convince others that less is more at commenting in some cases?</p> <p>This is the negative counterpart to <a href="http://stackoverflow.com/questions/159597/how-to-convince-people-to-comment-their-code">How to convince people to comment their code</a> - such that it remains a collection of answers, not a convoluted discussion. Compare also <a href="http://stackoverflow.com/questions/36432/commenting-code">Commenting code</a>, <a href="http://stackoverflow.com/questions/20922/do-you-comment-your-code">Do you comment your code</a>, and <a href="http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen">What's the least useful comment you've ever seen?</a></p> <p>How about writing one reason per answer, so the voting works on the reasons?</p> http://stackoverflow.com/questions/1780721/ugly-code-amusing-comment 0 Ugly Code: Amusing comment? Jim Dennis 2009-11-23T01:38:55Z 2009-11-23T04:32:57Z <p>Here's a fragment of code I'm prototyping that should, by all accounts, never see the light of day. I'll refactor it and clean it up before I merge it into my project.</p> <p>However, it seems to be working and I happened to be listening to Arlo Guthrie when I was working on it.</p> <pre><code>#!/usr/bin/env python import re expr = re.compile(r'\[[0-9][-0-9,[]*\]') def range2list(s): '''Given [x-y,a,b-c] return: range(x,y) + [a] + range(b,c) Handle decrements and zero-filling if necessary. ''' assert s.startswith('[') and s.endswith(']') and len(s) &gt; 2 results = [] r = s[1:-1] # extract from enclosing brackets for i in r.split(','): # each p if '-' not in i: results.append(i) continue # Else: (it's a range t = i.split('-') if len(t) != 2: # punt on degenerate expressions results.append(i) continue # Else: if len(t[0]) &gt; 1 and t[0].startswith('0'): fmt = "%%0%sd" % len(t[0]) ## Handle zero fill else: fmt = "%s" try: l, u = int(t[0]), int(t[1]) except ValueError: # punt on stuff that can't be converted results.append(i) # remember i? There's a song about i. continue if l &gt; u: step=-1 else: step=1 results.extend([fmt % x for x in range(l,u,step)]) return results </code></pre> <p>... and a test suite for it:</p> <pre><code>if __name__ == '__main__': import sys testcases = [ '[0-5]', '[1]', '[1,2,3]', '[1-3,01-3,9,9-7]', '[01-20]', '[020-1]', '[a,b,c,9-]' ] for i in testcases: print print 'range2list(%s)' % i print "\t" + ' '.join(range2list(i)) </code></pre> <p>... which produces:</p> <pre><code>range2list([0-5]) 0:1:2:3:4 range2list([1]) 1 range2list([1,2,3]) 1:2:3 range2list([1-3,01-3,9,9-7]) 1:2:01:02:9:9:8 range2list([01-20]) 01:02:03:04:05:06:07:08:09:10:11:12:13:14:15:16:17:18:19 range2list([020-1]) 020:019:018:017:016:015:014:013:012:011:010:009:008:007:006:005:004:003:002 range2list([a,b,c,9-]) a:b:c:9- </code></pre> <p>I really don't like the convoluted mess in there (especially at the point where I'm writing the comment "<strong>remember i, there's a song about i.</strong>"</p> <p>When I get this cleaned up I'll merge it into a function which expands hostname range patterns (ww[020-040,091,099].sfarm.mycorp.com ... and so on). (Actually the compile regexp shown here is part of that other function, it extracts the [...] expressions from a string for expansion).</p> <p>So, my questions:</p> <ul> <li>How can I clean up this mess?</li> <li>What's the most interesting, obscure, amusing, etc. musical reference you've seen in a source code comment?</li> <li>Has anyone written a parser/expander out there that already does something like this? In Python? Would anyone else ever use such a thing? Is it worth making available separately?</li> <li>What alternative syntaxes would make sense? '{0:9,12,23,090:099}'? .. instead of -?</li> </ul> http://stackoverflow.com/questions/1754875/to-comment-out-matches-in-vim-independent-on-comment-leader 1 To comment out matches in Vim - independent on comment leader? Karl Yngve Lervåg 2009-11-18T10:01:25Z 2009-11-22T09:01:21Z <p>Hi!</p> <p>I want to comment out lines in some code I have. I have different kinds of codes, and they use different comment leaders. E.g. in latex: '%', in Fortran 90: '!' and in python: '#'. I want to do a substitute command that looks something like this:</p> <pre><code>:g/&lt;search-string&gt;/s/^/&lt;add-comment-leader-here&gt;/ </code></pre> <p>If this is possible, I could also make a command in Vim that automatically commented out the selected text. Something like this:</p> <pre><code>vmap &lt;z&gt; :'&lt;,'&gt;s/^/&lt;add-comment-leader-here&gt;/ </code></pre> <p>Any ideas are welcome! :)</p> http://stackoverflow.com/questions/1776711/file-header-or-general-comment 0 File header or general comment unknown (google) 2009-11-21T20:42:15Z 2009-11-21T21:25:15Z <p>Does anybody have a nice well structured starting comment for a file? I'm looking for something that looks nice, either fancy or very professional.</p> <p>By general comment I mean the comment at the top of a file showing your name and purpose of the file. Like this one:</p> <pre><code>/******************************************************** * hello -- program to print out "Hello World". * * * * Author: FirstName, LastName * * * * Purpose: Demonstration of a simple program. * * * * Usage: * * Runs the program and the message appears. * ********************************************************/ </code></pre> http://stackoverflow.com/questions/1769332/script-to-remove-python-comments-docstrings 1 Script to remove python comments/docstrings Anurag Uniyal 2009-11-20T09:28:37Z 2009-11-20T11:25:28Z <p>Is there a python script or tool available which can remove comments and docstrings from python source?</p> <p>it should take care of cases like</p> <pre><code>""" aas """ def f(): m = { u'x': u'y' } # faake docstring ;) if 1: 'string' &gt;&gt; m if 2: 'string' , m if 3: 'string' &gt; m </code></pre> <p><strong>Edit:</strong> So atlast i have come up with a simple script, which used tokenize module and removes comment tokens, it seems to work pretty well, except that I am not able to remove docstrings in all cases, see can you improve it to remove docstrings</p> <pre><code>import cStringIO import tokenize def remove_comments(src): """ This reads tokens using tokenize.generate_tokens and recombines them using tokenize.untokenize, and skipping comment/docstring tokens in between """ f = cStringIO.StringIO(src) class SkipException(Exception): pass processed_tokens = [] last_token = None # go thru all the tokens and try to skip comments and docstrings for tok in tokenize.generate_tokens(f.readline): t_type, t_string, t_srow_scol, t_erow_ecol, t_line = tok try: if t_type == tokenize.COMMENT: raise SkipException() elif t_type == tokenize.STRING: if last_token is None or last_token[0] in [tokenize.INDENT]: # FIXEME: this may remove valid strings too? #raise SkipException() pass except SkipException: pass else: processed_tokens.append(tok) last_token = tok return tokenize.untokenize(processed_tokens) </code></pre> <p>Also i would like to test it on a very large collection of scripts with good unitest coverage, can you suggest such a open source project.</p> http://stackoverflow.com/questions/1767532/should-we-be-adding-comments-after-code-blocks-rather-than-before 6 Should we be adding comments after code blocks, rather than before? dbruning 2009-11-20T00:13:16Z 2009-11-20T08:36:37Z <p>This post (<a href="http://stackoverflow.com/questions/163600/when-not-to-comment-code">When not to comment code</a>) has a great discussion about commenting styles.</p> <p>I agree with the sentiment to commenting the <strong>intent</strong> of the code ("why") rather than the "what".</p> <p>It occurred to me that perhaps we should be placing the comments <em>after</em> the code, like this:</p> <pre><code> _checkForUpdatesThread = new Thread(new ThreadStart(updateManager.CheckForUpdates)); _checkForUpdatesThread.Start(); // since CheckForUpdates() can take up to a minute to execute </code></pre> <p>Rather than:</p> <pre><code> // Start CheckForUpdates() on its own thread, since it can take up to a minute to execute _checkForUpdatesThread = new Thread(new ThreadStart(updateManager.CheckForUpdates)); _checkForUpdatesThread.Start(); </code></pre> <p>This allows the reader to skim through the code, concentrating on the actual code first - which is hopefully so beautiful that no-one needs to look down at the comments. If the reader finds themselves asking "Why the hell?!?" they can look down to the comments to see what the original author was thinking.</p> <p>To help enforce the comment providing intent ("why"), it may be useful to always start the comment with "because", "since", "as", "instead of" or similar.</p> <p>Has anyone seen this done in practice? Any thoughts on whether it's a good idea?</p> http://stackoverflow.com/questions/1768421/how-to-get-info-the-author-his-comments-for-the-last-subversion-revision-via-com 0 How to get info: The Author/his Comments for the last subversion revision via command line? snoopy 2009-11-20T04:55:32Z 2009-11-20T06:21:19Z <p>I can't seem to find this one!</p> <p>So say someone like "Joe" (the Author) submits his code into the svn repository with the message "Fixed this bug and that bug yada yada" (his Comments).</p> <p>I'd like to get, via the svn.exe command line, the Author and his Comments for the latest revision. Maybe someone can tell me what arguments I could use to achieve this?? Thanks!!!</p> http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen 9 What's the least useful comment you've ever seen? Adam Bellaire 2008-09-27T11:11:00Z 2009-11-20T02:26:35Z <p>We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so.</p> <p>However, sometimes a comment just doesn't cut the mustard. I'm not talking about obvious jokes or vented frustraton, I'm talking about comments that appear to be making an attempt at explanation, but do it so poorly they might as well not be there. Comments that are <strong>too short</strong>, are <strong>too cryptic</strong>, or are <strong>just plain wrong</strong>. </p> <p>As a cautonary tale, could you share something you've seen that was really just <strong>that bad</strong>, and if it's not obvious, show the code it was referring to and point out what's wrong with it? What <strong>should</strong> have gone in there instead?</p> <p>See also: </p> <ul> <li><a href="http://stackoverflow.com/questions/163600/when-not-to-comment-code">When NOT to comment your code</a></li> <li><a href="http://stackoverflow.com/questions/121945/how-do-you-like-your-comments-best-practices">How do you like your comments? (Best Practices)</a></li> <li><a href="http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered">What is the best comment in source code you have ever encountered?</a></li> </ul> http://stackoverflow.com/questions/1766449/how-to-make-a-small-system-to-comment-on-a-individuals-in-a-group-in-php 0 How to make a Small system to comment on a individuals in a group in PHP? Josh 2009-11-19T20:53:35Z 2009-11-19T21:17:46Z <p>I am building a team roster application. It takes a team class (this is a quick mockup not the actual class as my question does not pertain to it)</p> <pre><code>class Team { function __construct($teamName, $roster){ $this-&gt;setName($teamName); $this-&gt;setRoster($roster); } </code></pre> <p>I didn't include the set functions because this class is the foundation for my question. I want to add a section to comment on each person in the roster. Example:</p> <pre><code>$roster = array('Jim','Bob','Steve','Josh'); $team = new team('My Team', $roster); </code></pre> <p>I want each person on the team to have a section where someone can comment on them. Example:</p> <p><b>My Team</b></p> <ul><li>id:1 Jim - add comment</li> <li>id:2 Bob - add comment<br><em>Bob needs to come to more practices</em> - delete comment</li> <li>id:3 Steve - add comment</li> <li>id:4 Josh - add comment</li></ul> <p>My question is this; do I create a comment class and then create a new class for each person? I would think that this would be a bad idea if their where 100+ people. Or do I create functions in my team class to handle the commenting?</p> http://stackoverflow.com/questions/1765487/vs-10-mangles-html-comments 1 VS 10 mangles html comments? Dr. Zim 2009-11-19T18:25:10Z 2009-11-19T18:25:10Z <p>Using the latest VS 10 we created html markup, then commented it with html comments. The file on disk is not mangled, but when it renders, it renders the html comment tags, then removes some of the html markup within the commented tags:</p> <p>Two questions (1) why would it not like the html comment tags and (2) why would it change the html content between the comment marks? It physically removed the TD tag. This is also using the 2010 MVC project.</p> <p>Original:</p> <pre><code> &lt;!-- &lt;td width="165" valign="top"&gt; &lt;a href="saving.html"&gt; &lt;img src="images/marquee_edlp.jpg" width="165" height="180" alt=" " border="0"&gt; &lt;/a&gt; &lt;/td&gt; --&gt; </code></pre> <p>Altered:</p> <pre><code> &lt;!--&gt; &lt;a href="saving.html"&gt; &lt;img src="images/marquee_edlp.jpg" alt=" " border="0" height="180" width="165"&gt; &lt;/a&gt; --&amp;gt; </code></pre> http://stackoverflow.com/questions/1762320/is-it-ok-for-different-implementing-classes-to-throw-different-exception-types 1 Is it ok for different implementing classes to throw different exception types? David_001 2009-11-19T10:28:51Z 2009-11-19T11:07:21Z <p>If i have an interface, which i add comments to to identify that a specific exception will be thrown, is it ok for implementing classes to throw <em>different</em> exceptions?</p> <p>A (bad) example is:</p> <pre><code>public interface IWidgetWorker { /// &lt;summary&gt; /// Do the work required for the specified work id. /// &lt;/summary&gt; /// &lt;param name="workId"&gt;The id of the piece of work to do&lt;/param&gt; /// &lt;exception cref="ArgumentException"&gt;Thrown if workId is empty&lt;/exception&gt; public void DoWork(Guid workId); } public class DatabaseWidgetWorker : IWidgetWorker { public void DoWork(Guid workId) { // throw some database related exception } } public class WebWidgetWorker : IWidgetWorker { public void DoWork(Guid workId) { // throw some web related exception } } </code></pre> <p>Maybe i add a <code>WidgetWorkerException</code> class? Where do i document what the specific exceptions that the implementing classes might throw? </p> http://stackoverflow.com/questions/1755692/comments-opensource-software 1 Comments & OpenSource software. Kavitesh Singh 2009-11-18T12:41:01Z 2009-11-18T16:41:40Z <p>This may sound like a foolish question or an observation, but i have seen that most of the times when one tries to look at the opensource code, there are no comments or just one or two lines at the start of the function telling what the function is used for e.g. register a user or data in table etc. There is no code which actually explains what exactly the function is doing etc.</p> <p>Is it done intentionally (removal of comments) when a code is released to open source community to make things difficult to understand by others?</p> http://stackoverflow.com/questions/1750514/including-commented-class-declaration-in-implementation-file 0 Including commented Class declaration in implementation file Neeraj 2009-11-17T17:38:55Z 2009-11-17T18:17:39Z <p>Hi All,<br> Everyone knows the advantages of a more readable code. So in order to make my code more readable what i do normally is include the commented class declaration in the implementation file of that class.<br> This way i need not have to browse through various include directories to go to the definition.<br> So, Is this a good practice or just over-documentation?<br> If there is some standard technique, plz let me know.<br> <b>EDIT:</b><br> Is there a way to migrate to class declaration from implementation in Vim ?<br> Except opening it in new buffer.</p> <p>Thanks</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>