Displaying 20 results from an estimated 1000 matches similar to: "Unindent ERB output"
2010 Mar 29
5
Continue a dialplan when the client hang up the call
Hi all,
When a user make a call to Asterisk, and when user hang up the call at any point of the conversation,? Asterisk will stop Diaplan intermediately. 
At this situation,? Are there any way to make? Asterisk continue execute the Diaplan ?, so Asterisk can do something like that delete temporary file, .. etc.
Thanks in advance,
Giang
      
-------------- next part --------------
An HTML
2020 Feb 07
11
[PATCH 0/6] drm: Provide a simple encoder
Many DRM drivers implement an encoder with an empty implementation. This
patchset adds drm_simple_encoder_init() and drm_simple_encoder_create(),
which can be used by drivers instead. Except for the destroy callback, the
simple encoder's implementation is empty.
The patchset also converts 4 encoder instances to use the simple-encoder
helpers. But there are at least 11 other drivers which can
2005 Nov 03
7
VMX status daily report Nov. 3
We have test latest xen (ChangeSet 7608) on VT platform with Intel 915
chipset and Here is the test summary:
 
IA32: 
    Build&Boot SMP xen0 without problem
    Can startup XenU with different configuration
    
    IA32 issues contain:
    VMX can not be created
    
 
IA32E: 
    Build&Boot SMP xen0 without problem
    Can startup XenU with different configuration
 
   IA32E issues
2012 Jun 01
4
[PATCH v3] virtio_blk: unlock vblk->lock during kick
Holding the vblk->lock across kick causes poor scalability in SMP
guests.  If one CPU is doing virtqueue kick and another CPU touches the
vblk->lock it will have to spin until virtqueue kick completes.
This patch reduces system% CPU utilization in SMP guests that are
running multithreaded I/O-bound workloads.  The improvements are small
but show as iops and SMP are increased.
Khoa Huynh
2012 Jun 01
4
[PATCH v3] virtio_blk: unlock vblk->lock during kick
Holding the vblk->lock across kick causes poor scalability in SMP
guests.  If one CPU is doing virtqueue kick and another CPU touches the
vblk->lock it will have to spin until virtqueue kick completes.
This patch reduces system% CPU utilization in SMP guests that are
running multithreaded I/O-bound workloads.  The improvements are small
but show as iops and SMP are increased.
Khoa Huynh
2018 Jul 31
12
[PATCH v3 0/8] Fix connector probing deadlocks from RPM bugs
This is the next version of
https://patchwork.freedesktop.org/series/46815/
With a lot more thought put into it so as to avoid the potential
deadlock scenarios I missed. This also required fixing some bogus DRM
helper usage.
Try and deadlock me now, nouveau. I dare you!!!
Lyude Paul (8):
  drm/nouveau: Fix bogus drm_kms_helper_poll_enable() placement
  drm/nouveau: Enable polling even if we
2013 Apr 13
2
Dict quota question
Hi all,
I'm using Dovecot 2.1.16 and I'd like to know if the following
configuration is supported:
* An SQL dictionary quota
* A static userdb to get uid/gid/home information
* An SQL userdb to get per-user quota limit
Currenlty, current quota usage are properly stored into the database but
per-user limits are not found. If I replace the SQL dictionary by the
maildir backend (my
2017 Sep 07
2
Strange SASL issue
2017-09-07 14:29 GMT+02:00 Aki Tuomi <aki.tuomi at dovecot.fi>:
>
>
> On 07.09.2017 15:26, Antoine Nguyen wrote:
> > Hi all,
> >
> > I've just upgraded my server from debian 8 to debian 9 and I now
> encounter
> > a strange issue. I'm using prosody (XMPP server), configured to
> > authenticate against dovecot using SASL and a unix socket.
2010 Mar 26
7
Asterisk load balancing and failover
Hi List,
I'm finding a solution to provide failover and load balancing features to my IVR system.
Anyone suggest me what is the best solution please?. what the hardware I should use ?.
I heard about RedFone, but someone on the mail list said that it is not good because TDMoE module in asterisk is not so stable and TDMoE is stale. And It seems that RedFone doesn't not support load
2007 Jun 22
5
assert_select trying to verify the presence of a textarea
Hello,
One of my functional tests looks like this:
  def test_presence_of_free_text
    profile = Profile.find :first
    post :edit, {:id => profile.id}
    assert_select "textarea", :name => "record[free_text_ec]"
  end
The test results in a failure, because the element cannot be found.
I''m pretty sure the element should be there, and I''ve tried
2007 Mar 15
8
in-place-editor
hi @ all
how can i save my edited text in the database with php?
thanks for your support
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send
2007 Apr 13
2
inplace editor and textarea
Hi,
I have an inplace editor and I can access the innerHTML value of the
created form. However the innerHTML gives "<textarea>....</textarea>
..."
How can I access the textarea value? I tried to do
innerHTML.textarea.value but it didn''t work. Any ideas will be
appreciated.
Thanks,
Joe
-- 
Posted via http://www.ruby-forum.com/.
2007 Aug 25
2
insert HTML <select> value into a textarea - Works in IE6, not in FireFox or Opera
I have a simple form at  http://mstramba.com/fb5.html
It''s just a <select> and a textarea.
The idea is to be able to either type into a text area directly or
choose from a list of saved words in the select box. When a new choice
is made from the select, it automatically gets inserted into the text
area.
This code DOES work in I.E6 (on my machine (XP pro), but doesn''t
2006 Apr 14
11
Whats the best Ajax way to update a textarea''s text?
I am looking for a way to update the text-value within a textarea from 
an Ajax render call inside of a controller. Is there a way to do this 
without rendering an the partial containing the textarea?
Thanks,
Andy
-- 
Posted via http://www.ruby-forum.com/.
2006 Jan 05
6
InPlaceEditor and textarea
Hi to all.
First of all exchuse for my bad english
I try to use Ajax.InPlaceEditor with a textarea:
##################
new Ajax.InPlaceEditor($(''ipblock''), ''tools/admin_save.php'',
    { ajaxOptions: {method: ''get''},
      rows:10,
      cols:20,
      callback: function(form, value) { return ''op=ipblock&value='' + value},
2006 Apr 06
2
text_area and :value
I''m trying to use the text_area() method and would like to populate the 
text block with initial text.
According to this: http://dev.rubyonrails.org/ticket/3752 there was a 
fix put in place, but I''m ont sure how to integrate this.
How do I get the :value parameter to show up within the textbloc instead 
of the html attributes?
-- 
Posted via http://www.ruby-forum.com/.
2006 Mar 10
4
Problem with ajax and textareas on firefox but works on IE
Hi folks,
I''ve been trying to figure this one out for a few hours now and can''t 
seem to understand what I might be doing wrong here.  Basically, I have 
a textarea which has a little icon next to it which will fire off a 
reset of the original comment if pressed.  It works under IE so that 
when the user types some garbase in to the textarea, and clicks the 
icon, the contents
2005 Mar 31
5
Outputting XHTML strict
I''m trying to get a page to validate as XHTML Strict, and I''ve gotten  
everything fixed except for one <textarea> that Rails is generating.
   <textarea cols="40" id="estcomment_comment" name="estcomment[comment]"  
rows="10" wrap="virtual"></textarea>
This tag is being called in my view with
   <%=
2006 Jan 28
7
cool components in the form
Is there a easy way to add components like:
http://www.dynarch.com/projects/calendar/
http://tinymce.moxiecode.com/example_full.php?example=true
in ruby forms, by plugins or whatever?
 
Thank you
 
 
Rodrigo Dom?nguez
Iplan Networs
www.iplan.com.ar <http://www.iplan.com.ar/>  ? rdominguez@iplan.com.ar
www.rorra.com.ar <http://www.rorra.com.ar/>  ? rorra@rorra.com.ar
 
--------------
2005 Oct 05
5
InPlaceEditor crash on Safari
Quick question..
I often crash my Safari when using ''Enter'' on InPlaceEditor''s for  
submitting.
Works fine on firefox(win & Mac) - no javascript errors.
Anyone else seen this behavior?
(Maybe it is just my alterings of InPlaceEditor  :-)
Best Regards
Michael Krog