similar to: Rest and Mime Types

Displaying 20 results from an estimated 5000 matches similar to: "Rest and Mime Types"

2006 Nov 04
0
How do CRUD and REST work for a wizard-style application?
I''m rewriting an application with the intention to use the elegant CRUD and REST design principles as outlined by DHH in his RailsConf Keynote[1]. The question is: how do you use those principles for an application that is of a sequential nature? The application works much like an MS Windows wizard: user begins at screen foo. After doing (or not) some stuff in screen foo, he is taken to
2006 Jul 04
3
RailsConf 2006 Video Available
Video of the Chicago RailsConf keynotes are now online. At least two of them, anyway. So far Martin Fowler''s (Chief Scientist from ThoughWorks) and Dave Thomas'' (author of Pragmattic Programmer and Programming Ruby among others) can be found at blog.scribestudio.com . You can find the general release schedule of the other speakers here:
2006 Jun 28
0
ActiveResource (was: 1.1.3 available.)
2006/6/28, Paul Barry <mail@paulbarry.com>: > Where can I find info about the "CRUD/resource-based features" that will be > in 1.2.0? In blogs. Especially about Railsconf and DHH''s keynotes. In trunk : http://dev.rubyonrails.org/browser/trunk/activeresource In DHH slides : Transcription of some slides from DHH''s talk at RubyKaigi 2006 (I suppose it must
2006 Aug 04
4
REST
I''ve been looking into RESTful approaches lately. Everything I know my dog, Lelu, taught me. REST (REpresentational State Transfer) is an architectural technique for networked applications first described by Roy Fielding in his dissertation at UC Irvine-- excellent work, especially considering the tempting proximity of Newport Beach. As Lelu described it to me, REST strives
2006 Aug 11
0
Resotolog-1.2 - RESTful blog example (was Community request - can someone show me REST? )
On 8/2/06, Alisdair McDiarmid <alisdair@...> wrote: > Here you go: > http://randomoracle.com/stuff/RestBlog.tar.gz Hi guys, i modified a little the original Alisdair McDiarmid''s sources and created very simple blog system. So the announce follows: Restolog - RESTful blog example ========================= Very simple blog system based on REST/CRUD ideas. Sources (all
2005 Jan 07
5
Instiki 0.9.2
Instiki 0.9.2 has arrived. * The notorious "rollbacks by crawlers" bug fixed. * Instiki is distributed as a gem (experimental) * New maintainer (yours truly) * Assorted other minor changes Best regards, Alexey Verkhovsky ============= Don''t shoot the pianist, he''s doing his best README Path: README Last Update: Fri Jan 07 10:06:43
2006 Jul 16
1
RailsConf slides anywhere?
I''m watching the keynotes on scribestudio. I''ve found the slides for DHH''s keynote, but can''t find anything for Dave Thomas oor Martin Fowler. Are they available at all? Pat
2013 Feb 06
1
how to extract test for collinearity and constantcy used in lda
Hi everyone, I'm trying to vectorize an application of lda to each 2D slice of a 3D array, but am running into trouble: It seems there are quite a few 2D slices that trigger either the "variables are collinear" warning, or worse, trigger a "variable appears to be constant within groups" error and fails (i.e., ceases computation rather than skips bad slice). There are
2005 Mar 07
0
Rails 0.10.1: FCGI stability, WS generator, tons of fixes
This is the point release to tie up the various loose ends introduced with Rails 0.10.0. Action Web Service has seen the most interesting improvements feature-wise with a new generator and tie-ins with the testing setup. There''s better support for XML-RPC: Instead of performing type checking on the parameters the remote client sends, AWS does casting to try and make it compatible
2006 Sep 01
0
Are you using Array#in_groups_of(n, false)?
Are you using Array#in_groups_of(n, false)? That is, you want the array chopped into n groups, and if its an uneven number, you want the missing positions filled with "false". If so, please post the brief snippet where it is being used. (I''m trying to settle a bet with Mr. koz.) -- David Heinemeier Hansson http://www.loudthinking.com -- Broadcasting Brain
2003 Dec 20
1
rsync "hang"
Hello rsync list, I am running a Solaris 8 system and have rsync 1.6.2 protocal 14 installed. We have updated (wed 17-dec) to the latest Solaris 8 recommended patch set. When performing an rsync of two local UFS partitions rsync "hung", never completed, didn't exit. What I forced an exit via kill signal core dumped. Config of disks is that 1) Mirror by Solistice Disksuite rsync to
2000 Sep 27
1
Wrapping R for windows in a com dll
Dear R Community, I am trying to create a com dll wrapper for R in a mannor similiar to the R Com Server by Thomas Baier except that I would much rather avoid using the proxy dll ("Rproxy.dll"). Perhaps I don't really understand the reason for going throug the proxy in the first place, but it seems like an unnecessary indirection for an application which is not intended to use DCom.
2006 Aug 10
0
DHH''s Post on Ruby Talk -- Rails 1.1.6: Stronger fix, backports, and full disclosure
The cat is out of the bag, so here''s the full disclosure edition of the current security vulnerability. With Rails 1.1.0 through 1.1.5 (minus the short-lived 1.1.3), you can trigger the evaluation of Ruby code through the URL because of a bug in the routing code of Rails. This means that you can essentially take down a Rails process by starting something like /script/profiler, as the code
2000 Sep 27
0
Wrapping R for windows in a com dll
Dear R Community, I am trying to create a com dll wrapper for R in a mannor similiar to the R Com Server by Thomas Baier except that I would much rather avoid using the proxy dll ("Rproxy.dll"). Perhaps I don't really understand the reason for going throug the proxy in the first place, but it seems like an unnecessary indirection for an application which is not intended to use DCom.
2004 Dec 14
1
Revisiting the rewriting
Since the WEBrick server has been so beefed up in Rails 0.9, I think it''s a darn shame that its lingering outside the support of custom pretty URLs. Also, it seems that the connection between mod_rewrite and url_for and friends is pretty fuzzy for most people. Hence, as we''ve talked about before, the rewriting of the url should be pulled in-house. There has been a few
2006 Jul 27
0
CRUD, REST and associations
Let''s say I have the model class Reader and Magazine, connected by join model Subscription. It looks something like this class Reader < ActiveRecord::Base has_many :subscriptions, :dependent => :delete_all has_many :magazines, :through => :subscriptions validates_presence_of :name end class Magazine < ActiveRecord::Base has_many :subscriptions, :dependent =>
2006 Jul 18
0
[FYI] Paul Graham RailsConf 2006 Keynote
...is up: http://blog.scribestudio.com/articles/2006/07/17/david-graham-railsconf-2006-keynote-address -- Posted via http://www.ruby-forum.com/.
2006 Aug 14
1
Testing CRUD/Rest Controllers
I have a few simple controllers doing plain, simple crud in a standard way. now it''s not very DRY to write a funtcional test for each controller, since they are all doing the same (apart from a few variable names, but that could be easily inflected or so). is there a way to do this? e.g. does inheritance work with tests, so i define a base test first, inherit my other tests and add a few
2005 Apr 19
3
Rails 0.12.1: No major update without a bit of pain
There''s nothing like pushing a new major update in order to find bugs in the code when its exposed to a couple of hundred working applications. Thankfully the fixes were almost as swift as the reports. In any case, you''ll _definitely_ want to upgrade to 0.12.1 right away. There''s a good handful of fixes for both Action Pack and Active Record (mostly concerning the
2006 Aug 30
6
REST on rails
Hi, I just heard about REST capabilities of rails 1.1. Does anyone know a good tutorial, or good article to begin with? Thank you -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to