Displaying 20 results from an estimated 4000 matches similar to: "Prompting user to enter value to feed Find"
2006 May 28
2
Upgrade from R1.8.2 to R1.8.4
Hello you all,
this is my first time on this forum because I recently started to learn
this exciting "new" language and Frame stuff...
anyway, I used to have Ruby 1.8.2 installed with Rails and I wrote some
warmup applications on these. Yesterday I decided to update my Ruby and
Rails... about 4-5 hours later I finished... it wasn''t easy but what
is.. right?
so I changed
2006 May 23
7
how to pull text from database and eval it?
I''m trying to add some executable code to my blog posts. How can I
include this inside of a blog post and eval it?
Charlie bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060523/a3536408/attachment.html
2006 Feb 26
3
how to format and syntax highlight code in html
I''ve written my own blog (I know typo is better, but I wanted the
experience of writing my own) and I want to add syntax highlighting to
it. I''ve read about using the ruby gem syntax but I can''t figure out
how to implement it. I''ve also wondered if it could be used in my case.
How does it work when you have a long line of code but the <div> your
2006 May 26
11
Weird Caching Issue
Hey all,
Here''s the issue... I''m not entirely sure it''s even a Cache-related issue,
but here it goes:
I''ve deployed a Rails app onto a subdomain of my clients site... The server
is running Apache2, and I''m proxying through to Lighttpd. The issue I''m
having is that I''m able to add content to the site (data exists in the db),
but
2006 Feb 28
5
List and update installed gems?
Hi, could someone tell me how to list and update the currently
installed gems on my rails installation?
Thanks in advance,
-Conrad
2006 May 10
3
NumbersToWords
= numbersToWords - convert your integers and floats to english or
japaneese words,or translate it into american currency
- This plugin was created from a solution to the ruby quiz (english
numbers) by Matthew D Moss. I modified the code to work as a rails
plugin and added the to_dollars method.
- the to_dollars method will work with integers and floats
- the to_english and to_japaneese methods
2006 May 17
1
rails will page cache all actions but one....why?
I have page caching turned on for all actions in my controller
(pragmatic is it''s name). Rails will cache each actions except for
one.
I''ll list the three ways this action can be called. It is only cached
one of the ways. Can somebody help?
http://www.recentrambles.com/pragmatic/index - This will not cache
httphttp://www.recentrambles.com/pragmatic This will not
2006 Apr 28
3
Rails wizard page support
Hello,
does anyone know if there is a "best practice" how to implement wizard pages in
RoR? I want to have multiple pages for entity editing and creation. Is there
any rails plugin available? I think it would be nice to have a howto in the
rails wiki or to have built-in wizard support in RoR. What do you think? Any
suggestions how to implement this elegant?
--
Oliver Paulus
OpenPGP
2006 Mar 29
2
vim syntax highlighting of rjs templates
Are there config files for vim that offer syntax highlighting of rjs
templates?
Charlie Bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060329/486c9d84/attachment.html
2006 Apr 18
11
how to release a plugin
I''ve developed a very useful (at least to me) plugin for rails. How do
I go about releasing it. I have an account with rubyforge but I don''t
know how to let rails know about it.
Charlie Bowman
www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 May 22
2
finding out the remote users username ENV[REMOTE_USER] ?
I''m trying to set the modified_by in my user table from the remote user
name. I have htaccess set up for the rails directory but I can''t seem
to get it to read the remote users name. is ENV[REMOTE_USER] the
correct syntax? I searched but I can''t seem to find a definitive
answer. Thank you for any help!
Charlie Bowman
http://www.recentrambles.com
-------------- next
2006 Mar 08
2
(no subject)
Can anyone point me in the direction of a good tutorial on visual
effects in rails? I''ve searched and I''ve asked but I can''t seem to find
any good documentation on ajax visual effects, combining of effects, or
queued effects.
Charlie Bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Mar 24
3
Changing sidebar in layout per controller
I am currently using 2 layouts in my site. One is for the admin area. I
am trying to get content in my sidebar to change depending upon the
current controller.
Example:
Within admin I have a users controller and a articles controller. When
in the users view I want the sidebar to display options (like add user
delete user etc).
What is the best actionview way to do this. I don''t
2006 Mar 22
6
Relatively easy HTML/XML parsing utilities?
Anyone know of any Ruby modules which can be used to parse an HTML page
?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2006 Apr 04
3
Keeping javascript in the <head>
Given that Rails has built in ways to do almost everything else :) , is
there a way to keep view specific javascripts inside the head tag of a
layout without having to include that javascript on every page?
--
Marlon
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060404/65e9bb6d/attachment.html
2006 May 03
1
sessions, cached pages, and the tmp folder
I''ve been running edge rails for a while but I can''t seem to get my
sessions and to be written to the rails_root/tmp folder. My sessions
keep getting wrote to the servers /tmp directory. What do I need to do
to get rails to use the new tmp folder? Thanks in advance
Charlie Bowman
www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
2006 May 01
3
Routing requests without ID parameter
Hi there,
This seems to be obvious but after reading a few times the section in
the Agile Wb Dev with Rails I''m still strugling.
I have a table with categories names which I want to display in the url
instead of their id. So far I managed to get both in the url by adding:
map.connect ''/:id/:category/'', :controller => "site", :action =>
2006 Mar 01
7
Instant Management Frontend with the Scaffolding Extensions Plugin
I''ve updated the Scaffolding Extensions Plugin[1] recently to add a
couple new features:
1) Scaffold all models and associations with one command
2) Show all associated objects on the edit page
Example of usage:
In an existing Rails application, create a controller (i.e.
"script/generate controller crud"), and modify so it looks like:
class CrudController <
2006 Apr 18
6
Best Practice for Returning to Calling Page?
I have a partial, it''s a shopping cart display, it''s designed to appear
on several different pages of my site.
One of the buttons on the shopping cart empties the cart, and then I
want the calling page to redisplay.
In other words, the cart controller needs to return the visitor to the
same page -- however since the cart could appear on any given page, this
has to be
2006 Apr 25
5
where does logic for the layout go?
on the main layout for my controller, i need a list of users - each with
their own link to a lists of tasks that they have been assigned.
i did have a line inside the .rhtml file that found all the users, but
i''m guessing this is probably the wrong place to put them. i''m new to
ruby and rails, so i still struggle a little with the MVC concept.
--
Posted via