panda publisher rc3
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 99
Panda Publisher RC3
Panda Publisher provides a lightweight, standards-compliant content management system. more>>
Panda Publisher provides a lightweight, standards-compliant content management system.
Panda Publisher is a lightweight content management system. It aims to be fast, scalable, standards-compliant and meta-data rich in order to serve page viewers better and allow Web masters to concentrate on writing content rather than all the little things that make visiting Web sites easier for users.
Meta-data is created on the fly to ensure that it is up-to-date. Menus, Site Maps, Searches, etc. are all generated automatically to give consistent navigation to the end user.
Enhancements:
- Shiny new installer
- Standards Compliance improvements
- Fixed style sheet selector in admin
- New Offline-mode
- Code clean-ups
- Security Fixes
<<lessPanda Publisher is a lightweight content management system. It aims to be fast, scalable, standards-compliant and meta-data rich in order to serve page viewers better and allow Web masters to concentrate on writing content rather than all the little things that make visiting Web sites easier for users.
Meta-data is created on the fly to ensure that it is up-to-date. Menus, Site Maps, Searches, etc. are all generated automatically to give consistent navigation to the end user.
Enhancements:
- Shiny new installer
- Standards Compliance improvements
- Fixed style sheet selector in admin
- New Offline-mode
- Code clean-ups
- Security Fixes
Download (MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
Pandora Publisher 0.4.4
Pandora is a simple web document and application platform written in Ruby. more>>
Pandora is a simple web document and application platform written in Ruby. Pandora Publisher aims to make it easy for a team of people to quickly collaborate on the network and develop custom document components and extensions to meet their specific needs.
Main features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
<<lessMain features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
Download (1.5MB)
Added: 2006-08-27 License: Other/Proprietary License Price:
1155 downloads

@1 Calendar Publisher I 2.0
Publish events, schedules or news to an online web calendar. more>> Publish events, schedules or news to an online web calendar. Multiple events can be posted on the same day. The calendar can be called directly or via SSI. No MySQL required. View in full or compact mode. Show X number of upcoming events. Header, footer colors and so on are highly customizable. Newly added features: "Todays Events" and "Tomorrows Events".<<less
Download (37KB)
Added: 2009-04-02 License: Freeware Price: Free
204 downloads
Podcast::Publisher 0.50
Podcast::Publisher is a Perl module for creating and managing podcasts. more>>
Podcast::Publisher is a Perl module for creating and managing podcasts.
SYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
<<lessSYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
Download (0.012MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1081 downloads
Smart Publisher 1.0.2
Smart Publisher is a web-based open source and easy-to-use application which offers you an effective way to publish a static or dynamic website on the internet more>> <<less
Added: 2008-03-05 License: GPL Price: FREE
17 downloads
Other version of Smart Publisher
License:GPL (GNU General Public License)
PandaLex PDF Parser 0.5
PandaLex PDF Parser is a flex and bison parser for PDF documents. more>>
PandaLex is the PDF parsing code from Panda, which has been split into its own project to increase its utility.
It is a flex and bison description of the PDF specification, which allows programmers to define callbacks to handle different document elements.
<<lessIt is a flex and bison description of the PDF specification, which allows programmers to define callbacks to handle different document elements.
Download (0.38MB)
Added: 2005-05-04 License: GPL (GNU General Public License) Price:
1639 downloads
SAGA GIS 2.0 RC3
SAGA GIS (System for Automated Geo-scientific Analysis) is a geographical information system (GIS). more>>
SAGA comes from System for Automated Geoscientific Analyses- is a hybrid GIS software. The first objective of SAGA is to give (geo-)scientists an effective but easy learnable platform for the implementation of geoscientific methods, which is achieved by SAGAs unique Application Programming Interface (API).
The second is to make these methods accessible in a user friendly way. This is mainly done by the Graphical User Interface (GUI).
Together this results in SAGAs true strength: a fast growing set of geoscientifc methods, bundled in exchangeable Module Libraries.The figure shows SAGAs system architecture.
SAGA is written in the widespread and powerful C++ programming language and follows an object oriented approach. Moreover it relies on the GNU Public License, which means it is an open source project.
All this designates SAGA to be a first choice tool for everybody who works in the field of geosciences, in particular for those who want transparent state of the art methods.
Main features:
- File access: interfaces to various table, vector, image and grid file formats.
- Filter for grids: gaussian, laplacian, multi direction lee filter...
- Gridding: interpolation from vector data using triangulation, nearest neighbour, inverse distance...
- Geostatistics: residual analysis, ordinary and universal kriging, single and multiple regression analysis, variance analysis...
- Grid calculator: combine grids through user defined functions...
- Grid discretisation: skeletonisation, segmentation...
- Grid tools: merging, resampling, gaps filling...
- Image classification:cluster analysis, box classification, maximum likelihood, pattern recognition, region growing...
- Projections:various coordinate transformations for vector and grid data (using Proj4 and GeoTrans libraries), georeferencing of grids.
- Simulation of dynamic processes: TOPMODEL, nitrogen distributions, erosion, landscape development...
- Terrain analysis:slope, aspect, curvatures, curvature classification, analytical hillshading, sink eliminition, flow path analysis, catchment delineation, solar radiation, channel lines, relative altitudes...
- Vector tools: polygon intersection, contour lines from grid...
- And more...
<<lessThe second is to make these methods accessible in a user friendly way. This is mainly done by the Graphical User Interface (GUI).
Together this results in SAGAs true strength: a fast growing set of geoscientifc methods, bundled in exchangeable Module Libraries.The figure shows SAGAs system architecture.
SAGA is written in the widespread and powerful C++ programming language and follows an object oriented approach. Moreover it relies on the GNU Public License, which means it is an open source project.
All this designates SAGA to be a first choice tool for everybody who works in the field of geosciences, in particular for those who want transparent state of the art methods.
Main features:
- File access: interfaces to various table, vector, image and grid file formats.
- Filter for grids: gaussian, laplacian, multi direction lee filter...
- Gridding: interpolation from vector data using triangulation, nearest neighbour, inverse distance...
- Geostatistics: residual analysis, ordinary and universal kriging, single and multiple regression analysis, variance analysis...
- Grid calculator: combine grids through user defined functions...
- Grid discretisation: skeletonisation, segmentation...
- Grid tools: merging, resampling, gaps filling...
- Image classification:cluster analysis, box classification, maximum likelihood, pattern recognition, region growing...
- Projections:various coordinate transformations for vector and grid data (using Proj4 and GeoTrans libraries), georeferencing of grids.
- Simulation of dynamic processes: TOPMODEL, nitrogen distributions, erosion, landscape development...
- Terrain analysis:slope, aspect, curvatures, curvature classification, analytical hillshading, sink eliminition, flow path analysis, catchment delineation, solar radiation, channel lines, relative altitudes...
- Vector tools: polygon intersection, contour lines from grid...
- And more...
Download (6.1MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1096 downloads
PubSubHubbub_Publisher 1.0
A simple, open, web-hook-based pubsub protocol & open source reference implementation more>>
PubSubHubbub_Publisher 1.0 is yet another excellent utility for everyone. It is actually a simple, open, server-to-server web-hook-based pubsub (publish/subscribe) protocol as a simple extension to Atom.
Parties (servers) speaking the PubSubHubbub protocol can get near-instant notifications (via webhook callbacks) when a topic (Atom URL) they're interested in is updated.
This tool works as follow:
- An Atom URL (a "topic") declares its Hub server(s) in its Atom XML file, via . The hub(s) can be run by the publisher of the Atom, or can be a community hub that anybody can use.
- A subscriber (a server that's interested in a topic), initially fetches the Atom URL as normal. If the Atom file declares its hubs, the subscriber can then avoid lame, repeated polling of the URL and can instead register with the feeds hub(s) and subscribe to updates.
- The subscriber subscribes to the Topic URL from the Topic URLs declared Hub(s).
- When the Publisher next updates the Topic URL, the publisher software pings the Hub(s) saying that there's an update.
- The hub efficiently fetches the published feed and multicasts the new/changed content out to all registered subscribers.
- The protocol is decentralized and free. No company is at the center of this controlling it. Anybody can run a hub, or anybody can ping (publish) or subscribe using open hubs.
- To bootstrap this, the publisher has provided an open source reference implementation of the hub (the hard part of the protocol) that runs on Google App Engine, and is open for anybody to use.
Requirements:
- Python
Added: 2009-05-18 License: The Apache License 2.0 Price: FREE
13 downloads
OpenSubsystems 1.0 RC3
OpenSubsystems is set of business components such as inventory management. more>>
OpenSubsystemss goal is to provide consistent set of business components that solve particular area of interest such as inventory management, order processing, shopping, email and fax communication, document management, imaging and others.
There are many frameworks and libraries attempting to make life of developers easier. Most of them focus on improving certain technology (EJB) or technical problem such as persistence in Java (Hibernate) or view tier for web applications (Struts).
There are very few that actually give developers fully functional business components that are immediately available to be integrated into their application and solve specific business needs. OpenSubsystems is one of them.
OpenSubsystems is dedicated to providing highest quality products by paying attention to innovative design, carefull implementation and thorough testing while staying true to the spirit of open source.
All our development processes and products are extensively documented and available for review and use to wide audience of business analysts, developers and testers.
Enhancements:
Feature requests
Core
- 1674491Generalize DataFactory interfaces by requiring domain id
- 1674470Simplify DatabaseOperation classes by removing redundant arguments
- 1674438Simplify DatabaseSchema interface/impl for read-only schemas
- 1674289Change license to GPL v2 only for Core
Bugs
Core
- 1674498IOException thrown by FileUtils when directory exists
- 1674495NullPointerException in StringUtils.concat method
- 1674483Servlet preservice method not called when login is required
- 1674420NullPointerException in DatabaseConnectionFactoryImpl class
- 1630270NoSuchElement exception when using XAPool
<<lessThere are many frameworks and libraries attempting to make life of developers easier. Most of them focus on improving certain technology (EJB) or technical problem such as persistence in Java (Hibernate) or view tier for web applications (Struts).
There are very few that actually give developers fully functional business components that are immediately available to be integrated into their application and solve specific business needs. OpenSubsystems is one of them.
OpenSubsystems is dedicated to providing highest quality products by paying attention to innovative design, carefull implementation and thorough testing while staying true to the spirit of open source.
All our development processes and products are extensively documented and available for review and use to wide audience of business analysts, developers and testers.
Enhancements:
Feature requests
Core
- 1674491Generalize DataFactory interfaces by requiring domain id
- 1674470Simplify DatabaseOperation classes by removing redundant arguments
- 1674438Simplify DatabaseSchema interface/impl for read-only schemas
- 1674289Change license to GPL v2 only for Core
Bugs
Core
- 1674498IOException thrown by FileUtils when directory exists
- 1674495NullPointerException in StringUtils.concat method
- 1674483Servlet preservice method not called when login is required
- 1674420NullPointerException in DatabaseConnectionFactoryImpl class
- 1630270NoSuchElement exception when using XAPool
Download (16MB)
Added: 2007-03-16 License: Other/Proprietary License Price:
953 downloads
XELand 1.0 RC3
XELand project generates night landscapes as stereo pairs for cross-eye viewing. more>>
XELand project generates night landscapes as stereo pairs for cross-eye viewing. Currently it uses two map generation methods (plus some variations). Generated height maps are seamless and can be saved as PNG images.
The program requires only JDK 1.5 or above, and is very easy to use. To take full advantage of XEland you should learn cross-eye viewing.
Main features:
- Simple to use
- Two terrain generation methods
- Exports maps to png files
- Generates seamless maps
- Uses StupidRendering techonogy
<<lessThe program requires only JDK 1.5 or above, and is very easy to use. To take full advantage of XEland you should learn cross-eye viewing.
Main features:
- Simple to use
- Two terrain generation methods
- Exports maps to png files
- Generates seamless maps
- Uses StupidRendering techonogy
Download (0.058MB)
Added: 2007-04-19 License: The Apache License 2.0 Price:
918 downloads
Panda PDF Generator 0.5.4
Panda PDF Generator is a PDF generator in the form of a C library. more>>
Panda is a PDF generation API written in C.
The Panda PDF Generator is intended to make PDFs on the fly for the Web, but may be used to generate any PDF document you want.
Enhancements:
- As you may already be aware, the most important change in 0.5.4 is that the library is now available under the terms of either the GPL or LGPL (your choice). In order to accomplish this, the TDB code was removed, and either Enlightenment DB or Berkeley DB (version 4) must be linked to in its place.
- Other changes include the addition of link annotations (internal and external), pkg-config support, and an RPM. The main point of this release, however, was the licensing issue.
<<lessThe Panda PDF Generator is intended to make PDFs on the fly for the Web, but may be used to generate any PDF document you want.
Enhancements:
- As you may already be aware, the most important change in 0.5.4 is that the library is now available under the terms of either the GPL or LGPL (your choice). In order to accomplish this, the TDB code was removed, and either Enlightenment DB or Berkeley DB (version 4) must be linked to in its place.
- Other changes include the addition of link annotations (internal and external), pkg-config support, and an RPM. The main point of this release, however, was the licensing issue.
Download (2.2MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1642 downloads
Zina 1.0 RC3
Zina is a graphical interface to your MP3 collection. more>>
Zina is a graphical interface to your MP3 collection, a personal jukebox, an MP3 streamer. Zina can run on its own, embeded into an existing website, or as a Postnuke/PHPNuke/Xoops/Mambo module. It is similar to Andromeda, but released under the GNU General Public License.
Main features:
- MP3 / OGG / WAV / WMA / Real Audio streaming
- Custom and "Session" Playlists
- Random, non-repeating playlists by albums or songs
- "Skip Track:" Easily exclude songs from albums and random playlists
- Searching
- Simple Installation (no database)
- Easy to configure:(uses regular text and graphic files for customization)
- Can be used as a Postnuke or PHPNuke module
- As of 0.11.09 can be used as an Xoops module or MamboServer component
- Can downsample mp3s on the fly (with external encoder like LAME)
- Can dynamically resize images if your version of PHP (with GD library) supports it.
- Localization support (0.10.x: English, German, Dutch, Spanish, Italian, Traditional Chinese, French, Danish, Bulgarian, Croation, Hebrew, Basque, Russian, Norwegian, Turkish, Swedish, Slovakian, Hungarian, Catalan, Brazilian, Albanian, Romanian, Finnish, Greek, Kannada; 0.11.x adds Bahasa Indonesia, Japanese)
- Many of the features of Andromeda
- Many other features (see Changelog)
- Released under GNU General Public License
Requierments:
- PHP 4.1.x on the Apache web server (IIS is not supported, although it may work, see here).
- Any web browser that supports JavaScript and CSS.
- An media player (Winamp, xmms, mpg123, etc.) that supports .m3u playlists (and .asx in 0.11.x).
Enhancements:
- This release hopefully adds better ID3 Unicode support.
- It also includes a Vietnamese translation.
<<lessMain features:
- MP3 / OGG / WAV / WMA / Real Audio streaming
- Custom and "Session" Playlists
- Random, non-repeating playlists by albums or songs
- "Skip Track:" Easily exclude songs from albums and random playlists
- Searching
- Simple Installation (no database)
- Easy to configure:(uses regular text and graphic files for customization)
- Can be used as a Postnuke or PHPNuke module
- As of 0.11.09 can be used as an Xoops module or MamboServer component
- Can downsample mp3s on the fly (with external encoder like LAME)
- Can dynamically resize images if your version of PHP (with GD library) supports it.
- Localization support (0.10.x: English, German, Dutch, Spanish, Italian, Traditional Chinese, French, Danish, Bulgarian, Croation, Hebrew, Basque, Russian, Norwegian, Turkish, Swedish, Slovakian, Hungarian, Catalan, Brazilian, Albanian, Romanian, Finnish, Greek, Kannada; 0.11.x adds Bahasa Indonesia, Japanese)
- Many of the features of Andromeda
- Many other features (see Changelog)
- Released under GNU General Public License
Requierments:
- PHP 4.1.x on the Apache web server (IIS is not supported, although it may work, see here).
- Any web browser that supports JavaScript and CSS.
- An media player (Winamp, xmms, mpg123, etc.) that supports .m3u playlists (and .asx in 0.11.x).
Enhancements:
- This release hopefully adds better ID3 Unicode support.
- It also includes a Vietnamese translation.
Download (0.18MB)
Added: 2007-05-27 License: GPL (GNU General Public License) Price:
888 downloads
AMA Desktop Linux 1.07 RC3
AMA Desktop Linux is a Linux Distribution for AMA Computer University. more>>
AMA Desktop Linux is a Linux Distribution for AMA Computer University.
It aims to provide an interface that is comfortable to existing Microsoft Windows users.
Enhancements:
AMA Desktop 2007 had many different exclusive applications and patches designed to make everything work seamlessly. Its a designers Linux with a goal to make everything easy to use, attractive, innovative, powerful and most of all, simple. Most of the applications included are:
- Welcome Center - aims to provide a brief introduction of the basics of AMA Desktop 2007.
- Personal Proxy Wizard - set up squid for personal proxy server, to make internet surfing faster.
- Windows Compatibility Tool - a tool to configure Wine and everything Windows related like NTFS and msttcorefonts.
- Consolidators - Those are the applications that consolidates all other applications into a single window. It aims to make the menus simple. (ie, File Sharing, Network Browsers and Tools, Encryption, Mobile Devices)
- File System Preferences - Make the root file system easy to navigate. This tool offers an option to hide all other directories in the root and provide a symbolic links for them.
- Desktop-Init - This provides the users with the default directories for AMA Desktop 2007, randomly choose a Face picture if its not available, and emblemize the default directories.
- Resource Manager - A tool that detects the system memory and disables some services via gconf if the memory is not met.
- Live Chat Support - An interface to create an account in Freenode and to communicate with other AMA Desktop 2007 users.
- Local Network Messenger - An interface that helps the user to create Bonjour IM service and provide an option to load them automatically upon boot.
- Draw Anywhere - An interface for gromit, that provides annotation capabilities even without Compiz. This is intended for presentations.
- Multicast Filesharing - An interface for udpcast, that sends files to multitude of computers within the network.
<<lessIt aims to provide an interface that is comfortable to existing Microsoft Windows users.
Enhancements:
AMA Desktop 2007 had many different exclusive applications and patches designed to make everything work seamlessly. Its a designers Linux with a goal to make everything easy to use, attractive, innovative, powerful and most of all, simple. Most of the applications included are:
- Welcome Center - aims to provide a brief introduction of the basics of AMA Desktop 2007.
- Personal Proxy Wizard - set up squid for personal proxy server, to make internet surfing faster.
- Windows Compatibility Tool - a tool to configure Wine and everything Windows related like NTFS and msttcorefonts.
- Consolidators - Those are the applications that consolidates all other applications into a single window. It aims to make the menus simple. (ie, File Sharing, Network Browsers and Tools, Encryption, Mobile Devices)
- File System Preferences - Make the root file system easy to navigate. This tool offers an option to hide all other directories in the root and provide a symbolic links for them.
- Desktop-Init - This provides the users with the default directories for AMA Desktop 2007, randomly choose a Face picture if its not available, and emblemize the default directories.
- Resource Manager - A tool that detects the system memory and disables some services via gconf if the memory is not met.
- Live Chat Support - An interface to create an account in Freenode and to communicate with other AMA Desktop 2007 users.
- Local Network Messenger - An interface that helps the user to create Bonjour IM service and provide an option to load them automatically upon boot.
- Draw Anywhere - An interface for gromit, that provides annotation capabilities even without Compiz. This is intended for presentations.
- Multicast Filesharing - An interface for udpcast, that sends files to multitude of computers within the network.
Download (697.7MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
796 downloads
Proxifier 1.0 RC3
Proxifier project is an easy to install three tier web proxy written in PHP. more>>
Proxifier project is an easy to install three tier web proxy written in PHP.
Features include the ability to remove cookies, the HTTP referer field, the HTTP user-agent field, scripts on the page, and objects, altering the user-agent string to whatever you please, and tunnelling your proxied traffic through a second proxy.
If there existed a freely public install of this script, two standard proxies could be used, one entered in the proxy settings of your browser, and one entered into the publicly installed web proxy, to create a connection being passed between three separate proxy servers before hitting the final destination.
Most web sites should be supported by this web proxy. If a site doesnt seem to be supported, please email me. Please note, however, that most AJAX applications will probably have problems with Proxifier, so dont attempt to use anything like GMail or Meebo.
DO NOT USE THIS PROXY AS OF NOW TO ACCESS ANY SENSITIVE INFORMATION, INCLUDING BUT NOT LIMITED TO CREDIT CARD INFORMATION, SOCIAL SECURITY NUMBERS, SENSITIVE PASSWORDS, AND OTHER SIMILAR THINGS! Currently, SSL/TLS is supported through just entering a URL in the field. BEWARE: This does NOT secure your connection to the proxy server as of yet, only the connection from the proxy server to the web server the request is going to! This might create a false sense of security for some people, as your passwords are being passed openly without encryption through the Internet.
Enhancements:
- A major bug has been fixed where certain versions of the PCRE library would have issue with one of the regular expressions, causing many pages to not load at all.
- A bug where the base HTML tag was being parsed incorrectly has been fixed.
- Some instances of preg_match() have been replaced with other functions that were more efficient for the circumstances.
<<lessFeatures include the ability to remove cookies, the HTTP referer field, the HTTP user-agent field, scripts on the page, and objects, altering the user-agent string to whatever you please, and tunnelling your proxied traffic through a second proxy.
If there existed a freely public install of this script, two standard proxies could be used, one entered in the proxy settings of your browser, and one entered into the publicly installed web proxy, to create a connection being passed between three separate proxy servers before hitting the final destination.
Most web sites should be supported by this web proxy. If a site doesnt seem to be supported, please email me. Please note, however, that most AJAX applications will probably have problems with Proxifier, so dont attempt to use anything like GMail or Meebo.
DO NOT USE THIS PROXY AS OF NOW TO ACCESS ANY SENSITIVE INFORMATION, INCLUDING BUT NOT LIMITED TO CREDIT CARD INFORMATION, SOCIAL SECURITY NUMBERS, SENSITIVE PASSWORDS, AND OTHER SIMILAR THINGS! Currently, SSL/TLS is supported through just entering a URL in the field. BEWARE: This does NOT secure your connection to the proxy server as of yet, only the connection from the proxy server to the web server the request is going to! This might create a false sense of security for some people, as your passwords are being passed openly without encryption through the Internet.
Enhancements:
- A major bug has been fixed where certain versions of the PCRE library would have issue with one of the regular expressions, causing many pages to not load at all.
- A bug where the base HTML tag was being parsed incorrectly has been fixed.
- Some instances of preg_match() have been replaced with other functions that were more efficient for the circumstances.
Download (MB)
Added: 2007-05-08 License: BSD License Price:
918 downloads
Litestream 1.3 RC3
Litestream is an OpenSource sound server to develop your own web radio. more>>
Litestream is an free sound server to develop your own web radio.
Litestream is a mp3 streaming server for UNIX-like operating systems. It is compatible with the shoutcast protocol.
It is written in C and is intended to be lightweight and robust.
Literestream Server
Literestream Server is the mirroring server. It connects to a streaming server on one end and replicates that stream to clients (possibly other mirroring servers> on the other end.
Litestream Server --> Literestream Server --> clients
The Literestream Server is the way to scale Litestream. It allows you to use few network resources between broadcast centers while maintaining good quality to your listeners. For example, I could set up broadcast centers in Australia, Europe, and the US, all connected with Literestream Servers. Australian listeners would connect to their local server instead of connecting to the one in the US, preventing network saturation.
Litestream Streaming Source
Litestream Streaming Source is a simple, non-reencoding streaming source which streams a playlist to the streaming server. Its an easy way to source a stream unattended.
Litestream Streaming Source --> Litestream Server
Example of a real system:
Litestream Streaming Source
|
|
V
Litestream Server
/ |
/ |
clients V
Literestream Server
|
|
V clients
Literestream Server
|
|
V
clients
<<lessLitestream is a mp3 streaming server for UNIX-like operating systems. It is compatible with the shoutcast protocol.
It is written in C and is intended to be lightweight and robust.
Literestream Server
Literestream Server is the mirroring server. It connects to a streaming server on one end and replicates that stream to clients (possibly other mirroring servers> on the other end.
Litestream Server --> Literestream Server --> clients
The Literestream Server is the way to scale Litestream. It allows you to use few network resources between broadcast centers while maintaining good quality to your listeners. For example, I could set up broadcast centers in Australia, Europe, and the US, all connected with Literestream Servers. Australian listeners would connect to their local server instead of connecting to the one in the US, preventing network saturation.
Litestream Streaming Source
Litestream Streaming Source is a simple, non-reencoding streaming source which streams a playlist to the streaming server. Its an easy way to source a stream unattended.
Litestream Streaming Source --> Litestream Server
Example of a real system:
Litestream Streaming Source
|
|
V
Litestream Server
/ |
/ |
clients V
Literestream Server
|
|
V clients
Literestream Server
|
|
V
clients
Download (0.024MB)
Added: 2006-02-16 License: BSD License Price:
1348 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 panda publisher rc3 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