Displaying 20 results from an estimated 24 matches for "fanoflinux".
2006 Aug 24
26
mongrel logging on win32 platform and win32 service
Hi All
I am using version 0.3.13.3 and since there is no logging support for win32
application. I was wondering if it was possible to get any kind of logging
at all.
I have tried to these two options
1. Stream redirection using "mongrel_rails start -c C:/myspace/snapshot -p
4111 -t 70 -e production -P log/mongrel-1.pid > C:\temp\mongrel-1.log"
The console print the output stream
2006 Aug 02
4
Struts
I have a STRUTS based webapp and I want to port it to RUBY/RAILS...
Can anyone suggest a migration strategy...I would like to migrate my struts
actions over time if possible.
Jim
_________________________________________________________________
Is your PC infected? Get a FREE online computer virus scan from McAfee®
Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
2006 Aug 11
3
Rails Documentation is RoR''s achilles heel
Hi All
Just a few minutes back I came across a post about autotest/zentest and that
post reignited the feeling I get when I look at RDoc, RoR documentation.
The main thing that is lacking in RoR and to some extent Ruby''s RDoc is
showing method names in HTML is not documentation. The arguments to method,
exception/errors raised by method, return value and a usage example
completes the
2006 Aug 08
12
Rails (internals) architectural question
Hi
Another newbe here..... I was wondering if someone could please help me
understand the controllers/view inner working in Production
1. If xxx_controller.rb is only loaded once does it mean there is only one
instance of Controller serving all requests?
2. If only one instance of controller is there then how are controllers
instance variables protected from data corruption when serving multiple
2006 Aug 10
11
Document Management System in Rails
Hi
Is anyone aware of any Document Management System in Rails. Googling didn''t
help me find any Rails based solution.
The DMS I need, need to have the following feature apart form the usual
ones.
1. Version control of documents.
2. Tracking version control for each group of users independently from the
other group . These groups may share the same document name but may have
different
2006 Aug 08
1
Testing - Do my emails reach rails mailing list?
Testing - Do my emails reach rails mailing list?
-daya
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060808/cb3e29ba/attachment.html
2006 Aug 10
2
my posts don''t get prefix if I don''t specify one
Hi All
I was just wondering why my posts don''t have [RAILS] prefix in the subject
line unless I specify one.
Can that be a reason why I don''t receive replies to my posts? or atleast not
as much as others :(
-daya
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Aug 15
1
Can migrations be used for these cases?
Hi
A newb question.
Can I use migrations if all of the following requirements are imposed at
the same time.
1. Copy data from an old schema to a new schema, the difference in the 2
schemas is about 25%, 3 new tables and 4 new columns.
2. Copy data from Oracle schema to DB2 schema, around 25% difference in
2 schemas as above.
3. Neither old nor the new schema tables have an
2006 Aug 01
1
Transactions within the Controller
Hi,
I have 2 models, how can I save both of them in one transaction?
I want to do something like this:
begin transaction
project.save
person.save
end transaction
The only examples I''ve seen is with saving 2 instances of the same model in a transaction.
thanks
scott.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Aug 16
5
Class redefinition
Hi,
Suppose I want to redefine the Ruby String class in a Rails app. In which
file is it the most suitable to write the redefinition?
Thanks
Guillaume Carbonneau
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060816/5b0da204/attachment.html
2006 Aug 02
3
Need help with registration page
I have most of my books open as I''m trying to create this app. Still
not sure how to make this work - hopefully some help / hints can get
me further.
First I used the "authorizing users" recipe from Rails Recipes. Though
I did add some more generic type of registration fields (email,
address, etc).
I want the registration form on the main page(index) of the site.
What I have
2006 Aug 09
1
strange - params.nil? true in controller
Hi All
I am trying to implement a functionality where a user clicks on "Back to
Search Results" link he is taken to the search result screen. For this I am
storing his search criteria (params object) in session. Here is my code
______________________________________________________________________________________________________________
*def* search
2006 Aug 07
5
Store SOAP::RPC::Driver in user session throws TypeError
Hi All
I have a
requirement to consume a 3rd party web service from my Rails
application. I am doing this
in my action
require ''soap/wsdlDriver''
factory = SOAP::WSDLDriverFactory.new(TRANSIDIOM_WSDL_URL)
soap = factory.create_rpc_driver
soap.wiredump_file_base="#{RAILS_ROOT}/log/transidiom.log"
param = %(<Request
2006 Aug 10
28
On the total nondisclosure of the 8/9/06 security vulnerability
Dear Rails team,
The handling of the recent vulnerability in Rails has proven somewhat
problematic for us. We have recently adopted Rails as our web platform
of choice; previously, we used J2EE. We love Rails. We hate J2EE. We
don''t want to go back. It took a lot of effort and convincing to get the
management teams of our various projects to sign off on the use of
Rails. The
2006 Aug 08
0
Using class or global variable in rails - Are there any threading issues or race conditions?
Hi All
I am newbie to Rails.. and I am trying to invoke a third party webservice
using SOAP::RPC::Driver object. Now I can''t store that in session (it throws
TypeError) so the next best thing (on the suggestion by Ola
from this mailing list) I am storing it in Class variable or I can
store this rpc_driver object in global variable.
In brief my concerns are related to race conditions that
2006 Aug 08
0
Equivalent of request.setAttribute(key, value) in Rails??
Hi All
I come from Java/J2EE background and I was wondering if there was any way of
setting an attribute-value in request.
As far as I understand the equivalent is/are the controller instance
variable that are exposed to the view(templates/layout). But they are not
the same as storing values in request objects in Java servlets. Plus I feel
this can give rise to race condition and data swapping
2006 Aug 12
0
params object NULL/nil in controller - is this a bug?
Hi All
I am trying to implement a functionality where a user clicks on "Back to
Search Results" link he is taken to the back to search result screen.
For this I am storing his search criteria (params object) in session.
Below is my code, for the first time when the user performs a search,
there is no result data in session so the execution enters first
if...... see below
2006 Aug 16
0
problems using Migrations
Hi All
I am trying to figure out if I can use migratons when the following
requirements are imposed at the same time.
1. Migrating data from an old schema to a new schema, the difference in the
2
schemas is about 25%, 3 new tables and 4 new columns.
2. Migrating data from Oracle schema to DB2 schema, around 25% difference in
2 schemas as above.
3. Neither old nor the new schema tables have a
2006 Nov 04
0
no logs from mongrel on win2k
Hi All
I am running a mongrel on win2k and I don''t get any log output
I have tried to these two options
1. Stream redirection using "mongrel_rails start -c C:/myspace/snapshot -p
4111 -t 70 -e production -P log/mongrel-1.pid > C:\temp\mongrel- 1.log"
The console print the output stream and the mongrel-1.log file shows no
content except the content generated after I kill
2006 Nov 04
0
Using migrations with legacy schema
Hi All
Please excuse me if my questions sound silly.
I have developed a rails app with an existing legacy schema and now with
changes in customer requirements, I need to change the schema. The legacy
(schema) database has > 250K.
What I would like to know is
1. Is it possible to migrate the data along with migrating the schema if use
Migrations? If it is possible can somebody point me to an