Displaying 20 results from an estimated 6000 matches similar to: "problem with globalize"
2006 Apr 02
16
12 / 16 = 0
Hi,
Just thought it was weird that Ruby doesn''t automatically cast ints to
floats. Seems so un-rubyish
irb(main):006:0> 12/16
=> 0
irb(main):007:0> 12.to_f / 16.to_f
=> 0.75
Jeroen
2005 Oct 17
8
Using active record for SELECT MAX(column) FROM ...
Hi,
Is there an easy way of querying an active record for a maximum column
value? I need to do queries like:
SELECT MAX(salary) FROM employees
TIA,
Jeroen
2005 Nov 16
3
controller before_filter issues
Hi,
Some controller filters:
before_filter :require_logged_in, :only => [:create, :new, :confirm]
before_filter :init_players, :only => [:create, :new, :confirm]
The first one, you guessed it, redirects a user if he''s not logged in.
Now when I hit this page and I''m not logged in, the 2nd filter gets
executed and throws an error, because it depends on the user
2006 Jan 23
7
Globalize - Wiki down, docs down, status?
Hi,
Currently the wiki entry for Globalize
http://wiki.rubyonrails.org/rails/pages/Globalize+Plugin
http://globalize.diluvia.net is down,
--
Posted via http://www.ruby-forum.com/.
2006 Feb 06
2
Globalize plugin, now I have two classes with the same name
Hi, newbie here.
I''m using the Globalize plugin, which defines a model with the same
name as one of my existing models. We both use a model called
Country. The Globalize Country model (within vendors/...) is wrapped
in module like this...
module Globalize
class Country < ActiveRecord::Base
...
end
end
And this is my Country model (within app/models)...
class Country <
2005 Dec 21
10
Globalize plugin
Is there any working example on using the Globalize plugin?
It could help alot
Thanks in advance
--
Alexander Antonakakis
email: alexis-+Saq9+MPrF0@public.gmane.org
2006 Mar 30
15
ActiveRecord 1.13.2 -> 1.14.0 breaks Postgres connectivity
To Whom It May Concern:
I have an ActiveRecord-based application (non-Rails). Life was grand
until I upgraded ActiveRecord yesterday, after which point I was getting
TONNES of these errors from my app and in PostgreSQL''s logs:
FATAL: terminating connection due to administrator command
According to Google searching, this happens when an external process
sends PostgreSQL SIGINT or
2006 Feb 01
6
how to create a command line script that acts on a model?
Hi,
I''m looking to create a ruby script that loads a bunch of records and
manipulates these. Where do I start?
I got this to begin with:
#!/usr/bin/env ruby
require File.dirname(__FILE__) + ''/../config/boot''
players = Player.find :all
But it complains about a DB connection. How do I set this up?
Jeroen
2005 Dec 06
1
globalize plugin question
Hi,
I''d like to try and use the Globalize plugin, but I only need a subset
of the features that plugin provides. I''d like to:
- translate text in views
- format date/time/numbers using different locales
I won''t be using stuff like:
Locale.set("en-US")
prod = Product.find(1)
prod.name -> "Meatballs"
Locale.set("es-ES")
prod =
2007 Dec 17
14
Change in isolation behaviour 1.08 - 1.10 ?
Hi,
I just moved from 1.08 to 1.10 and now have one example failing, which,
under 1.08, passed. Is the due to a change in behaviour?
Here''s my spec (removed some passing examples)
require File.dirname(__FILE__) + ''/../spec_helper''
describe "A user" do
before(:each) do
@user = User.new
@valid_user = User.new(
:email =>
2006 Mar 16
3
inserted_at seems buggy in production mode?
Hi,
I''ve got a table with an inserted_at column. When I insert a record it
automatically injects the current date/time, all is well.
Then when I insert a second record, it uses the exact same timestamp
that is used in the first record.
This behavior only seems to occur in production mode. When I restart the
server, the problem goes away but then immidetatly occurs again on the
2005 Nov 27
5
OT: good admin gui postgresql on OSX?
Hi,
I recently bought by first Mac and I''m looking for some alternatives for
my windows applications.
Does anybody know a decent gui admin app for postgresql? On windows I
use postgresql manager:
http://www.sqlmanager.net/en/products/postgresql/manager
I find this a very good piece of software and it''s free, even though I
paid a little for some extra features. I''d
2006 Sep 03
8
first request always fails
Hi,
Whenever I restart mongrel on my production server, the first request in
my browser always fails, I get this error:
Processing Base#index (for 83.xx.xx.xx at 2006-09-03 16:08:47) [GET]
Session ID: f1918346d193e19a70c3230286e5ce1a
Parameters: {}
TypeError (superclass mismatch for class Stats):
/app/models/stats.rb:1
stats.rb:1 just contains a normal A/R line:
class Stats <
2006 Mar 17
7
OT: Subversion folder cleanup
How do you clean up your app folder to place onto the server? I want to
get rid of all the .svn stuff.
Seth Buntin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060317/cc81d9f7/attachment.html
2006 Nov 30
5
stability
Hi,
Are there any recommendations as to what is currently the most stable
setup is for mongrel & apache? I read somewhere (probably here) that you
should avoid using PStore for sessions. Are there any more of such
recommendations? Also, what is currently the safest version of mongrel
to use in production?
Jeroen
2006 Mar 30
1
Globalize DB translate not working in Rails 1.1.0
It seems there have been some changes to ActiveRecord between Rails
1.1.0 RC and 1.10 Final that cause Globalize to fail; 1.10 RC was
working fine. When retrieving records from the DB only the base language
version is fetched, even when the locale has been set differently. The
SQL in the log confirms that Globalize is ignored and a regular find()
is performed.
2006 Apr 03
2
problems testing on 1.1 and postgresql
Hi,
I get errors doing this:
1) createdb myapp_test
2) rake db:test:clone_structure
3) rake test:units
rake aborted!
PGError: ERROR: relation "matches" already exists
I''m using the :sql schema format because there are some problems with
postgres and the :ruby schema format
config.active_record.schema_format = :sql
It seems rake test:units is trying to create the tables
2006 Oct 25
3
rails app breaks after pg restart
Hi,
Disclaimer: I''m pretty sure this isn''t a mongrel issue, as I''m pretty
sure I had the same problem back in the lighty-fastcgi days..
After a postgres restart, my rails apps crash with this error:
ActiveRecord::StatementInvalid (PGError: FATAL: terminating connection
due to a
dministrator command
server closed the connection unexpectedly
This probably
2006 Mar 28
2
error 500 page not showing on production (lighty)
Hi,
Do I need to configure something to get my custom public/500.html page
showing on my production server (lighttpd)? My custom 404 page is
showing but when I hit an exception I just see the default (Applcation
Error) message.
Also, is it possible to include some ERB in error404 and 500 pages?
Jeroen
2006 Mar 22
9
render partial from withit mail template
Hi,
I''m trying to include a partial in an email template but it throws me this:
undefined method `controller_path'' for SupportMailer:Class
Extracted source (around line #12):
11:
12: <%= render :partial => ''footer'' %>
I guess email views are a little different from normal ones as they
don''t seem to have a access to a proper controller (?)