Main > Free Download Search >

Free web perl software for linux

web perl

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7942
Web 1.35

Web 1.35


Web Perl module contains a set of useful routines for many webworking purposes. more>>
Web Perl module contains a set of useful routines for many webworking purposes.

This module was primarily made for UNIX/Linux-Systems. Parts of it cannot be used on other systems. E.g. the procedures for file locking demand systems that can use symlinks. If you use the modul on systems where symlinks cannot be used, fatal errors may happen.

ABSTRACT

This perl module serves users with several useful routines for many purposes, like generating webpages, processing CGI scripts, working with XML datafiles and net-connections. It also uses own variants of routines, that was invented first in the famous libraries CGI.pm and cgi-lib.pl.

INSTALLATION

If you dont have sufficient privileges to install web.pm in the Perl library directory, you can put web.pm into some convenient spot, such as your home directory, or in cgi-bin itself and prefix all Perl scripts that call it with something along the lines of the following preamble:

use lib /home/myname/perl/lib;
use web;

NLock

This routine allows to set a filelock across NFS-boundaries. The common used perl-routine flock() fails at this point, so this routine is a useable alternative for bigger file-systems. It uses the modular functions link() and unlink() to mark a file locked. In addition to this, it also gives the locked file a counter: A file that is locked for more than $web::MAX_LOCKTIME seconds will be freed by the next process that calls NLock() on this file. A calling process gets either 0 or 1 as a return value, where 1 is returned if the file-locking was successful. 0 is returned only if the process waits for more than $web::MAX_WAITLOCK seconds or if symlink() fails.

Example 1:

$filename = "data.txt";
NLock($filename);
open(f1,"$filename");
# do something
close f1;
NUnlock($filename);

Example 2:

#!/local/bin/perl5
use web;

$stat= &NLock("jump.pl");
print "Lock: stat= $statn";
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
sleep 8;
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
$stat= &NUnlock("jump.pl");
print "Unlock: stat= $statn";
exit;

<<less
Download (0.017MB)
Added: 2007-07-21 License: Perl Artistic License Price:
864 downloads
Perl OS 4

Perl OS 4


Perl OS is a program written in Perl/Tk, designed to look like a simple operating system. more>>
Perl OS is a program written in the Perl programming language combined with the Perl module Tk.

Perl OS was created to make an easy interface to run Perl/Tk programs. It was also created to be an easy working environment complete with a text editor, paint program, and more.

The program comes with several programs, along with a utility to add many more which can be found on the Internet.

From the outside, Perl OS looks like a simple operating system. But inside, it is a powerful system for working with Perl and Tk.

For more details please visit the Perl OS home page:

http://perlos.sourceforge.net/

<<less
Download (0.14MB)
Added: 2007-08-04 License: GPL v3 Price:
812 downloads
Facebook Perl 0.0.0pre1

Facebook Perl 0.0.0pre1


Facebook Perl has opened up an API to get access to some of the features of their site. more>>
Facebook Perl has opened up an API to get access to some of the features of their site. Facebook Perl provides a Perl library to access this.
Enhancements:
- This is the first version written. It is currently being used on a (seemingly stable) site, albeit an incredibly simple one.
- There are no known bugs, and while it offers very little of an API, it is probably currently feature-complete (compared with equivalent libraries).
<<less
Download (MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1148 downloads
Perl 5.8.8

Perl 5.8.8


Perl is a high-level, general-purpose programming language. more>>
Perl is a stable, cross platform programming language. Perl project is used for mission critical projects in the public and private sectors and is widely used to program web applications of all needs.
Main features:
- Perl is a stable, cross platform programming language.
- It is used for mission critical projects in the public and private sectors.
- Perl is Open Source software, licensed under its Artistic License, or the GNU General Public License.
- Perl was created by Larry Wall.
- Perl 1.0 was released to usenets alt.comp.sources in 1987
- PC Magazine named Perl a finalist for its 1998 Technical Excellence Award in the Development Tool category.
- Perl is listed in the Oxford English Dictionary.
- Perl takes the best features from other languages, such as C, awk, sed, sh, and BASIC, among others.
- Perls database integration interface (DBI) supports third-party databases including Oracle, Sybase, Postgres, MySQL and others.
- Perl works with HTML, XML, and other mark-up languages.
- Perl supports Unicode.
- Perl is Y2K compliant.
- Perl supports both procedural and object-oriented programming.
- Perl interfaces with external C/C++ libraries through XS or SWIG.
- Perl is extensible. There are over 500 third party modules available from the Comprehensive Perl Archive Network (CPAN).
- The Perl interpreter can be embedded into other systems.
- Perl is the most popular web programming language due to its text manipulation capabilities and rapid development cycle.
- Perl is widely known as "the duct-tape of the Internet".
- Perls CGI.pm module, part of Perls standard distribution, makes handling HTML forms simple.
- Perl can handle encrypted Web data, including e-commerce transactions.
- Perl can be embedded into web servers to speed up processing by as much as 2000%.
- mod_perl allows the Apache web server to embed a Perl interpreter.
- Perls DBI package makes web-database integration easy.
<<less
Download (11.9MB)
Added: 2006-02-02 License: Artistic License Price:
1375 downloads
LibCVS Perl 1.00.02

LibCVS Perl 1.00.02


LibCVS Perl simplifies the job of writing tools around CVS by providing Perl libraries. more>>
LibCVS Perl simplifies the job of writing tools around CVS by providing Perl libraries that programmers can access directly in their code.
Its current focus is libraries that use the cvsclient protocol to talk to a CVS server and are targetted at the development of client applications.
Libraries that understand the RCS file format and provide fast server-side access are a future possibility.
Enhancements:
- The ability to apply tags is now included.
- A new script, lcvs-tagbase, is included to apply a base tag to existing branches.
<<less
Download (0.085MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1473 downloads
Code::Perl 0.03

Code::Perl 0.03


Code::Perl is a Perl module to produce Perl code from a tree. more>>
Code::Perl is a Perl module to produce Perl code from a tree.

SYNOPSIS

use Code::Perl::Expr qw( :easy );

my $c = derefh(scal(hash), calls(getkey));

print $c->perl; # ($hash)->{getkey()}

Code::Perl allows you to build chunks of Perl code as a tree and then when youre finished building, the tree can output the Perl code. This is useful if you have built your own mini-language and you want to generate Perl from it. Rather than generating the Perl at parse time and having to worry about quoting, escaping, parenthese etc, you can just build a tree using Code::Perl and then dump out the correct Perl at the end.

<<less
Download (0.017MB)
Added: 2006-10-05 License: Perl Artistic License Price:
1127 downloads
OpenGeoDB Perl module 0.4

OpenGeoDB Perl module 0.4


OpenGeDB Perl module is a module to access the OpenGeoDB database and calculate all ZIP codes in a certain radius. more>>
OpenGeDB Perl module is a module to access the OpenGeoDB database and calculate all ZIP codes in a certain radius.

<<less
Download (0.003MB)
Added: 2007-03-01 License: Perl Artistic License Price:
968 downloads
libwww-perl 5.64

libwww-perl 5.64


libwww-perl distribution is a collection of Perl modules. more>>
libwww-perl distribution is a collection of Perl modules, which provides a simple and consistent programming interface (API) to the WWW (World-Wide Web).
The main focus of the library is to provide classes and functions that allow you to write WWW clients, thus libwww-perl is said to be a WWW client library. The library also contains modules that are of more general use.
Enhancements:
Simplified the Makefile.PL:
- the scripts are not longer *.PL files
- dont try to make symlinks for GET, HEAD, POST as that has not worked for a long time
- the GET, HEAD, POST aliases for lwp-request should now work on Windows.
HTTP::Cookies:
- added clear_temporary_cookies method; patch by Mike Schilli.
- trailing space in old cookie parameters not ignored; patch by Ivan Panchenko
- protect against $SIG{__DIE__} handlers; patch by Adam Newby.
LWP::Authen::Digest:
- abort digest auth session if we fail repeatedly with the same username/password.
- MacOS portability patches to the test suite by Chris Nandor.
<<less
Download (0.15MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1281 downloads
Perlbug 2.93

Perlbug 2.93


Perlbug is a Perl module that contains PerlBug database specification. more>>
Perlbug is a Perl module that contains PerlBug database specification.

Bug, and problem management, tracking system, written in perl.
Currently using Mysql, probably running on Linux with Apache.
For installation instructions see the INSTALL file.

SYNOPSIS

Note that the given addresses are configurable for individual sites, treat these examples of current usage as defaults.

New bugs are created by mailing perlbug@perl.org or perlbug@perl.com

Said bug is entered in the database, and given a new bugid, the mail is then forwarded to perl5-porters with the bugid in the subject line..

perl5-porters(p5p) is continously tracked for relevant mails to attach to said bug.

There are web(http://bugs.perl.org), email(bugdb@perl.org and help@bugs.perl.org), command line(bugdb) and Tk (bugtk) frontends to query and administrate the bugs. See scripts below.

Regular overviews are emailed to p5p, and outstanding bugs are mailed to active admins for their attention.

All modules have perldocs embedded, to browse at your leisure.

perl -MPerlbug::Base -e "print

Perlbug::Interface::Cmd->new()->object(bug)->read(19870502.007)->format(A)"

<<less
Download (0.49MB)
Added: 2007-05-09 License: Perl Artistic License Price:
899 downloads
XAO::Web 1.07

XAO::Web 1.07


XAO::Web is a Perl module for XAO Web Developer, dynamic content building suite. more>>
XAO::Web is a Perl module for XAO Web Developer, dynamic content building suite.
XAO::Web is a part of XAO open source web services suite. It allows to build dynamic web content using data, templates and external input.
The distinguishing feature of XAO::Web is in its modular design where almost every aspect of functionality can be altered and alterations can be re-used. No complex code is embedded in the templates which allows to upgrade code and templates separately or maintain multiple visual representations of the same functionality at the same time.
Aside from that most interesting features of XAO::Web are:
- Perl code is not mixed with templates. Templates can be normal HTML files if no processing is required.
- A specific site can replace or modify standard XAO::Web objects if required by overriding or extending their methods. You do not need to re-implement entire object to make a site specific change.
- In case of system object upgrade or bug fix there is no need to alter site-specific changes normally.
- Site can create any extension objects or embed third-party extensions as well.
- One server can serve arbitrary number of XAO::Web sites each with however extended functionality without creating any conflicts. That includes different modifications to the system objects for different sites.
- Not limited to Web environment, allows to build any dynamic content -- content of mail messages or reports for instance.
- Works with CGI or mod_perl (mod_perl is recommended for production grade sites).
If used in mod_perl mode improves performance by using caching of configuration, parsed templates, database handlers and so on.
- XAO::Web is by default integrated with XAO::FS (see XAO::FS) as a database layer, but this is not a requrement -- if for any reason a different database must be used for a site it can be easily and gracefully achieved.
- Hosting providers can allow their customers to build very complex sites without allowing them to execute arbitrary code, by allowing to modify only templates.
<<less
Download (0.11MB)
Added: 2006-09-01 License: Perl Artistic License Price:
1150 downloads
Web-FTP 2.2.1

Web-FTP 2.2.1


Web-FTP is a Perl/CGI FTP client. more>>
Web-FTP 1.5.x introduces Crytpo Card support, and also some support for connecting to MS ftp servers.

Crypto card support allows people to connect to ftp servers that use crypto card security. Lemme know if it works for you.

Web-FTP is a fully featured ftp client designed for secure file management when used in conjunction with an SSL enabled web server.

As a secondary function it can serve as an FTP client for users whos firewalls block FTP, since all communication is through the HTTP protocol.

Once you log in to Web-FTP it retains a session, which runs locally on your server, subsequent calls to the cgi (with the proper cookie) reconnect you to your session, therefore maintaining state.

Since everything passes through a cgi, if you put that CGI on a secure web-server you will have secure ftp (as long as the ftp is the same machine as the http server, or is behind a firewall).
<<less
Download (0.042MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1655 downloads
WebAPP 0.9.9.7

WebAPP 0.9.9.7


WebAPP stands for Web Automated Perl Portal. more>>
WebAPP stands for Web Automated Perl Portal.
Main features:
- topics
- forums
- instant messaging
- "whos online"
- download sections
- link sections
- wireless and Palm Pilot support
- integrated newsletters
- complete site administration
- admin database backups
- multiple language support
- customization
- password encryption
- polls
- administration blocks and language administration
- IP banning
- multiple spambot protection
Enhancements:
- This release adds a Forum Archives Search feature, fixes for Perl warnings throughout, fixes for bugs on archived lists in various places, and security work, including a solution for a recent issue with cookie editing and username hijacking which ultimately resulted in "Monty53 of Turkey" overtaking the admin account at web-app.org and editing the front page welcome message and news.
- This is no longer possible if the site administrator takes advantage of the new security options in this release.
<<less
Download (MB)
Added: 2007-03-30 License: GPL (GNU General Public License) Price:
939 downloads
mod_perl 2.0.3

mod_perl 2.0.3


mod_perl brings together the full power of the Perl programming language and the Apache HTTP server. more>>
mod_perl project brings together the full power of the Perl programming language and the Apache HTTP server. You can use Perl to manage Apache, respond to requests for web pages and much more.

mod_perl gives you a persistent Perl interpreter embedded in your web server. This lets you avoid the overhead of starting an external interpreter and avoids the penalty of Perl start-up time, giving you super-fast dynamic content.

As youd expect from the Perl community, there are hundreds of modules written for mod_perl, everything from persistent database connections, to templating sytems, to complete XML content delivery systems. Web sites like Slashdot and Wired Magazine use mod_perl.

mod_perl is an Apache Software Foundation project. It is licensed under the Apache Software License.
<<less
Download (3.5MB)
Added: 2006-11-29 License: The Apache License Price:
1062 downloads
Perl OpenID 1.1

Perl OpenID 1.1


Perl OpenID is a perl module for verifying OpenID identities. more>>
Perl OpenID is a perl module for verifying OpenID identities.
Main features:
- asy-to-use API
- Does not depend on underlying web framework
- Extensive documentaion
- Ready-to-use store implementation
- Test suite
- Licensed under the LGPL
Enhancements:
- This release contains a tested, documented library with support for OpenID extensions and Yadis.
- There are examples for both the consumer and server.
<<less
Download (0.057MB)
Added: 2006-06-15 License: LGPL (GNU Lesser General Public License) Price:
1227 downloads
gtk2-perl 1.151

gtk2-perl 1.151


gtk2-perl is the collective name for a set of perl bindings for Gtk+ 2.x and various related libraries. more>>
gtk2-perl project is the collective name for a set of perl bindings for Gtk+ 2.x and various related libraries. These modules make it easy to write Gtk and Gnome applications using a natural, perlish, object-oriented syntax.

This set of extension modules gives the Perl developer full access to the gtk+ widget set and several gnome libraries in a perlish, object-oriented way.

You can create new widgets and non-gui objects, and do just about anything you can do in C. We also include POD for every object (installed as manpages), and provide tools for binding other GObject-based libraries to Perl.

<<less
Download (0.65MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1180 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5