Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.059.445 Times

Sharepoint List Filter Group freeware
Filter: All | Freeware | Demo
 

Sharepoint List Filter Group

< 1 2 3 4 5 
Added: February 22, 2010 | Visits: 2.474

Yet Another Filter Proxy Yet Another Filter Proxy project is a preforking, banner filtering, content scanning Perl proxy. Yet Another Filter Proxy is a proxy to filter out advertising banners and malicious script code from web sites. It is written in Perl and based on an example by Randal L. Schwartz. For...



Platforms: *nix

License: Freeware Size: 27.65 KB Download (290): Yet Another Filter Proxy Download

Added: October 18, 2013 | Visits: 1.487

Quick Spam Filter Quick Spam Filter (QSF) is an Open Source email classification filter, designed to be small, fast, and accurate, which works to classify incoming email as either spam or non-spam. To recognise spam, QSF strips the text out of the email (using MIME decoding and HTML stripping) and then splits it...





Platforms: *nix

License: Freeware Size: 10.24 KB Download (107): Quick Spam Filter Download

Added: October 01, 2010 | Visits: 1.185

Filter::Macro Filter::Macro is a Perl module to make macro modules that are expanded inline. SYNOPSIS In MyHandyModules.pm: package MyHandyModules; use Filter::Macro; # lines below will be expanded into callers code use strict; use warnings; use Switch; use IO::All; use Quantum::Superpositions;...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (104): Filter::Macro Download

Added: June 01, 2010 | Visits: 1.287

Filter::Simple::Compile Filter::Simple::Compile is a drop-in replacement to Filter::Simple. SYNOPSIS Drop-in replacement for Filter::Simple: package MyFilter; use Filter::Simple::Compile; FILTER { ... }; This way also works: use Filter::Simple::Compile sub { ... }; This module lets you write Module::Compile...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (161): Filter::Simple::Compile Download

Added: June 22, 2010 | Visits: 1.170

HTTPD::Log::Filter HTTPD::Log::Filter is a Perl module to filter entries out of an httpd log. SYNOPSIS my $hlf = HTTPD::Log::Filter->new( exclusions_file => $exclusions_file, agent_re => .*Mozilla.*, format => ELF, ); while( <> ) { my $ret = $hlf->filter( $_ ); die "Error at line $.: invalid log...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (107): HTTPD::Log::Filter Download

Added: October 11, 2010 | Visits: 1.141

XML::Filter::Dispatcher::Compiler XML::Filter::Dispatcher::Compiler can compile rulesets in to code. SYNOPSIS use XML::Filter::Dispatcher::Compiler qw( xinline ); my $c = XML::Filter::Dispatcher::Compiler->new( ... ) my $code = $c->compile( Package => "My::Filter", Rules => [ a/b/c => xinline q{warn "found a/b/c"}, ],...


Platforms: *nix

License: Freeware Size: 88.06 KB Download (103): XML::Filter::Dispatcher::Compiler Download

Added: April 11, 2010 | Visits: 1.055

XML::Filter::DocSplitter XML::Filter::DocSplitter does multipass processing of documents. SYNOPSIS ## See XML::SAX::???? for an easier way to use this filter. use XML::SAX::Machines qw( Machine ) ; my $m = Machine( [ Intake => "XML::Filter::DocSplitter" => qw( Filter ) ], [ Filter => "My::Filter" => qw( Merger...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (96): XML::Filter::DocSplitter Download

Added: June 26, 2010 | Visits: 883

XML::Filter::Dispatcher::AsStructHandler XML::Filter::Dispatcher::AsStructHandler Perl module can help you convert SAX stream in to simple, data-oriented structure. SYNOPSIS ## Ordinarily used via the XML::Filter::Dispatchers as_data_struct() ## built-in extension function for XPath This SAX2 handler builds a simple hash from...


Platforms: *nix

License: Freeware Size: 88.06 KB Download (95): XML::Filter::Dispatcher::AsStructHandler Download

Added: April 22, 2010 | Visits: 806

XML::Filter::DataIndenter XML::Filter::DataIndenter is a SAX2 Indenter for data oriented XML. SYNOPSIS use XML::Filter::DataIndenter; use XML::SAX::Machines qw( Pipeline ); Pipeline( XML::Filter::DataIndenter => *STDOUT ); ALPHA CODE ALERT: This is the first release. Feedback and patches welcome. In data...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): XML::Filter::DataIndenter Download

Added: July 22, 2010 | Visits: 911

XML::Filter::Dispatcher XML::Filter::Dispatcher is a path based event dispatching with DOM support. SYNOPSIS use XML::Filter::Dispatcher qw( :all ); my $f = XML::Filter::Dispatcher->new( Rules => [ foo => &handle_foo_start_tag, @bar => &handle_bar_attr, ## Send any elts and their contents to $handler...


Platforms: *nix

License: Freeware Size: 88.06 KB Download (93): XML::Filter::Dispatcher Download

Added: May 25, 2010 | Visits: 948

List::MRU List::MRU is a Perl module that implements a simple fixed-size MRU-ordered list. SYNOPSIS use List::MRU; # Constructor $lm = List::MRU->new(max => 20); # Constructor with explicit eq subroutine for obj equality tests $lm = List::MRU->new(max => 20, eq => sub { $_[0]->stringify eq...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): List::MRU Download

Added: August 19, 2010 | Visits: 967

List::Part List::Part is a Perl module that allows you to partition one array into several. SYNOPSIS use List::Part; ($good, $bad)=part { !/substring/ } @array; #store arrayrefs into $good and $bad (*good, *bad)=part { !/substring/ } @array; #store into @good and @bad ABSTRACT List::Part...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (92): List::Part Download

Added: November 06, 2010 | Visits: 1.381

dialog-mp3-list dialog-mp3-list generates an organized list of your CDs and directories of MP3s. It shows a numbered list of MP3s with information on their encoding speed and track lengths. It uses Dialog/XDialog and Latex to create lists in .tex, .ps, and .pdf formats. You can modify the source file .tex and...


Platforms: *nix

License: Freeware Size: 77.82 KB Download (97): dialog-mp3-list Download

Added: May 13, 2010 | Visits: 1.672

List::Maker List::Maker is a Perl module that can generate more sophisticated lists than just $a..$b. SYNOPSIS use List::Maker; @list = < 1..10 >; # (1,2,3,4,5,6,7,8,9,10) @list = < 10..1 >; # (10,9,8,7,6,5,4,3,2,1) @list = < 1,3,..10 > # (1,3,5,7,9) @list = < 1..10 x 2 > # (1,3,5,7,9) @list = <...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (159): List::Maker Download

Added: May 19, 2010 | Visits: 838

SyslogScan::Daemon::SpamDetector::Filter SyslogScan::Daemon::SpamDetector::Filter contains filter reports. SYNOPSIS plugin SyslogScan::Daemon::SpamDetector as sd_ sd_plugin SyslogScan::Daemon::SpamDetector::Filter status spam match SpamAssassin field relayname acceptfirst 1 accept (?:bdynamicb|badsld*b|bcableb|.dhcp.|.dyn.) deny ....


Platforms: *nix

License: Freeware Size: 18.43 KB Download (89): SyslogScan::Daemon::SpamDetector::Filter Download

Added: September 17, 2010 | Visits: 2.277

Input Filter extension for PHP Input Filter extension for PHP project is an extension for safely dealing with input parameters. It is meant to address this issue by implementing a set of filters and mechanisms that users can use to safely access their input data..


Platforms: *nix

License: Freeware Size: 24.58 KB Download (132): Input Filter extension for PHP Download

Added: January 08, 2010 | Visits: 1.123

Async::Group Async::Group is a Perl class to deal with simultaneous asynchronous calls. SYNOPSIS use Async::Group ; use strict ; sub sub1 { print "Dummy subroutine n"; my $dummy = shift ; my $cb = shift ; &$cb(1); } sub allDone { print "All done, result is ", shift ,"n" ; } my $a =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Async::Group Download

Added: November 19, 2010 | Visits: 954

List::Search List::Search is a Perl module for fast searching of sorted lists. SYNOPSIS use List::Search qw( list_search nlist_search custom_list_search ); # Create a list to search my @list = sort qw( bravo charlie delta ); # Search for a value, returns the index of first match print list_search(...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): List::Search Download

Added: August 21, 2010 | Visits: 1.926

GROUP-E GROUP-E project is collaboration software which integrates groupware, project management, and business server on one platform. The solution is based on a LAMP architecture (Linux, Apache, MySQL, PHP). GROUP-E offers project management, transparent Samba (file server) integration, integration of...


Platforms: *nix

License: Freeware Download (98): GROUP-E Download

Added: May 07, 2010 | Visits: 864

POE::Filter::LZW::Progressive POE::Filter::LZW::Progressive is a POE filter wrapped around Compress::LZW::Progressive..


Platforms: *nix

License: Freeware Size: 10.24 KB Download (96): POE::Filter::LZW::Progressive Download

< 1 2 3 4 5