Displaying 20 results from an estimated 4000 matches similar to: "Announcement: Indexed Search Engine 0.1.2 Available"
2006 Jan 22
7
: Indexed Search Engine 0.1.3 Released
Hello all,
IndexedSearch Engine for Rails Engines version 0.1.3 has been released.
IndexedSearch is a simple, pluggable engine for rails applications which can
be used to enable full text indexed searches within an application.
Searchable data is parsed, stemmed using the Porter stemmer, and added to a
fully indexed table. This allows you to index things like "he runs fast"
which will
2006 Jan 03
0
Indexed Search Engine 0.1 Released
Hello and happy new year.
This message has also been posted to the Rails Engines Users list, and
it was recommended that I widen my audience.
I''ve created a rails engine for adding a fully indexed search
capability to your rails applications.
>From the README:
"IndexedSearchEngine is a simple, pluggable engine for rails applications
which can be used to enable full text
2006 Jan 11
17
Different Types of Users and User Engine
My question is how have people implemented different types of users in
their Web applications using user-engine?
As for my application, I use single table inheritance in order to derive
several different types of users, such as "moderators," "editors," etc
...
For example, let''s say that I want to create a moderator. I define a new
moderator class and Controller like
2006 Jan 08
8
RaislsEdge - where to get latest javascripts ?
To play with RJS I just made a "rake freeze edge". But this copies only the
libs into vendor/rails and any attempt of "rake update_javascripts" fails.
But all the he required javascripts are there, at:
BASEPATH/vendor/rails/actionpack/lib/action_view/helpers/javascripts/
Except of prototype, they seem to have no version number, so I am asking
whether I should take those
2006 Jan 16
5
Soft Deletes
How would I go about setting up my rails applications to soft delete
items from the database rather than actually deleting it. I would
imagine that I need to over ride the methods from ActiveRecord.
Where would I do this would it be in the model? enviroment.rb? I
would imagine that if i wanted it throughout my entire application it
would need to be in the enviroment.rb.
Also to
2006 Mar 13
2
how do I render a partial view into a string from inside a view ?
I want to pass the partial to a Javascript function ( which uses the data
for for creating an iframe)
render_to_string is not accessible form a view
thanks in advance
--
Roberto Saccon - http://rsaccon.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060313/8165bcec/attachment.html
2005 Dec 23
3
RE: Scriptaculous and Prototype based Rich TextEditor
What I have so far.
In my main HTML:
<script type="text/javascript"
src="/javascripts/tiny_mce/tiny_mce_src.js"></script>
<script type="text/javascript">
tinyMCE.init({
mode: "textareas",
theme: ''advanced'',
theme_advanced_toolbar_location: ''top''
});
...
</script>
My Ajax form
2006 Mar 30
3
Export Fixtures Plugin
= Description
This plugin is a super lightweight tool used to export data into the
test/fixtures directory.
So if you want to export all your data from your production server into your
development environment, this will simplify the process without having to
load up your database manager.
[%] rake db:fixtures:export_all RAILS_ENV=development
[%] rake db:fixtures:load
= INSTALLATION
2006 Feb 03
6
Rich Text Editor
I know I saw something a while back about a simple Rich Text Editor; did
that go anywhere? I''d love to see something as simple as the one google uses
in gmail. If not, I''ll get started on it :-D.
-Jerod
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Mar 08
6
best practices for handling uploaded images and capistrano
Quick question: I am going to use the file_column plugin to manage uploading
thumbnails. By default the images are stored in the public/ dir of the
rails project. The problem I see is that when capistrano redeploys a new
build and symlinks it in none of the images will be in the new public/
dir... Does anyone have a solution for this?
Thanks,
Zack
-------------- next part --------------
An
2006 May 03
6
New Release: One-Click Ruby Installer 1.8.4-17 release candidate 2
We are almost there to a final release. The uninstall issues have been
fixed, and a few packages have been upgraded to more recent versions. Many
thanks to Ryan Leavengood and Shahank Date who stepped in to help finish off
this release!
*** Only "show-stopper" problems will be fixed ***
We are extreme short of manpower at the moment. So as much as I would like
to address each and every
2005 Nov 11
2
InPlaceEditor trouble
Hi all
this is my first post to this list. Im am trying to use the InPlaceEditor,
but I only manage to make it work in very simple case as in teh demo on the
wiki. In my case I have a list of records ("books") with different fields
and each field has an InPlaceEditor. My problem is how to pass teh id of the
record to the update action at the controller, I tried to define the
2006 Mar 14
2
slider.js in ruby on rails
Hello,
Is anyone using slider.js from script.aculo.us? I don''t understand how
to integrate it into a form in rails. I want to do something like
adjust (slide) age from 16-100.
Thank You,
jeff
2006 Feb 06
3
acts_as_threaded plugin
This plugin is related to the acts_as_nested_set functionality but differs
in that it allows multiple roots to exist within your database.
The other benefit, is that when adding a child, it doesn''t perform a full
table update to rebuild the tree, each child insertion only affects the tree
that it is placed in.
It even comes with my first screencast to show how you can build an old
2006 Mar 09
5
Comet support?
Just out of curiosity, is there a plan to support Comet (name coined by the
dojo guys) w/ prototype? Comet represents persisting an http connection for
low latency data operations. It also represents a nice alternative to
polling.
Jim
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2005 Nov 20
3
rounded corners in rails apps ?
Hi all
I like very much rounded corners and often used thee well known nifty
Javascript approach for that, Recently I discovered Rico (
http://openrico.org), which does the same and is much simpler to use (don''t
require additional css files) and is based on prototype.js. This is all very
nice, but there is currently one problem, the latest Rico library seems to
require prototype 1.3.1,
2006 Jan 18
3
search with like operation from a table
I have a table with the list of business name and address in it. It may
contain 1 million rows. The users want to look up into this table based
on the business name. The simple solution is to use LIKE in mysql, but I
am worried about performance, since the user load will be very high for
this system.
Any suggestion on how to handle the potential performance issue? How can
i use a search
2006 Jan 03
7
switchtower, windows and dispatch.fcgi
I just setup switchtower and I am very happy with it. Just one thing is
giving me some headache: My development machine is windows and my deployment
host is Unix. Each time I deploy I need to make dispatch.fcgi executable. I
wrote my own task for that. But does there exist any smarter way to get this
automated ? I think Subversion offers some possiblity to declare a file as
executable, but no idea
2006 Apr 10
24
Proposal of "Resizable" javascript library
Hi, All.
I''ve developed the small javascript library to make the widgets
"resizable". Please try attached file or following URL
URL: http://221.112.61.214/~kzk/others/mixi/resizer.html
Now I wish script.aculo.us developers to merge this into the
"script.aculo.us". Is there any chance of merge? Is this a right
place to ask this question?
Thanks in advance.
Kazuki
2006 Jan 18
5
Perform action after in-place edit
I want to be able to call an action after performing an edit using the
in-place editor macro. I want to update multiple divs so I was
thinking about using an RJS template. However, I can''t figure out how
to trigger another action after the method created by
in_place_edit_for runs. Is there is an option on Ajax.InPlaceEditor
where I can inject some Element.update calls?
Thanks,
Shane