From kilian.sprotte at googlemail.com Wed Jan 10 11:49:32 2007 From: kilian.sprotte at googlemail.com (Kilian Sprotte) Date: Wed, 10 Jan 2007 12:49:32 +0100 Subject: [cldoc-devel] asdf-binary-locations Message-ID: <1d26dc7e0701100349s3dd3dc2ev7d8f1ef9841f9e1a@mail.gmail.com> Hi, there is a tiny change, I made for asdf-binary-locations. You might want to apply it? Cheers, Kilian -------------------------------- diff -ur cldoc-orig/src/cldoc.asd cldoc/src/cldoc.asd --- cldoc-orig/src/cldoc.asd 2005-11-18 15:52:18.000000000 +0100 +++ cldoc/src/cldoc.asd 2007-01-10 12:41:43.000000000 +0100 @@ -20,8 +20,6 @@ (in-package :cldoc.system) -(defparameter *cludg-directory* (directory-namestring *load-truename*)) - (defsystem :cldoc :components ((:file "package") @@ -30,6 +28,8 @@ (:file "string-parser" :depends-on ("cludg")) (:file "html" :depends-on ("cludg" "cache-system" "string-parser")))) +(defparameter *cludg-directory* (component-pathname (find-system :cldoc))) + #+:sbcl (defmethod perform :around (o f) ;; SBCL signals an error if DEFCONSTANT is asked to redefine a From kilian.sprotte at googlemail.com Wed Jan 10 12:13:44 2007 From: kilian.sprotte at googlemail.com (Kilian Sprotte) Date: Wed, 10 Jan 2007 13:13:44 +0100 Subject: [cldoc-devel] Re: asdf-binary-locations In-Reply-To: <1d26dc7e0701100349s3dd3dc2ev7d8f1ef9841f9e1a@mail.gmail.com> References: <1d26dc7e0701100349s3dd3dc2ev7d8f1ef9841f9e1a@mail.gmail.com> Message-ID: <1d26dc7e0701100413g4e0ada55ye34379f0ec76be9e@mail.gmail.com> Oops, I made a mistake there, sorry. It should have been: diff -ur cldoc-orig/src/cldoc.asd cldoc/src/cldoc.asd --- cldoc-orig/src/cldoc.asd 2005-11-18 15:52:18.000000000 +0100 +++ cldoc/src/cldoc.asd 2007-01-10 13:08:12.000000000 +0100 @@ -20,8 +20,6 @@ (in-package :cldoc.system) -(defparameter *cludg-directory* (directory-namestring *load-truename*)) - (defsystem :cldoc :components ((:file "package") diff -ur cldoc-orig/src/cludg.lisp cldoc/src/cludg.lisp --- cldoc-orig/src/cludg.lisp 2006-12-08 11:08:05.000000000 +0100 +++ cldoc/src/cludg.lisp 2007-01-10 13:09:41.000000000 +0100 @@ -17,7 +17,7 @@ ;;; -(defparameter *cludg-directory* common-lisp-user::*load-truename* +(defparameter *cludg-directory* (asdf:component-pathname (asdf:find-system :cldoc)) "The directory in which CLUDG is stored.") ;;; From hatchond at yahoo.fr Wed Jan 10 13:33:12 2007 From: hatchond at yahoo.fr (Iban HATCHONDO) Date: Wed, 10 Jan 2007 13:33:12 +0000 (GMT) Subject: [cldoc-devel] Re: asdf-binary-locations Message-ID: <20070110133312.44461.qmail@web27609.mail.ukl.yahoo.com> This helps when using the common lisp controller doesn't it ? Otherwise the system can't find the css file ? thanks for the patch. I'll apply asap. cheers, Iban. ----- Message d'origine ---- De : Kilian Sprotte ? : cldoc-devel at common-lisp.net Envoy? le : Mercredi, 10 Janvier 2007, 13h13mn 44s Objet : [cldoc-devel] Re: asdf-binary-locations Oops, I made a mistake there, sorry. It should have been: diff -ur cldoc-orig/src/cldoc.asd cldoc/src/cldoc.asd --- cldoc-orig/src/cldoc.asd 2005-11-18 15:52:18.000000000 +0100 +++ cldoc/src/cldoc.asd 2007-01-10 13:08:12.000000000 +0100 @@ -20,8 +20,6 @@ (in-package :cldoc.system) -(defparameter *cludg-directory* (directory-namestring *load-truename*)) - (defsystem :cldoc :components ((:file "package") diff -ur cldoc-orig/src/cludg.lisp cldoc/src/cludg.lisp --- cldoc-orig/src/cludg.lisp 2006-12-08 11:08:05.000000000 +0100 +++ cldoc/src/cludg.lisp 2007-01-10 13:09:41.000000000 +0100 @@ -17,7 +17,7 @@ ;;; -(defparameter *cludg-directory* common-lisp-user::*load-truename* +(defparameter *cludg-directory* (asdf:component-pathname (asdf:find-system :cldoc)) "The directory in which CLUDG is stored.") ;;; _______________________________________________ cldoc-devel mailing list cldoc-devel at common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/cldoc-devel ___________________________________________________________________________ D?couvrez une nouvelle fa?on d'obtenir des r?ponses ? toutes vos questions ! Profitez des connaissances, des opinions et des exp?riences des internautes sur Yahoo! Questions/R?ponses http://fr.answers.yahoo.com From kilian.sprotte at googlemail.com Wed Jan 10 18:05:06 2007 From: kilian.sprotte at googlemail.com (Kilian Sprotte) Date: Wed, 10 Jan 2007 19:05:06 +0100 Subject: [cldoc-devel] Re: asdf-binary-locations In-Reply-To: <20070110133312.44461.qmail@web27609.mail.ukl.yahoo.com> References: <20070110133312.44461.qmail@web27609.mail.ukl.yahoo.com> Message-ID: <1d26dc7e0701101005o72b76299ub2e118cd1bad8050@mail.gmail.com> Hi, On 1/10/07, Iban HATCHONDO wrote: > This helps when using the common lisp controller doesn't it ? To be honest, I am not sure about that. I was just thinking about http://www.cliki.net/ASDF-Binary-Locations. > Otherwise the system can't find the css file ? Exactly :) > thanks for the patch. > I'll apply asap. Cool! Thanks, Kilian PS: I am looking for some LISP contact in France - if you like, you could tell me offline, where you are based? (I am in Paris) From hatchond at yahoo.fr Thu Jan 11 00:32:41 2007 From: hatchond at yahoo.fr (Iban HATCHONDO) Date: Thu, 11 Jan 2007 00:32:41 +0000 (GMT) Subject: [cldoc-devel] Re: asdf-binary-locations Message-ID: <20070111003241.42905.qmail@web27604.mail.ukl.yahoo.com> Patch applied. Web site documentation updated as well. Cheers, Iban. ----- Message d'origine ---- De : Kilian Sprotte ? : cldoc-devel at common-lisp.net Envoy? le : Mercredi, 10 Janvier 2007, 19h05mn 06s Objet : Re: Re : [cldoc-devel] Re: asdf-binary-locations Hi, On 1/10/07, Iban HATCHONDO wrote: > This helps when using the common lisp controller doesn't it ? To be honest, I am not sure about that. I was just thinking about http://www.cliki.net/ASDF-Binary-Locations. > Otherwise the system can't find the css file ? Exactly :) > thanks for the patch. > I'll apply asap. Cool! Thanks, Kilian PS: I am looking for some LISP contact in France - if you like, you could tell me offline, where you are based? (I am in Paris) _______________________________________________ cldoc-devel mailing list cldoc-devel at common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/cldoc-devel ___________________________________________________________________________ D?couvrez une nouvelle fa?on d'obtenir des r?ponses ? toutes vos questions ! Profitez des connaissances, des opinions et des exp?riences des internautes sur Yahoo! Questions/R?ponses http://fr.answers.yahoo.com