From sscholl at common-lisp.net Tue Sep 6 19:28:14 2005 From: sscholl at common-lisp.net (Stefan Scholl) Date: Tue, 6 Sep 2005 21:28:14 +0200 Subject: [cl-wiki-announce] New Release CL-WIKI 0.0.4 Message-ID: <20050906192814.GP11447@parsec.no-spoon.de> New release CL-WIKI 0.0.4 CL-WIKI is a wiki engine for Common Lisp. It uses TBNL, CL-PPCRE, CL-WHO and CL-EMB. Can be used stand-alone, with Apache + mod_lisp, or behind any http proxy. You can download it from http://common-lisp.net/project/cl-wiki/ or install with ASDF-Install. CL-USER> (asdf:operate 'asdf:load-op :asdf-install) CL-USER> (asdf-install:install :cl-wiki) Changes: - Locking for CL-EMB. CL-WIKI now needs CL-EMB >= 0.4.2 - config file - added simple start script for CMUCL - removed *WIKI-URL* - URL en- and decode page names - more wiki codes (links with other text and external links) [[Page|Text]] ==> Generates a link to named page and links Text. [http://www.somepage.example/] ==> Inserts external link External links get the class "external" + the url scheme. rel="nofollow" is used. [http://www.google.com/] --> http://www.google.com/ From sscholl at common-lisp.net Wed Sep 7 17:17:10 2005 From: sscholl at common-lisp.net (Stefan Scholl) Date: Wed, 7 Sep 2005 19:17:10 +0200 Subject: [cl-wiki-announce] New Release CL-WIKI 0.0.5 Message-ID: <20050907171710.GD11447@parsec.no-spoon.de> New release CL-WIKI 0.0.5 CL-WIKI is a wiki engine for Common Lisp. It uses TBNL, CL-PPCRE, CL-WHO and CL-EMB. Can be used stand-alone, with Apache + mod_lisp, or behind any http proxy. You can download it from http://common-lisp.net/project/cl-wiki/ or install with ASDF-Install. CL-USER> (asdf:operate 'asdf:load-op :asdf-install) CL-USER> (asdf-install:install :cl-wiki) Changes: - Problem with utf-8 editing solved From sscholl at common-lisp.net Thu Sep 8 08:58:06 2005 From: sscholl at common-lisp.net (Stefan Scholl) Date: Thu, 8 Sep 2005 10:58:06 +0200 Subject: [cl-wiki-announce] Re: [cl-wiki-devel] New Release CL-WIKI 0.0.4 In-Reply-To: <20050906192814.GP11447@parsec.no-spoon.de> References: <20050906192814.GP11447@parsec.no-spoon.de> Message-ID: <20050908085806.GD17052@parsec.no-spoon.de> On 2005-09-06 21:28:14, Stefan Scholl wrote: > - more wiki codes (links with other text and external links) > > [[Page|Text]] ==> Generates a link to named page > and links Text. Wikipedia has an example for this: San Francisco also has [[public transport|public transportation]]. But this is discouraged and the following should be used instead: San Francisco also has [[public transport]]ation. That's currently not supported by CL-WIKI. The link isn't expanded to contain "ation". By the way: the pattern to implement this can't use \w or \W, because with some Common Lisp implementation you have multiple characters for UTF-8 encoded characters instead of just one. Yes, there are more link special features which aren't supported yet. But it's no good idea to spend too much time with the wiki codes at the moment. Other basics are more important. Regards, Stefan