Main > Free Download Search >

Free mod auth pipe 1.0 software for linux

mod auth pipe 1.0

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3518
Qute 3++ (custom mod) 1.4.7.20090313

Qute 3++ (custom mod) 1.4.7.20090313


Simple and unobtrusive theme with clear, colorful icons. more>>
Qute 3++ (custom mod) 1.4.7.20090313 offers you a plain and unobtrusive theme for Firefox with clear, colorful icons. This is recreated from the original Qute 3 one, to work on Firefox 3.0 and 3.1 nightlies.

Enhancements: Not many changes in this version, updated the base files to the latest 3.1 branch nightly build, and updated the compat. to include b4pre.

Requirements: Mozilla Firefox

<<less
Added: 2009-03-16 License: MPL Price: FREE
1087 downloads
mod_auth_pipe 1.0

mod_auth_pipe 1.0


mod-auth-pipe is a module of authentication written for Apache 1 (it hasnt been tested with Apache 2, but it may work). more>>
mod-auth-pipe is a module of authentication written for Apache 1 (it hasnt been tested with Apache 2, but it may work).

Actually, this module is just mod-auth-shadow with a few modifications in order to accept any program as a pipe, letting this one validate both users andr groups.

mod_auth_pipe contents the module itself and an example pipe.

mod-auth-pipe can be configured independantly for whole server, for any VirtualHost or just per Location/Directory. It has very few configuration variables and its format is very simple. In order to configure apache to authenticate, for example, access to the administrative interface of oscommerce you can type this on your httpd.conf:

< Directory /var/www/oscommerce/catalog/admin >
AuthType Basic
AuthName osCommerce admin site
AuthPipe on
AuthPipeProgram /usr/local/bin/auth-pipe
require group oscommerce-admins
< /Location >

This way, and with a well-made auth-pipe program you can be sure that only those within the group oscommerce-admins could enter that section of your web.

<<less
Download (0.019MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1289 downloads
mod-log-spread2 0.0beta1

mod-log-spread2 0.0beta1


mod-log-spread2 is an Apache 2.x module for logging into spread framework. more>>
mod-log-spread2 is an Apache 2.x module for logging into spread framework.

mod-log-spread2 doesnt support fallback hosts, and virtual host groups.

<<less
Download (0.021MB)
Added: 2006-05-31 License: The Apache License 2.0 Price:
1246 downloads
Pipe Viewer 1.0.1

Pipe Viewer 1.0.1


Pipe Viewer is a pipeline data transfer meter. more>>
Pipe Viewer project is a terminal-based tool for monitoring the progress of data through a pipeline.

It can be inserted into any normal pipeline between two processes to give a visual indication of how quickly data is passing through, how long it has taken, how near to completion it is, and an estimate of how long it will be until completion.

pv is now considered to be stable code: it appears to work reliably on systems it has been tested on.
<<less
Download (0.037MB)
Added: 2007-08-07 License: Artistic License Price:
819 downloads
Harmony Mod 1.1

Harmony Mod 1.1


Harmony Mod provides an extension for Mozilla Firefox, that adds new features to Logitech Harmony web site. more>>
Harmony Mod provides an extension for Mozilla Firefox, that adds new features to Logitech Harmony web site.

Harmony Mod is an extension for Mozilla Firefox, that adds new features to Logitech Harmony web site, used to configure Harmony Remote Control:

1. Reorder custom buttons (activities and devices);
2. Remove disturbing scrollbar around the buttons (activities and devices);
3. Direct access to buttons screen from home page (activities and devices).

<<less
Download (0.032MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
933 downloads
Pipe-Sem 1.0

Pipe-Sem 1.0


This is a pipe based semaphore implementation for developing ASYNC applications. more>>

Pipe-Sem 1.0 is a good utility which might help you a lot in developing ASYNC applications. Many synchronization primitives are available for Unix systems, but any of them expose a pollable interface to the user. In these cases, if the caller execute a down operation on a blocking semaphore, the application will sleep and whole ASYNC loop will starve because of the wait.

To cope with this problem in ASYNC software, the publisher developed a pipe based semaphore implementation, called Pipe-Sem. The implementation is trivially simple and it uses the pipe internal mechanisms to expose a pollable wait interface.

Besides the standard semaphore operations, the function psem_down_fd() can be used to retrieve a files descriptor that can be dropped inside a Unix pollable API like select(2), poll(2) or epoll(2). The caller will have to wait for input events (POLLIN), and when receiving the event itself, the caller should invoke the psem_try_down() function to try to acquire the semaphore.

Please note that receiving an event from the pollable interface, does not mean that we acquired to semaphore, and the function psem_try_down() will have to be called (and tested for zero return code) to correctly complete the down operation.

<<less
Added: 2008-04-08 License: GPL Price: FREE
1 downloads
mod-apache-snmp 1.03

mod-apache-snmp 1.03


Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP. more>>
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP.
Enhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
<<less
Download (0.032MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1533 downloads
mod-vhost-ldap 1.0

mod-vhost-ldap 1.0


mod-vhost-ldap is an Apache 2.x module for storing and configuring virtual hosts from LDAP. more>>
mod-vhost-ldap is an Apache 2.x module for storing and configuring virtual hosts from LDAP. mod-vhost-ldap project supports DocumentRoot, ScriptAlias, ServerName, ServerAlias, ServerAdmin, and SuexecUserGroup directives.

Its built on top of mod_ldap, so it uses its caching capabilities and can be used with a threaded Apache httpd.
<<less
Download (0.007MB)
Added: 2006-01-31 License: The Apache License 2.0 Price:
1365 downloads
IO::Pipe::Producer 1.5

IO::Pipe::Producer 1.5


IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer. more>>
IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer.

SYNOPSIS

# Module which provides 2 methods: getSubroutineProducer
# and getSystemProducer. They take a subroutine reference
# (with associated arguments) and a system call
# respectively and return (blessed) handles on their
# streaming standard output and standard error output.


# EXAMPLES of usage

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
$stdout_fh =
$obj->getSubroutineProducer($subroutine_reference,
@subroutine_parameters);

# OR

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
($stdout_fh,$stderr_fh) =
$obj->getSubroutineProducer($subroutine_reference,
@subroutine_parameters);

# OR

use IO::Pipe::Producer;
$stdout_fh = new IO::Pipe::Producer($subroutine_reference,
@subroutine_parameters);

# OR

use IO::Pipe::Producer;
($stdout_fh,$stderr_fh) =
new IO::Pipe::Producer($subroutine_reference,
@subroutine_parameters);

# Then you can read the returned handles like any other
# file handle...

while()
{print "STDOUT From Producer: $_"}
while()
{print "STDERR From Producer: $_"}

# You can also do the same thing with system calls using
# the getSystemProducer subroutine. However, this feature
# is not accessible via the new constructor

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
$stdout_fh =
$obj->getSystemProducer("echo "Hello World!"");

use IO::Pipe::Producer;
$obj = new IO::Pipe::Producer();
($stdout_fh,$stderr_fh) =
$obj->getSystemProducer("echo "Hello World!"");

# However, this is exactly the same as:

use IO::Pipe::Producer;
$stdout_fh = new Producer(sub{system(@_)},
"echo "Hello World!"");

# OR

use IO::Pipe::Producer;
($stdout_fh,$stderr_fh) =
new IO::Pipe::Producer(sub{system(@_)},
"echo "Hello World!"");

<<less
Download (0.006MB)
Added: 2007-02-20 License: Perl Artistic License Price:
979 downloads
fortune-mod-calvin 0.1.1

fortune-mod-calvin 0.1.1


fortune-mod-calvin is a fortune cookie file with quotes from Calvin and Hobbes. more>>
fortune-mod-calvin project is a fortune cookie file with quotes from Calvin and Hobbes.

fortune-mod-calvin is a compilation of quotes from Bill Wattersons fantastic "Calvin and Hobbes" comic strip.

The quotes have been compiled from various sources on the Web.

<<less
Download (0.006MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1047 downloads
snd123 1.0.1

snd123 1.0.1


snd123 is a simple command line audio player. more>>
snd123 is a simple command line audio player that supports MP2, MP3, AAC, Ogg Vorbis, Speex, FLAC, Apple Lossless, AC3, CDDA, WMA 1 and 2, MOD, XM, IT, S3M, 669, MTM, and STM.

Supported Formats:

MP2, MP3, AAC, Ogg Vorbis, Speex, FLAC, Apple Lossless, AC3, CDDA, WMA 1 and 2.
MOD formats: MOD, XM, IT, S3M, 669, MTM, STM.

<<less
Download (2.3MB)
Added: 2005-09-22 License: GPL (GNU General Public License) Price:
1503 downloads
Crystal Vista XT Paolo Icon Mod 1.5

Crystal Vista XT Paolo Icon Mod 1.5


Crystal Vista XT Paolo Icon Mod is a mouse cursor theme. more>>
Crystal Vista XT Paolo Icon Mod is NOT my theme, I modified Vista Inspirate, Crystal Clear, Nuove XT and other Icons like Debian Icons, Firefox Alternative and much more.

I take my favourite icons from these Icons-theme and I create my Mod, Crystal Vista XT Paolo Mod.

Vista Inspirate is created by Saki
(http://www.kde-look.org/content/show.php?content=31585)

Crystal Clear is created by Everaldo
(http://www.kde-look.org/content/show.php?content=25668)

Nuove XT is created by Saki
(http://www.kde-look.org/content/show.php?content=26449)

OsX is created by kiddo
(http://www.gnome-look.org/content/show.php?content=31618)

Debian Icons is created by OnkelchenTobi
(http://www.kde-look.org/content/show.php?content=26430)

Sparkling Icon Folder (for non debian linux) is created by flow:
(http://www.kde-look.org/content/show.php?content=9245)
<<less
Download (17.6MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
690 downloads
CGI::Builder::Auth::GroupAdmin 0.06

CGI::Builder::Auth::GroupAdmin 0.06


CGI::Builder::Auth::GroupAdmin is a Perl module for the management of HTTP server group databases. more>>
CGI::Builder::Auth::GroupAdmin is a Perl module for the management of HTTP server group databases.

SYNOPSIS

use CGI::Builder::Auth::GroupAdmin ();

Pay no attention to that man behind the curtain! Move along, nothing to see here!

This module was originally part of the HTTPD-User-Manage collection, which is available on CPAN. If you want to use it, go download that package. This module is used as part of the internal implementation of CGI::Builder::Auth.

The original documentation is preserved here in this release for historical purposes. The software has been hacked and this documentation is not guaranteed to be correct. The module may disappear from the CGI::Builder::Auth distribution in a future release.

Do not use it directly or rely on it.
This software is meant to provide a generic interface that hides the inconsistencies across HTTP server implementations of user and group databases.

<<less
Download (0.050MB)
Added: 2007-03-14 License: Perl Artistic License Price:
954 downloads
fortune-mod-powerpuff 0.3

fortune-mod-powerpuff 0.3


fortune-mod-powerpuff project consists of fortune cookies from the Power Puff Girls. more>>
fortune-mod-powerpuff project consists of fortune cookies from the Power Puff Girls.

fortune-mod-powerpuff is a compilation of quotes from the Cartoon Network series "Power Puff Girls". The quotes have been compiled from various sources on the Web.

Examples:

Narrator: Sugar .. Spice .. and everything Nice
These are the ingredients to the perfect little girl.
But Professor Utonium accidentally added one ingredient to the
concoction: Chemical X
Thus, the Powerpuff Girls were born. Using their ultra superpowers,
Blossom, Bubbles, and Buttercup have dedicated their lives to
fighting crime and the forces of evil!

Blossom: Oh ... um ... excuse me, Mr. Zombie, sir.
Abracadaver: Wha.?
Blossom: Could you stop destroying Townsville with your evil zombie magic?
Bubbles, Buttercup: Please?

Slug: Fashionably late again, I see. So fashionable you missed the party.


<<less
Download (0.016MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1051 downloads
fortune-mod-southpark 0.2

fortune-mod-southpark 0.2


fortune-mod-southpark project consists of a fortune file with quotes from South Park. more>>
fortune-mod-southpark project consists of a fortune file with quotes from South Park.
South Park Fortunes is a package containing various quotes from "South Park: Bigger, Longer, and Uncut" in the UNIX fortune file format.
Examples:
Rub my nipples as I torture this little piggy!
No dude, Id be scared too, youre mom is a fucking bitch.
Dont call my mom a bitch, you fat fuck!
Dont call me fat you buttfucking son of a bitch.
Should we blame the government?
Or blame society?
Or should we blame the images on TV?
NO! Blame Canada!

Enhancements:
- Fixed typos, nothing noteworthy. Released for the sake of the English language
- probably final release
<<less
Download (0.010MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1050 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5