From greg at clozure.com Tue Dec 11 23:05:38 2007 From: greg at clozure.com (Greg Pfeil) Date: Tue, 11 Dec 2007 18:05:38 -0500 Subject: [mcclim-devel] patch for beagle Message-ID: This is the first in hopefully a series of patches to get beagle working again. These changes take beagle from not loading, all the way to being able to perform a couple clicks before a lockFocus assertion fails. -------------- next part -------------- A non-text attachment was scrubbed... Name: beagle.diff Type: application/octet-stream Size: 5841 bytes Desc: not available URL: -------------- next part -------------- From deepankar.sharma at gmail.com Wed Dec 12 03:21:31 2007 From: deepankar.sharma at gmail.com (Deepankar Sharma) Date: Tue, 11 Dec 2007 22:21:31 -0500 Subject: [mcclim-devel] Cannot install mcclim Message-ID: I recently tried installing mcclim and it seems that the site that hosts spatial-trees is down currently. Anyone has a workaround ? Regards, Deepankar -------------- next part -------------- An HTML attachment was scrubbed... URL: From greg at clozure.com Wed Dec 12 03:50:28 2007 From: greg at clozure.com (Greg Pfeil) Date: Tue, 11 Dec 2007 22:50:28 -0500 Subject: [mcclim-devel] another beagle patch Message-ID: This one fixes an issue tickled by Climacs. END is sometimes explicitly passed as NIL, which breaks (>= start end). Changed this to match the way CLX handles it. -------------- next part -------------- A non-text attachment was scrubbed... Name: beagle-text.diff Type: application/octet-stream Size: 1013 bytes Desc: not available URL: -------------- next part -------------- From david at lichteblau.com Wed Dec 12 10:46:54 2007 From: david at lichteblau.com (David Lichteblau) Date: Wed, 12 Dec 2007 11:46:54 +0100 Subject: [mcclim-devel] Cannot install mcclim In-Reply-To: References: Message-ID: <20071212104654.GB22681@radon> Quoting Deepankar Sharma (deepankar.sharma at gmail.com): > I recently tried installing mcclim and it seems that the site that hosts > spatial-trees is down currently. Anyone has a workaround ? The darcs repository mentioned on its cliki page works for me at the moment. darcs get http://rvw.doc.gold.ac.uk/sullivan/darcs/spatial-trees From rudi at constantly.at Mon Dec 17 09:41:47 2007 From: rudi at constantly.at (Rudi Schlatte) Date: Mon, 17 Dec 2007 17:41:47 +0800 Subject: [mcclim-devel] patch for beagle In-Reply-To: References: Message-ID: On 12.12.2007, at 07:05, Greg Pfeil wrote: > This is the first in hopefully a series of patches to get beagle > working again. > > These changes take beagle from not loading, all the way to being > able to perform a couple clicks before a lockFocus assertion fails. Hi Greg, Could you write a short "loading Beagle for dummies" mail? I have the clozure CL snapshot from Dec 03 running here and can load mcclim, but when trying (load "Backends/beagle/beagle-backend.asd") I get > Error: Cannot IMPORT "KEYBOARD-INPUT-FOCUS" from package "CLIMI" (This is with both your patches applied.) Many thanks! Rudi From greg at clozure.com Mon Dec 17 13:30:39 2007 From: greg at clozure.com (Greg Pfeil) Date: Mon, 17 Dec 2007 08:30:39 -0500 Subject: [mcclim-devel] patch for beagle In-Reply-To: References: Message-ID: <4124F0B3-D089-40E2-80F8-39EB85C8C6C2@clozure.com> On 17 Dec 2007, at 4:41, Rudi Schlatte wrote: > On 12.12.2007, at 07:05, Greg Pfeil wrote: > >> This is the first in hopefully a series of patches to get beagle >> working again. >> >> These changes take beagle from not loading, all the way to being >> able to perform a couple clicks before a lockFocus assertion fails. > > Could you write a short "loading Beagle for dummies" mail? I have > the clozure CL snapshot from Dec 03 running here and can load > mcclim, but when trying (load "Backends/beagle/beagle-backend.asd") > I get > > > Error: Cannot IMPORT "KEYBOARD-INPUT-FOCUS" from package "CLIMI" > > (This is with both your patches applied.) Ah, yes, I made another change locally that I hadn't submitted. I probably should have, but I wasn't 100% certain that it was the right thing and I had other not-ready-to-submit changes in that file (oh, how I miss darcs' hunks). I removed the DEFPACKAGE form from beagle- backend.asd. Here's a patch with that change. -------------- next part -------------- A non-text attachment was scrubbed... Name: beagle-package.diff Type: application/octet-stream Size: 3665 bytes Desc: not available URL: -------------- next part -------------- Hopefully that's the only other thing you need to get beagle to load. From greg at clozure.com Mon Dec 17 15:55:59 2007 From: greg at clozure.com (Greg Pfeil) Date: Mon, 17 Dec 2007 10:55:59 -0500 Subject: [mcclim-devel] beagle-by-default Message-ID: <5A3E2178-8EA4-40F0-8A24-69A9F5C0D6D4@clozure.com> This is a patch that sets up beagle to be loaded as the default backend on OpenMCL. I'm not recommending that it get added to the repo, becuase beagle is definitely not stable yet. However, it's useful for anyone else trying to use beagle in the meantime. With this patch, (asdf:oos 'asdf:load-op :mcclim) should load beagle by default on OpenMCL. -------------- next part -------------- A non-text attachment was scrubbed... Name: beagle-default.diff Type: application/octet-stream Size: 4741 bytes Desc: not available URL: From rudi at constantly.at Tue Dec 18 10:57:38 2007 From: rudi at constantly.at (Rudi Schlatte) Date: Tue, 18 Dec 2007 18:57:38 +0800 Subject: [mcclim-devel] beagle-by-default In-Reply-To: <5A3E2178-8EA4-40F0-8A24-69A9F5C0D6D4@clozure.com> References: <5A3E2178-8EA4-40F0-8A24-69A9F5C0D6D4@clozure.com> Message-ID: <6476A7F5-1A4F-40C0-B8AD-1C241AD7F550@constantly.at> On 17.12.2007, at 23:55, Greg Pfeil wrote: > This is a patch that sets up beagle to be loaded as the default > backend on OpenMCL. I'm not recommending that it get added to the > repo, becuase beagle is definitely not stable yet. However, it's > useful for anyone else trying to use beagle in the meantime. Thanks! I committed your other pending patches. I also added the defsystem form for clim-beagle to mcclim.asd (taken from the not-to-be- applied patch) and got rid of Backends/beagle/beagle-backend.asd. Please holler if I missed anything. Cheers, Rudi From tompa.persson at gmail.com Sat Dec 22 23:50:37 2007 From: tompa.persson at gmail.com (Thomas Persson) Date: Sun, 23 Dec 2007 00:50:37 +0100 Subject: [mcclim-devel] gadget-value Message-ID: <877ij6nvaq.fsf@opinion.spacecentre.se> Hi Here is a fix for making gadget-value work for text-fields again. -------------- next part -------------- A non-text attachment was scrubbed... Name: gadget-value.patch Type: text/x-patch Size: 873 bytes Desc: not available URL: From athas at sigkill.dk Sun Dec 23 00:40:56 2007 From: athas at sigkill.dk (Troels Henriksen) Date: Sun, 23 Dec 2007 01:40:56 +0100 Subject: [mcclim-devel] gadget-value In-Reply-To: <877ij6nvaq.fsf@opinion.spacecentre.se> (Thomas Persson's message of "Sun, 23 Dec 2007 00:50:37 +0100") References: <877ij6nvaq.fsf@opinion.spacecentre.se> Message-ID: <87tzmab5uv.fsf@lambda.athas.dyndns.dk> Thomas Persson writes: > Hi > > Here is a fix for making gadget-value work for text-fields again. Thank you for catching this, I just committed your fix. -- \ Troels /\ Henriksen