net nis listgroup 1.0.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1545
Net::NIS::Listgroup 1.0.0
Net::NIS::Listgroup is a Perl module to list hosts/users in a netgroup group. more>>
Net::NIS::Listgroup is a Perl module to list hosts/users in a netgroup group.
SYNOPSIS
use Listgroup;
$array_ref_groups = listgroup();
$array_ref_groups = listgroups();
$array_ref_users_or_groups = listgroup({groupname});
$array_ref_users_or_groups = listgroup_user({groupname1},
[ [-]{groupname2}, [-]{gropuname3} ]);
$array_ref_users_or_groups = listgroup_host({groupname1},
[ [-]{groupname2}, [-]{gropuname3} ]);
A library used to get groups or members of a netgroup NIS map. listgroup() without any parameters or listgroups() lists all the available netgroup groups.
With groupname parameters listgroup, listgroup_user, listgroup_host will recusively list the members of the named groups. If the groupname is preceded with a - members of that group will be excluded from the returned list. Each member in a group is a triplet of (host,user,domain). The host portion or user portion of the members is returned by listgroup_host() and listgroup(), the user portion of the members is returned by listgroup_user().
<<lessSYNOPSIS
use Listgroup;
$array_ref_groups = listgroup();
$array_ref_groups = listgroups();
$array_ref_users_or_groups = listgroup({groupname});
$array_ref_users_or_groups = listgroup_user({groupname1},
[ [-]{groupname2}, [-]{gropuname3} ]);
$array_ref_users_or_groups = listgroup_host({groupname1},
[ [-]{groupname2}, [-]{gropuname3} ]);
A library used to get groups or members of a netgroup NIS map. listgroup() without any parameters or listgroups() lists all the available netgroup groups.
With groupname parameters listgroup, listgroup_user, listgroup_host will recusively list the members of the named groups. If the groupname is preceded with a - members of that group will be excluded from the returned list. Each member in a group is a triplet of (host,user,domain). The host portion or user portion of the members is returned by listgroup_host() and listgroup(), the user portion of the members is returned by listgroup_user().
Download (0.014MB)
Added: 2007-02-27 License: Perl Artistic License Price:
971 downloads
Ticket linker 1.0.0
Ticket linker software contains a set of various plugins for integration of Cerberus Helpdesk system with other systems. more>>
Ticket linker software contains a set of various plugins for integration of Cerberus Helpdesk system with other systems. A DokuWiki plugin is currently avaiable.
<<less Download (0.002MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
807 downloads
Authorize.net AIM Client 1.0
Authorize.net AIM Client is a PHP client for the AIM API for Authorize.net. more>>
Authorize.net AIM Client is a PHP client for the AIM API for Authorize.net.
Authorize.net customers can use this class to submit credit card charges to authorize.net. This is a PHP port of the Java class com.admc.lm.AIM.
Make sure to verify the checksums, and do not obtain these files from any other location if you dont trust the source or cant verify the download. I am not responsible if you get robbed by hacked versions of my code.
You may redistribute Authorize.net AIM Client according to the BSD open source license.
<<lessAuthorize.net customers can use this class to submit credit card charges to authorize.net. This is a PHP port of the Java class com.admc.lm.AIM.
Make sure to verify the checksums, and do not obtain these files from any other location if you dont trust the source or cant verify the download. I am not responsible if you get robbed by hacked versions of my code.
You may redistribute Authorize.net AIM Client according to the BSD open source license.
Download (0.017MB)
Added: 2005-12-13 License: BSD License Price:
1411 downloads
Net::BGP::Router 0.04
Net::BGP::Router is a BGP Router based on Net::BGP. more>>
Net::BGP::Router is a BGP Router based on Net::BGP.
SYNOPSIS
use Net::BGP::Router;
# Constructor
$router = new Net::BGP::Router(
Name => My very own router!,
Policy => new Net::BGP::Policy
);
# Accessor Methods
$router->add_peer($peer,both,$acl);
$router->remove_peer($peer,both);
$router->set_policy($policy);
$router->set_policy($peer,in,$acl);
__top
This module implement a BGP router. It uses Net::BGP objects for the BGP sessions and a Net::BGP::RIB object to store the routes. Policy are handled using a Net::BGP::Policy object.
<<lessSYNOPSIS
use Net::BGP::Router;
# Constructor
$router = new Net::BGP::Router(
Name => My very own router!,
Policy => new Net::BGP::Policy
);
# Accessor Methods
$router->add_peer($peer,both,$acl);
$router->remove_peer($peer,both);
$router->set_policy($policy);
$router->set_policy($peer,in,$acl);
__top
This module implement a BGP router. It uses Net::BGP objects for the BGP sessions and a Net::BGP::RIB object to store the routes. Policy are handled using a Net::BGP::Policy object.
Download (0.010MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1189 downloads
EiffelMedia 1.0.0
EiffelMedia is a multimedia library for Eiffel. more>>
EiffelMedia is a multimedia library for Eiffel. The library allows you to use 2D and 3D graphics, sound, networking, and input via joystick and keyboard. EiffelMedia has many smaller frameworks that make life easier for a multimedia or game programmer.
<<less Download (42.3MB)
Added: 2007-08-22 License: Other/Proprietary License Price:
793 downloads
Net::UPS 0.04
Net::UPS is an implementation of UPS Online Tools API in Perl.v more>>
Net::UPS is an implementation of UPS Online Tools API in Perl.
SYNOPSIS
use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);
Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.
This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.
<<lessSYNOPSIS
use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);
Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.
This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.
Download (0.020MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1097 downloads
Net::Akismet 0.02
Net::Akismet is a Perl interface to Akismet - comment and trackback spam fighter. more>>
Net::Akismet is a Perl interface to Akismet - comment and trackback spam fighter.
SYNOPSIS
my $akismet = Net::Akismet->new(
KEY => secret-baba-API-key,
URL => http://example.blog.net/,
) or die(Key verification failure!);
my $verdict = $akismet->check(
USER_IP => 10.10.10.11,
COMMENT_CONTENT => Run, Lola, Run, the spam will catch you!,
COMMENT_AUTHOR => dosser,
COMENT_AUTHOR_EMAIL => dosser@subway.de,
REFERRER => http://lola.home/,
) or die(Is the server here?);
if (true eq $verdict) {
print "I found spam. I am a spam-founder!n";
}
<<lessSYNOPSIS
my $akismet = Net::Akismet->new(
KEY => secret-baba-API-key,
URL => http://example.blog.net/,
) or die(Key verification failure!);
my $verdict = $akismet->check(
USER_IP => 10.10.10.11,
COMMENT_CONTENT => Run, Lola, Run, the spam will catch you!,
COMMENT_AUTHOR => dosser,
COMENT_AUTHOR_EMAIL => dosser@subway.de,
REFERRER => http://lola.home/,
) or die(Is the server here?);
if (true eq $verdict) {
print "I found spam. I am a spam-founder!n";
}
Download (0.004MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
WeatherBug 1.0.0.2
WeatherBug is a Firefox extension that can get live, local weather conditions in Firefox web browser. more>>
WeatherBug is a Firefox extension that can get live, local weather conditions in Firefox web browser. Featuring forecasts, radar, and severe weather alerts from WeatherBugs community of neighborhood weather stations.
<<less Download (0.037MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
559 downloads
net-tools 1.60
net-tools are programs that form the base set of the NET-3 networking distribution. more>>
The net-tools package contains a collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system.
It contains the important tools for controlling the network subsystem of the Linux kernel including arp, hostname, ifconfig, netstat, rarp and route.
<<lessIt contains the important tools for controlling the network subsystem of the Linux kernel including arp, hostname, ifconfig, netstat, rarp and route.
Download (0.19MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1664 downloads
CSE-Tool 1.0.0
CSE-Tool allows you to easily deploy a Google Custom Search Engine. more>>
CSE-Tool allows you to easily deploy a Google Custom Search Engine by copying and pasting a few lines of code provided to you by Google.
CSE-Tool doesnt require a database.
<<lessCSE-Tool doesnt require a database.
Download (0.003MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
Pathan-P 1.0.0
Pathan-P provides Perl bindings for Pathan 1. more>>
Pathan-P provides Perl bindings for Pathan 1. Pathan-P project provides the XML::Pathan Perl module, and it uses the XML::Xerces module for its DOM implementation.
XML::Xerces is provided by the Xerces-P project, which provides Perl bindings for the Xerces-C library.
<<lessXML::Xerces is provided by the Xerces-P project, which provides Perl bindings for the Xerces-C library.
Download (0.027MB)
Added: 2006-03-22 License: BSD License Price:
1312 downloads
Net::Google::Spelling 1.0.1
Net::Google::Spelling is a simple OOP-ish interface to the Google SOAP API for spelling suggestions. more>>
Net::Google::Spelling is a simple OOP-ish interface to the Google SOAP API for spelling suggestions.
SYNOPSIS
use Net::Google::Spelling;
my $spelling = Net::Google::Spelling(%args);
$spelling->phrase("muntreal qweebec");
print $spelling->suggest()."n";
Provides a simple OOP-ish interface to the Google SOAP API for spelling suggestions.
This package is used by Net::Google.
<<lessSYNOPSIS
use Net::Google::Spelling;
my $spelling = Net::Google::Spelling(%args);
$spelling->phrase("muntreal qweebec");
print $spelling->suggest()."n";
Provides a simple OOP-ish interface to the Google SOAP API for spelling suggestions.
This package is used by Net::Google.
Download (0.016MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1068 downloads
Net::Delicious::Simple 0.01
Net::Delicious::Simple is a Net::Delicious for backups. more>>
Net::Delicious::Simple is a Net::Delicious for backups.
SYNOPSIS
use Net::Delicious::Simple;
my $del = Net::Delicious->new(user => plki, pswd => secret);
print "$_->{href}n" for $del->all_posts;
__top
If you want to do anything interesting with del.icio.us automation, you probably want the Net::Delicious manpage. Its good. This module is not. Its just here to return all of your tags or posts as a basic Perl data structure.
This makes it very easy to store that structure using existing dumpers. In fact, it only exists to power delbackup, which dumps to YAML or Netscape::Bookmarks.
<<lessSYNOPSIS
use Net::Delicious::Simple;
my $del = Net::Delicious->new(user => plki, pswd => secret);
print "$_->{href}n" for $del->all_posts;
__top
If you want to do anything interesting with del.icio.us automation, you probably want the Net::Delicious manpage. Its good. This module is not. Its just here to return all of your tags or posts as a basic Perl data structure.
This makes it very easy to store that structure using existing dumpers. In fact, it only exists to power delbackup, which dumps to YAML or Netscape::Bookmarks.
Download (0.003MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
Mail::Message::Head::ListGroup 2.069
Mail::Message::Head::ListGroup is a Perl module for mailinglist related header fields. more>>
Mail::Message::Head::ListGroup is a Perl module for mailinglist related header fields.
INHERITANCE
Mail::Message::Head::ListGroup
is a Mail::Message::Head::FieldGroup
is a Mail::Reporter
SYNOPSIS
my $lg = Mail::Message::Head::ListGroup->new(head => $head, ...);
$head->addListGroup($lg);
my $lg = $head->addListGroup(...);
$lg->delete;
A list group is a set of header fields which are added by mailing-list managing software. This class knowns various details about that software.
The knowledge and test messages which are used to initially implement this module is taken from Mail::ListDetector, written by Michael Stevens. The logic is redesigned to add flexibility and use the powerful MailBox features.
<<lessINHERITANCE
Mail::Message::Head::ListGroup
is a Mail::Message::Head::FieldGroup
is a Mail::Reporter
SYNOPSIS
my $lg = Mail::Message::Head::ListGroup->new(head => $head, ...);
$head->addListGroup($lg);
my $lg = $head->addListGroup(...);
$lg->delete;
A list group is a set of header fields which are added by mailing-list managing software. This class knowns various details about that software.
The knowledge and test messages which are used to initially implement this module is taken from Mail::ListDetector, written by Michael Stevens. The logic is redesigned to add flexibility and use the powerful MailBox features.
Download (0.57MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1040 downloads
Elephants 1.0.0
Elephants is an arcade game where you must save giraffes while jumping on a rolled up squirrel! more>>
Elephants is an arcade game where you must save giraffes while jumping on a rolled up squirrel!
Watch out for the angry natives!
<<lessWatch out for the angry natives!
Download (0.46MB)
Added: 2007-02-13 License: Freeware Price:
983 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above net nis listgroup 1.0.0 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed