Displaying 20 results from an estimated 10000 matches similar to: "Ticket 6953: Support Method Not Allowed Responses"
2006 Apr 27
0
DRY validation
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi all,
A few months ago someone posted a message about specifying validates_*
constraints on a per-attribute basis. I just created a small plugin
that
allows you to do this.
Here''s an example from one of my models:
class Country < ActiveRecord::Base
attribute :name, :string do |a|
a.validates_length :within =>
2006 Apr 22
3
How to use Rails and REST
Hi,
I just wrote an article on how to easily create a REST API for
Ruby on Rails applications:
http://www.xml.com/pub/a/2006/04/19/rest-on-rails.html
It describes how to create everything from the ground up and includes
information on testing your API too.
--
Thanks,
Dan Kubb
2006 Jul 28
2
s/IF_UNMODIFIED_SINCE/IF_MODIFIED_SINCE/ ???
I''ve noticed in the source code that Mongrel handles the
IF_UNMODIFIED_SINCE header. I thought this rather odd, since
IF_UNMODIFIED_SINCE is generally only useful with PUT. Even more odd
is that there is no mention of IF_MODIFIED_SINCE in Mongrel which is
useful with GET (although not as useful as IF_NONE_MATCH of course).
Is this a bug in Mongrel?
-Tim
2006 Mar 19
1
Rails and REST Example
Does anyone have an example of using REST and submitting data through
a POST operation and then possibly loading that data with
activerecord.
Also, if you have client code written in another language (java,.net,
C), would you have that code as well?
Berlin Brown
2006 Dec 01
2
Mongrel 0.3.18, rails 1.1.6 and cookies
I''ve run into an issue with my rails application being unable to
properly set cookies on Mongrel 0.3.18. If I run the simplified code
below in Mongrel 3.14.4, both cookies are properly sent to and saved
by the browser. With the same code in 0.3.18, only the auth_token
cookie is created (if I switch them, only the userid as it will only
properly create the first cookie in the list.)
2006 Apr 29
2
iCal / Authentication / Site5 ?
So, I''m working on adding iCal support to my app. Since I want to restrict
users to their own calendars, form-based authentication isn''t going to work,
so I''m using the Basic HTTP Authorization from this page -
http://blogs.23.nu/c0re/stories/7409/
Everything works fine in my dev machine, but on the server (Site5), I get
the login prompt ad infinitum.
Has anyone run
2006 May 18
4
Email Address verifier--eyes needed...
Folks:
I''ve posted a really basic e-mail address verifier to
http://wiki.rubygarden.org/Ruby/page/show/VerifyEmailAddress
I''d appreciate folks who understand DNS and SMTP having a look at it
to see if it looks reasonable. You could comment here or, possibly
more usefully, comment on the wiki page itself.
Thanks
Dave
2006 Apr 18
10
Validates_ip_of
Hello all
After being told of a funky date validator I will ask again for another
validator :) Does anyone know of a plugin that validates that a field is
the correct syntax for an IP Address?
Thanks
Jeff
--
Posted via http://www.ruby-forum.com/.
2006 Aug 24
9
[slightly offtopic] A small, fast Apache2.2 (if there is such a thing)
Hi.
I''m using Apache2.2 built from source + mod-proxy + ssl + svn.
Everything works fine but I''m sure you I could disable a ton of
modules during the build process and in httpd.conf to speed things up
and run a tighter memory footprint.
Has anyone bothered building Apache2.2 from source disabling all the
unneeded modules.
I am planning on going through the Apache docs but I
2006 Apr 27
7
SuperImage plugin
Greetings all,
This is the first release of the SuperImage plugin. The idea is you
upload images to the database, and then pull them out at any size you
want. Combine this with caching and it will stay light and fast.
More info and instructions are here:
http://beautifulpixel.textdriven.com/articles/2006/04/27/superimage-plugin-making-resizeable-uploaded-images-easy
svn:
2006 Aug 07
2
HTTP Pipelining
I am trying to understand why Mongrel so forcefully disables http
pipelining. The docs say because the spec is unclear, and it hurts
performance. These reasons smell... wrong. The HTTP spec is pretty
clear, and, er, I cannot find anywhere else that claims there is a
performance drawback, and lots of studies (and personal benchmarks
across years of writing webapps) showing how much it
2006 Jan 08
22
Putting it all in one place with Schemas
I''m still relatively new to ROR, but I like what I see with the
database-neutral approach of Schemas. In the spirit of keeping it
simple and minimizing the number of files and location of information,
does ActiveState currently allow me to go ahead and place other low
level model information such as validation requirements and associations
inside the schema rather than putting it in
2007 Apr 05
5
Odd error handling in ActionView#compile_template causes WSOD
If a view file cannot be compiled (eg it has a block with a missing
''end'' statement), I''m experiencing WSODs - the browser reports a lost
network connection, rather than the helpful compilation error that we
used to have.
When the compilation fails, ActionView#compile_template raises this
error :
TemplateError.new(find_base_path_for(file_name || template), file_name
||
2007 Oct 26
15
Adding see_other method to ActionController
303 (See Other) is the status code a resource returns to tell the
client about the new resource it just created (typically after a
POST). 301/302 is the status code some servers return to tell the
browser where to go next. It works because browsers ignore the
distinction and treat all three status codes the same way, and few
people understand the difference. But when developing an application
2006 May 14
0
[UPDATE] Mongrel 0.3.13 Pre-Release -- Conditional Responses, Better Parsing
Hi Folks,
As you can tell we''re getting closer to the 0.3.13 release being
official. There''s a new pre-release available for non-win32 users:
gem install mongrel --source=http://mongrel.rubyforge.org/releases/
Which has the following fixes and enhancements:
* Rewritten internal HTTP processing to protect against trickle
attacks. This means that a client can send one byte
2006 Jun 22
0
Announcing AutoPilot
I''m pleased to announce the ruby gem AutoPilot, which lets you
automate Selenium testing from ruby scripts or the command prompt.
Currently, it''s working in Mac OS and Windows.
See the movies under "Docs" at:
http://rubyforge.org/projects/autopilot/
To install:
gem install autopilot
command line usage:
aup
Thanks,
Jamie Orchard-Hays
http://blog.dangdev.com
2006 May 11
5
Mongrel 0.3.13 Pre-Release -- Out of Hibernation
Hello Mongrel Fans,
After about a Month of busy work, bad computers, moving half my house
across the country, and other dramas, I''m finally pushing out the next
release of Mongrel.
This pre-release has lots of little goodies and the start of some
documentation that should get everyone primed for the big "Mongrel 0.4
Enterprisey Edition 1.2" coming real soon now.
INSTALLING
2006 Aug 07
16
Monthly billing and payment processor recommendations?
Hi,
I''m setting up a site that will bill on a monthly basis. I would
rather not have to worry about storing customer credit card
information. Does anyone have recommendations on payment processors
that offer monthly billing services?
I don''t want to go the paypal route as I want the user to stay on
the site. I''m hoping to find an API to integrate with. I have
2007 Apr 25
2
[LLVMdev] ModulePass that requires FunctionPass
Hi Devang,
You recently mentioned that the pass manager now allows a ModulePass
to require a FunctionPass. I just tried it but ran into errors. Could
you please take a look to see if I did anything wrong? Thanks!
Basically I changed the HelloWorld sample pass to be a ModulePass and
tried to use the LoopInfo pass inside the runOnModule routine.
See below for the source code and error messages.
2006 May 09
0
Mongrel Pre-Release Bravery
Hi Everyone,
Another note that there''s a pre-release available for non-win32
platforms that I''d like people to test out. As usual you can install it
with:
gem install daemons (if you don''t have this)
gem install mongrel --source=http://mongrel.rubyforge.org/releases/
This release adds some fantastic file management gear from why the lucky
stiff and Dan Kubb.