Displaying 20 results from an estimated 1000 matches similar to: "another routes question"
2006 Aug 19
22
Wazzup with the rubyonrails-talk Google Group?
I just got a Google Groups notification that I had been
subscribed to http://groups.google.com/group/rubyonrails-talk.
Looking at the page, it appears that about 4300 folks have
been subscribed. However, I saw nothing about this on
rails@lists.rubyonrails.org. Wazzup?
-r
--
http://www.cfcl.com/rdm Rich Morin
http://www.cfcl.com/rdm/resume rdm@cfcl.com
2006 Jun 16
12
FastCGI times out?
Hello there,
So I''m still struggling with this fastcgi stuff. I''m trying to upload and
process a decent sized ZIP file, but the request dies before it finishes and
I get the following error:
FastCGI: comm with (dynamic) server
"/Users/ryan/Workspace/rails/photos/public/dispatch.fcgi" aborted: (first
read) idle timeout (30 sec), referer: http://photos/album/new/4
2006 Jun 15
8
Markaby Installation Issues
Ok,
So I followed the directions.. I did a ''gem install markaby'' (which sounds
like its enough to get me going for rails), but I wasn''t sure, so I tried to
install the plugin as well.
Plugin installation fails looking for a file:
Script/plugin install http://code.whytheluckystiff.net/svn/markaby/trunk
Outputs this error:
+ ./trunk/svnindex.xsl
2006 Jul 17
6
Has markaby been abandoned?
Recently discovered Markaby. Before I use it on a production system, I''d
like to know if it is still being maintained? According to the change log,
the last change was in February of 2006. Does this mean that the project has
been abandoned? Or, at version 0.3 it was considered production stable and
complete?
--
Best Regards,
-Larry
"Work, work, work...there is no satisfactory
2006 May 19
6
rmagick->X11 on MacTel Howto?
I needed to install rmagick/GraphicsMagick on an IntelMac and did so
from Darwinports. Some things work and others don''t work, like
rendering fonts which needs X11 fonts and X server. The rmagick page
at rubyforge points to ..
http://developer.apple.com/opensource/tools/runningx11.html
where X11 link to Apple is broken.
X11User.pkg talked about on the page above no longer exists at
2006 Jun 23
4
RedCloth
Help me!!!Lol
I''ve been working with RedCloth but it''s runed my layout because it put
the <p> and </p> is there a way to remove this without gsubing it up or
if I do what the prettiest I can make it?
--
Posted via http://www.ruby-forum.com/.
2006 May 31
3
detecting changed data
I am working on an application where there are many different screens to
access the data in a particular record/row. I have links to each data
entry screen at the top. Is there a way to detect whether the current
hash has been changed from the stored record so I can prompt the user if
they attempt to change screens without having saved their changes to the
data?
Craig
2006 May 18
4
Request Routing Plugin ( :requirements => { :subdomain => ''thing'' } finally works)
Hi All,
Just a quick note to say that I''ve released an intial version of the
request routing plugin which essentially allows you to use various
request object properties as requirements in routes. Most notably you
can do:
map.connect "thing", :controller => ''main'', :requirements => {
:subdomain => ''whatever'' }
..just like the wiki
2006 Aug 06
2
TextMate + Rails
Hi,
Could anyone point to some TextMate resources ? I found a few bundles,
but they were all corrupted...
JEtienne
--
Posted via http://www.ruby-forum.com/.
2006 May 04
3
Decimal
Can someone please tell me the best approach to adding support for
editing MySQL decimal types in rails?
I have a field in the DB that represents currency, and the view will not
let save anything past the decimal place so, 10.99 becomes 10.00
automatically.
Any help is appreciated.
--
Posted via http://www.ruby-forum.com/.
2006 Jun 30
5
Reading the api docs help
Ok so I am at a point that I read my entire book front to back and
around and a around. And now digging through it again .. But I am now
missing a key piece to the clues is the api.
I found http://www.gotapi.com/index.html as a great search tool. But I
can''t make heads or tails of it besides a basic search for exactly what
I am looking for by word. But if I dont know the word I am
2006 Apr 28
19
Remember James McGovern?
Remember James McGovern and his articles about Rails and enterprise?
Well... Check this one out where he "puts his money where his mouth is"
http://duckdown.blogspot.com/2006/04/ruby-community-proved-mcgovern-wrong.html
--
--------------
Jon Gretar Borgthorsson
http://www.jongretar.net/
2006 Jun 07
3
fedex tracking
I''ve been using the Business::FedEx::DirectConnect perl module to
track and ship packages via FedEx for awhile now.
I''m wanting to convert some of this functionality over to ROR, mostly
just the package tracking part.
Has anyone successfully tracked a package using the Shipping API out on
RubyForge?
It seems like the functionality is there since it''s just another
2006 Jun 13
11
markaby
What''s the current status of Markaby? I''ve played with it a bit and
love it and am considering using it for a large project I''m starting.
If you''ve used it, I''d love to hear your comments!
Jamie
2006 Jun 09
4
View into a String?
I''ve got a nice XML view of my data that works just fine when I call it
from the browser. Now I''d like a different controller method to take
that XML and write it to the file system. Since the XML view lives in
an RXML file, is there a trick to telling the controller "Get your
output into a string" instead of writing it back to the browser? After
writing it out
2006 Jun 11
7
testcase_setup_and_teardown_with_blocks (aka "The plugin with the very long name")
Hey all,
I got annoyed recently that I couldn''t specifiy multiple chunks of
test setup and teardown code that get executed for each test. You''re
currently limited to just one setup method (unless I''m much mistaken).
Anyway, I just wrapped up my solution in a plugin. The answer: use
blocks!
class Test::Unit::TestCase
# This is overridden by the subclass and will
2006 Aug 06
1
map.resource for a plugin
I''m playing around with this plugin and I wanted to use REST in edge
for it. Mostly because it''s there. ;)
I''m actually having problems with how to make the map.resource for it
though. The controllers name is Tumbleror and the models name is
TumblerorPost. How do I actually make the map.resource command for
that so it''s makeing a resource at the url /tumbleror.
2006 Jun 02
3
Use a Model or Controller?
I am putting up a tool that connects to a subversion repository and
checks latest revision and downloads the changeset log for all the
changes made since last check and puts inside a hash for various uses
inside the code.
I am just wondering if the code that checks the subversion repo and
reads it''s data should bolong to a controller of it''s own or a model
of it''s own.
2006 May 15
2
Retrieve the current controller name from a view
Hi all, I wonder if it''s possible to retrieve the current controller
name and possibly the action when you''re in a view.
i.e. I call the same template/partial view from different controllers
and I''d like to know when I''m in the view code which controller is
calling it...
Any ideas? Sorry if it''s obvious but I couldn''t find it in the doc.
2006 Mar 28
3
Routing Error after upgrade
I successfully upgraded to Rails 1.1., but now when I point my browser
to localhost:3000, I get a the following:
Routing Error
Recognition failed for ?/rails_info/properties?
What?s the best fix for this?
--
Posted via http://www.ruby-forum.com/.