Displaying 20 results from an estimated 20000 matches similar to: "Page Rendering problem with the Forum"
2006 Jan 22
12
Problems with File_column
Hi,
Rails - newbie here..
I''m setting up an app and am trying to use file_column to upload a
picture with an item and I''m running into several problems.
(Background: I''m running Locomotive Rails under OS X 10.4.4, and using
Safari)
I followed the directions to add the necessary items, then found out
that I had to add the item to make the form tag be a multipart
2006 Mar 23
4
Error with Rails 1.1RC1 and Properties page
I just tried setting up a simple Rails app, after updating to the
1.1RC1 version of Rails. Generating a simple scaffold worked fine, and
WEBrick started fine with script/server.
I then went to the http://localhost:3000 page and clicked on the
"About your application''s environment" link, and an error was
displayed:
NoMethodError in Rails/info#properties
private method
2006 Jan 23
3
Clearing a file_column-type field
So I am now able to set/upload an image to my app using file_column,
with a little bit of a change to the code.
I can change the image using an Edit page, but I''m trying to figure out
what to do if the user wants to remove the image. I tried adding a
Remove Image link in my list, but I''m not sure what to do in the
remove_image method in my controller. I tried setting the
2006 Apr 14
18
RJS Templates & Safari?
Hello,
I tried Cody Fauser RJS tutorial
(http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates)
on my railsplayground dev site and got it to work when using Firefox,
but when I tried it on Safari, nothing happens.
Then I tried this tutorial -
http://rewrite.rickbradley.com/articles/2006/02/06/rjs-templates
Similarly, it works fine on Firefox... but with Safari the list is not
2006 Jan 22
3
file_column and tmp files
Hi again...
One more item.. the file_column plugin uses a tmp directory inside the
/public directory to store a temporary uploaded item. But it looks like
this folder is just going to grow and grow. Is there some way to clear
this out or not cause this to happen?
Thanks once again!
--
Posted via http://www.ruby-forum.com/.
2005 Nov 07
2
Font rendering in Firefox after effects
Hi all
I''ve started using some of the scriptaculous effects here, and have
noticed something weird. Whenever I use one of the effects, it causes
many of the fonts on the same page to rendered with a lighter weight
(ie: "less bold").
Has anyone else noticed a similar effect in Firefox? I use 1.5b1 on
Mac. This seems to be a common bug in moz-based browsers, as Camino
does
2006 Jan 23
15
Looking for DB/Model Design Suggestions
Hi,
I''m working on an app - my first Rails - and am looking for some
suggestions on the best way (or good way) to set up my models / DB. In
general there are teams and matches; a team will participate in multiple
matches, and in each match there will be 6 teams - 3 vs. 3.
I''m going to want to be able, for a particular team, pull up all matches
for that team, to display a
2006 Jan 31
1
Updating :has_many - :through related items
Hi,
I''ve got my little app working pretty well. I''m using pretty much the
model and table layout from my previous thread, as suggested by Bill
Katz:
<http://www.ruby-forum.com/topic/52506#26260>
I have the Create page working and a delete Match page working, which
along with the appropriate record in the Matches table, removes the
linked items in the competitions table.
2006 Jan 23
0
form_remote_tag and Safari (HELP!)
<%= form_remote_tag :url => { :action => ''list_setups'' },
:loading => "Element.update(''setupslist_display'','''');
Element.show(''setupslist_progress'')",
:loaded => "Element.hide(''setupslist_progress'')",
:update => ''setupslist_display'',
2009 Feb 04
2
rendering error page for "Unauthorized" from before_filter
Hey all,
I am writing a plugin in which I want to stop the rendering of an
action with an unauthorized response if the user is not authorized to
view the resource. I am using a before filter to achieve this and
inside that before filter I do it like so:
render :text => "Unauthorized!", :status => :unauthorized, :layout
=> false
The status is properly set since I see the
2006 Apr 13
10
Code Igniter
Hi all,
I was just made aware of this:
<http://www.codeigniter.com>
I wonder where the inspiration comes from? Lots of very similar
concepts there ;)
I''ve only watched the intro movie so far, but very interesting.
jt
2006 Sep 28
2
RHTML page not rendering properly
I''ve got a weired problem. I got a RHTML page which is not rendered
properly in the browser all other pages in my app do renders correctly.
Only this one page returns the page''s HTML with the following header
Content-Type: text/html
Set-Cookie: _session_id=cb3c140fd4ef907c99ef203a053fba1a; path=/
Status: 200 OK
Cache-Control: no-cache
<html>
.....................
2006 Jul 04
0
Help with first AJAX action
I''ve used Rails for a while, but haven''t really done any AJAX until
now. Now I''ve been fighting for days with my first AJAX action and
after reliably crashing Safari and throwing errors in IE, I''m finally
coming to the list for help. :)
I have a "controls" div in my layout. This div displays a list of
page-specific actions. When some of these
2006 Apr 30
3
Problem(?) updating gems - mysql gem
Hi,
On OS X (10.4.6), Rails 1.1.2...
I tried doing a sudo gem update, and this is the result I''m getting:
Upgrading installed gems...
Attempting remote upgrade of mysql
Attempting remote installation of ''mysql''
Select which gem to install for your platform (powerpc-darwin8.6.0)
1. mysql 2.7.2006.04.21 (mswin32)
2. mysql 2.7 (ruby)
3. mysql 2.6 (ruby)
4. mysql
2006 Feb 01
5
lighttpd not starting on os X (intel)
Hi all,
I''m followed the instructions written here to prepare my new iMac for
Ruby / Rails developement:
http://hivelogic.com/articles/2005/12/01/ruby_rails_lighttpd_mysql_tiger
When I run script/server I get the following output:
harm-de-laats-computer:~/rails/test harmdelaat$ script/server
=> Booting lighttpd (use ''script/server webrick'' to force WEBrick)
=>
2006 Mar 13
4
Find and eager loading questions
Hi all,
I want to see if I''m not missing something with associations and eager
loading. (I''m currently using Locomotive on OS X and SQLite3.)
I have two simple tables/models, set up properly: teams has_many
:matches and matches belongs_to :teams. Matches has a match number and
a team_id field (along with several other fields) and teams has a
team_number field (again, along with
2011 Sep 04
4
same html elements rendering twice on page
hey all,
My index.html.haml:
- wrap do
- page_title "Teams List View"
application_helper.rb:
def page_title(title)
content_tag :h1, title
end
def wrap(&block)
concat(content_tag(:div, capture(&block), :class =>
"generic_header"))
end
I load in browser and get:
<div class="generic_header"><h1>Teams List
2012 Mar 08
0
Safari Version 5.1.3 (7534.53.10) Browser problem --- removing cookie on OS X Lion 10.7.3 (11D50b) when still valid
Hi All,
Hope this note helps the newbies to Rails
As I''m new to Rails, I''d like to share how I tracked down Safari''s
dropping of my cookie.
My Applebug no: 11003492 registered 7 March/2012
My development platform:
MacPro running rails 3.1.1 on OS X Lion 10.7.3 (11D50b)
Problem:
Firefox worked as programmed but switching to Safari my
current_user_token kept in the
2006 Feb 07
0
Rendering objects directly via <%= render @some_object %>
My original post might have been overlooked by most, but I''ve made a
plugin (link below) which allows rendering of objects directly via the
render method:
<%= render @some_object %> which would actuall render the @some_object
object (the object is even able to handle the options hash.
Rendering would actually be handeled by the object itself, by leaving it
up to the object to
2006 Aug 01
1
Missing flash.swf in .rhtml page in WEBrick dev environment?
So I''m trying to create a dashboard that displays data pulled in through
RoR. Some data populates table rows and other data I''m trying to feed
into an Adobe Flash swf file.
I have the path correct to my swf file (I can it being accessed in
Safari activity window) but it''s not rendering. When I try to access the
file directly within the :3000 environment I get