search for: elm

Displaying 20 results from an estimated 112 matches for "elm".

Did you mean: elf
2006 Feb 22
3
elements that appear only once
Hi. I have a factor and I want to extract just those elements that appear exactly once. How to do this? Toy example follows. > a <- as.factor(c(rep("oak",5) ,rep("ash",1),rep("elm",1),rep ("beech",4))) > a [1] oak oak oak oak oak ash elm beech beech beech beech Levels: ash beech elm oak > table(a) a ash beech elm oak 1 4 1 5 > So I would want "ash" and "elm", because there is only one ash...
1997 May 15
1
Vulnerability in Elm-ME+
Hello, I have confirmed that the recently-reported vulnerability in Elm is also present in Elm-ME+ and thus also in Debian GNU/Linux version 1.2, prerelease version 1.3, and development tree "unstable". Below is a short diff to correct the problem. Debian GNU/Linux 1.2.x uses stock Elm 2.4pl25. Users of that version of Elm should upgrade to Elm-ME+ as deta...
1997 May 14
0
Security hole in Elm...
>---------- Forwarded message ---------- >Date: Tue, 13 May 1997 21:18:33 +0200 >From: Wojciech Swieboda <wojtek@ajax.umcs.lublin.pl> >To: BUGTRAQ@NETSPACE.ORG > >Hello, > I''ve lately found an overflow vulnerability in Elm (Elm is setgid >mail on linux, and perhaps on some other platforms aswell). I''ve tested >this bug on versions 2.3 and 2.4, on 3 different Linux installations. >from Elm 2.3''s curses.c: >[...] > char termname[40]; > char *strcpy(), *getenv(); > &g...
2005 Aug 23
0
CESA-2005:755-01: Critical CentOS 2 i386 elm security update
The following errata for CentOS-2 have been built and uploaded to the centos mirror: RHSA-2005:755-01 Critical: elm security update Files available: elm-2.5.6-6.i386.rpm More details are available from the RedHat web site at https://rhn.redhat.com/errata/rh21as-errata.html The easy way to make sure you are up to date with all the latest patches is to run: # yum update -- John Newbigin Computer Systems Offic...
2004 Feb 23
1
samba problems after IP change
...smbclient now fails. I have reconfigured the QNX machine for the new address, and regular TCP/IP (ping, ftp, telnet, &c.) between the machines works fine. Running smbclient -U% -L localhost on the QNX machine shows expected shares. The Workgroup name matches the WinNT domain name. Running elm% smbclient //swin0001/comq -Uparsonw -WCNT shows: added interface ip=10.93.52.35 bcast=10.93.55.255 nmask=255.255.248.0 Connection to swin0001 failed On the Windows side, net view \\elm (where elm is the name of the QNX machine) results in a message: System error 53 has occurred The network p...
2005 Aug 24
0
CentOS-announce Digest, Vol 6, Issue 12
...est at centos.org You can reach the person managing the list at centos-announce-owner at centos.org When replying, please edit your Subject line so it is more specific than "Re: Contents of CentOS-announce digest..." Today's Topics: 1. CESA-2005:755-01: Critical CentOS 2 i386 elm security update (John Newbigin) ---------------------------------------------------------------------- Message: 1 Date: Wed, 24 Aug 2005 09:10:58 +1000 From: John Newbigin <jnewbigin at ict.swin.edu.au> Subject: [CentOS-announce] CESA-2005:755-01: Critical CentOS 2 i386 elm security...
2005 Nov 22
0
Element.findElement - confusion
Hello I''m kind of confused on how to use Element.findElement. I''ve something like this: if (Event.findElement(event,''A'')) { var elm = Event.findElement(event,''A''); alert(elm.nodeName); } else { alert(''no link''); } var elm = Event.findElement(event,''A''); alert(elm.nodeName); returns #document! since the Event.findElement is not a ''A'' tag, why do...
2002 Jun 28
0
troubles with PDC
...el %p-%j #[collection] # comment = Collection Share # path = /collection # force user = nobody # admin users = mil, wri # writeable = Yes # guest only = Yes [website] comment = Acceptation Webserver path = /var/www/acc valid users = mil, elm, cvh admin users = mil, elm, cvh force user = apache force group = apache writeable = Yes create mask = 0740 guest ok = Yes [intracc] comment = Intranet Webserver path = /var/www/intranet valid users = elm, mil, rbo, mhi, cvh...
2005 Nov 08
1
Event.observers - I''m totally list - please help
...ar */ var x = $(''nav'').getElementsByTagName(''LI''); for (var i = 0; i < x.length; i++) { if (x[i].className == ''fm-navbtnUp'') { Event.observe(x[i],''mouseover'', _btnOver(), false); } } function _btnOver(event) { var elm = Event.element(event); alert(elm.nodeName); } The prototype way either returns the LI or the IMG tag depending on how fast I move over the image inside the li tag. Am I using the Event.observer the wrong way or what is the problem. How do I have to set this up in order to make it work? On...
2013 Jun 20
1
Would attempting plaintext auth repeatably cause a DOS and server to crash?
Hey All, I'm just wondering whether this is what caused my server to crash. Started last night in NZ land. Jun 20 19:22:11 elm dovecot: imap-login: Disconnected (tried to use disallowed plaintext auth): user=<>, rip=attackerip, lip=10.0.0.3, session=<0C8LzpDfZQDINsQC> occasionally get Jun 20 19:22:52 elm dovecot: imap-login: Disconnected (no auth attempts in 1 secs): user=<>, rip=attackerip, lip=10.0...
2013 Jun 20
0
Would a DOS on dovecot running under a VM cause host to crash?
Hey All, I'm just wondering whether this is what caused my server to crash. Started last night in NZ land. Jun 20 19:22:11 elm dovecot: imap-login: Disconnected (tried to use disallowed plaintext auth): user=<>, rip=attackerip, lip=10.0.0.3, session=<0C8LzpDfZQDINsQC> occasionally get Jun 20 19:22:52 elm dovecot: imap-login: Disconnected (no auth attempts in 1 secs): user=<>, rip=attackerip, lip=10.0...
2006 Mar 01
0
RE: manipulate <td>''s and their content by grabbingtheir classNames
...t;/p>You could make a controller-object, which keeps a pointer to the selected index, rather than traversing through the dom each time you change the active cell. Something along : <Xcript type="text/javascript"><!-- MyController = { selected : null, select : function(elm) { if (this.selected) { this.selected.className = ""; } this.selected = elm; elm.className = "selected"; } } --></Xcript> <table> <tr> <td onclick="MyController.select(this)">foo</td&gt...
2006 Mar 01
1
manipulate <td>''s and their content by grabbing their classNames
Hi Guys, What''s the best way to grab all <td>''s in a particular table and manipulate them? Here''s the problem definition - I have a table that has ''n'' <tr>''s. Each <tr> has couple of <td>''s and the first <td> has an image. By default, each <td> has a ''x'' class and image src
2005 Dec 02
1
corrupt attachments
...ecot seems to be stripping the last four characters from each base64 encoded ascii line within the attachment and rewriting the message within the mail spool without those characters. From then on, the attachment is permanently corrupt, even via local unix direct file access clients such as pine or elm. We've temporarily switched back to UW imapd, but users have noticed the decrease in speed - not having the indexing available. Again, any suggestions would be greatly appreciated. Thanks, Brian
2006 Mar 01
2
RE: manipulate <td>''s and their content bygrabbingtheir classNames
> Or... > > var myTDs = new Array(); > $A($("main").childNodes).each(function(tr) > { > $A(tr.childNodes).each(function(td) > { > myTDs.push(td); > }); > }); You''ll probably want to make sure the tr elements are TR tags and the same for the td''s, as empty text nodes are inserted randomly by the gecko engine (and maybe others). Greg
2006 Jan 02
2
First time class problems
Hi, I''ve just had my very first attempt of making a JavaScript class, "prototype" style, so please bare with me, for any disastrous errors :-) Anyway, I''ve made this class, which is called on an input field on focus: http://pastebin.com/487417 It works fine in FireFox, but causes some problems in IE. My question is regarding line 69 in the paste. What is
2006 May 09
12
prototype: leak with Element.extend
Had a nasty memory leak that was seriously slowing down the browser and eating up a couple megabytes every reload. I was using: $$(''.dyntable'').each(function(elm) { new DynTable(elm) }); To set up my behavior, but discovered that just running: $$(''.dyntable''); Caused the memory leak all by itself. The fix I found for it was to change Element.extend to a noop. Element.extend = function(element) { return element; } Apparently IE has...
2007 Oct 25
0
specs for RJS
What''s the current best practice for spec''ing (and stubbing) RJS? response.should have_rjs(*args, &block) from rspec_on_rails works well for things that assert_select_rjs supports. But for other things, like say page[:elm].add_class_name :class_name, it''s not clear to me the best way to test for this. I''d love to be able to do something like page[:elm].should_receive(:add_class_name).with(:class_name). Is this possible to do? Thanks! Rspec rocks! -ben
2008 Nov 24
0
Data frame help
hi there I have a dataframe abc 123 234 abc 234 456 def 567 234 elm 123 456 klm 234 678 klm 465 678 I want the unique of first colum along with the values in colum 2 and 3.I By default it will select the first element for the unique so my out put should be abc 123 234 def 567 234 elm 123 456 klm 234 678 I tried something like cbind(unique(DF1[,1],DF1[unique(DF...
1999 Jul 14
0
Samba or mutt problem
...le separately as well. Here are two URL's: ftp://ftp.cac.washington.edu/pine/pine4.10.tar.gz ftp://ftp.cac.washington.edu/imap/imap.tar.Z The imap daemon that comes with pine will work with any imap capable email client, so don't feel you have to convert to pine. I switched to pine from elm because elm did not support imap. A friend told me about mutt and the web page says the current version has "some" support for imap. I have not tried it yet, but I would guess it supports enough for most needs. There are several PC email clients that support imap as well. These include...