Displaying 20 results from an estimated 47 matches for "xample".
Did you mean:
example
2006 Mar 10
8
XML Databinding frameworks
Are there any XML databinding frameworks available for Ruby / Rails, such as
Castor or JaXB for Java?
Also are there framework such as Apache Axis for WebServices for Rails or
Ruby?
Regards,
Harm de Laat
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060310/3cf0cfd3/attachment.html
2011 Mar 03
1
sqlFetch (RODBC) question
...files created in MS excel and access but
found a strange problem today: a variable in my data file contained both
numbers and text; sqlFetch would set text within a row of numbers to NA; but
if first 5 or 6 rows would be text then all numbers would be read in as NA.
con<-odbcConnectExcel("xample.xls") #the file is attached or at
http://psych.ut.ee/~nek/ajutine/xample.xls
sqlFetch(con, "TT$")
# ID_NO Setting_ID
#1 NA NA
#2 1220000 12203
# 3 1220001 12203
#etc
Whereas the same file saved as csv reads in correctly as:
read.csv("xample.csv&...
2006 May 07
3
Character Encoding
Hi,
I''m sure I''m doing something dumb, but...
I have an application that dynamically produces UTF8 encoded html
exclusively. This application works using webrick without a problem.
When using Mongrel 3.12.4 it looks as though the encoding is lost and
garbage appears on the string. I suppose this could also be a double
encoding, but personally, I can''t tell the
2007 Mar 12
5
Clarification of how controllers and views work together...
Hi,
So I''ve started mucking about with Merb. I''m doing some experimenting
with some product ideas. Things are working out quite well, Merb is a
pleasure to use. It seems very fast too. A couple of rough spots but
that might be me, if they are still chaffing after a few more days
I''ll mention them.
One thing...
I wrote a controller and a view with several
2006 Jun 12
8
Input/output error on linux
...n this before? Any suggestions? Is there something
useful to check in Rails or Mongrel?
I''ve appended a recent stack trace. Don''t read anything into the
rhtml where it failed, it happens with the simplest <%= @var -%> you
can imagine. This trace might not be the best example, but it is the
one I''ve got.
Cheers,
Bob
----
Bob Hutchison -- blogs at <http://www.recursive.ca/
hutch/>
Recursive Design Inc. -- <http://www.recursive.ca/>
Raconteur -- <http://www.raconteur.info/>
xampl for Ruby...
2007 Apr 30
2
Serving static files with Merb
Hi,
I''m using Merb from the svn repository (revision 224, Merb 0.3.0).
I am playing around trying to return static files. I''m opening a File
and returning that from the controller. I''m setting the mime type and
the content length (other wise nothing much happens). All requests
for static content go through the same action of a particular
controller.
This is
2006 Mar 18
2
in_place_editor change request...
Hi,
How do I make a request to the Rails team to include a line something
like:
js_options[''savingText''] = %(''#{options[:saving_text]}'') if options
[:saving_text]
in the in_place_editor method?
script.aculo.us supports the ''savingText'' option to control the text
displayed while saving after an in-line edit. Having the ability to
2006 Jan 02
8
RoR or Java for community portal?
Hello Ruby users,
let me introduce myself briefly - I am a student at OvG University
Magdeburg, Germany, and I hope to get some advice for a nonprofit
student community portal I am involved with, just in case somebody is
interested: http://www.webuni.de, having around 3000 active users.
Development is done on a voluntary basis by members of the community,
mainly IT students with too much
2005 Dec 21
3
Object graphs
Guys,
I''m designing an application currently that will ultimately be implemented
in either Rails or php5 (most likely Rails).
While I''ve coded many PHP (pre-5) applications in the past, OO support was
so weak that my OO designs were never truly divorced from the limitations
of the language, thus I never had to consider this problem.
The question is: how does Rails (and how do
2006 Oct 07
5
How to proceed with incorporating Ferret?
Hi,
I''ve listened in to this mail list for quite a while now but not
doing anything with Ferret until I was ready to incorporate it. I''ve
used Lucene for years, but not Ferret.
I downloaded and installed the ''bleeding edge'' version (lets call it
0.10.9.1). There appears to be a significant re-working of the API
happening. It all looks good. But there
2006 May 11
2
Adding user name to production log?
All,
In the production log I have entries like:
Processing OpportunityController#new (for 68.213.19.251 at 2006-05-11
10:18:36) [GET]
Session ID: 345b455a2a36af8814081c388d8726f1
Parameters: {"action"=>"new", "controller"=>"opportunity"}
Rendering within layouts/opportunity
Rendering opportunity/new
Completed in 0.02281 (43 reqs/sec) |
2007 Jan 04
10
Intermittent "can''t convert Float into Hash" and results.rb
Hi,
I''m using backgroundrb 0.2.1 in a production environment and for most
parts I''m very happy. We are using it to do some heavy video editing on
the server side and it works great except that under, what seems heavy
load the below problem happens intermittently.
The problem has only happened 5 times out of over 500 runs by our
backgroundrb worker.
This is the code in our
2005 Dec 31
0
Controllers, Models, Libraries -- Better Ideas Welcome
Hi,
So I''ve been looking into RoR for a couple of weeks, on and off.
Primarily at some of the more sophisticated bits and pieces. Anyway,
today I thought that instead of poking about I''d actually do
something. None of the projects I''m immediately interested in would
be helped by using ActiveRecord (I wrote xampl, so if you know what
that is you''ll
2006 May 11
5
crating a ajax datagrid
hi,
Im looking to build a live data grid, where you can add delete rows
using dhtml.
and was just wondering if anyone is aware of any plugin''s taht may help
me.
Ive found this example but if anyone is aware of any other plugin''s
please let me know
http://unspace.ca/datagrid/update
thanks
scott
--
Posted via http://www.ruby-forum.com/.
2006 May 11
1
rendering in after_filter
Hi!
Is it possible to render the action within the after_filter method, or
is the rendering performed before?
I have something like this:
class FooController
after_filter :send
def a
@content=...
end
def b
@content=..
end
protected
def send
send_data(@content,...)
end
end
However, when calling the action a or b, the @content doesn''t get sent,
but instead
2006 May 12
1
best list/forum for prototype.js?
Hi,
Where is the best place in the net to discuss the prototype.js
library? I have some questions that are purely prototype.js questions
and unrelated to rails.
Thanks,
Peter
2006 Apr 07
2
Prototype 1.5.0_rc0 breaks my Form.serialize
Cheers,
Prototype 1.5.0_rc0 breaks backwards compatability with this diff in
Form.Element.Serializers:
http://dev.rubyonrails.org/changeset/4147
I have explicit value="" in my options and now I get the text submitted.
E.g.
<select id="foo">
<option value="">Please select a value</option>
</option value="1">Nr.
2006 May 07
1
Installing on OS X
Hi,
I''ve just installed Mongrel 3.12.4 on OS X, and had one little
difficulty: I kept getting an error message saying that HTTPHandler
didn''t exist, maybe it was Mongrel, I don''t remember. Turns out that
there was a lot more missing than that, so it doesn''t really matter.
What was happening is that http11 was not installing and the "require
2006 Sep 06
2
.htaccess in public and adding password protection
While my site is in development I wish to add basic password protection.
At the moment my .htaccess looks like this:
AuthName "Restricted Area"
AuthType Basic
AuthUserFile /home/httpd/mydomain.co.uk/.htpasswd
AuthGroupFile /dev/null
require valid-user
.htpasswd exists and has an entry, yet I do not get a password prompt?
Does Apache Auth work for dynamic resources or only static
2006 Jul 02
3
Mongrel Randomly getting TERM
Has anyone ever experienced this problem? Every 12-24 hours *one of* my
mongrel processes gets a TERM signal and quits.
There is all I get in my mongrel log..
** Mongrel available at 0.0.0.0:8003
** TERM signal received.
And my rails-log is silent too. No request starting. Just the end of a
successful request and then nothingness.
The other processes are doing just fine and stay up for good.