spider
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 41
Silver Spider
Silver Spider is a KDE theme like Fluxbox style. more>>
Silver Spider is a KDE theme like Fluxbox style.
Wallpaper von Deviant with copyright by dayvid.net
It is for 1024x768 screen resolution. Wallpaper is from Deviant with copyright by dayvid.net. The symbols style is "Amaranth by Michael Doches(Doches@linuxcult.com)"
Windowsdeco, Bar & Button style: Keramik
You have to take same changes in KDE Design Control to look the same as in the preview. Take a look at all the screenshots to know want you have to change (KDE Control, Look&Feel, Symbols, Extra..).Thats why it depends on KDE 3.3, also because the transparency effect for the control bar, and for the menues when do you like that.
<<lessWallpaper von Deviant with copyright by dayvid.net
It is for 1024x768 screen resolution. Wallpaper is from Deviant with copyright by dayvid.net. The symbols style is "Amaranth by Michael Doches(Doches@linuxcult.com)"
Windowsdeco, Bar & Button style: Keramik
You have to take same changes in KDE Design Control to look the same as in the preview. Take a look at all the screenshots to know want you have to change (KDE Control, Look&Feel, Symbols, Extra..).Thats why it depends on KDE 3.3, also because the transparency effect for the control bar, and for the menues when do you like that.
Download (0.47MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
924 downloads
TkSpider 0.97
TkSpider project is a game of solitaire is played with the equivalent of two packs of cards. more>>
TkSpider project is a game of solitaire is played with the equivalent of two packs of cards.
The last release includes several small new features, including a redo feature.
Some code, and the card images, taken from Jeff Godreys "Once in a Lifetime".
Spider, based on the card-game shipped with Windows XP
<<lessThe last release includes several small new features, including a redo feature.
Some code, and the card images, taken from Jeff Godreys "Once in a Lifetime".
Spider, based on the card-game shipped with Windows XP
Download (MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1069 downloads
The Spider 1.71
The Spider project is a complete object-oriented environment for machine learning in Matlab. more>>
The Spider project is a complete object-oriented environment for machine learning in Matlab.
Aside from ease of use for base learning algorithms, algorithms can be plugged together and can be compared with, for example, model selection, statistical tests, and visual plots.
This gives all the power of objects (reusability, the ability to plug together, sharing of code), but also all the power of Matlab for machine learning research.
Enhancements:
- A WEKA interface was added, supporting decision trees.
- Additional code, documentation, and demos were added.
<<lessAside from ease of use for base learning algorithms, algorithms can be plugged together and can be compared with, for example, model selection, statistical tests, and visual plots.
This gives all the power of objects (reusability, the ability to plug together, sharing of code), but also all the power of Matlab for machine learning research.
Enhancements:
- A WEKA interface was added, supporting decision trees.
- Additional code, documentation, and demos were added.
Download (4.2MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1185 downloads
WWW::Orkut::Spider 0.03
WWW::Orkut::Spider is a Perl extension for spidering the orkut community. more>>
WWW::Orkut::Spider is a Perl extension for spidering the orkut community.
SYNOPSIS
use WWW::Orkut::Spider;
my $orkut = WWW::Orkut::Spider->new;
$orkut->login($user,$pass);
$orkut->get_hisfriends($uid);
print $orkut->get_xml_profile($uid);
WWW::Orkut::Spider uses WWW:Mechanize to scrape orkut.com.
Output is a simple xml format containing friends, communities and profiles for a given Orkut UID.
- Access to orkut.com via WWW::Mechanize
- Collects UIDs
- Fetches Profiles/Communities/Friends for a given UID
- Output via simple xml format
<<lessSYNOPSIS
use WWW::Orkut::Spider;
my $orkut = WWW::Orkut::Spider->new;
$orkut->login($user,$pass);
$orkut->get_hisfriends($uid);
print $orkut->get_xml_profile($uid);
WWW::Orkut::Spider uses WWW:Mechanize to scrape orkut.com.
Output is a simple xml format containing friends, communities and profiles for a given Orkut UID.
- Access to orkut.com via WWW::Mechanize
- Collects UIDs
- Fetches Profiles/Communities/Friends for a given UID
- Output via simple xml format
Download (0.005MB)
Added: 2006-09-13 License: Perl Artistic License Price:
682 downloads
Spider Game Grande Jogo 1.0.1
Liberte Jogos Online. Jogos de Ação Gratuitos, Jogos de Guerra e Jogos de Batalha. Crianças e Meninas que Vestem Jogos, Jogos de Moda, Jogos de Futebo... more>> <<less
Download (1220KB)
Added: 2009-04-01 License: Freeware Price: Free
206 downloads
WWW::Spyder 0.19
WWW::Spyder is a Perl module that acts like a web spider. more>>
WWW::Spyder is a Perl module that acts like a web spider.
A web spider that returns plain text, HTML, and other information per page crawled and can determine what pages to get and parse based on supplied terms compared to the text in links as well as page content.
METHODS
$spyder->new()
Construct a new spyder object. Without at least the seed() set, or go_to_seed() turned on, the spyder isnt ready to crawl.
$spyder = WWW::Spyder->new(shift||die"Gimme a URL!n");
# ...or...
$spyder = WWW::Spyder->new( %options );
Options include: sleep_base (in seconds), exit_on (hash of methods and settings). Examples below.
$spyder->seed($url)
Adds a URL (or URLs) to the top of the queues for crawling. If the spyder is constructed with a single scalar argument, that is considered the seed_url.
$spyder->bell([bool])
This will print a bell ("a") to STDERR on every successfully crawled page. It might seem annoying but it is an excellent way to know your spyder is behaving and working. True value turns it on. Right now it cant be turned off.
$spyder->spyder_time([bool])
Returns raw seconds since Spyder was created if given a boolean value, otherwise returns "D day(s) HH::MM:SS."
$spyder->terms([list of terms to match])
The more terms, the more the spyder is going to grasp at. If you give a straight list of strings, they will be turned into very open regexes. E.g.: "king" would match "sulking" and "kinglet" but not "King." It is case sensitive right now. If you want more specific matching or different behavior, pass your own regexes instead of strings.
$spyder->terms( qr/bkings?b/i, qr/bqueens?b/i );
terms() is only settable once right now, then its a done deal.
$spyder->spyder_data()
A comma formatted number of kilobytes retrieved so far. Dont give it an argument. Its a set/get routine.
$spyder->slept()
Returns the total number of seconds the spyder has slept while running. Useful for getting accurate page/time counts (spyder performance) discounting the added courtesy naps.
$spyder->UA->...
The LWP::UserAgent. You can reset them, I do believe, by calling methods on the UA. Here are the initialized values you might want to tweak (see LWP::UserAgent for more information):
$spyder->UA->timeout(30);
$spyder->UA->max_size(250_000);
$spyder->UA->agent(Mozilla/5.0);
Changing the agent name can hurt your spyder b/c some servers wont return content unless its requested by a "browser" they recognize.
You should probably add your email with from() as well.
$spyder->UA->from(bluefintuna@fish.net);
$spyder->cookie_file([local_file])
They live in $ENV{HOME}/spyderCookie by default but you can set your own file if you prefer or want to save different cookie files for different spyders.
<<lessA web spider that returns plain text, HTML, and other information per page crawled and can determine what pages to get and parse based on supplied terms compared to the text in links as well as page content.
METHODS
$spyder->new()
Construct a new spyder object. Without at least the seed() set, or go_to_seed() turned on, the spyder isnt ready to crawl.
$spyder = WWW::Spyder->new(shift||die"Gimme a URL!n");
# ...or...
$spyder = WWW::Spyder->new( %options );
Options include: sleep_base (in seconds), exit_on (hash of methods and settings). Examples below.
$spyder->seed($url)
Adds a URL (or URLs) to the top of the queues for crawling. If the spyder is constructed with a single scalar argument, that is considered the seed_url.
$spyder->bell([bool])
This will print a bell ("a") to STDERR on every successfully crawled page. It might seem annoying but it is an excellent way to know your spyder is behaving and working. True value turns it on. Right now it cant be turned off.
$spyder->spyder_time([bool])
Returns raw seconds since Spyder was created if given a boolean value, otherwise returns "D day(s) HH::MM:SS."
$spyder->terms([list of terms to match])
The more terms, the more the spyder is going to grasp at. If you give a straight list of strings, they will be turned into very open regexes. E.g.: "king" would match "sulking" and "kinglet" but not "King." It is case sensitive right now. If you want more specific matching or different behavior, pass your own regexes instead of strings.
$spyder->terms( qr/bkings?b/i, qr/bqueens?b/i );
terms() is only settable once right now, then its a done deal.
$spyder->spyder_data()
A comma formatted number of kilobytes retrieved so far. Dont give it an argument. Its a set/get routine.
$spyder->slept()
Returns the total number of seconds the spyder has slept while running. Useful for getting accurate page/time counts (spyder performance) discounting the added courtesy naps.
$spyder->UA->...
The LWP::UserAgent. You can reset them, I do believe, by calling methods on the UA. Here are the initialized values you might want to tweak (see LWP::UserAgent for more information):
$spyder->UA->timeout(30);
$spyder->UA->max_size(250_000);
$spyder->UA->agent(Mozilla/5.0);
Changing the agent name can hurt your spyder b/c some servers wont return content unless its requested by a "browser" they recognize.
You should probably add your email with from() as well.
$spyder->UA->from(bluefintuna@fish.net);
$spyder->cookie_file([local_file])
They live in $ENV{HOME}/spyderCookie by default but you can set your own file if you prefer or want to save different cookie files for different spyders.
Download (0.017MB)
Added: 2007-08-02 License: Perl Artistic License Price:
814 downloads
SEOlizer 0.2
SEOlizer is a GPL application that generates web pages of analysis, from webserver log files (Apache, etc). more>>
SEOlizer is a GPL application that generates web pages of analysis, from webserver log files (Apache, etc). The seolizer is based on the webalizer code.
Please note that the code is one-night hack, from my point of view its a very very poor quality! It is not recommended to run seolizer on a production server. I have published the seolizer to get some feedback from SEO community. Stable version will be available in several months, after I make clear decision how to implement all required features. Your feedback is appreciated !
Compile seolizer by running make all -C src. Then you can run it using ./seolizer [logfile]. Output will be placed in the current directory.
SEOlizer functions
Web spiders daily/monthly crawling reports (incl. bots IP addresses)
Keyword and phrase analysis, displays pages that matched query
Most popular pages for search engine query results and relevant keywords and phrases
Fully static HTML
About SEO
Search engine optimization (SEO) as a subset of search engine marketing seeks to improve the number and quality of visitors to a web site from "natural" ("organic" or "algorithmic") search results. The quality of visitor traffic can be measured by how often a visitor using a specific keyword leads to a desired conversion action, such as making a purchase or requesting further information. In effect, SEO is marketing by appealing first to machine algorithms to increase search engine relevance and secondly to human visitors.
Enhancements:
- Pagerank support was added along with support for www.rankcheck.info.
- The code was cleaned up and better HTML was implemented.
<<lessPlease note that the code is one-night hack, from my point of view its a very very poor quality! It is not recommended to run seolizer on a production server. I have published the seolizer to get some feedback from SEO community. Stable version will be available in several months, after I make clear decision how to implement all required features. Your feedback is appreciated !
Compile seolizer by running make all -C src. Then you can run it using ./seolizer [logfile]. Output will be placed in the current directory.
SEOlizer functions
Web spiders daily/monthly crawling reports (incl. bots IP addresses)
Keyword and phrase analysis, displays pages that matched query
Most popular pages for search engine query results and relevant keywords and phrases
Fully static HTML
About SEO
Search engine optimization (SEO) as a subset of search engine marketing seeks to improve the number and quality of visitors to a web site from "natural" ("organic" or "algorithmic") search results. The quality of visitor traffic can be measured by how often a visitor using a specific keyword leads to a desired conversion action, such as making a purchase or requesting further information. In effect, SEO is marketing by appealing first to machine algorithms to increase search engine relevance and secondly to human visitors.
Enhancements:
- Pagerank support was added along with support for www.rankcheck.info.
- The code was cleaned up and better HTML was implemented.
Download (0.018MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
845 downloads
DirIndexFaker 1.1
DirIndexFaker is a PHP script designed to produce fake Apache directory listings. more>>
DirIndexFaker script is writen in PHP and its designed to produce fake Apache directory listings for the purpose of slowing down and overloading with false positives the Web spiders used by the RIAA, MPAA, etc.
People like the riaa, mpaa, and others are on a copyright enforcing rampage, destroying innocent victims along the way. They are using automated tools (web spiders) to find people hosting illegal content to sue. Sometimes the spiders catch innocent people in their web of evil.
Since our politicians think the RIAAa well-being is more important than ours, we must find a way to make the RIAA/MPAAs spiders too expensive to operate. Therefore our goals should be to:
- Slow the spider down, or get it stuck in a loop
- Provide soo many false positives, that sorting the actual infringers from the innocent is too expensive to allow the copywrong police to continue
These things are what a honeypot, or tarpit is designed to do. There are several available RIAA/MPAA spider trapping scripts currently available, but they all have unacceptable limitations (either requirements are too high, or they take an unacceptable toll on your server).
What was needed was a script which could generate fake apache index pages, but with links to large files with copyrighted sounding names. The server operator should not have to have root, nor should it waste excessive disk space for the server operator, IE - the files should be generated by the script, and not actually stored on the servers disk. This is what DirIndexFaker does!
The best existing script I could find which came close to meeting these criteria was the DMCA Bot Killer , but it had several problems:
- It requires the files to be generated beforehand with a perl script, the code is in the source, but commented out and a little wonky.
- It does not look like an apache index page, it looks suspicious, the **AAs spiders could be easily modified to detect this.
- It requires a list of filenames to use when generating our warez index. This list is loaded from a server at every invocation. This is innefficient, and error-prone.
So DirIndexFaker is a fixed version of the DMCA Bot Killer.
Usage:
Simply extract the contents of the .zip file to a subfolder under your PHP enabled webservers document root, then place a link to that subfolder somewhere on your site where bots can see it, and people cannot. One way to hide the link from humans is with CSS.
Note: You may be tempted to keep the search engines away with your robots.txt file, but is is well known that the RIAA is using the search engines to find infringing content, so this is not a good idea.
Enhancements:
- This release adds the ability to slow down RIAA/MPAA bots with a usleep call.
- This is enabled by default, but can be disabled by commenting out a line at the top of index.php.
- The bottom row has been fixed to make server info match the actual server version running on your host.
- The random seed has been changed so that filenames/sizes will only change once a day.
- This makes it harder to detect as a fake.
<<lessPeople like the riaa, mpaa, and others are on a copyright enforcing rampage, destroying innocent victims along the way. They are using automated tools (web spiders) to find people hosting illegal content to sue. Sometimes the spiders catch innocent people in their web of evil.
Since our politicians think the RIAAa well-being is more important than ours, we must find a way to make the RIAA/MPAAs spiders too expensive to operate. Therefore our goals should be to:
- Slow the spider down, or get it stuck in a loop
- Provide soo many false positives, that sorting the actual infringers from the innocent is too expensive to allow the copywrong police to continue
These things are what a honeypot, or tarpit is designed to do. There are several available RIAA/MPAA spider trapping scripts currently available, but they all have unacceptable limitations (either requirements are too high, or they take an unacceptable toll on your server).
What was needed was a script which could generate fake apache index pages, but with links to large files with copyrighted sounding names. The server operator should not have to have root, nor should it waste excessive disk space for the server operator, IE - the files should be generated by the script, and not actually stored on the servers disk. This is what DirIndexFaker does!
The best existing script I could find which came close to meeting these criteria was the DMCA Bot Killer , but it had several problems:
- It requires the files to be generated beforehand with a perl script, the code is in the source, but commented out and a little wonky.
- It does not look like an apache index page, it looks suspicious, the **AAs spiders could be easily modified to detect this.
- It requires a list of filenames to use when generating our warez index. This list is loaded from a server at every invocation. This is innefficient, and error-prone.
So DirIndexFaker is a fixed version of the DMCA Bot Killer.
Usage:
Simply extract the contents of the .zip file to a subfolder under your PHP enabled webservers document root, then place a link to that subfolder somewhere on your site where bots can see it, and people cannot. One way to hide the link from humans is with CSS.
Note: You may be tempted to keep the search engines away with your robots.txt file, but is is well known that the RIAA is using the search engines to find infringing content, so this is not a good idea.
Enhancements:
- This release adds the ability to slow down RIAA/MPAA bots with a usleep call.
- This is enabled by default, but can be disabled by commenting out a line at the top of index.php.
- The bottom row has been fixed to make server info match the actual server version running on your host.
- The random seed has been changed so that filenames/sizes will only change once a day.
- This makes it harder to detect as a fake.
Download (0.005MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1407 downloads
Serveez 0.1.1
Serveez provides a a server framework. more>>
Serveez provides a a server framework.
Serveez is a server framework which provides routines and help for implementing IP-based servers (TCP, UDP, and ICMP).
It is also possible to use named pipes for all connection-oriented protocols. The package includes a number of servers that work already: an HTTP server, an IRC server, a Gnutella spider, and some others.
One of the highlights is that you can run all protocols on the same port. The application itself is single-threaded, but it uses helper processes for concurrent name resolution and ident lookups.
<<lessServeez is a server framework which provides routines and help for implementing IP-based servers (TCP, UDP, and ICMP).
It is also possible to use named pipes for all connection-oriented protocols. The package includes a number of servers that work already: an HTTP server, an IRC server, a Gnutella spider, and some others.
One of the highlights is that you can run all protocols on the same port. The application itself is single-threaded, but it uses helper processes for concurrent name resolution and ident lookups.
Download (0.61MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
968 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
WWW::PkgFind 1.3
Crucible is designed to do automatic testing of code as its released. more>>
WWW::PkgFind watches Web sites, FTP sites, GIT repositories, etc. for new code releases, and downloads them. In other words, its like a Web spider tuned for downloading software packages and patches.
WWW::PkgFind is also able to generate a queue of incoming packages, to allow subsequent processing (such as running tests on them).
<<lessWWW::PkgFind is also able to generate a queue of incoming packages, to allow subsequent processing (such as running tests on them).
Download (0.013MB)
Added: 2006-05-31 License: Perl Artistic License Price:
1242 downloads
PHPSPELLBOOK 0.5
PHPSPELLBOOK is a suite of tools for Web site promotion, diagnosis, and improvement. more>>
PHPSPELLBOOK is a suite of tools for Web site promotion, diagnosis, and improvement.
PHPSPELLBOOK provides Web masters with tools such as advertisiment submission, a mass mailer, a broken link checker, a link exchange checker, fake click generators, anonymizer tools, a calendar, and more.
Main features:
- All tools could perform operations in anonymity relaying on Proxy/Socks4/Socks5 lists.
- Advertisement submissions tools
- SendMail: mass mailer
- Broken Link Checker
- Clicker tools [fake hits generators]
- Domain Spider
- HTTP Header Checker
- Link Exchange Checker
- Meta Tags Tools
- Page Ranking Tools [pagerank checker)
- Partners Finding Tools [find websites in a given pagerank range]
- E-Mail handling and parsing tools
- Translation Tools
- Url handling tools and generators
- Calendar
- Anonymous hosts list administration
- Anonymous host checker [proxy/socks4/socks5 checker]
- Jobs administration
- Smtp servers list administration
- Statistics
Enhancements:
- This release adds documentation updates, a code cleanup, new sources for socks4, socks5, and proxy lists, an installation script fix, a link popularity checker, and a partners finding tool.
<<lessPHPSPELLBOOK provides Web masters with tools such as advertisiment submission, a mass mailer, a broken link checker, a link exchange checker, fake click generators, anonymizer tools, a calendar, and more.
Main features:
- All tools could perform operations in anonymity relaying on Proxy/Socks4/Socks5 lists.
- Advertisement submissions tools
- SendMail: mass mailer
- Broken Link Checker
- Clicker tools [fake hits generators]
- Domain Spider
- HTTP Header Checker
- Link Exchange Checker
- Meta Tags Tools
- Page Ranking Tools [pagerank checker)
- Partners Finding Tools [find websites in a given pagerank range]
- E-Mail handling and parsing tools
- Translation Tools
- Url handling tools and generators
- Calendar
- Anonymous hosts list administration
- Anonymous host checker [proxy/socks4/socks5 checker]
- Jobs administration
- Smtp servers list administration
- Statistics
Enhancements:
- This release adds documentation updates, a code cleanup, new sources for socks4, socks5, and proxy lists, an installation script fix, a link popularity checker, and a partners finding tool.
Download (0.097MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
1422 downloads
PhpDig 1.8.9 RC1
PhpDig provides a very small PHP search engine that uses a MySQL database on backend. more>>
PhpDig provides a very small PHP search engine that uses a MySQL database on backend.
PhpDig is a very small PHP search engine that uses a MySQL database on backend. Features: indexes both static and dynamic pages; Spiders almost all links in html content, in hrefs, areamaps, frames; and Full text indexing. It could index pdf and ms-office files using external binaries. 1.6.2 Update:
Add support of others charsets than 8859-1, encoding 8859-2 added. PhpDig handles meta http-equiv cookie. Function phpdigTestUrl fixed. Css classes for classic mode fixed. Bug on noindex and nofollow fixed. Small API doc added. Error on database creation script on some versions of MySql fixed.
<<lessPhpDig is a very small PHP search engine that uses a MySQL database on backend. Features: indexes both static and dynamic pages; Spiders almost all links in html content, in hrefs, areamaps, frames; and Full text indexing. It could index pdf and ms-office files using external binaries. 1.6.2 Update:
Add support of others charsets than 8859-1, encoding 8859-2 added. PhpDig handles meta http-equiv cookie. Function phpdigTestUrl fixed. Css classes for classic mode fixed. Bug on noindex and nofollow fixed. Small API doc added. Error on database creation script on some versions of MySql fixed.
Download (0.56MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
911 downloads
PROPS 0.7
PROPS is an open, extensible Internet publishing system designed specifically for periodicals. more>>
PROPS is an open, extensible Internet publishing system designed specifically for periodicals such as newspapers and magazines who want to publish online, either exclusively or as an extension of their print publication.
PROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
<<lessPROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
Download (0.70MB)
Added: 2005-10-28 License: GPL (GNU General Public License) Price:
1459 downloads
mnoGoSearch 3.2.43
Advanced free search engine for Internet and Intranet sites more>> MnoGoSearch for is a search engine designed to organize search within a website, number of websites, intranet or local system. To search through documents you have to index them first using the indexer component of mnoGoSearch. Indexer is a spider that reads the documents you specify and stores information about words it finds in tables in a SQL or built-in database.<<less
Download (3.3MB)
Added: 2009-04-12 License: Freeware Price: $na
194 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 spider 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