Displaying 20 results from an estimated 6000 matches similar to: "How to save data with dynamic forms?"
2007 Aug 02
4
ActiveRecord Limitation (Advance)
Or is it ?
Need to be able to :-
@search =
Form.find(:all, :include=>[:form_type, :form_type_items], :conditions=>....)
I need in the Form model a :form_type_items, the question is, what is
the relationship type?
Current Models:-
Form
belongs_to :form_type
FormType
has_many :form_types
has_many :form_type_items
FormTypeItem
Belongs_to :form_type
Form
----------------
| id |
2011 Jun 01
2
[LLVMdev] Fw: Thinking about "whacky" backends
Sorry, forgot to CC the list.
----- Forwarded Message -----
> From: Samuel Crow <samuraileumas at yahoo.com>
> To: Joachim Durchholz <jo at durchholz.org>
> Cc:
> Sent: Tuesday, May 31, 2011 9:35 PM
> Subject: Re: [LLVMdev] Thinking about "whacky" backends
>
> Hello,
>
>
> ----- Original Message -----
>> From: Joachim Durchholz
2011 Jun 01
5
[LLVMdev] Thinking about "whacky" backends
I've been tossing around some ideas about high-level backends.
Say, have LLVM emit Perl code.
Sounds whacky but isn't. It's good for the first bootstrapping phase in
environments where you don't have a C compiler, where you don't have a
cross-compiled binary for download, but you can execute Perl.
It also makes a great inspect-the-sources-with-an-editor stage for
aspiring
2011 Jun 01
0
[LLVMdev] Fw: Thinking about "whacky" backends
On May 31, 2011, at 7:36 PM, Samuel Crow wrote:
<snip>
>>
>> Now my idea for a whacky backend: Just a wrapper of the bitcode writer with its
>> own special target triple: bitcode-tarrget-neutral and a generic data layout
>> that aligns to single bytes as a placeholder only. It should disallow
>> overriding the alignment of individual instructions to avoid
2011 Jun 03
2
[LLVMdev] Thinking about "whacky" backends
On 6/3/2011 3:19 PM, Samuel Crow wrote:
> Why not runtime checks? The constant folding and dead-code elimination passes would get rid of any redundant code in a later stage of compilation anyway. The important part, as I see it, is that LLVM already does constant folding and dead-code elimination. Meta-data might require more effort in the long run.
>
> --snip--
Less flexible for the
2011 Jun 01
2
[LLVMdev] Fw: Thinking about "whacky" backends
On Wed, Jun 1, 2011 at 12:53 PM, Henry Mason <thefridgeowl at gmail.com> wrote:
> This is pretty much what's happening with Portable Native Client, right?
>
> http://www.chromium.org/nativeclient/pnacl
>
> See also the first presentation from the November LLVM meeting: http://llvm.org/devmtg/2010-11/
PNaCl fixes data layout to be just "portable enough" to cover
2011 Jun 03
0
[LLVMdev] Thinking about "whacky" backends
Samuel Crow <samuraileumas at yahoo.com> writes:
> Here's some of what it would take to make portable bitcodes in C or LLVM Assembly:
A look at the work done on ANDF in the 90's may be helpful. I've only
skimmed it but there's been some deep thinking about stuff like this.
-Dave
2011 Jun 02
4
[LLVMdev] Thinking about "whacky" backends
Hi Nate,
I've successfully ported one bitcode from Linux to Mac to Windows. All were x86 and the program was text-based, but I'd say my LLVM Wrapper would be worth some effort in the future if I could just get some help. Currently it just wraps StdIO.h with its own functions.
Here's some of what it would take to make portable bitcodes in C or LLVM Assembly:
* Convert all
2011 Jun 04
0
[LLVMdev] Thinking about "whacky" backends
----- Original Message -----
> From: Nate Fries <nfries88 at yahoo.com>
> To: Samuel Crow <samuraileumas at yahoo.com>; LLVM Developers Mailing List <llvmdev at cs.uiuc.edu>
> Cc:
> Sent: Friday, June 3, 2011 6:52 PM
> Subject: Re: [LLVMdev] Thinking about "whacky" backends
>
> Most JVMs perform terribly. Even Sun's has had notable performance
2015 Jun 20
1
Xapian with Json
Hi !
I?m newbie with Xapian !
I?m looking for the best way to index json data to be able to search by name/value pair and Full Text Search using only Xapian.
I did haven?t success to found a complete or a good documentation about json index and search.
Do you know some documentation about ?
Another problem that I have is that: In the same name/value pair sometimes I have different data types
2011 Jun 03
1
[LLVMdev] Thinking about "whacky" backends
-------- Original Message --------
Subject: Re: [LLVMdev] Thinking about "whacky" backends
Date: Fri, 03 Jun 2011 14:44:05 -0400
From: Nate Fries <nfries88 at yahoo.com>
To: Joachim Durchholz <jo at durchholz.org>
On 6/3/2011 1:38 PM, Joachim Durchholz wrote:
> Am 01.06.2011 23:25, schrieb Nate Fries:
>> That said, it seems like it ought to be possible to do
2010 Oct 14
1
Cucumber Selenium web step to verify value of input field
I have an input field with an id which has a value. The web_steps.rb method
does not find the value. Is this the right step to use to check an input
field? It works fine for a text_area but not an input.
Scenario steps (tried both ways):
Then the "travel_card_number_gate" field should contain "5"
Then the "#travel_card_number_gate" field should contain "5"
2015 Mar 08
2
Xapian with Couchdb
Hi,
I?m looking for how to integrate couchdb with xapian.
Couchdb has a elasticsearch plugin, but i didn?t find anything about xapian.
How is the best way to do it ?
There some tips / tricks about xapian and couchdb ?
Best Regards !
Carlos
Brazil.
2006 Apr 11
1
Mixins?
As is often the case when I tackle a new platform/language, I get the big
picture very quickly (because frameworks are frameworks are frameworks) but
its the nitty-gritty of the language that bogs me down...
So I have some similar methods on a few of my model classes that I wanted to
push into a helper. Now I reckoned that the Ruby way was to create a module
and mix it in with include. However, I
2011 Jun 02
0
[LLVMdev] Thinking about "whacky" backends
On 6/2/2011 10:13 AM, Samuel Crow wrote:
> Hi Nate,
>
> I've successfully ported one bitcode from Linux to Mac to Windows. All were x86 and the program was text-based, but I'd say my LLVM Wrapper would be worth some effort in the future if I could just get some help. Currently it just wraps StdIO.h with its own functions
Naturally that would work perfectly fine on a similar
2004 Jan 09
2
Broken DNS makes Asterisk whacky!
Check this out. I recently closed a bug I had written, #495
"ExtraChannel in transfer causes crash" Now I've been able to reproduce
it, and somewhat narrowed down the culprit. But before I write another
bug report, I wanted to see if anyone else had experienced the following
(or would like to try:)
When DNS (or outside connection to the network, not sure which) is
broken and
2006 Mar 03
3
TinyMCE or FCKEditor (WYSISYG editor)
TinyMCE or FCKEditor? which one is the best from your experience?
Or anything better than these two for rails env?
Thank you all,
- Dunnil
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/7350e5df/attachment.html
2006 Mar 03
2
FCKEditor Image uploading feature
Hello,
I followed instructions on
http://www.joshuamcharles.com/rails/fckeditor.html
Added FCKEditor to my rails app which works great, but I''m not able to
upload images using the WYSISYG editor.
Is there a way to enable this feature in rails app? If not, where is the
images folder that FCK looks into it for images, so I can upload my images
manully there?
Thanks,
- Dunnil
--------------
2006 Jul 21
1
Partial, Table Layout, Multiple Controllers/Models... DRY?
Hi,
I am almost embarrased to ask this and I am sure it has been answered
previously but the search feature is down on ruby-forum so I am not
finding the answer.
I have several controllers (leads, orders, activities, etc...). I have
a ton of repeated html in each of the views for these controllers. For
example, my list view has the same table/tr/td and for..in type of code
and it just
2014 Aug 10
2
Merging the DDL branch in nut-website
Hi Daniele and Arnaud,
While tracking down the Cyber Power voltage scaling issue, I found the DDL repository extremely helpful. Instead of searching across all of the old mailing list posts, I was able to run 'git grep' in the Cyber Power directory, and the consistency of the data made it an easy task.
I had a motherboard failure on my main computer, and I was trying to recreate the