search for: sumbit

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

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 message to...
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
...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 could I sumbit the changes back to the LLVM project? -Rich
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
...;>> >> >> Awesome. Yes, I would like to present what I have done so far and I do >> have a couple of things that could benefit from a face to face >> discussion which would help me make progress on the rest of the work >> that needs to get done. > > Care to sumbit a formal proposal through the LPC web page? > > Rafael > > Rafael, I did submit a formal talk proposal to LinuxCon/LPC and it was rejected. Submission is closed now as far as I know. -- Shuah Shuah Khan, Linux Kernel Developer - Open Source Group Samsung Research America (Silicon...
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
...;>> >> >> Awesome. Yes, I would like to present what I have done so far and I do >> have a couple of things that could benefit from a face to face >> discussion which would help me make progress on the rest of the work >> that needs to get done. > > Care to sumbit a formal proposal through the LPC web page? > > Rafael > > Rafael, I did submit a formal talk proposal to LinuxCon/LPC and it was rejected. Submission is closed now as far as I know. -- Shuah Shuah Khan, Linux Kernel Developer - Open Source Group Samsung Research America (Silicon...
2007 Dec 17
0
[LLVMdev] Elsa and LLVM and LLVM submissions
...sterday 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 could I sumbit the changes back to the LLVM > project? Sure. Though, I do not exactly understand what do you mean by folding casts operations, we encourage patches to improve LLVMFoldingBuilder! - Devang
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...
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> 17: <td><%= link_to recipe.title, :action => "show&...
2006 Jul 05
0
Javascript repeating fields.
...: id employee_id phone_number Now, say I want a page for editing an employee. Here''s a template: edit.rhtml <% form_for :employee, @employee, :url => {:action => ''update} do |f| %> <%= f.text_field name %> <%= f.date_of_hire %> <input type="sumbit" value="save"/> <% end %> This all works very neatly in Rails. The problem comes when I want to do some javascript to let the user add one or more phone numbers to this employee on the same page: edit.rhtml <% form_for :employee, @employee, :url => {:action => ...
2008 Feb 11
2
[LLVMdev] Some questions about live intervals
...39;s number is known and it is supposed to belong to an MBB. If not, some internal mapping tables (e.g. start and end of MBBs, index to MBB mappings, etc) in LiveIntervalAnalysis are likely to be broken. In this case, it is better to assert() in those cases, IMHO. Please, let me know, if I should sumbit a patch without any assert() and returning just a NULL pointer. -Roman > On Feb 8, 2008, at 8:59 AM, Roman Levenstein wrote: > > > Hi Evan, > > > > Here is a patch for the LiveIntervalAnalysis that we discussed. > > > > --- Evan Cheng <evan.cheng at apple....
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
...is supposed to > belong to an MBB. If not, some internal mapping tables (e.g. start and > end of MBBs, index to MBB mappings, etc) in LiveIntervalAnalysis are > likely to be broken. In this case, it is better to assert() in those > cases, IMHO. > > 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 > > > -Roman > > >> On Feb 8, 2008, at 8:59 AM, Roman Levenstein wrote: >> >>> Hi Evan, >>> >>> Here is a pa...
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
...a short abstract (~150 words) describing your presentation proposal. In your submission please note how long your talk will take. Slots vary in length up to 45 minutes. Also include in your proposal the proposal type -- one of: - technical talk - end-user talk - BOF (birds of a feather) session Sumbit your proposal here: http://events.linuxfoundation.org/cfp You will receive a notification whether or not your presentation proposal was accepted by May 31st. END-USER COLLABORATION One of the big challenges as developers is to know what, where and how people actually use our software. We will...
2011 Apr 21
1
KVM Forum 2011: Call For Participation
...a short abstract (~150 words) describing your presentation proposal. In your submission please note how long your talk will take. Slots vary in length up to 45 minutes. Also include in your proposal the proposal type -- one of: - technical talk - end-user talk - BOF (birds of a feather) session Sumbit your proposal here: http://events.linuxfoundation.org/cfp You will receive a notification whether or not your presentation proposal was accepted by May 31st. END-USER COLLABORATION One of the big challenges as developers is to know what, where and how people actually use our software. We will...
2007 Dec 17
2
[LLVMdev] Elsa and LLVM and LLVM submissions
...t; 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 could I sumbit the changes back to the LLVM >> project? > > Sure. Though, I do not exactly understand what do you mean by folding > casts operations, we encourage patches to improve LLVMFoldingBuilder! > > - > Devang > _______________________________________________ > LLVM Deve...