search for: sumbitting

Displaying 20 results from an estimated 35 matches for "sumbitting".

Did you mean: submitting
2006 Jan 15
4
form inputs resetting on sumbit
I searched for forum for something about this but couldn''t find anything. For example I have this in my view: (you enter start/end dates from dropdowns, pick a category and a report is generated.) <%= start_form_tag :action => ''display_report'' %> From: <%= date_select ''report'', ''date1'' %> <br /> To: <%=
2002 Jul 25
2
libvorbis-1.0 bug with solaris 5.8 re: apsort
I have found a bug in libvorbis-1.0. I have found a fix, but need to know in what format and to where to sumbit the patch. It involves a quirky qsort in Solaris 5.8 that dumps core without the patch. The fix involves editing vorbis/lib/psy.c <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a
2005 Oct 01
8
Ajax.InPlaceEditor on Safari & Firefox
Hi, I''ve downloaded the latest svn trunk and was glad to see that Ajax.InPlaceEditor forms can now be correctly submitted on Safari as well, with the server response being correctly displayed as well. The problem is, however, that clicking again on the same element (after sumbitting it first) will duplicate the submit form. The next attempt will triplicate it etc, etc... Could somebody on a Mac please confirm this behavior? I''m always worried that I am not doing something right before I submit a bug report. All best, Tench
2007 Dec 15
2
[LLVMdev] Elsa and LLVM and LLVM submissions
Hi, I've been writing an Elsa to LLVM interface. It has been going very well, I think both sets of software are very nice. At this point I've been able to compile and run a small program (sieve.c). I've also compiled a pretty complete version of printf(). (It seemed like a good choice because it touches many data types, varargs, etc.) I've had to make quite a few changes to Elsa
2006 Jan 29
2
field sets and unicode
...:loading => "Element.show(''search_spinner'')", :loaded => "Element.hide(''search_spinner'')" %> in my article view, after sumbitting I get sequence like u0444u0438u043bu043eu0441u043eu0444u0438u044f in controller (params[:terms]). How can I convert it into normal unicode? I am using UTF-8 as encoding. Thanks, Mikhail
2013 Jul 17
2
Linux Plumbers ACPI/PM, PCI Microconference
Myron, On Tue, Jul 16, 2013 at 8:21 PM, Myron Stowe <myron.stowe at gmail.com> wrote: > > Shuah - You brought up the idea about "Converting drivers from Legacy > PM ops to dev_pm_ops"; would you like to present what you have > done/encountered so far? > Awesome. Yes, I would like to present what I have done so far and I do have a couple of things that could
2013 Jul 31
1
Linux Plumbers ACPI/PM, PCI Microconference
On 07/30/2013 05:38 PM, Rafael J. Wysocki wrote: > On Wednesday, July 17, 2013 08:31:55 AM Shuah Khan wrote: >> Myron, >> >> On Tue, Jul 16, 2013 at 8:21 PM, Myron Stowe <myron.stowe at gmail.com> wrote: >> >>> >>> Shuah - You brought up the idea about "Converting drivers from Legacy >>> PM ops to dev_pm_ops"; would you like to
2013 Jul 17
2
Linux Plumbers ACPI/PM, PCI Microconference
Myron, On Tue, Jul 16, 2013 at 8:21 PM, Myron Stowe <myron.stowe at gmail.com> wrote: > > Shuah - You brought up the idea about "Converting drivers from Legacy > PM ops to dev_pm_ops"; would you like to present what you have > done/encountered so far? > Awesome. Yes, I would like to present what I have done so far and I do have a couple of things that could
2013 Jul 31
1
Linux Plumbers ACPI/PM, PCI Microconference
On 07/30/2013 05:38 PM, Rafael J. Wysocki wrote: > On Wednesday, July 17, 2013 08:31:55 AM Shuah Khan wrote: >> Myron, >> >> On Tue, Jul 16, 2013 at 8:21 PM, Myron Stowe <myron.stowe at gmail.com> wrote: >> >>> >>> Shuah - You brought up the idea about "Converting drivers from Legacy >>> PM ops to dev_pm_ops"; would you like to
2007 Dec 17
0
[LLVMdev] Elsa and LLVM and LLVM submissions
On Dec 15, 2007, at 12:15 PM, Richard Pennington wrote: > I got the current version of LLVM via svn yesterday and modified my > code to > use the LLVMFoldingBuilder. Very nice! > > My question is this: I noticed that the folding builder doesn't fold > some > operations, e.g. casts. Is there some reason why? If I implemented > some of > these unhandled cases
2008 Feb 15
2
[LLVMdev] Some questions about live intervals
Hi Evan, [skipped] ... > > Please, let me know, if I should sumbit a patch without any > > assert() and returning just a NULL pointer. > > Now I think either approach is fine. Please commit. Thanks! > > Evan I don't have a commit access to the SVN repository. Therefore I cannot commit it myself. Should I better apply for getting a commiter access or should I simply
2006 Jul 08
2
NoMethodError in Recipe#index
I''m trying to teach myself Ruby on Rails, and doing the infamous Cookbook as a starting point. I''m all set until the point when I go to create of sumbit my recipe and I get this error: NoMethodError in Recipe#index You have a nil object when you didn''t expect it! The error occured while evaluating nil.name 15: <% @recipes.each do |recipe| %> 16: <tr>
2006 Jul 05
0
Javascript repeating fields.
The one area I keep hitting my head against in Rails is repeating fields via javascript. I frequently have forms where one or more fields are actually broken out into sub tables because there can be multiple simultaneous values. Rails seems to want to you to use the [] construct in the form helpers (e.g. text_field(''employee[]'', ''name'')), but I can''t
2008 Feb 11
2
[LLVMdev] Some questions about live intervals
Hi Evan, --- Evan Cheng <evan.cheng at apple.com> wrote: > Thanks. One question though. Should getMBBFromIndex() assert if given > an index out of the range or simply returns a NULL pointer? I would > think the later makes it a bit more friendly. Yes. It would be more friendly, probably. I can submit such a patch, if you think it suits better. On the other hand I want to
2010 May 15
4
[PATCH] xend: update init script to avoid grep on non-existent file system
I''m seeing a grep error during bare metal pvops kernel boot. In the init script, the previous checks will avoid/perform the /proc/xen mount as appropriate, but then it does a grep on /proc/xen/capabilities without ensuring that /proc/xen is actually mounted. This is my attempt (read: first patch :) ) to avoid it. _______________________________________________ Xen-devel mailing
2008 Feb 12
0
[LLVMdev] Some questions about live intervals
On Feb 10, 2008, at 11:44 PM, Roman Levenstein wrote: > Hi Evan, > > --- Evan Cheng <evan.cheng at apple.com> wrote: > >> Thanks. One question though. Should getMBBFromIndex() assert if given >> an index out of the range or simply returns a NULL pointer? I would >> think the later makes it a bit more friendly. > > Yes. It would be more friendly, probably.
2005 Mar 03
5
ESS
Hi all, I am running R 2.0.1 under Windows XP in German. I configured my path as follows: C:\Programme\R\rw2001\bin;C:\Programme\xemacs-packages\lib-src\;C:\Programme\XEmacs-21.4.13\i586-pc-win32 I can not start R proccess or ESS from within XEmacs. What is going wrong? I can not start S. M-x S gives "no matching" How can I configure XEmacs for STATA 8? Thanks for your help. M
2011 Apr 21
1
KVM Forum 2011: Call For Participation
================================================================= KVM Forum 2011: Call For Participation August 15-16, 2011 - Hyatt Regency Vancouver - Vancouver, Canada ================================================================= KVM is an industry leading open source hypervisor that provides an ideal platform for datacenter virtualization, virtual desktop infrastructure, and cloud
2011 Apr 21
1
KVM Forum 2011: Call For Participation
================================================================= KVM Forum 2011: Call For Participation August 15-16, 2011 - Hyatt Regency Vancouver - Vancouver, Canada ================================================================= KVM is an industry leading open source hypervisor that provides an ideal platform for datacenter virtualization, virtual desktop infrastructure, and cloud
2007 Dec 17
2
[LLVMdev] Elsa and LLVM and LLVM submissions
Devang Patel wrote: > On Dec 15, 2007, at 12:15 PM, Richard Pennington wrote: > >> I got the current version of LLVM via svn yesterday and modified my >> code to >> use the LLVMFoldingBuilder. Very nice! >> >> My question is this: I noticed that the folding builder doesn't fold >> some >> operations, e.g. casts. Is there some reason why? If