The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
72 views

i want to make a comment system by using php and notepad [closed]

i want to create a simple comment system and i want to use the notepad or access to save the database (COMMENTS ) , i tend to use this codes below but it didnt work , I WANT TO ASK 1- IS IT RIGHT ...
-7
votes
1answer
34 views

JavaScript Commenting [closed]

Would someone be able to comment this JavaScript for me to help give me a better understand of what the actual code is doing (I am still a learner) Thanks <script type="text/javascript"> ...
1
vote
2answers
46 views

Commenting in Dynamic CSS

I'm working with a dynamic stylesheet, ie: style.php, beginning with the code <?php header('Content-type: text/css'); ?> How should I comment in such a file? From my own experience, html ...
0
votes
1answer
44 views

Livefyre - Multiple Conversations on one Page?

I use Livefyre as my commenting system. This works very well at the moment as each page thatr has comments is actually a separate HTML file. We are investigating a radical site re-design, and one of ...
0
votes
0answers
27 views

Anonymous user name not shown on comments Drupal

I am using Drupal 7 which has comments and blogs as core module. I have added inline comments module. On my blogs view page when an anonymous user adds a comment, it allows to add their name but on ...
2
votes
1answer
59 views

What is the best way to use: @package, @subpackage and @category

I'm reading over phpdoc.org and don't quite understand the best time to use @package, @subpackage and @category. Ironically, the documentation / examples are not as helpful. Is it just me? If it ...
0
votes
2answers
49 views

how to explain propose of public class in Javadoc

Hi I was asked to explain the purpose of each public class, public method, and public field in my program, but I do not know what to write it, for example is @param only for methods? Can you give an ...
0
votes
0answers
7 views

Documentation / Commenting for WordPress plugins

How are the @package, @subpackage and @categories supposed to be used in the context of developing WordPress plugins?
0
votes
4answers
58 views

Emacs - setting comment character by file extension

I work with a certain group of files (ASCII readable) but with weird extension names. The comment character in all of these is # Everytime I comment lines, I have to set the comment character for ...
5
votes
3answers
156 views

Use of @since in PHP code

I am using the @since comment in my PHP code. I have a question about its use though. Say I have a function that performs a particular task, and it's been implemented in version 1.0. So I currently ...
0
votes
1answer
46 views

Commenting end of function [closed]

Is it good practice in PHP to comment the end of a function, right next to the closing brace? e.g. } // end display_items
0
votes
0answers
63 views

Facebook comment box does not show

I am just reading into social plugins and I was trying out the like button and the comment box from facebook. Everything with the like button worked fine and it was easy to set up, but when I tried ...
0
votes
0answers
33 views

Looking for help to get specific comment from Livefyre on the based of commentid

I am using livefyre api to manage commenting in my project. https://github.com/Livefyre/livefyre-docs/wiki Livefyre api provides all kind of functionalities to deal with all comment management with ...
0
votes
1answer
63 views

How to comment on some input in infopath programmatically?

Does anyone have any experience with/or can comment on writing to an infopath form programmatically? I have a requirement which needs to write and periodically update the InfoPath form. I didn't ...
0
votes
1answer
34 views

Attaching User to Comments

I have a working commenting system that is polymorphic so that comments can be added to users and posts. However, I am unable to figure out how to attach the logged in user (commenter) to the comment. ...
0
votes
3answers
94 views

mysql php commenting system: new database or looping through ids? [closed]

I want to make a picture website with a mysql php commenting system for each picture. Now, I can do two things: 1) use a new database for each picture or 2) use a single database + an id for each ...
0
votes
1answer
35 views

How to tell in Facebook Comment Moderation what pages are being commented on

We've integrated FB commenting into our website, and a comprehensive list of comments appearing on individual pages can be found in one long list at http://developers.facebook.com/tools/comments ...
0
votes
0answers
75 views

Does using 1th instead of 1st increase clarity in code for 0-based counting? [closed]

For example, if I am numbering columns from 0-9, and I need to document the use of column 1, should I call it the 1th column instead of the 1st column to avoid giving the reader the impression that ...
0
votes
1answer
73 views

Is it possible to write comments directly on page?

I found some php - jQuery code for creating commenting system. So, comments are stored in a database, that must be read each time the page is loaded. while($row = mysql_fetch_assoc($result)) { ...
0
votes
0answers
36 views

Looking for documentation solution for C++ [duplicate]

Possible Duplicate: C/C++ documentation tool I'm looking for a utility to generate documentation for C++ functions/classes in much the same manner is the XML comments for C# etc. are ...
0
votes
1answer
57 views

Is there a comment character for iCal files (.ics)

I looked through the iCal spec and wasn't able to find anything at all. I've searched via Google quite a few times over the past few days as well. I've found a few people that are using a server-side ...
1
vote
0answers
66 views

Comment box combining facebook and individual login

I want to integrate a comment box to my website. I've searched for several hours and I'm really confused now. Is there a possibility to use the facebook comment box plugin and a login system which ...
0
votes
1answer
111 views

Stackoverflow-like comments voting SQL query

I'm developing a commenting system like Stackoverflow or Disqus has where people can comment and vote on the comments. I have three tables for this: USERS, COMMENTS, and VOTES. I'm having trouble ...
0
votes
2answers
40 views

Dynamically creating a comment form

I want to implement an ajax commenting system. Currently, each comment has a reply button on it which onclick creates a reply form. The reply form is created using an ajax request, and this is what I ...
1
vote
1answer
77 views

How do you add a blank commented line in T4 using Ghostdoc Pro in Visual Studio?

Inside of the "Rules" settings in GhostDoc Pro it allows me to use T4 to format my comments. However it randomly adds line breaks(which I have sorted out), and also will not allow me to add a single ...
1
vote
1answer
261 views

Details of difference between @see and @inheritDoc

I have looked over JavaDoc reference, and while I understand basic difference between @see (various links) and @inheritDoc (export of superclass JavaDoc comment), I need clarification on how things ...
2
votes
1answer
121 views

Hierarchical commenting system in threaded view: PHP and MySQL

I have the need to render a threaded view of a 2-levels hierarchical commenting system. The comments are stored in a database. The information about the hierarchy is given by field 'parent_id' (which ...
1
vote
3answers
152 views

Source code versioning with comments (organizational practice) - leave or remove? [closed]

Before you start admonishing me with "DON'T DO IT," "BAD PRACTICE!" and "Learn to use proper source code control", please hear me out first. I am fully aware that the practice of commenting out old ...
0
votes
1answer
124 views

PHP, Doxygen and raw HTML

I would like to include into the documentation some raw HTML. I am using Doxygen to generate this documentation so it is included in the PHP script. The problem is that if I do this: \\\ \htmlonly ...
3
votes
1answer
113 views

Please explain all the difference Eclipse comment types? [closed]

I am building a nice color scheme at Eclipse Color Themes (which greatly enhances the Eclipse experience, thank you very much!). And I see that there are many different comment types. I understand ...
4
votes
3answers
141 views

Is it possible to prevent standard HTML comments from showing up in source code?

I'm going to assume the answer is 'no' here, but since I haven't actually found that answer, I'm asking. Quite basically, all I want to do is leave some HTML commenting in my files for 'author eyes ...
0
votes
1answer
175 views

Jquery - Creating discussion/commenting widget

So I've created a JQUERY based commenting system for my site similar to Facebook commenting plugin or just how FB commenting works/other related sites. I have one problem: when a user opens a page ...
0
votes
2answers
40 views

Arguments for and against commenting while coding versus coding first and then commenting

What are some of the arguments for and against commenting code while it is being written versus coming back later to write all the comments? How about writing comments before writing code?
4
votes
4answers
95 views

How often to comment when committing code? [closed]

What are best practices for COMMENTING commits? A little background. All our projects use version control (Subversion / SVN / Git), Most of them are touched by 2 or more developers, We use ...
0
votes
3answers
145 views

commenting out code blocks in javascript

I did a google search for the answer but I've probably overlooked something obvious... I wish to comment out a block of code that has the potential to have nested comments, where they can terminate ...
0
votes
1answer
872 views

Commenting System - Ajax, Php & MySql

I've succeeded to write a simple commenting system with a form of 2 fields: name and comment. When the user inters values and presses submit it simply adds the comment to the current page using Ajax ...
0
votes
1answer
441 views

SQL, PHP & jQuery Dynamic comment system

I'm setting up an under construction page for my new website. I'll try to explain: There are 3 Columns side by side When a new comment is 'retrieved' it is added to the first column For each ...
1
vote
1answer
230 views

(Comment out)/wrap multiple lines of CSS with inline and multi-line comments already present

I am trying to identify the rogue CSS element/line in my CSS file, and I would like to comment out sections of code, that already have comments in them, both inline, and multiline. I am under the ...
-6
votes
3answers
86 views

In-line commenting in SQL, is there a way to do that? [closed]

What if I want to make a comment within a single line in SQL? Can I do something like(to temporarily get rid of "TargetName": select SessionSID, TargetID, /* TargetName,*/ FEDSurveyName, ...
2
votes
3answers
67 views

PHP stop comment from keeping to post itself using $_POST

So, I'm working on a commenting script. It works fine when you post a comment, but I found that when you refresh the page, even though the text field is empty, it still posts the same comment. I ...
0
votes
1answer
65 views

Is there a way for to receive comment notifications using disqus without registering?

I am using Disqus, and I'm trying to find a way for commenters to receive notifications of replies to their comments (or new comments) without registering with disquis. If using native wordpress ...
9
votes
1answer
286 views

Will excessive commenting of code slow execution? [duplicate]

Possible Duplicate: Do comments slow down an interpreted language? Will there be noticeable performance degradation in the execution of a large .py file if more than 75% of the lines of ...
0
votes
0answers
180 views

documenting php and defining possible values of a function parameter

/** * Function description * * @param string $tag */ While commenting in PHP I do like this so documenting software (doxygen) and IDE (phpstorm) knows what's going on. Now my IDE shows me that ...
2
votes
1answer
352 views

Jquery mention input : add tag on click of a link

So i'm using this plugin https://github.com/podio/jquery-mentions-input for my comment system, everything works fine but I would like to add a function. This function would be that when I click on a ...
3
votes
4answers
189 views

Commenting Standards C

I work with a team called the Solar Jackets at Georgia Tech, and we have been having a "commenting crisis". We have many members that graduate, and leave behind comment-less code. I am looking to ...
-2
votes
1answer
75 views

Commenting Code AS3 - Not being an API [closed]

Do you think it´s needed to comment code, unless is an API? I mean, a good code. With self explanatory variables and methods. Theres the need to comment a good code? Thanks.
0
votes
1answer
286 views

Comment/Guestbook Scripts but with no database [closed]

Im new to programming and heres my problem. I have a simple HTML webpage which I am hosting locally. My iPad is not going to have internet connection so I was able to boot the HTML page in my iPad ...
1
vote
1answer
75 views

Documentation for xhtml pages?

How can I write good documentation for xhtml jsf pages? I might use <!-- comment -->, but that clutters the code very much, and makes it sometimes more unreadable than without comments. Is ...
5
votes
2answers
265 views

multi-line comments vs single line comments

I remember reading in a JavaScript tutorial that it's generally best to avoid using single line comments incase someone in the future decided they wanted to compress the file and remove all the white ...
8
votes
3answers
217 views

Comment threading with score factoring

I am banging my head against something and I was wondering if somebody more skilled that me could help me out. My aim is to create a comment thread that factors in a system of comment scoring. First ...

1 2 3