comments

DB for Commenting System

i wanna create a 2 level status message system. Which is the best way to create a tables ? Scope: User sets a Status Message Users Reply to the status message this is a picture showing it Tables i have created users (id, name .... ) status_messages (id, message, time, user_id) status_message_replies (id, message, time, status_me...

Can I show a thumbnail on comment post from fb:comments?

Hello, I have a comments box on a page of my website. When a user post a comment he can post it to his wall it shows only the comment, title and link. I have a share button of addthis on the same page and Facebook finds the image I have on this tag : < link href="http://mydomain.com/images/logo.jpg" rel="image_src" > and displays it a...

I want to select who can view comment posted on a website through FB comment box to my wall

In my facebook profile I arranged groups, so I can select to which group each post is visible. If I post a comment on a website through facebook comment box and check I want to post comment also on my facebook wall, selecting groups is not possible. Even if I go to my wall - the only option is to delete post from my wall. I want that p...

VS2010: Automatically insert date and initials to single line comments

Greetings Friends, What is the best way (least amount of keystrokes) to get Visual Studio 2010 to automatically insert the current date and my name/initials whenever I put a single line comment into my codebase? This should support C# and it'd be even better if it worked in my .aspx pages too. Thanks -- I know someone out there has the...

in how many languages /* ........... */ work as a comment? Other than CSS

in how many languages /* ........... */ work as a comment? other than CSS ...

Generating commented-out content with Wicket

For debug reasons, and on a whim, I'd like to include certain information in a Wicket page's HTML output that is enclosed in HTML comments. The output would be something like... <!-- <div wicket:id="foo"> 1234 </div> --> ...where "1234" is some interesting, dynamically created piece of information. I have tried, to no avail: <!-...

Display wordpress comments before the plugins?

Hi, I want to display the wp comments right after the post, but before the plugins content. What I have tried so far: in single-products.php file, the original code is: <?php the_content(); ?> <?php wp_link_pages(array('before' => '<p><strong>'.__('Pages','eStore').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> ...

FBML Comments box

I have created a FBML page and added a comments box. People have started making comments, however some i need to delete. How can i do this? Last week I changed candelete parameter to true, which gave me a delete button for each comment. Strangely this week, it doesn't work? Its like the function of the candelte parameter has changed? ...

Comment framework in Google App Engine

Django’s has a comments framework with auto forms and its built in comment model http://docs.djangoproject.com/en/dev/ref/contrib/comments/ , is there any similar open source apps that can run this in Google App Engine with its datastore too? Thanks alot. ...

How should I comment partial Python functions?

say I have the following code: def func(x, y = 1, z = 2): """ A comment about this function """ return x + y + z another_func = partial(func, z = 4) What would be the correct or Pythonic way of documenting the another_func function? ...

Need to render a second comment box underneath node content.

Im trying to implement a comment system that functions much like the one in place on reddit.com. i.e Node content on top, then a quick reply box, then using the ajax_comments module, show a comment form when a user clicks reply on an actual comment. The issue I'm having is that the ajax_comments module seems to just shift the one commen...

What is the Pythonic way to create informative comments in Python 2.x?

For further clarification, C# has the '///' directive which invokes the super-secret-styled Comments which allow you to have nice comments built into intellisense. Java has the '@' directive that allows you to have nice comments as well. Does Python have something like this? I hope this question is clear enough, thanks! ...

Umbraco UComment in IIS7 Application (Not Default Web Site)

Hello, I recently installed Umbraco 4.5.2 into an IIS application, not as the default web site. The main Umbraco CMS seems to work as expected, I can add and remove content, and all kinds of other wonderful things. However, when I'm trying to use the UComment module, it can't seem to locate the following two resources: /base/UComment...

Changing Comments from C++ style to C style

I have a C source file having comments in // (C++) style. I want to change all the comments to the old /* */ (C) style. Is there a way to do this using an existing script? ...

How come when I use the tComment VIM plugin in a .ini file it adds/removes semi-colons instead of hashes as comment?

I am using gVIM and the tComment plug-in during editing the development.ini file in a Pylons/Python project. The default development.ini file has lines commented out using the hash # symbol which is the standard method of commenting out lines in Python. However, when I try to uncomment lines by using a tComment keyboard shortcut in gVIM,...

CakepPHP: help with the cakephp comments plugin

Hi I'm trying to use the CakePHP comments plugin found here http://cakedc.com/downloads/view/cakephp_comments_plugin but the instructions are really hard to follow. I've managed to add comments but it's displaying the commentWidget that's not working. I'm getting confused at this part i think To work properly, the component needs ...

What is the difference between these comments

What is the difference between these types of comments in ASP.NET's ASPX markup page? <%-- something here --%> and the html comment <!-- something here --> ...

scrapebox comments

Hi, I'm looking for users have experience with posting comments with scrapebox.com I'll be glad to get your opinion - what are the pluses and minuses Thanks a lot! ...

Adding comments to columns

Possible Duplicate: Alter MYSQL Table To Add Comments on Columns Hi Guys, I googled all over the place but I can't find the answer. I know you can add comments to your database columns. I already created a table but now i want to add comments to certain columns, my database programma (sequel pro) doesn't have a function to al...

commenting code C# visual studio best practise

I'm looking for a rather arbitrary answer, so this might more be a discussion. I'm wondering what the best practise for commenting my C# code in visual studio is. Right now I'm using the triple /// to generate the xml and use sand castle to build a chm or html file. But my problem is that I use code comments for two reasons: When other...