search for: mear

Displaying 20 results from an estimated 43 matches for "mear".

Did you mean: mean
2009 Feb 15
2
text_area_tag not escaping content by default
...ss'');<script>" If you try that, you''ll see that the content is inserted literally. Considering the fact that the tag helpers all encode their attribute values by default, does this surprise anyone else? I found a ticket on this issue from a couple years ago from Chris Mear but it looks like it was dropped: http://dev.rubyonrails.org/ticket/5929 It seems like there were two main arguments against encoding: 1. backwards compatibility 2. some people depend on this behavior to allow HTML in their text area boxes #2 I don''t really understand. You can allow HTM...
2011 Apr 01
10
"rm public/index.html not recognized...."
I typed, "rm public/index.html" Got back, "''rm is not recognized as an internal or external command, operable program or batch file." Bruce -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To
2004 Aug 19
3
Echo SIP-T100P-PRI
I'm experience echo on outgoing calls: Snom 200 ----> Asterisk ----> T100P ----> PRI ----> called party I am getting echo on the Snom 200 phone. The called party does not hear the echo. Since the PRI is digital, I don't really understand where the echo is coming from. I turned on echotraining, echocancellation=yes (128), and echowhenbridged in zapata.conf, to no avail.
2011 Apr 08
7
FileUpload without Tempfile
I am looking for a way to upload a file to Rails 3 app, but without generating a temp file. Googling the issue gave me some insight in how the file upload works. As I understand Rails creates a temp file when the file size is larger than 20kb. Is there a way to change this limit and avoid the temp file generation? Another solution I was looking in was creating a Rack App and so avoid the file
2018 Jul 04
2
Where can I find the 6.10 centos-release srpm?
...c 'c6' did not match any file(s) known to git. (vgeppetto2 pts14) $ So at this point in time, I am lost. Can someone tell me what the magic incantation is to actually get the latest sources? It would also be nice if it was described how to do this @ https://wiki.centos.org/Sources so that mear mortals like myself could understand how to actually use it. Regards, -- Tom me at tdiehl.org
2004 Sep 30
12
Block domains with Shorewall
Hi, like implementing this script with shorewall? -------------------------------------------- #!/bin/sh dig ads.web.aol.com | grep "ads." | grep -v \; | grep -v \< | cut -f5 | while read aolblock1; do iptables -A OUTPUT -p all --destination $aolblock1 -j DROP done --------------------------------------- Thanks, Aventino Faria
2006 Jun 07
3
#5209 patch: :dependent => :nullify deletes child records
Hi everyone, A couple of weeks ago I noticed a bug with :dependent => :nullify on a has_many or has_one. When you delete the parent, the children''s foreign keys are nullified, as expected. But when you do parent.child.delete or parent.children.clear, ActiveRecord actually deletes the child records, rather than just nullifying them. In my eyes, if you''ve set
2010 Aug 30
16
<b> tag in HTML 5 (was Re: Re: assert_select for <p><b>text</b>value</p>)
On 30 August 2010 15:47, Marnen Laibow-Koser <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: > Colin Law wrote: >> I have the following html >> <p><b>text</b>value</p> >> I can use >> assert_select "p>b", "text" >> to check the text portion, and >> assert_select "p", "value"
2010 Aug 27
6
assert_select for <p><b>text</b>value</p>
I have the following html <p><b>text</b>value</p> I can use assert_select "p>b", "text" to check the text portion, and assert_select "p", "value" to check that the value appears in a <p>. I cannot work out how to check that the two are in the same <p>. I have used assert_select for much more complex tasks but my mind
2004 Aug 06
1
icses
HI I just wanted to know if anybody has successfully or attempted to install ices om Mac OsX ? I have tried over the last few days, but no success, it would be good to know firstly if it is compatible before I spew my term output here and cause un-necessary spam I have icecast-1.3.12 up and running with Shout, a fink (fink.sourceforge.net) port but I see from the home page this is not
2009 Feb 06
0
party package conditional variable importance
...umber of rows [17] 3: In matrix(as.logical(cl), nrow = nlevels(x)) : data length [2] is not a sub-multiple or multiple of the number of rows [17] 4: In matrix(as.logical(cl), nrow = nlevels(x)) : data length [2] is not a sub-multiple or multiple of the number of rows [17] Many thanks, Meghann Mears, PhD student University of Sheffield Department of Animal & Plant Sciences
2009 Jun 11
2
In Dahdi: what we use instead of /sbin/ztcfg -vv
Hi All; In dahdi: what we use instead of ztcfg -vv (that is existed /sbin/ztcfg -vv). ? Regards Bilal
2006 Oct 06
2
how to set the ‘Return-Path’ header in ActionMailer
how to set the ‘Return-Path’ header in ActionMailer. regards -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group,
2018 Jul 05
0
Where can I find the 6.10 centos-release srpm?
...le(s) known to git. > (vgeppetto2 pts14) $ > > So at this point in time, I am lost. Can someone tell me what the magic > incantation is to actually get the latest sources? > > It would also be nice if it was described how to do this > @ https://wiki.centos.org/Sources so that mear mortals like myself could > understand how to actually use it. > All the sources except centos-release are in place in the CR directory .. I will be working on getting the Sources directory completed today. I don't want to delay the actual os release to get all the sources in place befo...
2010 Aug 14
2
gem install bundler works, gem bundle doesn't?
This is probably a simple user error, but why doesn''t "gem bundle" work after "gem install bundler"? ===== bash$ gem install bundler Successfully installed bundler-0.9.26 1 gem installed Installing ri documentation for bundler-0.9.26... Installing RDoc documentation for bundler-0.9.26... bash$ gem bundle ERROR: While executing gem ... (RuntimeError) Unknown
2007 May 06
2
render :action "call method first?"
Hi, I know when I call: render :controller => ''some'', :action => ''thing'' It doesn''t call the method ''thing'' before render the template ''thing.rhtml'', but I need some instance variable which are in the ''thing'' method, how can I let it call the method ''thing'' and then render
2009 May 20
0
Step-by-Step Asterisk and MeetMe Help
...d you to it? > > (Not to mention that the whole messing with kernels is so bad in Centos. > It is not better in SUSE, where you have to install the full kernel > source to build Zaptel / DAHDI). > > Next: no need to run 'make clean' before running ./configure. It is > mearly pointless. > > 'make menuselelct' is something you normally don't need to run, unless > you know you want to remove things. In other words: don't let it > needlessly complicate your installation instructions. * snip* You seem to be missing the headers for your dist...
2018 Jul 04
2
Where can I find the 6.10 centos-release srpm?
Hi, Where can I find the srpm for centos-release-6-10.el6.centos.12.3.x86_64? I looked in vault and it is not there. Regards, -- Tom me at tdiehl.org
2006 Dec 24
2
db name change
Hi all, Is it possible to do a db name change during the course of the project and then propagate the effect all across the project? E.g. I started of doing a sample program with db name as "tests". As the project evolved I decided to change its name to "biodatas". " create_table "tests", :force => true do |t| t.column
2006 Aug 31
2
Url rewriting for random urls
Hello, I have discovered the good use of stylesheet_link_tag and javascript_include_tag (I''m still learning) and it is very useful because I have to use the relative_url_root way. Now I wonder how I can use that for other URLs. I want a background image for a table cell so I have to write something like: <td align=''right'' valign=''bottom''