Main > Free Download Search >

Free rails sublist plugin software for linux

rails sublist plugin

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1164
Ruby on Rails SubList Plugin 0.1

Ruby on Rails SubList Plugin 0.1


Ruby on Rails SubList Plugin makes it easy to have dynamic lists of related models on a single editing page. more>>
Ruby on Rails SubList Plugin makes it easy to have dynamic lists of related models on a single editing page.

The plugin is designed for models with one or more has_many relationship with other models.

By using AJAX for adding and removing "sub-forms" one can present the user with a single edit page that creates/edits the parent model as well as all of the children.

Usage:

Place the sub_list directory in the vendor/plugins dir of your application.

In the controller which you wish to have a sub list displayed, add the following lines:

include UIEnhancements::SubList
helper :SubList

sub_list SubModel, parent do |new_research_student|
#Place any construction (ie. defaults) required here
end

Replace SubModel with the class name of the sub model you wish to make available.

Replace parent with the parent object.

For instance, if you wish to have a Person controller that has a sub list of Dogs for each person, the sub model would be Dog and the parent would be person. It is expected that @person would exist and that it contains a has_many relationship named dogs.
<<less
Download (3.0MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1205 downloads
Rails History Plugin 0.2

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.
<<less
Download (0.011MB)
Added: 2006-06-29 License: MIT/X Consortium License Price:
1213 downloads
Rails Page Cache Test Plugin 0.2

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.
<<less
Download (0.010MB)
Added: 2006-10-18 License: MIT/X Consortium License Price:
1102 downloads
Ruby Editor Plugin 0.7.6

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.
<<less
Download (0.99MB)
Added: 2005-12-12 License: GPL (GNU General Public License) Price:
1412 downloads
XChat2 plugin

XChat2 plugin


XChat2 plugin helps you to use BMPx from within XChat, including remote control. more>>
XChat2 plugin helps you to use BMPx from within XChat, including remote control, add files to playlist from file or library, select bookmarked audio stream and having XChat interact with your IRC channel (displaying current track played) with a customizable look.

Usage:

You need to have Python plugin loaded first and then load bmp-xchat-plugin.py file. To autoload the plugin at startup, just copy it to your ~/.xchat2 directory. Then run /bmp help in xchat to have the list of supported commands.

<<less
Download (0.040MB)
Added: 2006-08-15 License: GPL (GNU General Public License) Price:
1178 downloads
jEdit Ruby Editor Plugin 0.8

jEdit Ruby Editor Plugin 0.8


jEdit Ruby Editor Plugin lets you manipulate Ruby and Rails code at the syntax level. more>>
jEdit Ruby Editor Plugin lets you manipulate Ruby and Rails code at the syntax level.
Focused on programmer productivity, the plugin provides method completion and an integrated Ruby documentation viewer.
Enhancements:
- be both jEdit 4.2 and jEdit 4.3 compatible
- use the latest release 0.9 of JRuby
- method complete from within a line of code! (bug fix)
This is the first release that is installable via the jEdit Plugin Manager interface, allowing you to be up and coding much faster. Many thanks to the revitalized jEdit team for helping me get this in place, in particular thanks to Alan Ezust for his encouragement and assistance.
Also special thanks to all the programmers out there that are blogging about the jEdit Ruby Editor Plugin; you give me the enthusiasm to keep this little project alive.
For the plugin to work with this release youll need to make sure youre running Java 5.0 (a.k.a. J2SE 5.0).
As always enjoy the release and post feedback to me at: robmckinnon at users dot sourceforge dot net.
<<less
Download (MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
682 downloads
XMMS Nebulus Plugin 0.8.0

XMMS Nebulus Plugin 0.8.0


Nebulus is an OpenGL/SDL visualization plugin for XMMS. more>>
Nebulus is an OpenGL/SDL visualization plugin for XMMS.

XMMS Nebulus Plugin features many options including fullscreen mode, effects priorities, the display of the song title, and more.

Its conceptually a compilation of various OpenGL effects that depends on the music

<<less
Download (0.50MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1021 downloads
FIR Filter Plugin 1.0.0

FIR Filter Plugin 1.0.0


The FIR filter Plugin is an effect plugin for XMMS which enables to filter audio data using long FIR filters. more>>
FIR filter Plugin is an effect plugin for XMMS which enables to filter audio data using long FIR (finite impulse response) filters. Typical applications is loudspeaker or room equalization which typically requires filters with more than 300 taps (filter weights).

The FIR filter plugin uses the fftw3 library to perform the filtering using the overlap-and-add method. If fftw3 is not available the plugin will perform the filtering (convolution) in the time-domain which is much less efficient for long filters.

<<less
Download (0.20MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1299 downloads
Dummy plugin

Dummy plugin


Dummy plugin is an xmms plugin that helps newbee vis plugin coders with the needed functions for xmms vis plugins. more>>
Dummy plugin is an xmms plugin that helps newbee vis plugin coders with the needed funcions for xmms vis plugins.

Dummy plugin only has the needed functions and a working audio renderer.



<<less
Download (0.14MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1306 downloads
VU Leds XMMS Plugin 0.21

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 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.

<<less
Download (0.012MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
Rails Real-Time Form Validation Plug-In 1.0.2

Rails Real-Time Form Validation Plug-In 1.0.2


Rails Real-Time Form Validation Plug-In uses AJAX to validate form data against a model in real-time. more>>
Rails Real-Time Form Validation Plug-In uses AJAX to validate form data against a model in real-time. AJAX requests are made as the user is filling in form fields.
The form data is then validated against a model on the server-side. RTV then responds with javascript that dynamically updates the HTML document. This enables you to mark form fields as valid/invalid using CSS.
The download package now includes a sample rails application. It does not need a database to run, thanks to this. Simply execute ./script/server from the rtv_sample_app directory and point your bwoser to http://localhost:3000.
Usage:
Download and extract the contents of the_plugin directory to your vendor/plugins directory. Please the the rtv_sample_app for more details.
In your controller:
include UIEnhancements::RealtimeValidation
helper :RealtimeValidation
realtime_validation_for(:the_form_id, :the_model)
In your view, after a form:
In your CSS (example):
.fieldWithoutErrors,
.fieldWithErrors
{
outline-width: 1px;
outline-color: white;
outline-style: solid;
/* !!HACK!! IE will not use this because it does not understand !important. Border is not needed for firefox, so make it 0px!*/
border-width: 0px !important;
/*for IE!*/
border-width: 1px;
border-color: white;
border-style: solid;
}
.fieldWithErrors
{
background: pink;
background-color:pink;
outline-color: red;
/*for IE!*/
border-color: red;
}
/* Browser support may be limited here...*/
.fieldWithErrors input,
.fieldWithErrors select,
.fieldWithErrors textarea
{
background: pink;
background-color: pink;
}
Known to work with:
- Rails 1.1.6
- FireFox 2
Enhancements:
- This release adds a sample application, some code cleanup and minor bugfixes, and some changes to the sample CSS.
<<less
Download (0.082MB)
Added: 2006-11-27 License: Public Domain Price:
1064 downloads
CodeSugar Eclipse Plugin 1.3.0

CodeSugar Eclipse Plugin 1.3.0


CodeSugar Eclipse Plugin is an Eclipse plugin that generates methods such as equals(), clone(). more>>
CodeSugar Eclipse Plugin is an Eclipse plugin that can generate methods such as equals(), clone(), toString(), and hashCode() for Java classes.
Enhancements:
- This release includes many feature enhancements in generated code, as well as UI refinements like enabling actions in the menu only when a type of .java file is selected.
<<less
Download (0.070MB)
Added: 2005-12-20 License: Freely Distributable Price:
1410 downloads
Google Maps Plugin 5.2

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.
<<less
Download (0.019MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
897 downloads
XFCE Radio Plugin 0.2.1

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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5