plugin 0.2
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2704
XFCE Radio Plugin 0.2.1
XFCE Radio Plugin is an XFCE panel plugin which allows you to control your v4l radio device from within the panel. more>>
XFCE Radio Plugin is a plugin for the XFCE panel, which allows you to control your v4l radio device from within the panel.
<<less Download (0.31MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
864 downloads
CDcover XMMS Plugin 0.2
CDcover XMMS Plugin displays a graphic dependent on the currently played song. more>>
CDcover XMMS Plugin displays a graphic dependent on the currently played song.
Normal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
<<lessNormal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
Download (0.23MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1291 downloads
Xfce 4 Dict Plugin 0.2.1
Xfce 4 Dict Plugin can help you query a dictionary server(see RFC 2229) to search for the translation or explanation of a word. more>>
Xfce 4 Dict Plugin can help you query a dictionary server(see RFC 2229) to search for the translation or explanation of a word. You can also choose a dictionary offered by the server to improve your search results.
Usage:
- Compile and install the dict package
- Right-click the Xfce panel > Add New Item > Dict
There are two special dictionaries:
- - use this dictionary to search in all available dictionaries on the server
! - use this dictionary to search in all available dictionaries on the server but stop searching after the first match.
You can also easily select a word in an email or on a webpage and drag it onto the dict icon in your panel, then the plugin begins to search and shows you the results.
<<lessUsage:
- Compile and install the dict package
- Right-click the Xfce panel > Add New Item > Dict
There are two special dictionaries:
- - use this dictionary to search in all available dictionaries on the server
! - use this dictionary to search in all available dictionaries on the server but stop searching after the first match.
You can also easily select a word in an email or on a webpage and drag it onto the dict icon in your panel, then the plugin begins to search and shows you the results.
Download (0.28MB)
Added: 2007-03-06 License: GPL (GNU General Public License) Price:
962 downloads
Rails History Plugin 0.2
Rails History Plugin is a Ruby on Rails plugin that stores user actions (i.e. URLs that the user has recently visited). more>>
Rails History Plugin is a Ruby on Rails plugin that stores user actions (i.e. URLs that the user has recently visited).
It avoids storage of POST and AJAX requests, and it provides a manual way to specify which actions not to store.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
In your app/controllers/application_controller.rb, add a history line like this:
class ApplicationController < ActionController::Base
history :default => "http://default.url.com/",
:max => 10
end
The history function accepts a hash of options
:default, the default URL to redirect
:max, the maximum locations to remember (five by defaults).
None of the parameters are required. If somebody knows of a better way to obtain the default URL, he is welcomed to tell me how.
You can use the method history_skip in your controller if you want to avoid certain location to be stored in the history. By default, action resulting from a POST, PUT, DELETE request or an Ajax request are not stored in the history.
class FooController < ApplicationController
history_skip :action_to_skip
def action_to_skip
# I will not be stored in the history
end
end
In your actions, you can then use the following methods:
last_location: returns the last visited location, can be used with one numeric argument precising how many locations to go back in the history (1 by default),
peek_last_location: like last_location but dont remove it from the history,
redirect_back: redirect the user to the last location in history, it takes the same arguments as last_location,
store_location(force = false): stores the current location in the history, set force parameter to true to store location even if it would be skipped.
Note that if you want to use the plugin to create a "back" link on a page, you must go back two times. For example, using this controller
class HistoryController < ApplicationController
def foo
end
def bar
end
def back
redirect_back(2)
end
end
Ill try to explain clearly why. Lets say that in your bar view, you create a back link wich links to the back action. Now a user visits foo then bar. What you want is your user being redirected to foo when clicking your "back" link. Now your user hits the link. The controller will call the back action. From its point of view, you are in the back action so going back one time would take you to the bar action.
Enhancements:
- This release fixes a bug where a user variable was stored in a class variable instead of a session one, so a user going back would make another one skip a page in its history.
- The plugin no longer stores PUT and DELETE requests.
- A peek_last_location method was added to look at the history without modifying it, and a "force" parameter was added to the store_location method to force storing of a location even if it would normally be skipped.
<<lessIt avoids storage of POST and AJAX requests, and it provides a manual way to specify which actions not to store.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
In your app/controllers/application_controller.rb, add a history line like this:
class ApplicationController < ActionController::Base
history :default => "http://default.url.com/",
:max => 10
end
The history function accepts a hash of options
:default, the default URL to redirect
:max, the maximum locations to remember (five by defaults).
None of the parameters are required. If somebody knows of a better way to obtain the default URL, he is welcomed to tell me how.
You can use the method history_skip in your controller if you want to avoid certain location to be stored in the history. By default, action resulting from a POST, PUT, DELETE request or an Ajax request are not stored in the history.
class FooController < ApplicationController
history_skip :action_to_skip
def action_to_skip
# I will not be stored in the history
end
end
In your actions, you can then use the following methods:
last_location: returns the last visited location, can be used with one numeric argument precising how many locations to go back in the history (1 by default),
peek_last_location: like last_location but dont remove it from the history,
redirect_back: redirect the user to the last location in history, it takes the same arguments as last_location,
store_location(force = false): stores the current location in the history, set force parameter to true to store location even if it would be skipped.
Note that if you want to use the plugin to create a "back" link on a page, you must go back two times. For example, using this controller
class HistoryController < ApplicationController
def foo
end
def bar
end
def back
redirect_back(2)
end
end
Ill try to explain clearly why. Lets say that in your bar view, you create a back link wich links to the back action. Now a user visits foo then bar. What you want is your user being redirected to foo when clicking your "back" link. Now your user hits the link. The controller will call the back action. From its point of view, you are in the back action so going back one time would take you to the bar action.
Enhancements:
- This release fixes a bug where a user variable was stored in a class variable instead of a session one, so a user going back would make another one skip a page in its history.
- The plugin no longer stores PUT and DELETE requests.
- A peek_last_location method was added to look at the history without modifying it, and a "force" parameter was added to the store_location method to force storing of a location even if it would normally be skipped.
Download (0.011MB)
Added: 2006-06-29 License: MIT/X Consortium License Price:
1213 downloads
Xfce 4 Radio Plugin 0.2.0
Xfce 4 Radio Plugin is a plugin to control your V4l radio device. more>>
Xfce 4 Radio Plugin is a plugin to control your V4l radio device.
Usage:
First, add the plugin to your panel.
Then, to switch your radio on/off, simply left-click on the plugin’s icon (by default it says “- off -”, if it’s turned on it displays the current frequency).
Once turned on, the middle button will show you the station preset menu. This is also the place to set the frequency you’d like to tune your radio to.
The mouse wheel allows you to change frequency or station preset. You can choose your preferred behaviour in the properties dialog (right-click menu).
<<lessUsage:
First, add the plugin to your panel.
Then, to switch your radio on/off, simply left-click on the plugin’s icon (by default it says “- off -”, if it’s turned on it displays the current frequency).
Once turned on, the middle button will show you the station preset menu. This is also the place to set the frequency you’d like to tune your radio to.
The mouse wheel allows you to change frequency or station preset. You can choose your preferred behaviour in the properties dialog (right-click menu).
Download (0.14MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
963 downloads
Xfce 4 Taskbar Plugin 0.2.0
Xfce 4 Taskbar Plugin is a taskbar plugin for the panel. more>>
Xfce 4 Taskbar Plugin is a taskbar plugin for the panel. The size of the taskbar can be changed via the properties dialog. It includes an “expand the panel to fill the screen” feature.
Usage:
This plugin works as any taskbar, showing you the running applications. You can show, hide or close any application on right clicking on his icon on the plugin. He also have the ability to group tasks from the same application and can be expanded in order to take all the available space on the screen.
<<lessUsage:
This plugin works as any taskbar, showing you the running applications. You can show, hide or close any application on right clicking on his icon on the plugin. He also have the ability to group tasks from the same application and can be expanded in order to take all the available space on the screen.
Download (0.27MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
961 downloads
VU Leds XMMS Plugin 0.21
VU Leds XMMS Plugin simulates a vu meter using the keyboard LEDs. more>>
VU Leds XMMS Plugin simulates a vu meter using the keyboard LEDs. Options include reversing LED direction and binary flash mode (binary scale from 0-7). VU Leds must be run as root.
<<less Download (0.11MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1303 downloads
hReview WordPress Plugin 0.2
hReview WordPress Plugin is a plugin that allows for the easy entry of hReview microformat content for reviews in WordPress. more>>
hReview WordPress Plugin is a plugin that allows for the easy entry of hReview microformat content for reviews in WordPress 2.0.x pages and posts.
The plugin adds a button to the editor that pops up a form with basic review fields, then inserts the contents of the fields back into the editor using markup compatible with hReview.
<<lessThe plugin adds a button to the editor that pops up a form with basic review fields, then inserts the contents of the fields back into the editor using markup compatible with hReview.
Download (0.012MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
Rails Page Cache Test Plugin 0.2
Rails Page Cache Test Plugin adds two assertions to the Test::Units::TestCase class of Ruby on Rails. more>>
Rails Page Cache Test Plugin adds two assertions to the Test::Units::TestCase class of Ruby on Rails to check the caching and expiring of pages in integration tests.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
First create an integration test. Then, to test caching of the "/pages/about" and "/pages/contact" pages, add a method like this:
def test_caching
assert_cache("/pages/about", "/pages/contact")
end
The assert_cache method will
- first make sure that the urls are not cached,
- execute a get on each request,
- assert that the corresponding cache files have been created.
You can also give a block to the assert_cache method. Instead of executing a get on each url, it will yield the urls. For example:
def test_caching
assert_cache("/pages/about",
"/pages/contact") do |url_about, url_contact|
post url_about
post url_contact
end
end
You will also certainly want (and thats really the most interesting part) to check if your cached pages expires when the user is doing some action. For that, here is the assert_expire method:
def test_expiring
assert_expire("/news/list", "/news/show/1") do |*urls|
post "/news/delete/1"
end
end
Here the assert_expire method will
- check that the urls are cached,
- execute the post request,
- and assert that the urls are no more cached.
This is great for testing your cache sweepers logic.
Enhancements:
- This release adds a test for action and fragment caching.
- The plugin does not look at the filesystem anymore to see if page are cached or not.
- It hijacks the ActionController::Base page caching methods to store which pages are cached and expired, and uses that information for the assertions.
<<lessInstallation:
Unpack into the vendor/plugin and that should be it.
Usage:
First create an integration test. Then, to test caching of the "/pages/about" and "/pages/contact" pages, add a method like this:
def test_caching
assert_cache("/pages/about", "/pages/contact")
end
The assert_cache method will
- first make sure that the urls are not cached,
- execute a get on each request,
- assert that the corresponding cache files have been created.
You can also give a block to the assert_cache method. Instead of executing a get on each url, it will yield the urls. For example:
def test_caching
assert_cache("/pages/about",
"/pages/contact") do |url_about, url_contact|
post url_about
post url_contact
end
end
You will also certainly want (and thats really the most interesting part) to check if your cached pages expires when the user is doing some action. For that, here is the assert_expire method:
def test_expiring
assert_expire("/news/list", "/news/show/1") do |*urls|
post "/news/delete/1"
end
end
Here the assert_expire method will
- check that the urls are cached,
- execute the post request,
- and assert that the urls are no more cached.
This is great for testing your cache sweepers logic.
Enhancements:
- This release adds a test for action and fragment caching.
- The plugin does not look at the filesystem anymore to see if page are cached or not.
- It hijacks the ActionController::Base page caching methods to store which pages are cached and expired, and uses that information for the assertions.
Download (0.010MB)
Added: 2006-10-18 License: MIT/X Consortium License Price:
1102 downloads
Tiff Plugin 0.3
Tiff Plugin is Mozilla/Netscape compatible plugin for viewing TIFF images. more>>
Tiff Plugin is Mozilla/Netscape compatible plugin for viewing TIFF images.
Its features include zooming, rotation, and a progress bar when downloading images. It is ideal for when available memory is limited.
Main features:
- Zoom in - keyboard shortcut +
- Zoom out - keyboard shortcut -
- Rotate anticlockwise - keyboard shortcut a
- Rotate clockwise - keyboard shortcut c
- Progress bar when downloading images
The plugin is available in .deb format for i386 and amd64 systems. So debian based systems can install with
dpkg -i mozilla-tiff-plugin-i386.deb
OR
dpkg -i mozilla-tiff-plugin-amd64.deb
For non debian based systems, the sources need to be compiled. For compiling the packages pkg-config, libgtk2.0-dev and mozilla-dev need to be installed. The steps to install the source would be
tar -zxvf mozilla-tiff-plugin.tar.gz
cd mozilla-tiff-plugin
make
make plugin
make install
The plugin has been tested on firefox and mozilla browsers.
Enhancements:
- Multi-page tiff support was added.
- Memory management was improved.
<<lessIts features include zooming, rotation, and a progress bar when downloading images. It is ideal for when available memory is limited.
Main features:
- Zoom in - keyboard shortcut +
- Zoom out - keyboard shortcut -
- Rotate anticlockwise - keyboard shortcut a
- Rotate clockwise - keyboard shortcut c
- Progress bar when downloading images
The plugin is available in .deb format for i386 and amd64 systems. So debian based systems can install with
dpkg -i mozilla-tiff-plugin-i386.deb
OR
dpkg -i mozilla-tiff-plugin-amd64.deb
For non debian based systems, the sources need to be compiled. For compiling the packages pkg-config, libgtk2.0-dev and mozilla-dev need to be installed. The steps to install the source would be
tar -zxvf mozilla-tiff-plugin.tar.gz
cd mozilla-tiff-plugin
make
make plugin
make install
The plugin has been tested on firefox and mozilla browsers.
Enhancements:
- Multi-page tiff support was added.
- Memory management was improved.
Download (0.013MB)
Added: 2006-08-01 License: LGPL (GNU Lesser General Public License) Price:
1207 downloads
Todo: AIO plugin 0.31
Todo: AIO plugin is a todo plugin for Aero AIO. more>>
Todo: AIO plugin is a todo plugin for Aero AIO.
Usage:
- Install the plugin via the Aero-AIO config dialog.
<<lessUsage:
- Install the plugin via the Aero-AIO config dialog.
Download (0.020MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1214 downloads
ps: Aero AIO plugin 1.0.2
ps: Aero AIO is a plugin for Aero AIO that show the 6 most resource intensive processes. more>>
ps: Aero AIO is a plugin for Aero AIO that show the 6 most resource intensive processes. You can choose whether to sort on CPU, mem or elapsed time.
Usage:
- Install the plugin via the Aero-AIO config dialog. The columns have headings
<<lessUsage:
- Install the plugin via the Aero-AIO config dialog. The columns have headings
Download (0.011MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1225 downloads
g4mon 0.2.5
g4mon is a gkrellm2 plugin showing current temperature and fan speed from sensors of g4 computer under linux. more>>
g4mon is a gkrellm2 plugin which can show the current temperature and fan speed from sensors of g4 (ibook,powerbook,etc) computer under linux.
<<less Download (0.009MB)
Added: 2006-05-02 License: GPL (GNU General Public License) Price:
1270 downloads
DB Copy Plugin 1.0
DB Copy Plugin is a database copying plugin for the SQuirreL SQL Client. more>>
DB Copy Plugin is a database copying plugin for the SQuirreL SQL Client. DB Copy Plugin makes it possible to copy and paste tables from one session to another and between different databases and includes primary key and foreign key constraints for copied tables, and uses Hibernate 3.0 internally to perform database object type mappings.
It supports Firebird, Oracle, Sybase, MS SQL Server, MySQL, HyperSonic, Pointbase, and PostgreSQL, and allows the user to select a Hibernate dialect for the destination database if one couldnt be determined automatically.
Enhancements:
- Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed
<<lessIt supports Firebird, Oracle, Sybase, MS SQL Server, MySQL, HyperSonic, Pointbase, and PostgreSQL, and allows the user to select a Hibernate dialect for the destination database if one couldnt be determined automatically.
Enhancements:
- Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed
Download (2.5MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1108 downloads
Google Maps Plugin 5.2
Google Maps Plugin is an easy way to embed custom Google Maps on a Web site. more>>
Google Maps Plugin is an easy way to embed custom Google Maps on a Web site. The project includes features such as multiple markers, paths, and general drawings.
If you use WordPress.org blogs, you will be able to install this software easily as a WP plugin.
<<lessIf you use WordPress.org blogs, you will be able to install this software easily as a WP plugin.
Download (0.019MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
897 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 plugin 0.2 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