search for: schwarzschmid

Displaying 12 results from an estimated 12 matches for "schwarzschmid".

Did you mean: schwarzschild
2006 May 02
10
[OT]: Asking questions on this list
Hi List, it appears that for the third or fourth time now, I''ve asked a question that nobody seems to respond to. Other questions (often things that could quite easily have been extracted by searching with Google or from api.rubyonrails.org) are answered almost momentarily. I''ve to admit I''m more than a little frustrated by this, so have to ask myself if it was my own
2006 Mar 03
17
RCSS problems
Hi List! Following http://rcss.rubyforge.org/files/README.html, I''m trying to get RCSS to work with Rails. The rcss command itself works fine, but when trying to access http://localhost:3000/rcss/test.css I always get "Unknown action - No action responded to test.css", which I don''t understand since the route and controller are in place. Anyway, hopefully this is
2006 Mar 03
7
Best Practices question regarding views & controllers
Hi List! I''m reading the Agile book, as many online articles as I can, but there''s still some things that are just too hard to answer for yourself. In building my application, I often find myself putting code into my views of which I am not quite certain it belongs there. Where do you usually draw the line? Is it okay to, say, loop through an array of hashes that represents
2006 May 02
16
no one cares about i18n (was [OT]: Asking questions on this list)
...raging people to do things the "Right Way", yet none of the Rails books/articles I have read (AWDwR, Rails Recipes, etc.) even discuss how to do i18n, let alone encourage it. Why? On 5/2/06, James Ludlow <jamesludlow@gmail.com> wrote: > > On 5/2/06, Raphael Schmid <raphael@schwarzschmid.de> wrote: > > > it appears that for the third or fourth time now, I''ve asked a > > question that nobody seems to respond to. Other questions (often > > things that could quite easily have been extracted by searching > > with Google or from api.rubyonrails.org...
2006 Mar 22
9
Setting empty fields with in_place_editor_field
Hi all! Playing around with in_place_editor_field, I found that when you set a field to be empty, you can''t edit it at all anymore after that. Am I doing something wrong or is this the way it is intended to be? If so, is there any way around that behaviour? Is it just styling? Best regards, Raphael -- Posted via http://www.ruby-forum.com/.
2006 Mar 19
38
Macbook for Rails Development
Hi All, I''ve finally got fed up of struggling with Windows and am on the verge of splashing out on a Macbook for Ruby/Rails development. I''ve seen DHH''s post about it on loudthinking but I wondered if anyone else has any more wisdom... Is it worth it over a powerbook? Any tips on good OSX apps for Rails dev (textmate, i know already)? Anything not working well on
2006 Mar 03
68
Agile Web Development with Rails 1.1
Dave, on another topic, might I recommend that you and DHH publish an updated version of the Agile guide right away when 1.1 comes out? You could reuse much of your material and it would do a lot of good to help make sure there is still a good centralized source of reference for Rails. Without that book, there really is not a good one-stop source of information for people to learn how to use
2006 May 01
2
GetText.update_pofiles: seeking help with error message
[Re-post from Ruby list, where this didn''t belong. Sorry for the noise.] Hi all! Following the guide at http://manuals.rubyonrails.com/read/chapter/105, I''m trying to i18n a Rails application. However, when executing ''rake updatepo'', I get the following error message: "numeric literal without digits" Searching Google and the mailing list
2006 May 01
1
i18n: duplicate message definition
Okay, this internationalization stuff with gettext is driving me nuts. "duplicate message definition" all over. Searching Google brings up lots of info that there may not be duplicate message ids, oh wonder. Nobody on IRC knows anything about it. One guy has had the problem, there''s a transcript on rails-weenie''s website, but no answer. PLEASE, HELP! -- Raphael
2006 May 02
0
Where does Locale come from?
Hi all, where does Locale come from? In script/console it''s available, in irb it is not. The pickaxe does not know it. Grepping for it in /usr/lib/ruby/gems/1.8/gems doesn''t yield anything at all. Grepping for it in /usr/lib/ruby tells me that it is defined in a file called /usr/lib/ruby/1.8/irb/locale.rb, and that /usr/lib/ruby/1.8/irb/init.rb actually instantiates it?!
2006 May 02
2
Mapping/Routing: connecting ?lang=de to blah.org/de?
Hi List, how would you modify routes.rb to get something like http://example.org/de/controller/action instead of http://example.org/controller/action/?lang=de ? (Using the Ruby-GetText method for internationalization, which allows you to specify the sites'' language in the lang param) I''d be grateful for any hints that you might have! Regards, Raphael -- Posted via
2006 Mar 15
4
[NQ] How to set an initial FK for a new item of something?
Hi all, running into a little problem here. I''ve a list of things with a "New thing" link beneath it. When you click that link, obviously, a new thing shall be created. Now, that works pretty fine for things that don''t have foreign keys, but for things that do it crashes, since there is not yet a thing.other_thing.name available. I suspect you can somewhere in