search for: pjhyett

Displaying 16 results from an estimated 16 matches for "pjhyett".

Did you mean: hyett
2005 Oct 21
21
PHPonRails ?
I''ve have a very tight schedule project that MUST (not my option), be developed in PHP. Is there a Rails based framework for this platform? I like the Rails way of things, but in this case, I cannot choose the programming language, so please don''t offend me :-) Thanks in advance, Alessandro _______________________________________________ Rails mailing list
2005 Jun 24
9
new mysql gem
Hi everyone, For those who have/had problems with Webrick not properly closing MySQL connections, there is a new MySQL gem. (Actually the version was released some time ago, just nobody took the time to make a gem) So run "gem update" or just "gem install mysql" to update (not sure if the latter also updates). Special thanks to Tobias Luetke, who forwarded the gem to Chad
2006 Aug 10
6
Multiple sites using one data source
Hi, Just wondering if anyone has any suggestions as to the best way to provide access to the same data source for the (possible) creation of multiple web sites. I figure my options are: - Direct database access over tcp - ActionWebService - Wait for ActionResource I''ve done up some work with ActionWebService already, but I don''t think it''s going to work because it
2006 May 28
14
Lightbox and RJS
Hi, I am trying to include lightbox functionality in my app, but there is a slight complication. Apparently lightbox initializes all the links to lightbox events on page load. However, in my case, some new links to lightbox events will be rendered to the page through ajax events (obviously this means after the page loads). So I figure I need to find a way to call lightbox''s
2006 Jul 29
0
RJS templates, Safari 1.3
...le to OS X 10.3 and earlier). I''m using Rails 1.1.4, running on either linux or OS X.. same results. My RJS pages work fine using Safari 2.0, IE and Firefox.. just not Safari 1.3. The twist is that the following RJS sites work fine in Safari 1.3: http://depot.iamjp.com/demo http://www.pjhyett.com/articles/2005/12/07/blackjax-and-rails-rjs-templates I downloaded the Blackjax demo and ran it locally, it worked fine with Safari 1.3. One thing that is different is that it uses the plugin for RJS, while my RJS pages are just using whatever comes with Rails 1.1.4. Has anyone else run in t...
2006 May 05
1
Help with ActiveRecord
Model: class AdminQueue < ActiveRecord::Base set_table_name ''adminqueue'' end Interacting with it in script/console >> AdminQueue.new => #<AdminQueue:0x240a910 @attributes={"topic_id"=>nil, "resolved"=>nil, "updated_on"=>nil, "action"=>nil, "type"=>nil, "post_id"=>nil,
2006 Apr 26
1
Possible acts_as_authenticated bug (or rails)
The code that comes with the plugin uses a method that looks like this: def password_required? crypted_password.blank? or not password.blank? end with validations that look like this: validates_presence_of :password, :if => :password_required? validates_presence_of :password_confirmation, :if => :password_required? validates_length_of
2006 Jan 17
2
Getting data back from thread spawn
I have a script that needs to be run, that in some cases will take longer than the server timeout. So, I''m thinking just throw the script in its own thread, but I need to be able to get the data back from that thread and refresh the page with the data returned. Any suggestions how to do this? Thanks, PJ
2005 Jul 06
4
Bug in shop demo
http://script.aculo.us/demos/shop if you drag an item from the product list straight to the droppable area to remove an item from the cart, it''ll still add it to the cart. -PJ
2007 May 14
3
RAILS on UBUNTU
Hello Friends! :) I''ve sold my iBook before landing in LA yesterday and as long as I can''t afford buying a new one I have to do it with LINUX : ) I''ve been installing the system yesterday and it''s working good, performances on athlon are good and I''m satisfied but I have two questions.. a) which editor to use? b) is there any *session disabled*
2005 Dec 25
5
RJS not working?
I''ve been attempting to add a simple rjs ''delete'' method to my project. However, no matter what I try, it simply doesn''t work. Even the easy, easy stuff seems broken. (Yes, <%= javascript_include_tag :defaults %> is being included in the template.) For example, from: http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates VIEW: <h1
2006 Apr 27
15
Which is faster, calling helpers or rendering a partial?
Using partials is a nice way to separate chunks of content into separate pages as opposed to building strings in helpers, but I''m wondering which is faster. It scares me when I see stuff like: Rendered users/_public (0.00051) Rendered users/_public (0.00009) Rendered users/_public (0.00008) Rendered users/_public (0.00008) Rendered users/_public (0.00008) ....50 more times Has anyone
2006 Jun 26
13
Why no forum app in rails yet?
Hi Guys, So creating a forums application seems like something that rails can handle easily and well, and whatever implementation that came to fruition would be head and shoulders above existing products like vBulliten and phpBB. Even the existing rails forums are using php-based forum products! An insult if you ask me. So my question -- is there any current development of a rails-based
2006 May 16
18
Ruby''s purpose?
Before I get flamed, I just want to start off by saying that I am new to Ruby and I really enjoy this language and want to see it succeed. But, what niche does this language fill? These are serious question, not a put down of the language. Does it has something to offer for Web 2.0? Is it just another scripting language? Does it suppose to replace something else? Does it suppose to work with
2006 May 02
96
[ADV] Second Edition of Agile Web Development with Rails
ANNOUNCING AGILE WEB DEVELOPMENT WITH RAILS, SECOND EDITION =========================================================== http://www.pragmaticprogrammer.com/titles/rails2/ Rails has changed a lot since we announced the first edition of the book a year ago. DHH says that the 1.1 release "boasts more than 500 fixes, tweaks, and features from more than 100 contributors." Who are we to
2006 Jun 22
4
Funky routing
map.connect '':controller/:action/:id'', :requirements => { :id => /^(.html)/ } The requirement is turning all of my routes into /foo?id=54354 instead of /foo/54354 Why? -- Posted via http://www.ruby-forum.com/.