From hiaparnajoshi at yahoo.com Mon Nov 6 19:09:29 2006 From: hiaparnajoshi at yahoo.com (Aparna Joshi) Date: Mon, 6 Nov 2006 11:09:29 -0800 (PST) Subject: [Eclipse-cvs] How to change CVS password Message-ID: <20061106190929.11237.qmail@web33104.mail.mud.yahoo.com> Hi, Can I change my CVS password from eclipse ? If not then how do we change password in CVS ? Thanks, Aparna --------------------------------- Everyone is raving about the all-new Yahoo! Mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jackywong at webnic.cc Wed Nov 8 02:14:01 2006 From: jackywong at webnic.cc (Jacky) Date: Wed, 08 Nov 2006 10:14:01 +0800 Subject: [Eclipse-cvs] How to change CVS password In-Reply-To: <20061106190929.11237.qmail@web33104.mail.mud.yahoo.com> References: <20061106190929.11237.qmail@web33104.mail.mud.yahoo.com> Message-ID: <45513D69.5040406@webnic.cc> An HTML attachment was scrubbed... URL: From ihatchondo at common-lisp.net Tue Nov 28 20:30:35 2006 From: ihatchondo at common-lisp.net (ihatchondo) Date: Tue, 28 Nov 2006 15:30:35 -0500 (EST) Subject: [Eclipse-cvs] CVS eclipse/lib/clx-ext Message-ID: <20061128203035.3C181710D2@common-lisp.net> Update of /project/eclipse/cvsroot/eclipse/lib/clx-ext In directory clnet:/tmp/cvs-serv27687/lib/clx-ext Modified Files: keysyms.lisp Log Message: Fixed: bug reported by Ralf Mattes, about keyboard modifiers not available. --- /project/eclipse/cvsroot/eclipse/lib/clx-ext/keysyms.lisp 2005/02/10 23:45:53 1.8 +++ /project/eclipse/cvsroot/eclipse/lib/clx-ext/keysyms.lisp 2006/11/28 20:30:35 1.9 @@ -1,5 +1,5 @@ ;;; -*- Mode: Lisp; Package: Keyboard -*- -;;; $Id: keysyms.lisp,v 1.8 2005/02/10 23:45:53 ihatchondo Exp $ +;;; $Id: keysyms.lisp,v 1.9 2006/11/28 20:30:35 ihatchondo Exp $ ;;; ;;; This is a CLX extension for managing keyboard. ;;; @@ -44,12 +44,13 @@ (defun make-modifier-mask-table (disp) (loop with map = '(:any #x8000) + with ks-per-keycode = (array-dimension (xlib:keyboard-mapping disp) 1) for mods in (multiple-value-list (xlib:modifier-mapping disp)) for i = 1 then (* 2 i) do (loop for mod in mods - for key-name = (keycode->keyname disp mod) + for key-name = (modcode->keyname disp mod ks-per-keycode) for prec = (getf map key-name) do - (setf (getf map key-name) (+ (if (numberp prec) prec 0) i))) + (setf (getf map key-name) (logior (if (numberp prec) prec 0) i))) finally (return map))) (defun define-keysym (keyname value) @@ -69,6 +70,16 @@ "Returns the keyword that named the specified keycode." (keysym->keyname (xlib:keycode->keysym disp keycode 0))) +(defun modcode->keyname (disp keycode keysyms-per-keycode) + "Returns the keyword that named the specified modifier keycode." + ;; This has been created to deal with X keyboard wierd mapping. + ;; For some reasons, for few keys the first keysym in the list, + ;; modifiers keysym in particular, does not exists. So lets try + ;; to resolve it anyway looking further in the array. + (loop for i from 0 below keysyms-per-keycode + for keysym = (xlib:keycode->keysym disp keycode i) + when (> keysym 0) do (return (keysym->keyname keysym)))) + (defun keyname->keycodes (disp keyname) "Returns the list of keycode associated with the specified keyname." (multiple-value-list (xlib:keysym->keycodes disp (keyname->keysym keyname))))