uk
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 89
UK Threat Level 0.15
UK Threat Level is an extension which displays the current UK Threat Level as an icon in the status bar. more>>
UK Threat Level is an extension which displays the current UK Threat Level as an icon in the status bar.
Future releases of this extension should include a preferences window allowing you to choose where you want your threat alert to appear and many other features.
<<lessFuture releases of this extension should include a preferences window allowing you to choose where you want your threat alert to appear and many other features.
Download (0.030MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
930 downloads
Amazon.co.uk Button 0.1
Amazon.co.uk Button provides a button which allows you to access Amazon services. more>>
Amazon.co.uk Button provides a button which allows you to access Amazon services.
This extension creates a button which allows you to access
-all amazon.co.uk-stores
-your wishlist
-your account
-amazon.co.uk loginpage
-Shopping Basket
straight from the amazon.co.uk button.
<<lessThis extension creates a button which allows you to access
-all amazon.co.uk-stores
-your wishlist
-your account
-amazon.co.uk loginpage
-Shopping Basket
straight from the amazon.co.uk button.
Download (0.013MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
WWW::Search::Yahoo::UK 2.405
WWW::Search::Yahoo::UK is a Perl class for searching Yahoo! UK (not Ireland). more>>
WWW::Search::Yahoo::UK is a Perl class for searching Yahoo! UK (not Ireland).
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::UK);
my $sQuery = WWW::Search::escape_query("Surrey");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo! UK specialization of WWW::Search. It handles making and interpreting searches on Yahoo! UK http://uk.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Yahoo::UK);
my $sQuery = WWW::Search::escape_query("Surrey");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
print $oResult->url, "n";
This class is a Yahoo! UK specialization of WWW::Search. It handles making and interpreting searches on Yahoo! UK http://uk.yahoo.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Download (0.027MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
GD::Tab::Ukulele 0.01
GD::Tab::Ukulele is a Perl module for Ukulele tab image generator. more>>
GD::Tab::Ukulele is a Perl module for Ukulele tab image generator.
SYNOPSIS
use GD::Tab::Ukulele;
my $uk = GD::Tab::Ukulele->new;
# print png image
print $uk->chord(D#sus4)->png;
# get GD::Image instance
my $im = $uk->chord(C);
print $im->png;
# other tab generate
$uk->generate(D7,[0,2,0,2])->png;
# set color
$uk->color(255, 0, 0);
# set background-color and no interlace
$uk->bgcolor(200, 200, 200);
$uk->interlaced(0);
# all tabs image save to file.
use IO::File;
for my $chord (@{$uk->all_chords}) {
(my $filename = $chord) =~ s/M/Maj/; # for case-insensitive filesystem
my $file = IO::File->new("images/$filename.png", w);
$file->print($uk->chord($chord)->png);
}
<<lessSYNOPSIS
use GD::Tab::Ukulele;
my $uk = GD::Tab::Ukulele->new;
# print png image
print $uk->chord(D#sus4)->png;
# get GD::Image instance
my $im = $uk->chord(C);
print $im->png;
# other tab generate
$uk->generate(D7,[0,2,0,2])->png;
# set color
$uk->color(255, 0, 0);
# set background-color and no interlace
$uk->bgcolor(200, 200, 200);
$uk->interlaced(0);
# all tabs image save to file.
use IO::File;
for my $chord (@{$uk->all_chords}) {
(my $filename = $chord) =~ s/M/Maj/; # for case-insensitive filesystem
my $file = IO::File->new("images/$filename.png", w);
$file->print($uk->chord($chord)->png);
}
Download (0.005MB)
Added: 2007-04-24 License: Perl Artistic License Price:
914 downloads
BBCNews.co.uk RSS reader 0.1.3
BBCNews.co.uk RSS reader is a SuperKaramba theme. more>>
BBCNews.co.uk RSS reader is a SuperKaramba theme.
Based on LTRSS reader (http://www.kde-look.org/content/show.php?content=27639) I really didnt do almost anything to the original script, just changed things to BBC and made the header pic.
I just thought that since i did it i might as well post it here.
<<lessBased on LTRSS reader (http://www.kde-look.org/content/show.php?content=27639) I really didnt do almost anything to the original script, just changed things to BBC and made the header pic.
I just thought that since i did it i might as well post it here.
Download (0.052MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1216 downloads
BulkSMS 0.2
BulkSMS is a Python implementation of the BulkSMS.co.uk HTTP client API. more>>
BulkSMS is a Python implementation of the BulkSMS.co.uk HTTP client API. It features an object- orientated Python module which can be called from other Python programs, alongside a command-line sms command for sending SMS messages and performing account control functions.
BulkSMS.co.uk is a commercial SMS transit provider allowing programmatic transmission of SMS through an HTTP RPC API. The service provides facilities for sending 7-bit, 8-bit, and Unicode-encoded SMS messages, alongside giving account control functions.
More information on BulkSMS.co.uk can be found at http://www.bulksms.co.uk/.
The BulkSMS Python Module is an object-based implementation of a BulkSMS.co.uk API client designed for Python 2.3. It has been designed for use with version 1.0 of the BulkSMS.co.uk API.
More information on Python can be found at http://www.python.org/.
The BulkSMS Command Line Interface is a small program written around the BulkSMS Python module, giving the user an easy interface for sending SMS messages using any command line from which Python may be run.
Enhancements:
- Added support for sending 2-way SMSes in the CLI via --repliable and in API via a repliable attribute.
- Added support for reading your the 2-way SMS inbox using a BulkSMS Inbox proxy.
- Added Inbox Server protocol documentation.
- Added a new poll_report() method to the BulkSMS class. Added poll_time and poll_wait instance variables to control poll_report(). Modified the CLI module to utilise poll_report().
- Fixed several inconsistancies and typing mistakes in the inline documentation as well as README.html. Added new paragraphs and examples for poll_report().
<<lessBulkSMS.co.uk is a commercial SMS transit provider allowing programmatic transmission of SMS through an HTTP RPC API. The service provides facilities for sending 7-bit, 8-bit, and Unicode-encoded SMS messages, alongside giving account control functions.
More information on BulkSMS.co.uk can be found at http://www.bulksms.co.uk/.
The BulkSMS Python Module is an object-based implementation of a BulkSMS.co.uk API client designed for Python 2.3. It has been designed for use with version 1.0 of the BulkSMS.co.uk API.
More information on Python can be found at http://www.python.org/.
The BulkSMS Command Line Interface is a small program written around the BulkSMS Python module, giving the user an easy interface for sending SMS messages using any command line from which Python may be run.
Enhancements:
- Added support for sending 2-way SMSes in the CLI via --repliable and in API via a repliable attribute.
- Added support for reading your the 2-way SMS inbox using a BulkSMS Inbox proxy.
- Added Inbox Server protocol documentation.
- Added a new poll_report() method to the BulkSMS class. Added poll_time and poll_wait instance variables to control poll_report(). Modified the CLI module to utilise poll_report().
- Fixed several inconsistancies and typing mistakes in the inline documentation as well as README.html. Added new paragraphs and examples for poll_report().
Download (0.028MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1221 downloads
STUX 1.0
STUX is a bootable CD with a collection of GNU/Linux software. more>>
STUX is a bootable CD with a collection of GNU/Linux software, automatic hardware detection, and support for many graphics cards, sound cards, SCSI and USB devices and other peripherals.
Stux OS target is to build a Live CD similar to KNOPPIX but based on Slackware Linux.
Main features:
- Window Managers: KDE 3.1, Gnome 2.4, fvwm2, fvwm95, WindowMaker, Twm
- Browsers: Mozilla 1.6, Konqueror, Galeon, Nautilus, Lynx, KGet, wget, ...
- Mail clients: Mozilla Mail, KMail, mail, ...
- News readers: Mozilla News, Knode, Pan, ...
- Office, Word Processing, Editors: Open Office 1.1.0, KOffice, AbiWord, Kedit, KWrite, Kate, Xpdf, ...
- Services: Apache 1.3.28, ProFTPd 1.2.8p, Ample, Samba, Secure Shell, MySqld
- Multimedia: VideoLan Client 0.5.2, XawTV, gqRadio, Xine,...
- Graphics: the Gimp, KPaint, XPaint,...
- Developing: gcc 3.2.3, g++, J2sdk 1.4.2, perl 5.8.0, python 2.3.1, php 4.3.3, ...
- IRC Client: Kopete, KSirc, Chatzilla!
- AIM Client: Kopete, Kit
- ICQ Client: Kopete
- Peer 2 Peer/File sharing: BitTorrent, xMule
- Data Base: mysql 4.0.15a
- Web Applications: phpMyAdmin 2.5.5
- KDE Languages: AF, AR, BG, BS, CA, CS, DA, DE, EL, EN, EN_GB, EO, ES, ET, EU, FA, FI, FR, HE, HR, HU, IS, IT, JA, LT, MK, MT, NB, NL, NN, NSO, PL, PT, PT_BR, RO, RU, SE, SK, SL, SR, SS, SV, TA, TH, TR, UK, VEN, VI, XH, ZH_CN, ZH_TW, ZU
Enhancements:
- Upgraded to Slackware current as at 1 Jun 2007 and KNOPPIX live CD 5.1.1 (kernel 2.6.19); fixed problem with installation on SATA hard disks; all STUX utilities deeply reviewed; NVIDIA proprietary driver updated to 1.0-9755 + legacy driver 1.0-9631 for old cards; save live CD persistent configuration on ReiserFS partitions; install compressed image on ReiserFS partitions; Acx wireless firmware upgraded; fully integrates with other pre-installed operating systems; Compiz 0.5.0; fully VMware/QEMU compatible.
<<lessStux OS target is to build a Live CD similar to KNOPPIX but based on Slackware Linux.
Main features:
- Window Managers: KDE 3.1, Gnome 2.4, fvwm2, fvwm95, WindowMaker, Twm
- Browsers: Mozilla 1.6, Konqueror, Galeon, Nautilus, Lynx, KGet, wget, ...
- Mail clients: Mozilla Mail, KMail, mail, ...
- News readers: Mozilla News, Knode, Pan, ...
- Office, Word Processing, Editors: Open Office 1.1.0, KOffice, AbiWord, Kedit, KWrite, Kate, Xpdf, ...
- Services: Apache 1.3.28, ProFTPd 1.2.8p, Ample, Samba, Secure Shell, MySqld
- Multimedia: VideoLan Client 0.5.2, XawTV, gqRadio, Xine,...
- Graphics: the Gimp, KPaint, XPaint,...
- Developing: gcc 3.2.3, g++, J2sdk 1.4.2, perl 5.8.0, python 2.3.1, php 4.3.3, ...
- IRC Client: Kopete, KSirc, Chatzilla!
- AIM Client: Kopete, Kit
- ICQ Client: Kopete
- Peer 2 Peer/File sharing: BitTorrent, xMule
- Data Base: mysql 4.0.15a
- Web Applications: phpMyAdmin 2.5.5
- KDE Languages: AF, AR, BG, BS, CA, CS, DA, DE, EL, EN, EN_GB, EO, ES, ET, EU, FA, FI, FR, HE, HR, HU, IS, IT, JA, LT, MK, MT, NB, NL, NN, NSO, PL, PT, PT_BR, RO, RU, SE, SK, SL, SR, SS, SV, TA, TH, TR, UK, VEN, VI, XH, ZH_CN, ZH_TW, ZU
Enhancements:
- Upgraded to Slackware current as at 1 Jun 2007 and KNOPPIX live CD 5.1.1 (kernel 2.6.19); fixed problem with installation on SATA hard disks; all STUX utilities deeply reviewed; NVIDIA proprietary driver updated to 1.0-9755 + legacy driver 1.0-9631 for old cards; save live CD persistent configuration on ReiserFS partitions; install compressed image on ReiserFS partitions; Acx wireless firmware upgraded; fully integrates with other pre-installed operating systems; Compiz 0.5.0; fully VMware/QEMU compatible.
Download (MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
872 downloads
BlueJ 2.2.0
BlueJ is an integrated Java environment specifically designed for introductory teaching. more>>
BlueJ project is an integrated Java environment (Java IDE) specifically designed for introductory teaching.
The BlueJ environment was developed as part of a university research project about teaching object-orientation to beginners. The system is being developed and maintained by a joint research group at Deakin University, Melbourne, Australia, and the University of Kent in Canterbury, UK. The project is supported by Sun Microsystems.
The aim of BlueJ is to provide an easy-to-use teaching environment for the Java language that facilitates the teaching of Java to first year students. Special emphasis has been placed on visualisation and interaction techniques to create a highly interactive environment that encourages experimentation and exploration.
BlueJ is based on the Blue system. Blue is an integrated teaching environment and language, developed at the University of Sydney and Monash University, Australia. BlueJ provides a Blue-like environment for the Java language.
The BlueJ project started at Monash University in Melbourne, and later split and migrated to its current locations.
BlueJ is implemented in Java, and regularly being tested on Solaris, Linux, Macintosh, and various Windows versions. It should run on all platforms supporting a recent Java virtual machine.
Main features:
- fully integrated environment
- graphical class structure display
- graphical and textual editing
- built-in editor, compiler, virtual machine, debugger, etc.
- easy-to-use interface, ideal for beginners
- interactive object creation
- interactive object calls
- interactive testing
- incremental application development
<<lessThe BlueJ environment was developed as part of a university research project about teaching object-orientation to beginners. The system is being developed and maintained by a joint research group at Deakin University, Melbourne, Australia, and the University of Kent in Canterbury, UK. The project is supported by Sun Microsystems.
The aim of BlueJ is to provide an easy-to-use teaching environment for the Java language that facilitates the teaching of Java to first year students. Special emphasis has been placed on visualisation and interaction techniques to create a highly interactive environment that encourages experimentation and exploration.
BlueJ is based on the Blue system. Blue is an integrated teaching environment and language, developed at the University of Sydney and Monash University, Australia. BlueJ provides a Blue-like environment for the Java language.
The BlueJ project started at Monash University in Melbourne, and later split and migrated to its current locations.
BlueJ is implemented in Java, and regularly being tested on Solaris, Linux, Macintosh, and various Windows versions. It should run on all platforms supporting a recent Java virtual machine.
Main features:
- fully integrated environment
- graphical class structure display
- graphical and textual editing
- built-in editor, compiler, virtual machine, debugger, etc.
- easy-to-use interface, ideal for beginners
- interactive object creation
- interactive object calls
- interactive testing
- incremental application development
Download (3.1MB)
Added: 2007-07-06 License: Freely Distributable Price:
847 downloads
OutGoing 0.8
OutGoing is a hacked together perl script designed to aid in financial planning. more>>
OutGoing is a hacked together perl script designed to aid in financial planning. It is designed to take in a list of your regular monthly outgoings and generate a lump of HTML which shows:
- The total amount of money going out for the month
- A break down on a week-by-week basis of the money which goes out
- Shows you what payments are left to go out during the remainder of the month
Installation:
Installation is relatively simple; you can just do a:
$ make install
And everything will install under /usr/local
If you want to change the final destination of the software then you can just update the Makefile to suit your requirements or set the INSTALL variable to the Makefile
Note that you may want to change the location of perl from /usr/bin/perl to something more suitable for you system.
Please see the manual page for this software for running details.
There is also a pkg target, ie:
$ make pkg
Which is used to build a Solaris package of this software. To use this you will have to have installed the pkg-tools package as well.
Enhancements:
- Corrected a bug for when we have a four week period which contains a change from daylight savings to normal (eg the change from BST to GMT in the UK) which led to the incorrect week start days being used; whilst most of the data displayed was correct, the details of how much money had gone out and which weeks had already gone by was incorrect.
- Added a feature to the -T flag to specify a period of time relative to the current time so you can use "+1w" to generate the figures for a weeks time or "-5d" to go back a day. Read the manual page for more.
<<less- The total amount of money going out for the month
- A break down on a week-by-week basis of the money which goes out
- Shows you what payments are left to go out during the remainder of the month
Installation:
Installation is relatively simple; you can just do a:
$ make install
And everything will install under /usr/local
If you want to change the final destination of the software then you can just update the Makefile to suit your requirements or set the INSTALL variable to the Makefile
Note that you may want to change the location of perl from /usr/bin/perl to something more suitable for you system.
Please see the manual page for this software for running details.
There is also a pkg target, ie:
$ make pkg
Which is used to build a Solaris package of this software. To use this you will have to have installed the pkg-tools package as well.
Enhancements:
- Corrected a bug for when we have a four week period which contains a change from daylight savings to normal (eg the change from BST to GMT in the UK) which led to the incorrect week start days being used; whilst most of the data displayed was correct, the details of how much money had gone out and which weeks had already gone by was incorrect.
- Added a feature to the -T flag to specify a period of time relative to the current time so you can use "+1w" to generate the figures for a weeks time or "-5d" to go back a day. Read the manual page for more.
Download (0.028MB)
Added: 2005-11-01 License: BSD License Price:
1452 downloads
MyAuction 3.1
MyAuction watches auctions on internet bidding platforms. more>>
MyAuction watches auctions on internet bidding platforms. Configuration by interactive GUI menus (no script hacking required!)
Features different platforms:
* Ebay
* Allegro.pl
Localized Versions included:
* German
* UK English
* US English
* Polish
* Italian
* French
- Watch multiple auctions
- easy and nice interface
- Use different color schemes
- Use different background (including crystal-liquid)
I would be very happy if you leave comments about this karamba theme.
Configuration:
Right-click on theme, then choose "configure theme". There you can:
* change background
* change language/country setting
* change color scheme
<<lessFeatures different platforms:
* Ebay
* Allegro.pl
Localized Versions included:
* German
* UK English
* US English
* Polish
* Italian
* French
- Watch multiple auctions
- easy and nice interface
- Use different color schemes
- Use different background (including crystal-liquid)
I would be very happy if you leave comments about this karamba theme.
Configuration:
Right-click on theme, then choose "configure theme". There you can:
* change background
* change language/country setting
* change color scheme
Download (0.028MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1218 downloads
Blackshift 1.24
Blackshift, a satisfyingly difficult puzzle/skill/action game. more>>
Blackshift, a satisfyingly difficult puzzle/skill/action game. You should try it out. I think youd like it. Basically, its a top down view of a subterranean maze, where you have to blow up a frozen alien in order to continue. There are about a hundred levels to beat, each one more evil and twisted than the last.
Main features:
- Missiles
- bombs
- grills
- spaceships
- robots
- buttons
- keys
- doors
- teleports
- angry red faces
- diamonds
- eyeballs
- mirrors
- photocopiers
- pits
- landmines
- aliens
- guns
- blocks
- splitters
- remote controls
- nuclear weapons
RUNNING IT:
If Blackshift wont run when you click the icon you should run it from a console. It worked for me. Explanations as to why are welcome, especially if they arent Because KDE is weird. As always, YMMV.
CONTROLS:
Arrows: Move
Enter: Pickup/Drop
Space: Pickup/Fire
R: Restart
Ctrl+N: Nuke
<<lessMain features:
- Missiles
- bombs
- grills
- spaceships
- robots
- buttons
- keys
- doors
- teleports
- angry red faces
- diamonds
- eyeballs
- mirrors
- photocopiers
- pits
- landmines
- aliens
- guns
- blocks
- splitters
- remote controls
- nuclear weapons
RUNNING IT:
If Blackshift wont run when you click the icon you should run it from a console. It worked for me. Explanations as to why are welcome, especially if they arent Because KDE is weird. As always, YMMV.
CONTROLS:
Arrows: Move
Enter: Pickup/Drop
Space: Pickup/Fire
R: Restart
Ctrl+N: Nuke
Download (2.7MB)
Added: 2007-07-04 License: Freeware Price:
845 downloads
Surblhost 0.8.0
Surblhost project is a small program to see if hostnames are listed in the Spam URI Realtime Blocklists (SURBL). more>>
Surblhost project is a small program to see if hostnames are listed in the Spam URI Realtime Blocklists (SURBL).
Hosts that are blacklisted means that global spam email have been reported to contain links to these hosts.
Many popular spam email filters use these lists to identify spam email, but this program makes it possible to use the lists for any conceivable purpose, such as filtering out bad hosts from URL redirection, and so on.
Examples:
Verbose output
$ surblhost -v bigredskhoediet.com clowndiket.com
checking against multi.surbl.org
bigredskhoediet.com.multi.surbl.org is blacklisted by [jp][ab][ob][sc][ws]
clowndiket.com.multi.surbl.org is blacklisted by [jp][ob][sc][ws]
see http://www.surbl.org/lists.html for more information on the blacklists
More verbose output
$ surblhost -vv --test
test.sc.surbl.org.sc.surbl.org 127.0.0.2 is blacklisted by spamcop
test.sc.surbl.org.sc.surbl.org txt record: sc.surbl.org permanent test point
Whitelisting and stripping of subdomains
$ surblhost -vv -s www.google.com
checking against multi.surbl.org
google.com is in whitelist
Recognition of two-level TLDs
$ surblhost -vv -s www.somewhere.co.uk
checking against multi.surbl.org
somewhere.co.uk.multi.surbl.org is not blacklisted
Blocked site discovered using recursive checking
# NO HIT
$ surblhost -v 156.tissuqeweightloss.com
checking against multi.surbl.org
warning: hostname contains subdomains: 156.tissuqeweightloss.com (try option -r)
156.tissuqeweightloss.com.multi.surbl.org is not blacklisted
# OPTION -r GIVES HIT
$ surblhost -v -r 156.tissuqeweightloss.com
checking against multi.surbl.org recursively
156.tissuqeweightloss.com.multi.surbl.org is not blacklisted
tissuqeweightloss.com.multi.surbl.org is blacklisted by [jp][ob][sc][ws]
see http://www.surbl.org/lists.html for more information on the blacklists
<<lessHosts that are blacklisted means that global spam email have been reported to contain links to these hosts.
Many popular spam email filters use these lists to identify spam email, but this program makes it possible to use the lists for any conceivable purpose, such as filtering out bad hosts from URL redirection, and so on.
Examples:
Verbose output
$ surblhost -v bigredskhoediet.com clowndiket.com
checking against multi.surbl.org
bigredskhoediet.com.multi.surbl.org is blacklisted by [jp][ab][ob][sc][ws]
clowndiket.com.multi.surbl.org is blacklisted by [jp][ob][sc][ws]
see http://www.surbl.org/lists.html for more information on the blacklists
More verbose output
$ surblhost -vv --test
test.sc.surbl.org.sc.surbl.org 127.0.0.2 is blacklisted by spamcop
test.sc.surbl.org.sc.surbl.org txt record: sc.surbl.org permanent test point
Whitelisting and stripping of subdomains
$ surblhost -vv -s www.google.com
checking against multi.surbl.org
google.com is in whitelist
Recognition of two-level TLDs
$ surblhost -vv -s www.somewhere.co.uk
checking against multi.surbl.org
somewhere.co.uk.multi.surbl.org is not blacklisted
Blocked site discovered using recursive checking
# NO HIT
$ surblhost -v 156.tissuqeweightloss.com
checking against multi.surbl.org
warning: hostname contains subdomains: 156.tissuqeweightloss.com (try option -r)
156.tissuqeweightloss.com.multi.surbl.org is not blacklisted
# OPTION -r GIVES HIT
$ surblhost -v -r 156.tissuqeweightloss.com
checking against multi.surbl.org recursively
156.tissuqeweightloss.com.multi.surbl.org is not blacklisted
tissuqeweightloss.com.multi.surbl.org is blacklisted by [jp][ob][sc][ws]
see http://www.surbl.org/lists.html for more information on the blacklists
Download (0.086MB)
Added: 2007-04-09 License: GPL (GNU General Public License) Price:
928 downloads
MKSearch beta 1
MKSearch provides a Web metadata spider and search engine. more>>
MKSearch provides a Web metadata spider and search engine.
MKSearch is a metadata search engine that indexes structured metadata in Web documents instead of free text in the document body.
The data acquisition system conforms to the Dublin Core metadata in HTML recommendations, and supports other application profiles, such as the UK e-Government Metadata Standard.
It also indexes native RDF formats, including RSS 1.0. The system has five major components: a Web crawler, an HTML document validator and formatter, a set of custom indexers, an RDF storage and query system, and a public query interface, provided through a standard servlet container.
System composition
The MKSearch system is composed of several other free software components. Further details are provided in the MKSearch development plans.
JSpider
JSpider is a Java Web crawler engine that has pluggable interfaces that can be used to add custom processing and content handling. MKSearch uses custom SAX-based content handlers for extracting metadata from Web documents.
Sesame
Sesame is a set of RDF processing and storage APIs and applications that includes RDF data query facilities. MKSearch uses Sesame to store indexed metadata in RDF format and to search the repository via the public query interface.
JTidy
JTidy is a utility for correcting common HTML markup errors and is used to convert HTML documents to XHTML so they can be processed using SAX.
<<lessMKSearch is a metadata search engine that indexes structured metadata in Web documents instead of free text in the document body.
The data acquisition system conforms to the Dublin Core metadata in HTML recommendations, and supports other application profiles, such as the UK e-Government Metadata Standard.
It also indexes native RDF formats, including RSS 1.0. The system has five major components: a Web crawler, an HTML document validator and formatter, a set of custom indexers, an RDF storage and query system, and a public query interface, provided through a standard servlet container.
System composition
The MKSearch system is composed of several other free software components. Further details are provided in the MKSearch development plans.
JSpider
JSpider is a Java Web crawler engine that has pluggable interfaces that can be used to add custom processing and content handling. MKSearch uses custom SAX-based content handlers for extracting metadata from Web documents.
Sesame
Sesame is a set of RDF processing and storage APIs and applications that includes RDF data query facilities. MKSearch uses Sesame to store indexed metadata in RDF format and to search the repository via the public query interface.
JTidy
JTidy is a utility for correcting common HTML markup errors and is used to convert HTML documents to XHTML so they can be processed using SAX.
Download (9.0MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
980 downloads
mod_ssi_func 1.0
mod_ssi_func are extensions to mod_include for math functions, random number generation. more>>
The modules in the mod_ssi_func suite were founded to support functions based on mod_include and related to the way pages are built on bbc.co.uk. mod_ssi_func was developed to supply an API that would be familiar to other users of Apaches mod_include.
This was in the hope that it would be included in future versions of the main distribution of Apache. For this reason the BBC has released the mod_ssi_func suite under the Apache License.
Installation:
The modules have been developed to work with apache 2.0.x
Server-side includes should be enabled in the conf for the file type you are using, and mod_include should be loaded.
The following lines should then be added to the conf (based on the default compilation of the modules).
LoadModule ssi_func_module modules/mod_ssi_func.so
LoadModule ssi_func_rnd_module modules/mod_ssi_func_rnd.so
LoadModule ssi_func_math_module modules/mod_ssi_func_math.so
LoadModule ssi_func_flastmod_module modules/mod_ssi_func_flastmod.so
LoadModule ssi_setsplitvars_module modules/mod_ssi_setsplitvars.so
<<lessThis was in the hope that it would be included in future versions of the main distribution of Apache. For this reason the BBC has released the mod_ssi_func suite under the Apache License.
Installation:
The modules have been developed to work with apache 2.0.x
Server-side includes should be enabled in the conf for the file type you are using, and mod_include should be loaded.
The following lines should then be added to the conf (based on the default compilation of the modules).
LoadModule ssi_func_module modules/mod_ssi_func.so
LoadModule ssi_func_rnd_module modules/mod_ssi_func_rnd.so
LoadModule ssi_func_math_module modules/mod_ssi_func_math.so
LoadModule ssi_func_flastmod_module modules/mod_ssi_func_flastmod.so
LoadModule ssi_setsplitvars_module modules/mod_ssi_setsplitvars.so
Download (0.020MB)
Added: 2006-04-21 License: The Apache License Price:
1281 downloads
Atomibulator 1.1
Atomibulator is a script that monitors arbitrary Web sites for changes and reports these updates through Atom and RSS feeds. more>>
Atomibulator is a script that monitors arbitrary Web sites for changes and reports these updates through Atom and RSS feeds.
RSS/Atom feeds are great, but theyre far from pervasive. How many pages do you check regularly, just to see whether anythings new? For example, how many researchers do you know who provide feeds for their list of publications? Using the Atomibulator, you can monitor any webpage out there for changes and be notified by a custom Atom (or RSS, for the old schoolers out there) feed when the page has been updated.
Better yet, you dont have to install anything. You just edit the Atomibulator watchlist at Wikipedia. Anyone can do this. Heres how it works:
Add the page you would like to have monitored in standard Mediawiki shorthand for external links, i.e. [ ]. Multiple URLs can be tagged with the same description.
Sometimes you will want to ignore parts of the HTML markup of a page. For example, advertisements often result in changing links or images in every download of a page. To do this, the Atomibulator provides filter tags. You add them to the URL description in the Wiki markup. The following filters exist:
nolinks: strips all links from the document.
noimgs: strips all images from the document.
nohtml: strips all HTML tags from the document.
For example, to remove all images from the document located at http://www.foobar.com, tagged with "foobar", you would use [http://www.foobar.com foobar noimgs]. It doesnt matter where in the URL description you put the filter. You can use multiple filters in a single description.
The Atomibulator periodically grabs the listed URLs, applies any tag filtering configured, and runs a cryptographic hash function over the result. If an update is detected, it updates a feed named after the description found on in the watchlist: the feeds address is
http://www.cl.cam.ac.uk/~cpk25/atomibulator/feeds/ .xml.
The description you provide gets converted into lower case, any filter tags are removed, and whitespace becomes "_": "My Page" would be turned into "my_page", "My page nohtml" would still result in "my_page". You can see all currently available tags here. The feed for the page youre looking at, for example, is at
http://www.cl.cam.ac.uk/~cpk25/atomibulator/feeds/atomibulator.xml.
Since a lot of feed readers still struggle with supporting Atom 1.o, the Atomibulator actually goes beyond what its name implies and creates RSS 2.o as well:
http://www.cl.cam.ac.uk/~cpk25/atomibulator/feeds/atomibulator.rss.
NOTE: the Atomibulator is not a feed replacement. Do not use it on pages that provide feeds serving the same purpose anyway. Also please note that the Atomibulator checks the watchlist once per hour. Kindly dont request the feeds more often than that. It wont make any difference.
ALSO NOTE: Some people have said this service is like FeedTier. Its not. According to their page, their code "performs content analysis, picks-up the most prominent cluster of hyperlinks and automatically generates RSS web feeds." In short, it focuses on hyperlinks and tries to extract some RSS-able structure. The Atomibulator notices any kind of page update, subject to the HTML tag filtering you configure for a URL.
Enhancements:
- HTML tag filters and download timeouts were added.
<<lessRSS/Atom feeds are great, but theyre far from pervasive. How many pages do you check regularly, just to see whether anythings new? For example, how many researchers do you know who provide feeds for their list of publications? Using the Atomibulator, you can monitor any webpage out there for changes and be notified by a custom Atom (or RSS, for the old schoolers out there) feed when the page has been updated.
Better yet, you dont have to install anything. You just edit the Atomibulator watchlist at Wikipedia. Anyone can do this. Heres how it works:
Add the page you would like to have monitored in standard Mediawiki shorthand for external links, i.e. [ ]. Multiple URLs can be tagged with the same description.
Sometimes you will want to ignore parts of the HTML markup of a page. For example, advertisements often result in changing links or images in every download of a page. To do this, the Atomibulator provides filter tags. You add them to the URL description in the Wiki markup. The following filters exist:
nolinks: strips all links from the document.
noimgs: strips all images from the document.
nohtml: strips all HTML tags from the document.
For example, to remove all images from the document located at http://www.foobar.com, tagged with "foobar", you would use [http://www.foobar.com foobar noimgs]. It doesnt matter where in the URL description you put the filter. You can use multiple filters in a single description.
The Atomibulator periodically grabs the listed URLs, applies any tag filtering configured, and runs a cryptographic hash function over the result. If an update is detected, it updates a feed named after the description found on in the watchlist: the feeds address is
http://www.cl.cam.ac.uk/~cpk25/atomibulator/feeds/ .xml.
The description you provide gets converted into lower case, any filter tags are removed, and whitespace becomes "_": "My Page" would be turned into "my_page", "My page nohtml" would still result in "my_page". You can see all currently available tags here. The feed for the page youre looking at, for example, is at
http://www.cl.cam.ac.uk/~cpk25/atomibulator/feeds/atomibulator.xml.
Since a lot of feed readers still struggle with supporting Atom 1.o, the Atomibulator actually goes beyond what its name implies and creates RSS 2.o as well:
http://www.cl.cam.ac.uk/~cpk25/atomibulator/feeds/atomibulator.rss.
NOTE: the Atomibulator is not a feed replacement. Do not use it on pages that provide feeds serving the same purpose anyway. Also please note that the Atomibulator checks the watchlist once per hour. Kindly dont request the feeds more often than that. It wont make any difference.
ALSO NOTE: Some people have said this service is like FeedTier. Its not. According to their page, their code "performs content analysis, picks-up the most prominent cluster of hyperlinks and automatically generates RSS web feeds." In short, it focuses on hyperlinks and tries to extract some RSS-able structure. The Atomibulator notices any kind of page update, subject to the HTML tag filtering you configure for a URL.
Enhancements:
- HTML tag filters and download timeouts were added.
Download (0.011MB)
Added: 2006-01-09 License: BSD License Price:
1383 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 uk 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