Main > Free Download Search >

Free comment software for linux

comment

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 930
coComment! 2.0

coComment! 2.0


coComment! is a Firefox extension that allows you to activate coComment! from the right-click context menu. more>>
coComment! is a Firefox extension that allows you to activate coComment! from the right-click context menu and reduces your onscreen movement time so that you dont have to move all the way from the comment text box to the Bookmarks and then back to the Submit button.

<<less
Download (0.010MB)
Added: 2007-05-04 License: MPL (Mozilla Public License) Price:
903 downloads
Acme::Comment 1.02

Acme::Comment 1.02


Acme::Comment is a Perl module that allows multi-line comments which are filtered out. more>>
Acme::Comment is a Perl module that allows multi-line comments which are filtered out.

SYNOPSIS

use Acme::Comment type=>C++, own_line=>1;

/*
if (ref $mod) {
$bar->{do}->blat(msg => blarg);
eval {

im sooo sick of this time for some coffee

*/

// I prefer beer. --sqrn

Unlike the pseudo multi-line comment if (0) {}, the code being commented out need not be syntactically valid.

<<less
Download (0.007MB)
Added: 2007-06-11 License: Perl Artistic License Price:
867 downloads
Comment Script 1.0

Comment Script 1.0


Comment Script is a script that allows comments to be left on any existing PHP or HTML page. more>>
Comment Script is a script that allows comments to be left on any existing PHP or HTML page. By default, Comment Script shows name, e-mail, homepage, title, and comment fields, though any can be disabled.
The "comment" field is mandatory and must be filled out before the form can be submitted. In order to prevent the script from being abused by automatic spam bots, you can enable the CAPTCHA feature.
The script then asks your visitors to enter a text they see in the image below the comment form into an input box. It also features an admin area where comments can be edited and deleted and the front-end language set.
Main features:
- Visitors can enter a name, e-mail, homepage, comment title and comment text
- Comment script can be included in existing web pages
- To prevent comment spam you can enable the Captcha feature
- Admin area for editing and deleting comments
- Completely template driven
- Installation routine
How the script works:
Once you have the script installed on your server you can include it in any existing PHP or HTML page. By default the script shows the form fields "name", "E-mail", "Homepage", "Title", and "Comment". You are free to remove some of the fields and only leave the ones you want.
The field "Comment" is mandatory and the form will not submit until that field has been filled out.
In order to prevent the script from being abused by automatic spam bots, you can enable the Captcha feature. The script then asks your visitors to enter a text they see in the image below the comment form into an input box. The comment will only be submitted if the strings match. Visitors have to ensure that their browser support and accept cookies, otherwise the comment cannot be verified.
The script also features an admin area where comments can be edited and deleted. Also there is a section for settings where you can set the front end language as well as the admin account.
<<less
Download (0.31MB)
Added: 2006-08-08 License: Free for non-commercial use Price:
1183 downloads
Photocomments 0.1

Photocomments 0.1


Photocomments project convert various forms of comments / descriptions from digital photos. more>>
Photocomments project convert various forms of comments and descriptions from digital photos.
Supports descript.ion files (as used by ACDsee), jpeg internal comments and CSV files for use with gallery
Written in perl. Uses ImageMagick for the jpeg comment stuff.
Main features:
- Convert different forms of comments for jpeg photos.
- Why? One picture viewer is good for editing comments, another one is good for viewing the images and then theres my online gallery, which should also use the comments as captions.
- Can read descript.ion files (acdsee) and jpeg comments
- can write: descript.ion files, jpeg comments, gallery-csv-files (needed for import to gallery)
- Caveeat: Cannot handle filenames with spaces.
<<less
Download (0.010MB)
Added: 2006-01-26 License: GPL (GNU General Public License) Price:
1367 downloads
File::Comments 0.07

File::Comments 0.07


File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments. more>>
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.

<<less
Download (0.012MB)
Added: 2007-06-09 License: Perl Artistic License Price:
868 downloads
Pod::InComments 0.9

Pod::InComments 0.9


Pod::InComments is a Perl extension for extracting POD documentation from comments in config file. more>>
Pod::InComments is a Perl extension for extracting POD documentation from comments in config file.

SYNOPSIS

use Pod::InComments;
my $podparser = Pod::InComments->new( comment => ; );
$podparser->ParseFile( $my_config_file );
$podparser->Pod2Hash();

my $helptext = $podparser->Pod4Section( $section , $key );

This module was written to solve the problem of describing numerous parameters in a config file. When you add comments to the config file, it becomes a mess quickly. And no-one will take the time to properly read them. You can not add POD directly. So..... here is Pod::InComments.

It was developed when using Config::IniFiles format, so lets take that as the basis. The Config::IniFiles module lets you use config files in the form of the popular windows ini file. That is, they look like

[section]
param1=some value
param2 = another value
param3=20.00

; this is a comment
[operating system]
preferred=Linux
using=Windows XP Pro

METHODS

new( comment => # )

Constructor of the class. Specify the comment character(s) used in the config file. Defaults to ;. You can use whatever you like here. So #### is valid as well, but requires more typing in the config.

ParseFile( $config_file )

Parses the $config_file and extracts all the comment lines. The comment character(s) are stripped of each line. It returns a string with all the POD.

Pod2Hash()

After parsing a config file, you will need to call this function to convert the POD into a hash. The keys of the hash are the head1 titles. If head2 elements are present, they will be subkeys of the hash.

Pod4Section( $section, $param )

Returns the POD belonging to the $section, or to $param of $section.

E.g., when your config file looks like:

;=head1 cpu
;
;Specifies cpu settings for normal boxes
;note that these will override factory settings!
;
;=head2 maxload
;
;The maxload setting gives an upperbound on how hard
;the CPU can be pushed.

[cpu]
maxload=4.0

then doing:

my $pod = $podparser->Pod4Section( cpu, maxload );

will give you:

The maxload setting gives an upperbound on how hard the CPU can be pushed.

SavePod( $file )

Saves the extracted pod to the $file. If you omit a file name, it will append .pod to the config file you parsed and saves to that file.

GetPod()

Returns the entire POD formatted in text.

DisplayPod()

Prints the entire extracted POD documentation to STDOUT.

<<less
Download (0.005MB)
Added: 2007-05-08 License: Perl Artistic License Price:
899 downloads
Plone Comments 2.2.1

Plone Comments 2.2.1


Plone Comments provides a product developed to improve moderation of comments in Plone. more>>
Plone Comments provides a product developed to improve moderation of comments in Plone.
Main features:
- 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.
Enhancements:
- Ukrainian translation added
- added qPloneCaptchas-1.0 integration/compatibility
- fixed reinstall procedure
<<less
Download (0.037MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
943 downloads
Smart::Comments 1.0.2

Smart::Comments 1.0.2


Smart::Comments are comments that do more than just sit there. more>>
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<<less
Download (0.013MB)
Added: 2007-01-22 License: Perl Artistic License Price:
1011 downloads
Flickr Follow Comment 0.4

Flickr Follow Comment 0.4


Flickr Follow Comment is a Greasemonkey script that improves Flickrs Comments Youve Made page. more>> <<less
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1033 downloads
Rsync::Config::Comment 0.3.1

Rsync::Config::Comment 0.3.1


Rsync::Config::Comment is a Perl module with comments as objects. more>>
Rsync::Config::Comment is a Perl module with comments as objects.

SYNOPSIS

my $com1 = new Rsync::Config::Comment(value => this module is private);
$com1->to_string();

prints:

< TAB >#this module is private

SUBROUTINES/METHODS

new

This class inherits from Rsync::Config::Blank. Please read Rsync::Config::Blank documentations for more details.

to_string

returns a stringified version of the comment.

<<less
Download (0.022MB)
Added: 2007-01-18 License: Perl Artistic License Price:
1009 downloads
Regexp::Common::comment 2.120

Regexp::Common::comment 2.120


Regexp::Common::comment is a Perl module that provide regexes for comments. more>>
Regexp::Common::comment is a Perl module that provide regexes for comments.

SYNOPSIS

use Regexp::Common qw /comment/;

while () {
/$RE{comment}{C}/ and print "Contains a C commentn";
/$RE{comment}{C++}/ and print "Contains a C++ commentn";
/$RE{comment}{PHP}/ and print "Contains a PHP commentn";
/$RE{comment}{Java}/ and print "Contains a Java commentn";
/$RE{comment}{Perl}/ and print "Contains a Perl commentn";
/$RE{comment}{awk}/ and print "Contains an awk commentn";
/$RE{comment}{HTML}/ and print "Contains an HTML commentn";
}

use Regexp::Common qw /comment RE_comment_HTML/;

while () {
$_ =~ RE_comment_HTML() and print "Contains an HTML commentn";
}

Please consult the manual of Regexp::Common for a general description of the works of this interface.

Do not use this module directly, but load it via Regexp::Common.

This modules gives you regular expressions for comments in various languages.

<<less
Download (0.11MB)
Added: 2007-06-06 License: Perl Artistic License Price:
873 downloads
Digg.com Comment Spotlight 2.0

Digg.com Comment Spotlight 2.0


Digg.com Comment Spotlight is an extension which does exactly what its name hints, it spots Digg comments. more>>
Digg.com Comment Spotlight is an extension which does exactly what its name hints, it spots Digg comments.

Digg Comment Spotlight does exactly what its name hints, it spots comments that other readers have taken the time to Digg, allowing you to easily wade through 100s of comments in an article.

<<less
Download (0.06MB)
Added: 2007-04-06 License: MPL (Mozilla Public License) Price:
934 downloads
XML::Mini::Element::Comment 1.2.8

XML::Mini::Element::Comment 1.2.8


XML::Mini::Element::Comment is used internally to represent <!-- comments -->. more>>
XML::Mini::Element::Comment is used internally to represent .

You shouldnt need to use it directly, see XML::Mini::Elements comment() method.

<<less
Download (0.034MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
953 downloads
File::Comments::Plugin::C 0.06

File::Comments::Plugin::C 0.06


File::Comments::Plugin::C is a plugin to detect comments in C/C++ source code. more>>
File::Comments::Plugin::C is a plugin to detect comments in C/C++ source code.

SYNOPSIS

use File::Comments::Plugin::C;

File::Comments::Plugin::C is a plugin for the File::Comments framework.
Both /* ... */ and // style comments are recognized.

This is not a full-blown C parser/preprocessor yet, so it gets easily confused (e.g. if c strings contain comment sequences).

<<less
Download (0.012MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
File::Comments::Plugin::Java 0.07

File::Comments::Plugin::Java 0.07


File::Comments::Plugin::Java is a Perl plugin to detect comments in Java source code. more>>
File::Comments::Plugin::Java is a Perl plugin to detect comments in Java source code.

SYNOPSIS

use File::Comments::Plugin::Java;

File::Comments::Plugin::Java is a plugin for the File::Comments framework.
Both /* ... */ and // style comments are recognized.

This is not a full-blown C parser/preprocessor yet, so it gets easily confused (e.g. if c strings contain comment sequences).

<<less
Download (0.012MB)
Added: 2007-06-04 License: Perl Artistic License Price:
872 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5