Well as much as I can see I have the same problems and are currently trying to solve them. I found some other Problem while using a multi-threaded SBCL but it seems I'm not yet able to subscribe to the proper mailing list. (Friedrich) Please add new bugs at the bottom. A name and a timestamp on each would be appreciated
20030305;jshrager@stanford.edu;http://nostoc.stanford.edu:8000/cliki/index -- I've run a number of times into a very damaging but hard to reproduce bug wherein when you press SAVE to submit an edited page, what actually gets to the CLiki appears to be NIL. I.e., you lose everything, including your recent edits; the "new" page appears to be completely empty, and if you re-edit you get the _(Describe ...) thing, as though the page was completely deleted. (As it turns out, you can go BACK a couple of times, assuming that you notice the problem, otherwise, .... well, you better be making backups often!) This appears to happen more often when the page contains a lot of complex HTML, but I've seen it as well in simpler pages. I've sent what is a reproducable case (at least on our installation) to Dan -- for obvious reasons I don't want to put it in here! - Jeff
20030319;jshrager@stanford.edu; In further experimentation I've determined that the problem appears to be the size of the page. If it's more than ~6100 characters +- ~50, it loses. (Hard to tell the exact number because of line turns etc.)
Write a CLIKI-HOWTO that has: 1) material on how to edit Cliki (not just "style"), 2) material on how to get a Cliki up and running. How is this a bug? More to the point, what's stopping you from writing it yourself? You could even make it a cliki page, though I'd request you think of a better name tham "CLIKI-HOWTO" first Well, I would if I knew enough about how CLiki works, I truly would...This is a "bug" in the "wishlist" sense. This is a "documentation bug." "CLIKI-HOWTO" just looked "traditional" (in a GNU/Linux sort of way).
franz
20 results found, showing results 21 to 20. Result page: Previous 1 2 3
--- orig/cliki_0.4.3/defpackage.lisp Sun Aug 10 20:16:04 2003 +++ cliki_0.4.3/defpackage.lisp Fri Mar 11 16:24:49 2005 @@ -1,4 +1,5 @@ (in-package :CL-USER) +(require :gray-streams) (defpackage "CLIKI" (:export cliki-view-handler cliki-edit-handler cliki-instance cliki-view cliki-url-root @@ -21,7 +22,7 @@ (:import-from #+sbcl "SB-GRAY" #+cmu "EXT" "FUNDAMENTAL-CHARACTER-OUTPUT-STREAM") - (:use "NET.TELENT.DATE" "COMMON-LISP" "SB-GRAY" "ARANEIDA" "SB-BSD-SOCKETS")) + (:use "NET.TELENT.DATE" "COMMON-LISP" #-cmu "SB-GRAY" "ARANEIDA" #-cmu "SB-BSD-SOCKETS")) ;;; language for inline searches and stuff (defpackage "CLIKI-PAGES" (:use #| nil |# ))
( I have to write ( Does anyone know why this happens? _(FriedrichDominicus) Neither of the ways Friedrich tries to render the form survives a second page save. Friedrich: If you use Firefox, you might try my Grease Monkey script -- John Wiseman Thanks for the hint maybe I will use it, but I'm not sure yet. FriedrichDominicus 2006-05-17 When doing Search for "asdf" (under Mozilla) I received page with header about 98 results found, showing first 10,... but no result were actually shown. Spying View->PageSource confirms that none was generated Zbyszek Jurkiewicz 2006-06-10 Can not edit the following page any longer (not all content is diplayed also) _(AnEssayAboutWhy). FriedrichDominicus 2006-11-06 The RSS feed doesn't seem to be working properly anymore. I'm not sure why... Pukku 2006-11-10 I am not able to create a new cliki page. Kindly check this problem. Vamsee. Searching for gtk breaks cliki search. http://www.cliki.net/admin/search?words=gtk zig. 2007-05-14 Raymond Toy Sometimes when doing a search in cliki, the page says so many result, but doesn't actually display them. (See above for some related messages, such as the one just above, and one from 2006-05-17). The error says there was no method for write-sequence on a cliki::strip-html-stream. Not sure what the real solution might but, the following fixes the issue for me (with CMUCL). ;; RTOY: Is this right? (defmethod stream-write-sequence ((stream strip-html-stream) b &optional (start 0) end) (stream-write-sequence (strip-html-stream-output-stream stream) b start end)) I added this to the end of strip-html-stream.lisp. The few searches I've tried this seems to be ok. Didn't have anything fancy, though. 2008-04-01 Raymond Toy I believe there's a long standing bug (issue?) with the standard blue banner at the top of each wiki page. It renders correctly with all other browsers, but IE doesn't. Sometimes with IE, the blue part extends down into the text. Here is a fix (workaround? hack?) for this issue. In the CSS for cliki there are several lines that say #navbar { MARGIN: 1em 0px -0.5em } If these lines are removed, IE displays the blue part fine. No apparent affect on Firefox. [2008-04-03 Alastair Bridgewater Found one like which said effectively that. Commenting it out shrunk the banner slightly on firefox and IE, and also eliminated the initial overdraw in IE. After superficial testing, I left it commented out.] Suggest that the site markup add to the bottom of each page (perhaps in the block that contains "edit page" and the like) a timestamp indicating when the page was last updated. 4-17-08 Bradford W. Miller [2008-04-17 Alastair Bridgewater Mouseover the latest revision in the list at the bottom of the page. It should display a timestamp. Same with any previous revision.] Cells won't download: CL-USER> (asdf-install:install 'cells) gets this error: Server responded 404 for GET http://www.cliki.net/Cells?download [Condition of type ASDF-INSTALL::DOWNLOAD-ERROR] [Mike Travers 5/23/08] 2008-07-11 Raymond Toy It would be really nice if there was a way to compare different versions to see what changed. Even something as simple as doing a diff -u between two versions and wrapping the output in preformatted output. I could probably do this myself, but I don't know how to go about asking the user what to versions to diff. 2008-07-18 Raymond Toy Well, I should have googled harder. Lemonodor has a cliki diff package that look like it will do what I want. Haven't tried it, but it looks like it will work. 2008-11-28 On RecentChanges, you have to scroll to the right to click "Next". Cliki should probably do a google style truncation of the middle results. Not sure if this applies to all pages that return search results.
( Does anyone know why this happens? _(FriedrichDominicus) Neither of the ways Friedrich tries to render the form survives a second page save. Friedrich: If you use Firefox, you might try my Grease Monkey script -- John Wiseman Thanks for the hint maybe I will use it, but I'm not sure yet. FriedrichDominicus 2006-05-17 When doing Search for "asdf" (under Mozilla) I received page with header about 98 results found, showing first 10,... but no result were actually shown. Spying View->PageSource confirms that none was generated Zbyszek Jurkiewicz 2006-06-10 Can not edit the following page any longer (not all content is diplayed also) _(AnEssayAboutWhy). FriedrichDominicus 2006-11-06 The RSS feed doesn't seem to be working properly anymore. I'm not sure why... Pukku 2006-11-10 I am not able to create a new cliki page. Kindly check this problem. Vamsee. Searching for gtk breaks cliki search. http://www.cliki.net/admin/search?words=gtk zig. 2007-05-14 Raymond Toy Sometimes when doing a search in cliki, the page says so many result, but doesn't actually display them. (See above for some related messages, such as the one just above, and one from 2006-05-17). The error says there was no method for write-sequence on a cliki::strip-html-stream. Not sure what the real solution might but, the following fixes the issue for me (with CMUCL). ;; RTOY: Is this right? (defmethod stream-write-sequence ((stream strip-html-stream) b &optional (start 0) end) (stream-write-sequence (strip-html-stream-output-stream stream) b start end)) I added this to the end of strip-html-stream.lisp. The few searches I've tried this seems to be ok. Didn't have anything fancy, though. 2008-04-01 Raymond Toy I believe there's a long standing bug (issue?) with the standard blue banner at the top of each wiki page. It renders correctly with all other browsers, but IE doesn't. Sometimes with IE, the blue part extends down into the text. Here is a fix (workaround? hack?) for this issue. In the CSS for cliki there are several lines that say #navbar { MARGIN: 1em 0px -0.5em } If these lines are removed, IE displays the blue part fine. No apparent affect on Firefox. [2008-04-03 Alastair Bridgewater Found one like which said effectively that. Commenting it out shrunk the banner slightly on firefox and IE, and also eliminated the initial overdraw in IE. After superficial testing, I left it commented out.] Suggest that the site markup add to the bottom of each page (perhaps in the block that contains "edit page" and the like) a timestamp indicating when the page was last updated. 4-17-08 Bradford W. Miller [2008-04-17 Alastair Bridgewater Mouseover the latest revision in the list at the bottom of the page. It should display a timestamp. Same with any previous revision.] Cells won't download: CL-USER> (asdf-install:install 'cells) gets this error: Server responded 404 for GET http://www.cliki.net/Cells?download [Condition of type ASDF-INSTALL::DOWNLOAD-ERROR] [Mike Travers 5/23/08] 2008-07-11 Raymond Toy It would be really nice if there was a way to compare different versions to see what changed. Even something as simple as doing a diff -u between two versions and wrapping the output in preformatted output. I could probably do this myself, but I don't know how to go about asking the user what to versions to diff. 2008-07-18 Raymond Toy Well, I should have googled harder. Lemonodor has a cliki diff package that look like it will do what I want. Haven't tried it, but it looks like it will work. 2008-11-28 On RecentChanges, you have to scroll to the right to click "Next". Cliki should probably do a google style truncation of the middle results. Not sure if this applies to all pages that return search results.
;; RTOY: Is this right? (defmethod stream-write-sequence ((stream strip-html-stream) b &optional (start 0) end) (stream-write-sequence (strip-html-stream-output-stream stream) b start end))
#navbar { MARGIN: 1em 0px -0.5em }
4-17-08 Bradford W. Miller
[2008-04-17 Alastair Bridgewater Mouseover the latest revision in the list at the bottom of the page. It should display a timestamp. Same with any previous revision.]
CL-USER> (asdf-install:install 'cells)
Server responded 404 for GET http://www.cliki.net/Cells?download [Condition of type ASDF-INSTALL::DOWNLOAD-ERROR]
diff -u