ruby extension
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2066
PHP WebDAV extension 1.1
PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol. more>>
PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol.
Installation
This extension requires the Neon library and the related header files.
Neon can be downloaded from: http://www.webdav.org/neon/
Pre-built packages and ports are already available for most operating systems and distributions.
In order to compile and install the PHP WebDAV extension, just follow the standard PECL procedure :
$ phpize
$ ./configure --enable-dav
# make install
On OpenBSD systems, use
$ env AUTOCONF_VERSION=2.61 phpize
(replace 2.61 with any of the currently installed versions of autoconf on your system)
Basic example
webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt);
webdav_put(/your/nice/thing.txt, $data);
webdav_unlink(/unwanted_resource.txt);
webdav_rename(/dir/old_name, /dir/new_name);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE);
webdav_close();
Named resource example
$res = webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt, $res);
webdav_put(/your/nice/thing.txt, $data, $res);
webdav_unlink(/unwanted_resource.txt, $res);
webdav_rename(/dir/old_name, /dir/new_name, $res);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE, $res);
webdav_close($res);
Enhancements:
- This release fixes a bug in webdav_put() and introduces a wrapper to access DAV resources through PHP streams.
<<lessInstallation
This extension requires the Neon library and the related header files.
Neon can be downloaded from: http://www.webdav.org/neon/
Pre-built packages and ports are already available for most operating systems and distributions.
In order to compile and install the PHP WebDAV extension, just follow the standard PECL procedure :
$ phpize
$ ./configure --enable-dav
# make install
On OpenBSD systems, use
$ env AUTOCONF_VERSION=2.61 phpize
(replace 2.61 with any of the currently installed versions of autoconf on your system)
Basic example
webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt);
webdav_put(/your/nice/thing.txt, $data);
webdav_unlink(/unwanted_resource.txt);
webdav_rename(/dir/old_name, /dir/new_name);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE);
webdav_close();
Named resource example
$res = webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt, $res);
webdav_put(/your/nice/thing.txt, $data, $res);
webdav_unlink(/unwanted_resource.txt, $res);
webdav_rename(/dir/old_name, /dir/new_name, $res);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE, $res);
webdav_close($res);
Enhancements:
- This release fixes a bug in webdav_put() and introduces a wrapper to access DAV resources through PHP streams.
Download (0.23MB)
Added: 2007-04-08 License: BSD License Price:
939 downloads
Ruby OpenID 0.9.4
Ruby OpenID is a Ruby library for verifying and serving OpenID identities. more>>
Ruby OpenID is a Ruby library for verifying and serving OpenID identities. Ruby OpenID makes it easy to add OpenID authenticaion to your web applications.
Main features:
- Easy-to-use API for verifying OpenID identities (OpenIDConsumer)
- New support for serving OpenID identities (OpenIDServer)
- Does not depend on underlying web framework
- Multiple storage implementations (Filesystem, SQL)
- Comprehensive test suite
- Example code to help you get started, including:
- WEBrick based consumer
- Ruby on rails based consumer
- Ruby on rails based server
- OpenIDLoginGenerator for quickly creating a rails app that uses OpenID for authentication
- ActiveRecord adapter for using an SQL store in rails
<<lessMain features:
- Easy-to-use API for verifying OpenID identities (OpenIDConsumer)
- New support for serving OpenID identities (OpenIDServer)
- Does not depend on underlying web framework
- Multiple storage implementations (Filesystem, SQL)
- Comprehensive test suite
- Example code to help you get started, including:
- WEBrick based consumer
- Ruby on rails based consumer
- Ruby on rails based server
- OpenIDLoginGenerator for quickly creating a rails app that uses OpenID for authentication
- ActiveRecord adapter for using an SQL store in rails
Download (0.19MB)
Added: 2006-02-02 License: LGPL (GNU Lesser General Public License) Price:
1359 downloads
Ruby webgen 0.4.0
webgen is a Web site generator implemented in Ruby. more>>
webgen is a Web site generator implemented in Ruby. Ruby webgen is used to generate static Web sites from templates and page description files. Ruby webgen is easy to use and extensible through plugins.
Main features:
webgen core
- Easily extendable through plugins
- Easy to install and use
- Uses templates for separating layout from content
- Easy to configure if one needs to (no need if you are happy with the default values)
- Command line interface uses command style syntax (like Subversions svn command)
- Fast
File Handler (for handling the files in the source directory)
- Powerful file copy handler for copying single files or entire directories to the output directory
- Support for gallery definition files generates entire image galleries, with automatic thumbnail creation
Page Description Files (for define web pages)
- Support for ERB (embedded Ruby) in page description files and in templates
- Supports several different content formats (Textile, Markdown, RDOC, plain HTML), new ones are easy to add
- Support for specifying meta information (e.g. title, menu ordering information, ...)
Tags (used for easily adding dynamic content to web pages)
- Standard distribution provides often used tags
- Menu tag can generate different types of menus (simple menus and ones with CSS drop downs)
- Breadcrumb trail tag generates a breadcrumb trail so that one always knows where he is in the hierarchy
- Relocatable tag for automatically generating correct relative paths to files
- ... and much more!
Other Features
- Automatically checks generated files if they are standard conform
- Supports virtual files via meta information backing files
- Support for automatic smiley replacement with emoticons
Enhancements:
- The core of webgen has been completely rewritten, many new plugins have been added, more predefined Web site styles are now available, and the homepage has been redesigned.
<<lessMain features:
webgen core
- Easily extendable through plugins
- Easy to install and use
- Uses templates for separating layout from content
- Easy to configure if one needs to (no need if you are happy with the default values)
- Command line interface uses command style syntax (like Subversions svn command)
- Fast
File Handler (for handling the files in the source directory)
- Powerful file copy handler for copying single files or entire directories to the output directory
- Support for gallery definition files generates entire image galleries, with automatic thumbnail creation
Page Description Files (for define web pages)
- Support for ERB (embedded Ruby) in page description files and in templates
- Supports several different content formats (Textile, Markdown, RDOC, plain HTML), new ones are easy to add
- Support for specifying meta information (e.g. title, menu ordering information, ...)
Tags (used for easily adding dynamic content to web pages)
- Standard distribution provides often used tags
- Menu tag can generate different types of menus (simple menus and ones with CSS drop downs)
- Breadcrumb trail tag generates a breadcrumb trail so that one always knows where he is in the hierarchy
- Relocatable tag for automatically generating correct relative paths to files
- ... and much more!
Other Features
- Automatically checks generated files if they are standard conform
- Supports virtual files via meta information backing files
- Support for automatic smiley replacement with emoticons
Enhancements:
- The core of webgen has been completely rewritten, many new plugins have been added, more predefined Web site styles are now available, and the homepage has been redesigned.
Download (1.2MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
Folder Extension Wizard 1.0.1
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files). more>>
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files).
A wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
<<lessA wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
Download (0.007MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
ffmpeg-php extension 0.5.0
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio more>>
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio files.
It has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
<<lessIt has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
Download (1.5MB)
Added: 2006-09-30 License: GPL (GNU General Public License) Price:
1139 downloads
Zip extension for PHP 1.8.9
Zip extension for PHP is a zip management extension. more>>
Zip extension for PHP is a zip management extension.
It can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
<<lessIt can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
Download (0.038MB)
Added: 2007-05-20 License: The PHP License Price:
542 downloads
Ruby Chess 1.0.0
Ruby Chess is a chess game implemented in Ruby using GTK2. more>>
Ruby Chess is a chess game implemented in Ruby using GTK2. Ruby Chess project has a good artificial intelligence that is heuristic-based and stochastic.
<<less Download (0.020MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1035 downloads
Wikipedia Lookup Extension 0.3.2
Lookups up the selected word in the Wikipedia encyclopedia. more>> Wikipedia Lookup Extension 0.3.2 is a powerful tool that makes it quick and easy to look up the selected word in the Wikipedia encyclopedia.<<less
Added: 2009-07-15 License: MPL Price: FREE
19 downloads
Lua Filesystem Extension Library 0.1
Lua extension library provides the filesystem primitives to your Lua scripts, which are missing from the core language. more>>
This extension library provides the filesystem primitives to your Lua scripts, which are missing from the core language. The exported primitives include mkdir, rmdir, stat, chown, chmod, and more.
Available filesystem primitives:
chdir()
chmod()
chown()
cwd()
is_dir()
is_file()
mkdir()
readdir()
rmdir()
stat()
This project was started when I was coding a simple Lua webserver and became frustrated at the lack of available filesystem primitives.
Enhancements:
- This is the first stable release of the software with complete documentation and a sufficiently useful set of exported primitives.
<<lessAvailable filesystem primitives:
chdir()
chmod()
chown()
cwd()
is_dir()
is_file()
mkdir()
readdir()
rmdir()
stat()
This project was started when I was coding a simple Lua webserver and became frustrated at the lack of available filesystem primitives.
Enhancements:
- This is the first stable release of the software with complete documentation and a sufficiently useful set of exported primitives.
Download (0.010MB)
Added: 2005-11-08 License: LGPL (GNU Lesser General Public License) Price:
1447 downloads
Ruby Editor Plugin 0.7.6
The jEdit Ruby Editor Plugin lets you manipulate Ruby and Rails code at the syntax level. more>>
The jEdit Ruby Editor Plugin lets you manipulate Ruby and Rails code at the syntax level.
Ruby Editor Plugin focused on programmer productivity, the plugin provides method completion and an integrated Ruby documentation viewer.
Main features:
- Syntax parsing now supports single-line modules, classes & defs
- Ruby Docs Viewer contains Ruby on Rails docs
- Variable method completion for Ruby on Rails methods
- Auto-indent and insert end now works for if( and if ( patterns
Enhancements:
- "Introduce variable" refactoring was added.
- Copy and cut actions that operate on a whole line when no text is selected were added.
- Autocompletion of brackets and quotes is now smarter.
- Progressive selection now handles method selection better.
<<lessRuby Editor Plugin focused on programmer productivity, the plugin provides method completion and an integrated Ruby documentation viewer.
Main features:
- Syntax parsing now supports single-line modules, classes & defs
- Ruby Docs Viewer contains Ruby on Rails docs
- Variable method completion for Ruby on Rails methods
- Auto-indent and insert end now works for if( and if ( patterns
Enhancements:
- "Introduce variable" refactoring was added.
- Copy and cut actions that operate on a whole line when no text is selected were added.
- Autocompletion of brackets and quotes is now smarter.
- Progressive selection now handles method selection better.
Download (0.99MB)
Added: 2005-12-12 License: GPL (GNU General Public License) Price:
1412 downloads
HTTP extension for PHP 1.5.4
HTTP extension for PHP allows building absolute URIs. more>>
HTTP extension for PHP allows building absolute URIs, RFC-compliant HTTP redirects, RFC-compliant HTTP date handling, parsing of HTTP headers and messages, caching by "Last-Modified" and/or ETag (with an on the fly option for ETag generation from buffered output), sending data/files/streams with (multiple) ranges, negotiating user-preferred language/charset, and convenient request functionality built upon libcurl.
PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, and HttpMessage.
Main features:
- Building absolute URIs
- RFC compliant HTTP redirects
- RFC compliant HTTP date handling
- Parsing of HTTP headers and messages
- Caching by "Last-Modified" and/or ETag (with on the fly option for ETag generation from buffered output)
- Sending data/files/streams with (multiple) ranges support
- Negotiating user preferred language/charset
- Convenient request functionality built upon libcurl
- PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, HttpMessage.
Enhancements:
- This release fixes bug #11359: HttpMessage::toMessageTypeObject() does not populate POST fields.
<<lessPHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, and HttpMessage.
Main features:
- Building absolute URIs
- RFC compliant HTTP redirects
- RFC compliant HTTP date handling
- Parsing of HTTP headers and messages
- Caching by "Last-Modified" and/or ETag (with on the fly option for ETag generation from buffered output)
- Sending data/files/streams with (multiple) ranges support
- Negotiating user preferred language/charset
- Convenient request functionality built upon libcurl
- PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, HttpMessage.
Enhancements:
- This release fixes bug #11359: HttpMessage::toMessageTypeObject() does not populate POST fields.
Download (0.16MB)
Added: 2007-06-29 License: BSD License Price:
851 downloads
Matrox Millennium II Xv extension 1.0
This patch will enhance the XFree86 4.2.0 Matrox Millennium II driver to support the X video (Xv) extension . more>>
This patch will enhance the XFree86 4.2.0 Matrox Millennium II driver to support the X video (Xv) extension (extremely useful for playing DVDs and other MPEGs). The extension is implemented as a CPU to Frame Buffer YUV scaling ILOAD. A true overlay was not used because of a Millennium II hardware limitation that would reduce the maximum usable frame buffer to only 4Mb.
Till now these are the supported Cards
Matrox Millennium II PCI (MGA2164W)
Matrox Millennium II AGP (MGA2164W_AGP) (only experimental driver)
Main features:
- YUV->RGB 4:2:2 (UYUY/YUY2) fully hardware accelerated
- YUV->RGB 4:2:0 (YV12/I420) hardware accelerated with software swizzling
- Horizontal upscaling up to 8x fully hardware accelerated (HQ linear filter)
- Horizontal downscaling up to 4x hardware accelerated with software decimation (HQ linear filter)
- Vertical upscaling software linear filtering
- Vertical downscaling software decimation (no filtering)
<<lessTill now these are the supported Cards
Matrox Millennium II PCI (MGA2164W)
Matrox Millennium II AGP (MGA2164W_AGP) (only experimental driver)
Main features:
- YUV->RGB 4:2:2 (UYUY/YUY2) fully hardware accelerated
- YUV->RGB 4:2:0 (YV12/I420) hardware accelerated with software swizzling
- Horizontal upscaling up to 8x fully hardware accelerated (HQ linear filter)
- Horizontal downscaling up to 4x hardware accelerated with software decimation (HQ linear filter)
- Vertical upscaling software linear filtering
- Vertical downscaling software decimation (no filtering)
Download (0.023MB)
Added: 2006-07-15 License: GPL (GNU General Public License) Price:
1201 downloads
SynapseLife Toolbar Extension 0.1
SynapseLife Toolbar Extension provides easy access to SynapseLife. more>>
SynapseLife Toolbar Extension provides easy access to SynapseLife.
SynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
<<lessSynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
Download (0.15MB)
Added: 2007-03-31 License: MPL (Mozilla Public License) Price:
965 downloads
mnoGoSearch extension for PHP 1.0.0
nmGoSearch extension for PHP is a complete PHP binding for the mnoGoSearch API. more>>
nmGoSearch extension for PHP is a complete PHP binding for the mnoGoSearch API.
If used with mysql you should not use bundled mysql library in the php distribution. You should use native mysql library. To do this you should compile php with specefying mysql-dir (for example --with-mysql=/usr, not --with-mysql).
To compile PHP with CVS versions of mnogosearch (not with official releases) you must open configure script of mnogosearch in your editor. Find line like the following:
VERSION=x.x.x-`date "+%d%m%Y"`
where x.x.x is the mnogosearch version number like 3.2.16 or so.
Then just remove -`date "+%d%m%Y"`. After that this line should be VERSION=x.x.x
After complete you should reconfigure, recompile, reinstall mnogosearch and php.
<<lessIf used with mysql you should not use bundled mysql library in the php distribution. You should use native mysql library. To do this you should compile php with specefying mysql-dir (for example --with-mysql=/usr, not --with-mysql).
To compile PHP with CVS versions of mnogosearch (not with official releases) you must open configure script of mnogosearch in your editor. Find line like the following:
VERSION=x.x.x-`date "+%d%m%Y"`
where x.x.x is the mnogosearch version number like 3.2.16 or so.
Then just remove -`date "+%d%m%Y"`. After that this line should be VERSION=x.x.x
After complete you should reconfigure, recompile, reinstall mnogosearch and php.
Download (0.015MB)
Added: 2006-07-19 License: The PHP License Price:
1193 downloads
Lua Networking Extension Library 0.5
LUA is a small scripting language designed to be embedded inside your application to provide extensibility. more>>
LUA is a small scripting language designed to be embedded inside your application to provide extensibility.
It is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
<<lessIt is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
Download (0.017MB)
Added: 2005-11-01 License: LGPL (GNU Lesser General Public License) Price:
1454 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 ruby extension 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