From dherring at tentpost.com Tue Nov 4 05:50:38 2008 From: dherring at tentpost.com (Daniel Herring) Date: Tue, 4 Nov 2008 00:50:38 -0500 (EST) Subject: [cl-markdown-devel] case sensitivity/preservation question Message-ID: I'm trying to use cl-markdown on SBCL/linux. To start, I tried # cd cl-markdown/website/source # sbcl cl-user> (require :cl-markdown) cl-user> (cl-markdown:markdown #P"index.md") This mostly works, but it complains that Unable to find RESOURCES/HEADER.MD in any of the search-locations Unable to find RESOURCES/FOOTER.MD in any of the search-locations I can get past this by renaming these files to uppercase, but thought there might be a better solution (which doesn't involve HFS). The filenames that appear in *.md are all lowercase... Thanks, Daniel From daniel at whitehouse.id.au Tue Nov 4 06:12:52 2008 From: daniel at whitehouse.id.au (Daniel White) Date: Tue, 4 Nov 2008 16:12:52 +1000 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <40498.192.9.200.97.1225749875.squirrel@starbug> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> Message-ID: <20081104161252.41e4b342@whitehouse.id.au> On Mon, 3 Nov 2008 22:04:35 -0000 (UTC) "David Barker" wrote: > Now I'm getting another error though, here's a dump of that: > http://kzar.co.uk/weblocks6 > > Not sure if that's a clbuild issue though? > > [snip...] I actually sent a patch to the cl-markdown mailing list around a week ago that fixes this. The package CL-MARKDOWN-TEST isn't importing SYSTEM-RELATIVE-PATHNAME from CL-MARKDOWN. Attached is the patch to fix this. -- Daniel White -------------- next part -------------- A non-text attachment was scrubbed... Name: import-system_relative_pathname-into-cl_markdown_test.dpatch Type: application/octet-stream Size: 2043 bytes Desc: not available URL: From gwking at metabang.com Tue Nov 4 16:48:39 2008 From: gwking at metabang.com (Gary King) Date: Tue, 4 Nov 2008 11:48:39 -0500 Subject: [cl-markdown-devel] case sensitivity/preservation question In-Reply-To: References: Message-ID: Hi Daniel, thanks for the report; I'm traveling right now but will try to look at this soon. On Nov 4, 2008, at 12:50 AM, Daniel Herring wrote: > I'm trying to use cl-markdown on SBCL/linux. > > To start, I tried > # cd cl-markdown/website/source > # sbcl > cl-user> (require :cl-markdown) > cl-user> (cl-markdown:markdown #P"index.md") > > This mostly works, but it complains that > Unable to find RESOURCES/HEADER.MD in any of the search-locations > Unable to find RESOURCES/FOOTER.MD in any of the search-locations > > I can get past this by renaming these files to uppercase, but thought > there might be a better solution (which doesn't involve HFS). The > filenames that appear in *.md are all lowercase... > > Thanks, > Daniel > > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Tue Nov 4 16:49:13 2008 From: gwking at metabang.com (Gary King) Date: Tue, 4 Nov 2008 11:49:13 -0500 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <20081104161252.41e4b342@whitehouse.id.au> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> Message-ID: Hi Daniel, My apologies for not pushing out your patch. I've been swamped and right now I'm traveling. I will try to get it out soon. On Nov 4, 2008, at 1:12 AM, Daniel White wrote: > On Mon, 3 Nov 2008 22:04:35 -0000 (UTC) > "David Barker" wrote: >> Now I'm getting another error though, here's a dump of that: >> http://kzar.co.uk/weblocks6 >> >> Not sure if that's a clbuild issue though? >> >> [snip...] > > I actually sent a patch to the cl-markdown mailing list around a > week ago that fixes this. The package CL-MARKDOWN-TEST isn't > importing > SYSTEM-RELATIVE-PATHNAME from CL-MARKDOWN. > > Attached is the patch to fix this. > > -- > Daniel White > cl_markdown_test > .dpatch>_______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From dherring at tentpost.com Wed Nov 5 07:31:26 2008 From: dherring at tentpost.com (Daniel Herring) Date: Wed, 5 Nov 2008 02:31:26 -0500 (EST) Subject: [cl-markdown-devel] case sensitivity/preservation question In-Reply-To: References: Message-ID: On Tue, 4 Nov 2008, Gary King wrote: > On Nov 4, 2008, at 12:50 AM, Daniel Herring wrote: >> cl-user> (require :cl-markdown) >> cl-user> (cl-markdown:markdown #P"index.md") >> >> This mostly works, but it complains that >> Unable to find RESOURCES/HEADER.MD in any of the search-locations >> Unable to find RESOURCES/FOOTER.MD in any of the search-locations > > thanks for the report; I'm traveling right now but will try to look at this > soon. Ok. I hoped this was simply a case of user error. After poking around, I think the problem is the read-from-string in %pull-arguments-from-string. (cl-markdown::%pull-arguments-from-string "resources/header.md") -> (RESOURCES/HEADER.MD) Later, Daniel From dherring at tentpost.com Thu Nov 6 20:54:29 2008 From: dherring at tentpost.com (Daniel Herring) Date: Thu, 6 Nov 2008 15:54:29 -0500 (EST) Subject: [cl-markdown-devel] case sensitivity/preservation question In-Reply-To: References: Message-ID: On Wed, 5 Nov 2008, Daniel Herring wrote: > On Tue, 4 Nov 2008, Gary King wrote: >> On Nov 4, 2008, at 12:50 AM, Daniel Herring wrote: >>> cl-user> (require :cl-markdown) >>> cl-user> (cl-markdown:markdown #P"index.md") >>> >>> This mostly works, but it complains that >>> Unable to find RESOURCES/HEADER.MD in any of the search-locations >>> Unable to find RESOURCES/FOOTER.MD in any of the search-locations >> >> thanks for the report; I'm traveling right now but will try to look at this >> soon. > > Ok. I hoped this was simply a case of user error. > > After poking around, I think the problem is the read-from-string in > %pull-arguments-from-string. > > (cl-markdown::%pull-arguments-from-string "resources/header.md") > -> (RESOURCES/HEADER.MD) Here's a rough "works for me for today" fix. (defmethod process-span ((name (eql 'eval)) registers) ;; the one register contains the command and the buffer index. (bind (((command &rest args) (%pull-arguments-from-string (first registers))) (buffer-index (and args (fixnump (first args)) (first args)))) (process-handle-eval command (or (and buffer-index ;; dherring added the following IF (if (eql command 'cl-user::include) (list (item-at (bracket-references *current-document*) buffer-index)) (%pull-arguments-from-string (item-at (bracket-references *current-document*) buffer-index)))) args)))) But having gotten that far, I think it would be better to simply use {include "file.md"} instead of {include file.md} - Daniel From gwking at metabang.com Fri Nov 7 01:18:31 2008 From: gwking at metabang.com (Gary King) Date: Thu, 6 Nov 2008 20:18:31 -0500 Subject: [cl-markdown-devel] case sensitivity/preservation question In-Reply-To: References: Message-ID: Hi Daniel, Thanks for pushing on this. Wrapping the filename in quotes is probably the best solution right now. (I don't like having to check to see whether or not a particular extension is doing the parsing). I'm also thinking that since this is Markdown and not Lisp, it would be reasonable to wrap the parsing in dynamic bindings for *print-case*, etc. I'm going to experiment with this _real_ soon now (I hope). regards, On Nov 6, 2008, at 3:54 PM, Daniel Herring wrote: > On Wed, 5 Nov 2008, Daniel Herring wrote: >> On Tue, 4 Nov 2008, Gary King wrote: >>> On Nov 4, 2008, at 12:50 AM, Daniel Herring wrote: >>>> cl-user> (require :cl-markdown) >>>> cl-user> (cl-markdown:markdown #P"index.md") >>>> >>>> This mostly works, but it complains that >>>> Unable to find RESOURCES/HEADER.MD in any of the search-locations >>>> Unable to find RESOURCES/FOOTER.MD in any of the search-locations >>> >>> thanks for the report; I'm traveling right now but will try to >>> look at this >>> soon. >> >> Ok. I hoped this was simply a case of user error. >> >> After poking around, I think the problem is the read-from-string in >> %pull-arguments-from-string. >> >> (cl-markdown::%pull-arguments-from-string "resources/header.md") >> -> (RESOURCES/HEADER.MD) > > Here's a rough "works for me for today" fix. > > (defmethod process-span ((name (eql 'eval)) registers) > ;; the one register contains the command and the buffer index. > (bind (((command &rest args) > (%pull-arguments-from-string (first registers))) > (buffer-index (and args (fixnump (first args)) (first args)))) > (process-handle-eval > command > (or (and buffer-index > ;; dherring added the following IF > (if (eql command 'cl-user::include) > (list (item-at (bracket-references *current- > document*) > buffer-index)) > (%pull-arguments-from-string > (item-at (bracket-references *current-document*) > buffer-index)))) > args)))) > > > But having gotten that far, I think it would be better to simply use > {include "file.md"} > instead of > {include file.md} > > > - Daniel > > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From dherring at tentpost.com Sun Nov 9 06:18:28 2008 From: dherring at tentpost.com (Daniel Herring) Date: Sun, 9 Nov 2008 01:18:28 -0500 (EST) Subject: [cl-markdown-devel] [bug] setext headers Message-ID: Consider "" asdf -- asdf --- asdf ----- asdf ------ "" All of these should render as a header (same for =s). http://daringfireball.net/projects/markdown/syntax#header Cl-markdown renders them as ""

asdf --

asdf


asdf


asdf

"" while the perl script renders them as ""

asdf

asdf

asdf

asdf

"" It appears that cl-markdown only recognizes headers if there are 6 or more -/=s. Later, Daniel From gwking at metabang.com Sun Nov 9 16:44:05 2008 From: gwking at metabang.com (Gary King) Date: Sun, 9 Nov 2008 11:44:05 -0500 Subject: [cl-markdown-devel] [bug] setext headers In-Reply-To: References: Message-ID: Hi Daniel, Right you are. I must have mis-read the syntax document a _long_ time ago because I was definitely checking for 6 dashes/equal-signs. A fix will be out sometime today. On Nov 9, 2008, at 1:18 AM, Daniel Herring wrote: > "" > asdf > -- > > asdf > --- > > asdf > ----- > > asdf > ------ > "" -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From kzar at kzar.co.uk Tue Nov 4 22:25:29 2008 From: kzar at kzar.co.uk (David Barker) Date: Tue, 4 Nov 2008 22:25:29 -0000 (UTC) Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <20081104161252.41e4b342@whitehouse.id.au> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> Message-ID: <47788.192.9.200.97.1225837529.squirrel@starbug> Ahh cheers Daniel, that fixed that error. I'm not getting another error when trying to do my dumpcore, here's a dump of the output: http://kzar.co.uk/weblocks7 Any ideas what I can do? Cheers, Dave. > On Mon, 3 Nov 2008 22:04:35 -0000 (UTC) > "David Barker" wrote: >> Now I'm getting another error though, here's a dump of that: >> http://kzar.co.uk/weblocks6 >> >> Not sure if that's a clbuild issue though? >> >> [snip...] > > I actually sent a patch to the cl-markdown mailing list around a > week ago that fixes this. The package CL-MARKDOWN-TEST isn't importing > SYSTEM-RELATIVE-PATHNAME from CL-MARKDOWN. > > Attached is the patch to fix this. > > -- > Daniel White > From gwking at metabang.com Mon Nov 10 16:04:56 2008 From: gwking at metabang.com (Gary King) Date: Mon, 10 Nov 2008 11:04:56 -0500 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <47788.192.9.200.97.1225837529.squirrel@starbug> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> Message-ID: <856481B5-3FEA-4279-9311-0E5C1188819E@metabang.com> Hi David and Daniel I've rolled the system-relative-pathname patch into 0.10.4. HTH, On Nov 4, 2008, at 5:25 PM, David Barker wrote: > Ahh cheers Daniel, that fixed that error. > > I'm not getting another error when trying to do my dumpcore, here's > a dump > of the output: http://kzar.co.uk/weblocks7 > > Any ideas what I can do? > > Cheers, Dave. > >> On Mon, 3 Nov 2008 22:04:35 -0000 (UTC) >> "David Barker" wrote: >>> Now I'm getting another error though, here's a dump of that: >>> http://kzar.co.uk/weblocks6 >>> >>> Not sure if that's a clbuild issue though? >>> >>> [snip...] >> >> I actually sent a patch to the cl-markdown mailing list around a >> week ago that fixes this. The package CL-MARKDOWN-TEST isn't >> importing >> SYSTEM-RELATIVE-PATHNAME from CL-MARKDOWN. >> >> Attached is the patch to fix this. >> >> -- >> Daniel White >> > > > > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From dherring at tentpost.com Tue Nov 11 02:53:04 2008 From: dherring at tentpost.com (Daniel Herring) Date: Mon, 10 Nov 2008 21:53:04 -0500 (EST) Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <47788.192.9.200.97.1225837529.squirrel@starbug> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> Message-ID: On Tue, 4 Nov 2008, David Barker wrote: > Ahh cheers Daniel, that fixed that error. > > I'm not getting another error when trying to do my dumpcore, here's a dump > of the output: http://kzar.co.uk/weblocks7 > > Any ideas what I can do? Docudown separated from cl-markdown back in May... Try installing it separately. http://common-lisp.net/project/docudown/ - Daniel From gwking at metabang.com Tue Nov 11 17:49:32 2008 From: gwking at metabang.com (Gary King) Date: Tue, 11 Nov 2008 12:49:32 -0500 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> Message-ID: Thanks Daniel, On Nov 10, 2008, at 9:53 PM, Daniel Herring wrote: > On Tue, 4 Nov 2008, David Barker wrote: > >> Ahh cheers Daniel, that fixed that error. >> >> I'm not getting another error when trying to do my dumpcore, here's >> a dump >> of the output: http://kzar.co.uk/weblocks7 >> >> Any ideas what I can do? > > Docudown separated from cl-markdown back in May... > > Try installing it separately. > http://common-lisp.net/project/docudown/ > > - Daniel > > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Wed Nov 12 23:09:33 2008 From: gwking at metabang.com (Gary King) Date: Wed, 12 Nov 2008 18:09:33 -0500 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <45793.192.9.200.97.1226528750.squirrel@starbug> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> <45793.192.9.200.97.1226528750.squirrel@starbug> Message-ID: <61C253BD-D310-4F9E-96A7-94F62776219C@metabang.com> Hi David, This is definitely a problem and I haven't had time to fix it yet. I will do my best to get to it tonight. Sorry about the delay, On Nov 12, 2008, at 5:25 PM, David Barker wrote: > Hi Daniel and Gary, > > I have been trying to install docudown separately as you guys have all > recommend but I am getting an error when trying to install it. > > I think it's needs a prolog package installing but I can't find it > anywhere. > > Here's a dump of that error anyway: http://kzar.co.uk/docudown > > I did post this to the other list already, sorry if I'm just repeating > myself but I wasn't sure if I was clear earlier. > > Cheers, Dave. > >> Thanks Daniel, >> >> On Nov 10, 2008, at 9:53 PM, Daniel Herring wrote: >> >>> On Tue, 4 Nov 2008, David Barker wrote: >>> >>>> Ahh cheers Daniel, that fixed that error. >>>> >>>> I'm not getting another error when trying to do my dumpcore, here's >>>> a dump >>>> of the output: http://kzar.co.uk/weblocks7 >>>> >>>> Any ideas what I can do? >>> >>> Docudown separated from cl-markdown back in May... >>> >>> Try installing it separately. >>> http://common-lisp.net/project/docudown/ >>> >>> - Daniel >>> >>> _______________________________________________ >>> cl-markdown-devel mailing list >>> cl-markdown-devel at common-lisp.net >>> http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel >> >> -- >> Gary Warren King, metabang.com >> Cell: (413) 559 8738 >> Fax: (206) 338-4052 >> gwkkwg on Skype * garethsan on AIM >> >> >> >> >> > > -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Thu Nov 13 02:35:16 2008 From: gwking at metabang.com (Gary King) Date: Wed, 12 Nov 2008 21:35:16 -0500 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <45793.192.9.200.97.1226528750.squirrel@starbug> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> <45793.192.9.200.97.1226528750.squirrel@starbug> Message-ID: <034C357D-9117-4420-948F-12F28BC05CE3@metabang.com> Hi, I just posted docudown 0.1.1 which fixes the "prolog" issue. I haven't built any decent tests yet so, sadly, I can't promise that it will run for you. (Please let me know if it doesn't). On Nov 12, 2008, at 5:25 PM, David Barker wrote: > Hi Daniel and Gary, > > I have been trying to install docudown separately as you guys have all > recommend but I am getting an error when trying to install it. > > I think it's needs a prolog package installing but I can't find it > anywhere. > > Here's a dump of that error anyway: http://kzar.co.uk/docudown > > I did post this to the other list already, sorry if I'm just repeating > myself but I wasn't sure if I was clear earlier. > > Cheers, Dave. > >> Thanks Daniel, >> >> On Nov 10, 2008, at 9:53 PM, Daniel Herring wrote: >> >>> On Tue, 4 Nov 2008, David Barker wrote: >>> >>>> Ahh cheers Daniel, that fixed that error. >>>> >>>> I'm not getting another error when trying to do my dumpcore, here's >>>> a dump >>>> of the output: http://kzar.co.uk/weblocks7 >>>> >>>> Any ideas what I can do? >>> >>> Docudown separated from cl-markdown back in May... >>> >>> Try installing it separately. >>> http://common-lisp.net/project/docudown/ >>> >>> - Daniel >>> >>> _______________________________________________ >>> cl-markdown-devel mailing list >>> cl-markdown-devel at common-lisp.net >>> http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel >> >> -- >> Gary Warren King, metabang.com >> Cell: (413) 559 8738 >> Fax: (206) 338-4052 >> gwkkwg on Skype * garethsan on AIM >> >> >> >> >> > > -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sun Nov 16 14:47:02 2008 From: gwking at metabang.com (Gary King) Date: Sun, 16 Nov 2008 09:47:02 -0500 Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <47262.192.9.200.97.1226615892.squirrel@starbug> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> <45793.192.9.200.97.1226528750.squirrel@starbug> <034C357D-9117-4420-948F-12F28BC05CE3@metabang.com> <47262.192.9.200.97.1226615892.squirrel@starbug> Message-ID: <9C38D3F4-E34A-4EF4-8E3C-27B1AE1AB5D6@metabang.com> Hi David, Good. Now if I had time to document all the stuff that is in there already and finish the stuff that isn't. sigh. On Nov 13, 2008, at 5:38 PM, David Barker wrote: > Hi Daniel, > > Yes that prolog error seems to be fixed now, thanks for sorting that > out. > > Cheers, Dave. > >> Hi, >> >> I just posted docudown 0.1.1 which fixes the "prolog" issue. I >> haven't >> built any decent tests yet so, sadly, I can't promise that it will >> run >> for you. >> >> (Please let me know if it doesn't). >> >> >> On Nov 12, 2008, at 5:25 PM, David Barker wrote: >> >>> Hi Daniel and Gary, >>> >>> I have been trying to install docudown separately as you guys have >>> all >>> recommend but I am getting an error when trying to install it. >>> >>> I think it's needs a prolog package installing but I can't find it >>> anywhere. >>> >>> Here's a dump of that error anyway: http://kzar.co.uk/docudown >>> >>> I did post this to the other list already, sorry if I'm just >>> repeating >>> myself but I wasn't sure if I was clear earlier. >>> >>> Cheers, Dave. >>> >>>> Thanks Daniel, >>>> >>>> On Nov 10, 2008, at 9:53 PM, Daniel Herring wrote: >>>> >>>>> On Tue, 4 Nov 2008, David Barker wrote: >>>>> >>>>>> Ahh cheers Daniel, that fixed that error. >>>>>> >>>>>> I'm not getting another error when trying to do my dumpcore, >>>>>> here's >>>>>> a dump >>>>>> of the output: http://kzar.co.uk/weblocks7 >>>>>> >>>>>> Any ideas what I can do? >>>>> >>>>> Docudown separated from cl-markdown back in May... >>>>> >>>>> Try installing it separately. >>>>> http://common-lisp.net/project/docudown/ >>>>> >>>>> - Daniel >>>>> >>>>> _______________________________________________ >>>>> cl-markdown-devel mailing list >>>>> cl-markdown-devel at common-lisp.net >>>>> http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel >>>> >>>> -- >>>> Gary Warren King, metabang.com >>>> Cell: (413) 559 8738 >>>> Fax: (206) 338-4052 >>>> gwkkwg on Skype * garethsan on AIM >>>> >>>> >>>> >>>> >>>> >>> >>> >> >> -- >> Gary Warren King, metabang.com >> Cell: (413) 559 8738 >> Fax: (206) 338-4052 >> gwkkwg on Skype * garethsan on AIM >> >> >> >> >> > > -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From kzar at kzar.co.uk Wed Nov 12 22:25:50 2008 From: kzar at kzar.co.uk (David Barker) Date: Wed, 12 Nov 2008 22:25:50 -0000 (UTC) Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> Message-ID: <45793.192.9.200.97.1226528750.squirrel@starbug> Hi Daniel and Gary, I have been trying to install docudown separately as you guys have all recommend but I am getting an error when trying to install it. I think it's needs a prolog package installing but I can't find it anywhere. Here's a dump of that error anyway: http://kzar.co.uk/docudown I did post this to the other list already, sorry if I'm just repeating myself but I wasn't sure if I was clear earlier. Cheers, Dave. > Thanks Daniel, > > On Nov 10, 2008, at 9:53 PM, Daniel Herring wrote: > >> On Tue, 4 Nov 2008, David Barker wrote: >> >>> Ahh cheers Daniel, that fixed that error. >>> >>> I'm not getting another error when trying to do my dumpcore, here's >>> a dump >>> of the output: http://kzar.co.uk/weblocks7 >>> >>> Any ideas what I can do? >> >> Docudown separated from cl-markdown back in May... >> >> Try installing it separately. >> http://common-lisp.net/project/docudown/ >> >> - Daniel >> >> _______________________________________________ >> cl-markdown-devel mailing list >> cl-markdown-devel at common-lisp.net >> http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel > > -- > Gary Warren King, metabang.com > Cell: (413) 559 8738 > Fax: (206) 338-4052 > gwkkwg on Skype * garethsan on AIM > > > > > From kzar at kzar.co.uk Thu Nov 13 22:38:12 2008 From: kzar at kzar.co.uk (David Barker) Date: Thu, 13 Nov 2008 22:38:12 -0000 (UTC) Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: <034C357D-9117-4420-948F-12F28BC05CE3@metabang.com> References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> <45793.192.9.200.97.1226528750.squirrel@starbug> <034C357D-9117-4420-948F-12F28BC05CE3@metabang.com> Message-ID: <47262.192.9.200.97.1226615892.squirrel@starbug> Hi Daniel, Yes that prolog error seems to be fixed now, thanks for sorting that out. Cheers, Dave. > Hi, > > I just posted docudown 0.1.1 which fixes the "prolog" issue. I haven't > built any decent tests yet so, sadly, I can't promise that it will run > for you. > > (Please let me know if it doesn't). > > > On Nov 12, 2008, at 5:25 PM, David Barker wrote: > >> Hi Daniel and Gary, >> >> I have been trying to install docudown separately as you guys have all >> recommend but I am getting an error when trying to install it. >> >> I think it's needs a prolog package installing but I can't find it >> anywhere. >> >> Here's a dump of that error anyway: http://kzar.co.uk/docudown >> >> I did post this to the other list already, sorry if I'm just repeating >> myself but I wasn't sure if I was clear earlier. >> >> Cheers, Dave. >> >>> Thanks Daniel, >>> >>> On Nov 10, 2008, at 9:53 PM, Daniel Herring wrote: >>> >>>> On Tue, 4 Nov 2008, David Barker wrote: >>>> >>>>> Ahh cheers Daniel, that fixed that error. >>>>> >>>>> I'm not getting another error when trying to do my dumpcore, here's >>>>> a dump >>>>> of the output: http://kzar.co.uk/weblocks7 >>>>> >>>>> Any ideas what I can do? >>>> >>>> Docudown separated from cl-markdown back in May... >>>> >>>> Try installing it separately. >>>> http://common-lisp.net/project/docudown/ >>>> >>>> - Daniel >>>> >>>> _______________________________________________ >>>> cl-markdown-devel mailing list >>>> cl-markdown-devel at common-lisp.net >>>> http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel >>> >>> -- >>> Gary Warren King, metabang.com >>> Cell: (413) 559 8738 >>> Fax: (206) 338-4052 >>> gwkkwg on Skype * garethsan on AIM >>> >>> >>> >>> >>> >> >> > > -- > Gary Warren King, metabang.com > Cell: (413) 559 8738 > Fax: (206) 338-4052 > gwkkwg on Skype * garethsan on AIM > > > > > From kzar at kzar.co.uk Thu Nov 13 22:42:59 2008 From: kzar at kzar.co.uk (David Barker) Date: Thu, 13 Nov 2008 22:42:59 -0000 (UTC) Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> Message-ID: <54113.192.9.200.97.1226616179.squirrel@starbug> Hi again, Gary has fixed that problem with docudown so I have got that installed now. Unfortunately I am still getting an error trying to install Weblocks, it seems to be pretty much the same error as before. I have then tried doing a ./clbuild clean but it's still happening. Here's the dump in case it's different in a subtle way I overlooked: http://kzar.co.uk/weblocks9 This I really don't understand, if docudown is installed OK why would it complain with an error like this? Cheers, Dave. > On Tue, 4 Nov 2008, David Barker wrote: > >> Ahh cheers Daniel, that fixed that error. >> >> I'm not getting another error when trying to do my dumpcore, here's a >> dump >> of the output: http://kzar.co.uk/weblocks7 >> >> Any ideas what I can do? > > Docudown separated from cl-markdown back in May... > > Try installing it separately. > http://common-lisp.net/project/docudown/ > > - Daniel > > From kzar at kzar.co.uk Sat Nov 15 14:50:08 2008 From: kzar at kzar.co.uk (David Barker) Date: Sat, 15 Nov 2008 14:50:08 -0000 (UTC) Subject: [cl-markdown-devel] [clbuild-devel] Problem installing Weblocks In-Reply-To: References: <54087.217.33.219.137.1225118660.squirrel@hardwick.demon.co.uk> <20081027145704.GC19484@radon> <40358.192.9.200.97.1225133594.squirrel@starbug> <20081027193249.GD19484@radon> <53242.192.9.200.97.1225141559.squirrel@starbug> <38572.192.9.200.97.1225149019.squirrel@starbug> <51053.217.33.219.137.1225201800.squirrel@hardwick.demon.co.uk> <20081028140108.GA8678@radon> <53015.217.33.219.137.1225214159.squirrel@hardwick.demon.co.uk> <40498.192.9.200.97.1225749875.squirrel@starbug> <20081104161252.41e4b342@whitehouse.id.au> <47788.192.9.200.97.1225837529.squirrel@starbug> <54113.192.9.200.97.1226616179.squirrel@starbug> Message-ID: <48086.192.9.200.97.1226760608.squirrel@starbug> Hi Daniel, That did it, adding "(require :docudown)" to the top of /usr/src/clbuild/source/cl-containers/cl-containers-documentation.asd and trying the dump again worked. Thanks for your help everyone, you have been great. Cheers, Dave. > On Thu, 13 Nov 2008, David Barker wrote: > >> Gary has fixed that problem with docudown so I have got that installed >> now. >> >> Unfortunately I am still getting an error trying to install Weblocks, it >> seems to be pretty much the same error as before. I have then tried >> doing >> a ./clbuild clean but it's still happening. >> >> Here's the dump in case it's different in a subtle way I overlooked: >> http://kzar.co.uk/weblocks9 >> >> This I really don't understand, if docudown is installed OK why would it >> complain with an error like this? > > That's an error in either cl-containers-documentation.asd or ASDF. > > Docudown needs to be loaded before ASDF can process the :docudown-source > clauses. The ":depends-on ... :docudown" tells ASDF that > cl-containers-documentation has that dependency, but its too late. I put > a "(require :docudown)" near the top of the file to get ASDF to load the > defsystem form properly. > > - Daniel H > > From luke at balooga.com Tue Nov 25 17:35:26 2008 From: luke at balooga.com (Luke Crook) Date: Tue, 25 Nov 2008 09:35:26 -0800 Subject: [cl-markdown-devel] :METATILITIES-BASE does not match version 0.6.6 Message-ID: I'm trying to run cl-markdown from the latest available, and I'm getting the following error in Lispworks; >>> component :METATILITIES-BASE does not match version 0.6.6, required by # <<< - Luke From gwking at metabang.com Tue Nov 25 18:25:10 2008 From: gwking at metabang.com (Gary King) Date: Tue, 25 Nov 2008 13:25:10 -0500 Subject: [cl-markdown-devel] :METATILITIES-BASE does not match version 0.6.6 In-Reply-To: References: Message-ID: <0E179A1C-D70F-4DF8-8901-F95C545AAABB@metabang.com> Hi Luke, Dang, my bad. I forgot to update metatilities-base. I just did that now. Sorry for the unnecessary hassle. On Nov 25, 2008, at 12:35 PM, Luke Crook wrote: > > I'm trying to run cl-markdown from the latest available, and I'm > getting > the following error in Lispworks; > >>>> > component :METATILITIES-BASE does not match version 0.6.6, > required by > # > <<< > > - Luke > > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM