WareSeeker Search Software

comments


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

Comments CGI


script C and C plus plus Free
View Detail
Download Comments CGIDownload Comments CGI
This simple Comments Form CGI will take visitors comments and store them on the server. You can view the comments, delete them etc. and you can also have the Comments CGI email them to you. This is very useful as not everyone has their email program set up to work with mailto: HTML links.
2

Max Comments


script PHP Free
View Detail
Download Max CommentsDownload Max Comments
Allows visitors to leave comments about the article/webpage theyve just read. Login/signup process allows users to edit/add their comments. Page-inated control panel to manage users/comments. Also allows for columnists/bloggers on your website. Easy install of identical javascript call on all your webpages. Email notification (to you) when comments are left. Uses MySQL.
3

Dacios comments


script PHP Free
View Detail
Download Dacios commentsDownload Dacios comments
It uses mysql database in the backend.It shows comments for one thing or you can comment more things. Use it for commenting news, picture or any other thing.
4

SWF Comments


script PHP Free Additional Info: This is all free, have it, own it, rip it, use it, hack it, duplicate it or if you wish even delete it. :P
View Detail
Download SWF CommentsDownload SWF Comments
This script can collect comments for flash sites. If you have complete flash site, why wait? just use this script to collect comments for your site. It uses simple flat file database instead of MySQL It loads only 10 comments first time to lessen server load. But two arrow buttons allow visitors to switch through all the comment even without reloading the page.
5

Your Comments


script PHP Free
View Detail
Download Your CommentsDownload Your Comments
Your Comments enables you to offer your website visitors the option of commenting on your webpages and articles. The script provides a comment data capture form and allows you to display visitors comments in a neat table. It also enables you, as moderator, to remove any unwanted comments. These are some of its features: - Uses a fully customisable template. - Can be seemlessly integrated into your website. - Does not require MySQL. - Is simple to setup and configure. - Allows deletion of unwanted posts. - Multiple comment pages. - Can include or filter posts with scripts and HTML. - Emails you when a new comment is added to your webpage(s). - Users can markup posts with bold/italic etc.
6

ScriptsMill Comments


script PHP Free
View Detail
Download ScriptsMill CommentsDownload ScriptsMill Comments
It is a free php script that allows your users to add comments on certain pages of your website. It is very easy to install this script if your site uses SSI, PHP or ASP. You can customize formating and appearance of comments with a base knowledge of HTML. Script licensed under GPL, so you can modify it as you like.
7

Comments Manager


script PHP Free
View Detail
Download Comments ManagerDownload Comments Manager
Do you want to keep track of the visitors comments at your creations page? Or want to know what other peoples say about the topic of a page? This script can help you a great deal. This script can manage comments for every single page of your website. You shall just need to include a 3 line code and a page id in your pages. And this script will do the rest.
8

Key Comments


script PHP $49.00
View Detail
Download Key CommentsDownload Key Comments
It is simple fact of business that you have to satisfy your customers to survive and prosper. But how do YOU know what exactly your customers are looking for? Without this vital information all your hard work could be wasted climbing the wrong ladder. With Key Comments installed on your website you can quickly and easy ask your customer what THEY want, not what you THINK they want. This powerful software then automatically analyses your customers comments and zooms in on the most important words and phrases. You will gain a clear understanding.of the critical factors in your business.
9

Joe2Torials Comments


script PHP Free Additional Info: Link back to homepage is appreciated.
View Detail
Download Joe2Torials CommentsDownload Joe2Torials Comments
- Admin Section with Cookie [Remember Me] support. - Ability to delete an individual record. - Ability to delete all records at once. - Webmail & Email check. To display a URL or a mailto: link. - Empty field check. - Storage of each users IP address when posting a comment. - Paginator. In config.php you will find $per_page = 10; Change this number to the amount of records you wish to be seen on your page before the script creates a new page. - First, Previous, Next and Last page jumps. Easy links to different pages of comments. - rel=nofollow to stop spammers from getting credits in search engine rankings.
10

Comments 1.0.1


mac Utilities->Others Free
View Detail
Download Comments 1.0.1Download Comments 1.0.1
93 KB
Comments allows you to automatically comment-out (i.e. make into a comment) or uncomment any selected text in a FaceSpan scripting window. Comments will allow you to use either single-line comments or multiple-line comments, and will uncomment both types also.

Comments is an application which provides an extra tool-palette for the FaceSpan AppleScript environment.

Comments will also give you one-click access to useful FaceSpan menu-commands including Check Syntax, Cut, Copy, Paste and Undo. Comments allows you to have your script automatically syntax-checked after every commenting or uncommenting operation, and even allows you to also have your project automatically saved at the same time.

Comments can be quit from within FaceSpan, and can even also quit FaceSpan for you. Every part of Comments is totally accessible from within FaceSpan, even the About box.

Whats New in This Release:

· Minor code tweaks in info window.



11

TNT Comments Script


script PHP Free
View Detail
Download TNT Comments ScriptDownload TNT Comments Script
This Comments Script will allow your visitors to post comments about your web site content, simply include a code line at the end of your pages and the comments will appear on that page. Script has many options and features like image verification (against spam), submit form fields can be enabled or disabled (name, email, image verification), admin can click the comment to quickly delete or edit a comment. The form remembers submitters name and email and auto-fills the form next time. Admin can receive a detailed email when a comment is posted, admin email will contain link to that page, a link to delete comment if needed, submitters name, comment, etc. Script saves the data inside a plain file on server, no database is needed. Admin can also chose if latest comments are on top or at bottom. Comments style is customizable by the CSS file.
12

File::Comments 0.07


linux Programming->Libraries Free
View Detail
Download File::Comments 0.07Download File::Comments 0.07
0.012 MB
File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments.

SYNOPSIS

use File::Comments;

my $snoop = File::Comments->new();

# *----------------
# | program.c:
# | /* comment */
# | main () {}
# *----------------
my $comments = $snoop->comments("program.c");
# => [" comment "]

# *----------------
# | script.pl:
# | # comment
# | print "howdy!n"; # another comment
# *----------------
my $comments = $snoop->comments("script.pl");
# => [" comment", " another comment"]

# or strip comments from a file:
my $stripped = $snoop->stripped("script.pl");
# => "print "howdy!n";"

# or just guess a files type:
my $type = $snoop->guess_type("program.c");
# => "c"

File::Comments guesses the type of a given file, determines the format used for comments, extracts all comments, and returns them as a reference to an array of chunks. Alternatively, it strips all comments from a file.

Currently supported are Perl scripts, C/C++ programs, Java, makefiles, JavaScript, Python and PHP.

The plugin architecture used by File::Comments makes it easy to add new formats. To support a new format, a new plugin module has to be installed. No modifications to the File::Comments codebase are necessary, new plugins will be picked up automatically.

File::Comments can also be used to simply guess a files type. It it somewhat more flexible than File::MMagic and File::Type. File types in File::Comments are typically based on file name suffixes (*.c, *.pl, etc.). If no suffix is available, or a given suffix is ambiguous (e.g. if several plugins have registered a handler for the same suffix), then the files content is used to narrow down the possibilities and arrive at a decision.

WARNING: THIS MODULE IS UNDER DEVELOPMENT, QUALITY IS ALPHA. IF YOU FIND BUGS, OR WANT TO CONTRIBUTE PLUGINS, PLEASE SEND THEM MY WAY.


13

Super Comments 2.0.8


mac Utilities->System Utilities $10
View Detail
Download Super Comments 2.0.8Download Super Comments 2.0.8
119 KB
Enables your Macintosh to keep the Finder Get Info comments from being erased when the desktop is rebuilt. It also permits them to be viewed in the Open File dialogs and edited in the Save File dialogs.

Super Comments preserving the info comments when the desktop database is rebuilt.



14

Smart::Comments 1.0.2


linux Programming->Libraries Free
View Detail
Download Smart::Comments 1.0.2Download Smart::Comments 1.0.2
0.013 MB
Smart::Comments are comments that do more than just sit there.

SYNOPSIS

use Smart::Comments;

my $var = suspect_value();

### $var

### got: $var

### Now computing value...

# and when looping:

for my $big_num (@big_nums) { ### Factoring... done
factor($big_num);
}

while ($error > $tolerance) { ### Refining---> done
refine_approximation()
}

for (my $i=0; $i<$MAX_INT; $i++) { ### Working===[%] done
do_something_expensive_with($i);
}

Smart comments provide an easy way to insert debugging and tracking code into a program. They can report the value of a variable, track the progress of a loop, and verify that particular assertions are true.

Best of all, when youre finished debugging, you dont have to remove them. Simply commenting out the use Smart::Comments line turns them back into regular comments. Leaving smart comments in your code is smart because if you needed them once, youll almost certainly need them again later.


15

Dot Comments 1.0b3


mac Utilities->Internet Utilities Free
View Detail
Download Dot Comments 1.0b3Download Dot Comments 1.0b3
106 KB
Dot Comments is a utility that allows you to use .macs commenting service with your weblog editor of choice

Whats New in This Release:

· Initial public release.



16

Plone Comments 2.2.1


linux Internet->HTTP Free
View Detail
Download Plone Comments 2.2.1Download Plone Comments 2.2.1
0.037 MB
Plone Comments provides a product developed to improve moderation of comments in Plone.

Here are some key features of "Plone Comments":

· Notify admin about comment posted
· Moderation of comments, approval of comments
· Anonymous commenting
· Added Name field to comment form, it is required for anonymous comments
· Article author can be notified about new comment after the approval by reviewer
· List of recent comments for more comfortable moderation
· Configlet that allow:
· Turning on/off Moderation
· Turning on/off Manager notification
· Turning on/off Editor notification
· Turning on/off Anonymous Commenting
· Configure admin e-mail for notifications
· Configure notification subject

Comments moderation is implemented with involvement of two stage workflow. Comments are created in "private" state and visible only to DiscussionManager group of users.

To differentiate between logged-in (registered) commentors and Anonymous commentors that pretend to be one person or other one, we use Boldness of name. The Comment author is in bold when posted by logged in member. The names provided when posting Anonymously are in plain text.

Notification subject control allows to enter custom prefix to disctinct nofifications comming from different sites.

Usage

One of possible UseCases:

· Moderation is enabled and authors notification is turned on.
· New comment posted in private state.
· Notification is sent to the emails entered in Plone Comments configlet.
· Moderator User with DiscussionManager role see the comment.
· The comment can be deleted or published on modaration stage.
· When comment is published notification is sent to Article Editor.

Whats New in This Release:

· Ukrainian translation added
· added qPloneCaptchas-1.0 integration/compatibility
· fixed reinstall procedure


17

Add Comments 2.0


mac Utilities->System Utilities Free
View Detail
Download Add Comments 2.0Download Add Comments 2.0
10 KB
Add Comments was developed to help users enter information into the comment fields of multiple files. So, as you would expect, drop some files on it or run it on a selection (via OSA Menu or the Apple Menu) and youll get a field in which to enter text.

The cool thing about Add Comments is that what you enter is ADDED to what may already be present in the comments field and doesnt REPLACE it.

18

Dot Comments 1.0b3


windows Business Finance->Personal Info Managers Free
View Detail
Download Dot Comments 1.0b3Download Dot Comments 1.0b3
106KB

Dot Comments is an application that allows you to use .macs commenting service with your weblog editor of choice. What? You havent heard that .mac includes a commenting service? Its not exactly an advertised feature.

With iLife 06, Apple introduced a new application called iWeb, which allows you to create nice-looking websites. iWeb includes templates for weblogs, and allows you to write, edit, and manage your weblog entries straight from iWeb. Of course, one of the most popular additions to weblogs is the ability for readers to leave comments using some sort of feedback system. iWeb 1.0 didnt include such a feature, but in April, Apple released iWeb 1.1, which included support for comments. Apple built their own commenting system, exclusively for iWeb weblogs that are published on .mac. Unfortunately, theres no other weblog editor besides iWeb thats been able to use the .mac comments system.

Until now. Dot Comments unlocks the power of the .mac commenting system and allows you to use it with the weblog editor of your choice.
19

TalkBack Comments and Guestbook


script PHP Free
View Detail
Download TalkBack Comments and GuestbookDownload TalkBack Comments and Guestbook
TalkBack was developed specifically to detect and prevent spam comments. It is a richly featured PHP comments and guestbook system using a mySQL database. Visit website to see demo and user guide. It features comment spam detection, visitor subscriptions, email notices, option to approve comments, pagination, flood protection, customizable templates that can differ by website page, configuration options, CSS styling, valid HTML 4.01, language files, easy yet powerfull administration and simple automated installation. TalkBack is an on-going project under continuing development and support by the author. And it is free!
20

MySpace Image Comments Script


script PHP $20.00
View Detail
Download MySpace Image Comments ScriptDownload MySpace Image Comments Script
This is probably the easiest script you can get to run a full MySpace Image Comments website. MySpace users love to leave image comments for each other and this script will let you provide thousands of images with html linking codes for all myspace users. Browse by category and copy the html code provided then paste it into a myspace comment box. Each image links back to your site so all of your users will promote the site for you. Very easy to use and no mysql database needed!

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search