Displaying 20 results from an estimated 35 matches for "fr_rr".
Did you mean:
fr_fr
2006 Feb 21
1
[ADV] Next beta of Rails Recipes is available
...read the section on In-Place editing, you
won''t believe how easy it is to create this style of Web 2.0
application (I was up half the night converting our in-house apps
after I read it.)
If you already have the beta, you can update it by visiting
http://books.pragprog.com/titles/fr_rr/reorder
If you''d like to get the book, it''s available now from
http://pragmaticprogrammer.com/titles/fr_rr
Cheers
Dave
2006 Feb 06
35
ROR Recipes Beta
Yesterday I got the beta version of ROR recipes book and the recipes are great. For those of you still thinking about it, I highly recommend the book.
The only thing I wish is that if there were some more recipes (greedy me), especially AJAX related and installing an application within your current application.
For instance, it will be great to see how one can implement the typo blog
2006 Feb 21
7
Self-referencial habtm relationship
Heyo!
I am setting up a self-referencial habtm relationship with the users
of my app. I am using Chad Fowler''s "Rails Recipes" to get me started,
and everything works great with the join table "people_friends". I add
friends by doing somebody.friends << somebodyelse. However, with my
app, there is an approval process so my join table has columns
person_id,
2006 Feb 06
4
Relationship Question (STI)
My girlfriend and I have been dating for two years, and she just told me she
has an STI...
Actually, I currently have three different models, like: Dog, Whale, Monkey
They all have some similar attributes, but, they are unique enough to
break into their own models. I could use STI, but I think the table would
just have too many columns.
Now, I wanted to let the Dog''s, Whale''s
2006 Feb 06
6
ActionMailer - ROR Recipes - Multipart/alternative
I am using the SaltedHashLoginGenerator. and would like to send the e-mail in multipart/alternative format.
By default my application is using forgot_password_en.rhtml template.
I read in the ROR Recipes book
"ActionMailer sees these templates, recognizes the pattern in their
file names, and automatically sets the MIME type of the message to
multipart/alternative and adds
2006 Feb 03
33
[ADV] Rails Recipes Beta Book is now available
...ng the beta process and for the life of this
edition of the book. If you also order the paper book, it''ll ship
just as soon as we have it in stock (probably sometime in May or
June, but you know what authors are like...)
You can buy the book via http://pragmaticprogrammer.com/titles/fr_rr
Thanks
Dave
2006 Jun 13
0
[ANN/ADV] Rails Recipes is Shipping
Hi All,
Pragmatic Dave Thomas tells me that Rails Recipes
(http://pragmaticprogrammer.com/titles/fr_rr) is now shipping! He and
Andy apparently have over a ton of books to deliver. If you''ve
ordered a paper book, it''s soon on the way. If you''ve been waiting,
now''s the time.
Amazon is also has the book in stock
(http://www.amazon.com/gp/product/0977616606/qid=1...
2006 Apr 18
2
Implementing Globalize
Hello all,
I was wondering if any of you know some good documentation that
points out how to implement the Globalization plugin in your existing
application.
Also some text on how to use a cms like system with Globalization
(how to handle the population of the translated texts per item for
example)
With kind regards,
Gerard de Brieder.
Govannon.
tel : +31624739047
2006 Mar 05
3
SQL Query for related entries based on tags
Can anyone help me out with a SQL query to pull related entries based on
tags?
--
Posted via http://www.ruby-forum.com/.
2005 Dec 21
3
Best Practices???
Has anyone come up with a list of best practices for App design using Ruby
On Rails?
John McClain
Senior Software Engineer
TCS Healthcare
jmcclain-RI2jYlfFOOy2dUpmj6OxPQC/G2K4zDHf@public.gmane.org
(530)886-1700x235
"Skepticism is the first step toward truth"
2006 Mar 16
1
[ADV] New Beta of Rails Recipes available
...now features contributions from three members of the Rails
Core Team,
and includes countless suggestions for existing readers. This is
definitely
the book to have on using Rails in the real world.
You can update the PDF if (for free, obviously) by visiting
http://books.pragprog.com/titles/fr_rr/reorder
You''ll need two of:
- your order number,
- the e-mail address you used on your order, and
- the first line of the street address in the order
(Remember, it''s easier to give just two, not three, pieces of
information. Order number
and email address tend to be least amb...
2006 Apr 07
3
Inline editing of datetime and dropdown select objects?
I don''t believe that Rails has support for the inline editing of
datetime objects or dropdown combo boxes.
Does anyone have a helper function or two that would allow me to do such
a thing?
--
Posted via http://www.ruby-forum.com/.
2006 Mar 08
3
migrations schema_info table, Rails Recipes Bug?
I have the rails recipes book and i was going through the migrations
recipe. Everything seemed to work except for the last part in trying to do
a rake migrate with a migration file version 1 and the schema_info version
set to 0. Without the force attribute, the rake migration fails, as
expected.
So the recipe says to run this:
ruby script/runner
2006 Mar 31
3
RJS templates outputting bloated code?
I''m an RJS newbie. I just did the tutorial at
http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates, and
then used wget to look at the output the RJS template generates. This is
what I got:
try {
new Insertion.Bottom("list", "<li>Fox</li>");
new Effect.Highlight("list",{duration:1});
Element.update("header", "RJS
2006 Jul 20
3
Ruby beginner..
Hi All,
I am a java developer. I wanna learn Ruby on Rails. Can anyone suggest some good books on Ruby or some url where can I learn the basics of Ruby.
Thanks,
Prabhu.
---------------------------------
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2?/min or less.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jul 24
3
administration tutorial
hi!
im learning how to work with sessions. i made a prretty simple login
system, but i havent found a good tutorial to make a login system with
permissions (admin can delete,edit,etc) other users only read, edit, etc
do u know where can i find some info/tutorial about that?
ty!!
--
Posted via http://www.ruby-forum.com/.
2006 Jul 31
1
Adding "groups" to a user model
At present I have the following models:
users <-> permissions <-> objects
I wish to expand this to include groups, so that groups can contain
users and have permissions (a user might be part of more than one
group). However, the only way I see to do this is:
users <-> user_permissions <-> objects
users <-> group_memberships <-> groups <->
2006 Apr 20
2
table that have many-to-may relationship to itself
In a social netowrk data model, users belongs other users, and can have
many friends as users, so it is a many to many relatioship.
the class definition could be
class User < ApplicationController
has_mang_ang_belongs_to users
But how it looks like in the mysql database tables in a "joined" users
table.
The question really is: what is the table looks like when a model has
2006 Apr 24
3
Rails Recipes Book: Routing Error
Hi,
I''m working on the first rails recipe, InPlaceEditing, and following the
instructions very carefully. After generating the scaffold for Contact,
I then go to the page, thus:
http://localhost:3000/contacts/
I get this error:
Routing Error
Recognition failed for "/contacts/"
What should I be checking for to resolve this problem?
Thanks.
--
Posted via
2006 Feb 09
0
OSCON Call For Proposals Deadline (Feb 13)
...com/cs/os2006/create/e_sess/
You can read more about OSCON here: http://conferences.oreillynet.com/os2006/
OSCON is a _lot_ of fun. Especially these days with Ruby''s increased
visibility. Hope to see you there!
--
Chad Fowler
http://chadfowler.com
http://pragmaticprogrammer.com/titles/fr_rr/ (Rails Recipes - In Beta!)
http://pragmaticprogrammer.com/titles/mjwti/ (My Job Went to India,
and All I Got Was This Lousy Book)
http://rubycentral.org
http://rubygarden.org
http://rubygems.rubyforge.org (over one million gems served!)