search for: element

Displaying 20 results from an estimated 16954 matches for "element".

Did you mean: elements
2005 Jan 30
1
ldap smbpasswd
...ction to the LDAP server The LDAP server is succesfully connected ldapsam_getsampwnam: Unable to locate user [username] count=0 Finding user username Trying _Get_Pwnam(), username as lowercase is username Get_Pwnam_internals did find user [username]! pdb_set_username: setting username username, was element 12 -> now SET pdb_set_full_name: setting full name User Name, was element 13 -> now SET pdb_set_unix_homedir: setting home dir /home/username, was NULL element 22 -> now SET pdb_set_domain: setting domain SKYWALKER, was element 14 -> now DEFAULT pdb_set_user_sid: setting user sid S-1-5...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...ces function that will be invoked every time -// the text inside the monitored textbox changes. This method +// the text inside the monitored textbox changes. This method // should get the text for which to provide autocompletion by // invoking this.getToken(), NOT by directly accessing // this.element.value. This is to allow incremental tokenized @@ -30,23 +30,23 @@ // will incrementally autocomplete with a comma as the token. // Additionally, ',' in the above example can be replaced with // a token array, e.g. { tokens: [',', '\n'] } which -// enables autocompletion o...
2003 Jun 16
0
LDAP smbpasswd help needed
...system: succesful connection to the LDAP server The LDAP server is succesful connected Unable to locate user [testuser] count=0 Finding user testuser Trying _Get_Pwnam(), username as lowercase is testuser Get_Pwnam_internals did find user [testuser]! pdb_set_username: setting username testuser, was element 11 -> now SET pdb_set_full_name: setting full name Dereks Test User,,,, was element 12 -> now SET pdb_set_unix_homedir: setting home dir /home/testuser, was NULL element 21 -> now SET pdb_set_domain: setting domain TESTBOX, was element 13 -> now DEFAULT pdb_set_user_sid: setting user si...
2006 Nov 28
11
Extending Element with getTop, getWidth, getLeft problem
Hi, I need to extend the Element object with getTop, getWidth, getLeft . I wrote something like this in an js file and loaded it after the prototype.js . ---------------------------------------------------- Object.extend(Element, { getWidth: function(element) { element = $(element); return element.offsetWidth; }, ge...
2005 Jan 31
0
ldap smbpasswd UH???
...esfully connected >>ldapsam_getsampwnam: Unable to locate user [username] count=0 >>Finding user username >>Trying _Get_Pwnam(), username as lowercase is username >>Get_Pwnam_internals did find user [username]! >>pdb_set_username: setting username username, was >>element 12 -> now SET >>pdb_set_full_name: setting full name User Name, was >>element 13 -> now SET >>pdb_set_unix_homedir: setting home dir /home/username, was NULL >>element 22 -> now SET >>pdb_set_domain: setting domain SKYWALKER, was >>element 14 -> now D...
2005 Dec 15
1
Some handy methods - perhaps cool enough to be committed some time
...again. Feel free to use it. The code should be rather self explaining, but heres a quickguide. - new Geometry.Size(width,height) - Creates a new instance of size - new Geometry.Position(x,y) - Creates a new instance of position - new Geometry.Area(position,size) - Creates a new instance of area - Element.getPosition(element) - retrieves the position of an element - Element.setPosition(element,position) - sets the position of an element - Element.getSize(element) - retrieves the size of an element - Element.setSize(element,position) - sets the size of an element - Element.setOpacity(element,opacity)...
2005 Nov 18
1
how can i compile speex on Solaris 9 with gcc 3.4.2
...t;.deps/speexenc.Tpo" -c -o speexenc.o spe exenc.c; \ then mv -f ".deps/speexenc.Tpo" ".deps/speexenc.Po"; else rm -f ".deps/speexenc. Tpo"; exit 1; fi speexenc.c:35:20: getopt.h: No such file or directory speexenc.c: In function `main': speexenc.c:221: error: elements of array `long_options' have incomplete type speexenc.c:223: warning: excess elements in struct initializer speexenc.c:223: warning: (near initialization for `long_options[0]') speexenc.c:223: error: `no_argument' undeclared (first use in this function) speexenc.c:223: error: (Each und...
2004 Mar 16
2
Cannot compile wine
.... -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o tokenize.o tokenize.c tokenize.c:46: error: `TK_ABORT' undeclared here (not in a function) tokenize.c:46: error: initializer element is not constant tokenize.c:46: error: (near initialization for `aKeywordTable[0].tokenType') tokenize.c:46: error: initializer element is not constant tokenize.c:46: error: (near initialization for `aKeywordTable[0]') tokenize.c:47: error: `TK_AFTER' undeclared here (not in a function)...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server
2005 Aug 31
4
Element.show - element.style.display=''''
All Head up. I found that when I had a hidden DIV (using css - display: none) which I wanted to Effect.Appear on some event (although the underlying problem seems to be with Element.show()), I had to make an amendment to the underlying prototype.js code by changing : element.style.display = '''' -> element.style.display = ''block''; I think the problem was with the conflicting computed CSS values. If your interested, the code is below. Than...
2005 Nov 04
1
prototype EventObserver on radio option elements
Hi all, I just started using prototype 1.3.1. I''ve successfully used Form.Element.EventObserver on a select list and recently tried to add it to radio options. However, I think there is a flaw in how it works with radio options. Radio options are a little unusual in that there are multiple distinct elements, tied together by a common name, where changing one element causes...
2012 Mar 06
4
Momentum Datalink v3.0 not working at all
Hi, My first post here, so help me right if I'm not following protocol. My problem basically boils down to this. I need this program to download the data from me and my wife's pedometers for health insurance purposes. This program is supposed to work on Win 2000 through Vista, but should run on 7 as well. I'm running latest Wine ( 1.3.xx from PPA) on Kubuntu 11.10. It installs
2010 Jun 20
2
Variable Scope in classes
I think I have a misunderstanding of variable scope in classes. Wy isn''t tfel4_ClusterDbType set in the elements::tfel4::elements class? It''s set in elements::tfel4::defaults but then goes *poof* when elements::tfel4::elements tries to access it. class elements::tfel4::defaults { if ( !$tfel4_ClusterDbType ) { $tfel4_ClusterDbType = "oracle" } notice("(1)tfel4_Clu...
2011 Jun 21
2
Machines randomly kicks out of the domain
...:572(init_sam_from_ldap) init_sam_from_ldap: Entry found for user: MBBUCHHALTUNG04$ [2011/06/21 11:49:33.372837, 10] passdb/pdb_get_set.c:608(pdb_set_username) pdb_set_username: setting username MBBUCHHALTUNG04$, was [2011/06/21 11:49:33.372867, 11] passdb/pdb_get_set.c:510(pdb_set_init_flags) element 12 -> now SET [2011/06/21 11:49:33.372894, 10] passdb/pdb_get_set.c:631(pdb_set_domain) pdb_set_domain: setting domain METHABAU-PUR, was [2011/06/21 11:49:33.372908, 11] passdb/pdb_get_set.c:522(pdb_set_init_flags) element 14 -> now DEFAULT [2011/06/21 11:49:33.372922, 10] passdb/pdb_get...
2005 Nov 24
1
Extended $ function called $$
This code lets you use standard CSS selectors to get an array of elements. For example, $$("#container div.myElements") would return all subelements of #container that are divs and are of the class myElements. I submitted similar code a while back to the email address for the prototype library but never got a reply. Thought I''d post this in the hope...
2005 Sep 25
2
Preventing/allowing exceptions to occur in Element.add/remove ClassName
Hello everyone ! Thomas asked me to discuss here the behavior of Element.addClassName, as relating to ticker #2232 [1]. In HEAD, if the element passed-in to Element.addClassName does not exist, an exception is thrown, and script execution stops there. I believe this is inconsistent with other functions: Object.extend(Element, { hasClassName: function(element, cl...
2008 Feb 07
3
Adding my own extensions with Elements.addMethods()
When I add my own extensions to DOM elements, is there a way to only add my extensions to the specific types of DOM elements (e.g. SELECT) to which my extensions apply or are intended to operate? Based on the Prototype API documentation (http://prototypejs.org/learn/ extensions), it appears that anytime I extend an element, all the extensio...
2006 May 26
4
stopping effects, help me again please
Hi * and thanks for you responses some body help me stop effect, just last effect. Thanks! to somebody help me with: Pulsator = Class.create(); Pulsator.prototype = {initialize: function(element) { this.stopped = false; new Effect.Pulsate(element, { afterFinish: this.action.bind(this) }); },action: function(element){if(!this.stopped) new Effect.Pulsate(element, { afterFinish: this.action.bind(this) }); },stop: function(element) {this.stopped = true;} } but this solution doesn'...
2007 Aug 17
4
matching elements from two vectors
Hi, Imagine a vector x with elements (1,2,1,1,3,5,3,3,1) and a vector y with elements (2,3). I need to find out what elements of x match any of the elements of y. Is there a simple command that will return a vector with elements (F,T,F,F,T,F,T,T,F). Ideally, I would like a solution that works with dataframe colums as well. I have t...
2008 Jul 12
1
<new Element> optimization
I have 2 problems with Prototype''s <new Element> method. 1. I have a lot of DOM elements created manualy with <new Element>. I have already about 1000 lines of code with just <new Element>. When I added it to the dome with <body.appendChild(root)> it takes a lot of time to insert. How to optimize it? May be it''s b...