From mbaringer at common-lisp.net Wed Aug 1 04:20:09 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Wed, 1 Aug 2007 00:20:09 -0400 (EDT) Subject: [Bese-devel] New patches to parenscript: 31-Jul-2007 Message-ID: <20070801042009.3C9836B366@common-lisp.net> An updated tarball of parenscript's source can be downloaded here: http://common-lisp.net/project/ucw/tarballs/parenscript-20070731.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=parenscript;a=summary From mbaringer at common-lisp.net Wed Aug 1 04:30:18 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Wed, 1 Aug 2007 00:30:18 -0400 (EDT) Subject: [Bese-devel] New patches to ucw_ajax: 31-Jul-2007 Message-ID: <20070801043018.B49EC7E007@common-lisp.net> Tue Jul 24 16:34:52 EDT 2007 attila.lendvai at gmail.com * Fix: properly drop expired sessions M ./src/rerl/basic-application.lisp -4 +6 Tue Jul 24 08:30:53 EDT 2007 attila.lendvai at gmail.com * ajax-action's are not invocation isolated by default M ./src/rerl/standard-classes.lisp -1 +1 Tue Jul 24 07:11:38 EDT 2007 attila.lendvai at gmail.com * The indirection action of :through-redirect t actions do not need a new frame M ./src/rerl/standard-session-frame.lisp -1 +1 Mon Jul 23 07:15:21 EDT 2007 attila.lendvai at gmail.com * Export session symbols M ./src/packages.lisp +2 Mon Jul 23 07:15:02 EDT 2007 attila.lendvai at gmail.com * Some localization changes M ./src/l10n/resources/en.lisp -1 +1 M ./src/l10n/resources/hu.lisp -1 +1 Sun Jul 22 15:38:30 EDT 2007 attila.lendvai at gmail.com * Hardcode utf-8 as encoding for some types in serve-file (and add a TODO note) M ./src/backend/common.lisp -5 +6 An updated tarball of ucw_ajax's source can be downloaded here: http://common-lisp.net/project/ucw/tarballs/ucw_ajax-20070731.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=ucw_ajax;a=summary From mbaringer at common-lisp.net Thu Aug 2 04:20:08 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Thu, 2 Aug 2007 00:20:08 -0400 (EDT) Subject: [Bese-devel] New patches to parenscript: 1-Aug-2007 Message-ID: <20070802042008.AF82733083@common-lisp.net> Wed Jun 6 15:45:25 EDT 2007 attila.lendvai at gmail.com * Fix: add parens around instanceof to make it work in all situations M ./src/js.lisp +2 Thu May 3 10:40:28 EDT 2007 attila.lendvai at gmail.com * Bah, speed up list-to-string by a few factors... M ./src/utils.lisp -4 +3 Fri Apr 27 03:39:17 EDT 2007 attila.lendvai at gmail.com * Fix (- 1) and (incf/decf x 5), patch by Ray Myers I have a minor patch that fixes the following incorrect (or at least unexpected) behavior in ParenScript. (js (- 1)) => "1;" (js (incf x 5)) => an error (js (decf x 5)) => an error M ./src/js.lisp -6 +29 Wed Apr 25 10:58:06 EDT 2007 attila.lendvai at gmail.com * Note in the warning that we are redefining a _js_ compiler macro M ./src/js.lisp -1 +1 Mon Apr 16 10:36:03 EDT 2007 attila.lendvai at gmail.com * Follow quote changes in SLOT-VALUE M ./src/js.lisp -2 +4 Mon Apr 16 09:11:33 EDT 2007 attila.lendvai at gmail.com * Fixed (?) quoting mechanism (js:js (+ 42 '"FoooFFFOFOFooo")) => "42 + FoooFFFOFOFooo;" IOW, quote inside a parenscript form means to simply print the quoted value as-is. Among other things, this is useful for inserting literal javascript into parenscript. I hope it will not break anything. M ./src/js.lisp -1 +6 Mon Jan 15 09:19:48 EST 2007 Henrik Hjelte * conditional attributes in html-generator M ./docs/manual.pdf M ./docs/reference.lisp +17 M ./src/js-html.lisp -28 +43 Wed Nov 15 02:38:22 EST 2006 marijnh at gmail.com * add proper cond construct M ./src/js.lisp +27 Wed Nov 22 14:30:27 EST 2006 Henrik Hjelte * Possible to make attributes conditionally rendered with js-html generator M ./t/reference-tests.lisp -1 +16 Wed Nov 15 18:54:41 EST 2006 Henrik Hjelte * docs updated for new setf optimization M ./docs/manual.pdf M ./docs/reference.lisp -1 +1 M ./t/reference-tests.lisp -2 +2 M ./t/test.lisp +1 Wed Nov 15 18:41:44 EST 2006 Henrik Hjelte * bugfix method-call problem M ./src/js.lisp -9 +14 M ./t/test.lisp -9 +15 Wed Nov 15 17:40:45 EST 2006 Henrik Hjelte * moretests for method-call (dot-notation) syntax M ./t/test.lisp +27 Wed Nov 15 16:35:02 EST 2006 Henrik Hjelte * bugfix commutative plus and minus M ./src/js.lisp -2 +3 M ./t/test.lisp -1 +30 Wed Nov 15 15:44:56 EST 2006 Henrik Hjelte * tests for some bugs, reported by Marijn Haverbeke M ./t/test.lisp +8 Wed Nov 15 14:27:20 EST 2006 Henrik Hjelte * asdf test-op added, (asdf:operate 'asdf:test-op :parenscript) M ./parenscript.asd +8 M ./t/ref2test.lisp -4 +2 M ./t/reference-tests.lisp -2 Wed Nov 15 11:46:03 EST 2006 Henrik Hjelte * updated pdf manual for new with syntax M ./docs/manual.pdf Wed Nov 15 11:43:39 EST 2006 Henrik Hjelte * build.sh for documentation A ./docs/build.sh Wed Nov 15 11:13:03 EST 2006 Henrik Hjelte * Updated documentation to reflect the new syntax of the with statement M ./docs/reference.lisp -2 +2 M ./t/reference-tests.lisp -1 +1 Wed Nov 15 10:58:46 EST 2006 Henrik Hjelte * make the test escape-sequences-in-string work again M ./t/test.lisp -3 +3 Tue Oct 3 09:49:55 EDT 2006 attila.lendvai at gmail.com * Added evenp and oddp M ./src/js.lisp +6 Tue Oct 3 09:49:23 EDT 2006 attila.lendvai at gmail.com * Added assert for simple catch forms M ./src/js.lisp +1 Fri Sep 1 12:02:49 EDT 2006 attila.lendvai at gmail.com * Killed the feature (js:js* '(let (a b) (+ a b))) => "var a = b; a + b;" M ./src/js.lisp -13 +12 Mon Oct 2 17:55:16 EDT 2006 Luca Capello * docs/pbook.py: correct faulty check for PDF output Frank K??ster discovered that docs/pbook.py produces buggy LaTeX code, a faulty check for PDF output. It doesn't show up if you only try to create PDF. But if you want to go the traditional route and produce dvi files (and from that PostScript and maybe finally again PDF), this will fail and still produce PDF. The script itself doesn't do that (or rather, it does that in fact but ignores the output in this first run), but it's still an uglyness. Moreover, it's completely useless, because the only package that uses the information, graphicx, will detect the output format itself (and in a proper way). http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=390629 M ./docs/pbook.py -4 +1 Mon Aug 21 05:57:00 EDT 2006 attila.lendvai at gmail.com * Use symbol-name for op matching to fix various bugs/surprises (e.g. `(foo::% 4 2)) M ./src/js.lisp -29 +33 Fri Jul 21 03:50:06 EDT 2006 marijnh at gmail.com * Allow strings and numbers as slot names in object literals M ./src/js.lisp -3 +6 Sun Jul 16 13:07:49 EDT 2006 Marco Baringer * Drop unused js2.lisp R ./src/js2.lisp Sun Jul 16 12:47:17 EDT 2006 attila.lendvai at gmail.com * Fix compilation of (.call (lambda () ...) arg1 ...), add missing ()'s around the lambda M ./src/js.lisp -7 +14 Sun Jul 16 12:46:30 EDT 2006 attila.lendvai at gmail.com * Fix compilation of ((foo) bar) -> foo()(bar) M ./src/js.lisp -1 +8 Sun Jul 16 12:39:46 EDT 2006 attila.lendvai at gmail.com * Fixed js-with WARNING: this involves syntax change Previously the syntax of with was this: (with (object) body) now it's: (with object body) It was also broken when 'object' was an expression... M ./src/js.lisp -3 +3 Sat Jul 15 16:13:44 EDT 2006 Henrik Hjelte * bugfix sometimes missing semicolons when joining js-body M ./docs/reference.lisp -1 +1 M ./src/js.lisp -2 +1 M ./t/reference-tests.lisp -1 +1 Tue Jul 11 17:17:50 EDT 2006 attila.lendvai at gmail.com * Rebind var in dolist to make also clisp happy (import-macros-from-lisp was broken due to this) M ./src/js.lisp -4 +5 Tue Jul 11 09:47:05 EDT 2006 Henrik Hjelte * regex patch suggested by Lou Vanek M ./docs/manual.pdf M ./docs/reference.lisp -3 +8 M ./src/js.lisp -2 +7 M ./t/ref2test.lisp -2 +2 M ./t/reference-tests.lisp +4 Tue Jul 11 06:09:52 EDT 2006 Henrik Hjelte * documentation updated about dollar char M ./docs/manual.pdf M ./docs/reference.lisp -4 +4 M ./t/reference-tests.lisp -2 +2 Tue Jul 11 04:49:15 EDT 2006 Henrik Hjelte * Made ref2test work with cl-launch M ./t/ref2test.lisp -6 +9 Fri Jul 7 18:37:11 EDT 2006 attila.lendvai at gmail.com * Fix screwed-up asd file M ./parenscript.asd -3 +3 Fri Jul 7 11:18:26 EDT 2006 attila.lendvai at gmail.com * Fixed instanceof M ./src/js.lisp -1 +20 Fri Jul 7 11:13:21 EDT 2006 attila.lendvai at gmail.com * Added src/lib/functional.lisp This is a first element of an parenscript library. The contents of this file is to be compiled with parenscript and the result js included in the host environment in one way or another. M ./parenscript.asd -1 +3 M ./src/js.lisp -31 A ./src/lib/ A ./src/lib/functional.lisp Fri Jul 7 11:12:31 EDT 2006 attila.lendvai at gmail.com * Added :eval-forms-p to compile-parenscript-file M ./src/compile-js.lisp -35 +40 Thu Jul 6 18:55:47 EDT 2006 attila.lendvai at gmail.com * Fix the return value of map-into M ./src/js.lisp -1 +1 Thu Jul 6 18:51:47 EDT 2006 attila.lendvai at gmail.com * Moved some macros towards the top of the file due to dependencies In the long run we should cut js.lisp into several files. One dealing with the basic infrastructure like macro expansion, and the rest implementing the compiler based on this infrastructure/utilities. M ./src/js.lisp -46 +44 Wed Jul 5 14:23:51 EDT 2006 attila.lendvai at gmail.com * Added map and map-into M ./src/js.lisp +31 Wed Jul 5 14:20:46 EDT 2006 attila.lendvai at gmail.com * Shortened default gensym constant M ./src/js.lisp -2 +2 Mon Jul 3 20:33:15 EDT 2006 attila.lendvai at gmail.com * Don't use loop's initially clause to avoid a clisp bug For details see http://sourceforge.net/tracker/index.php?func=detail&aid=1516684&group_id=1355&atid=101355 M ./src/js.lisp -1 +1 Sat May 27 05:31:59 EDT 2006 Marco Baringer * Make defjsmacro rend's docstring a comment so clisp will stop complaining M ./src/js.lisp -3 +5 Sat May 13 05:30:31 EDT 2006 attila.lendvai at gmail.com * Move undefine-js-compiler-macro into an eval-when. Reported by William Halliburton. M ./src/js.lisp -7 +7 Fri May 12 11:29:54 EDT 2006 attila.lendvai at gmail.com * Added import-macros-from-lisp that bring lisp macros into the js macroexpansion M ./src/js.lisp -4 +16 M ./src/package.lisp +1 Wed May 10 08:54:47 EDT 2006 Marco Baringer * Move compile-parenscript code into a sperate file so that it complies cleanly The problew is that compile-parenscript-file-to-string contains a call to the macro js:js* this macro needs to be defined before we compile the compile-parenscript-file-to-string function. A ./src/compile-js.lisp M ./src/utils.lisp -49 Wed May 10 08:54:22 EDT 2006 Marco Baringer * Use an explicit asdf:perform :after method instead of :perform (load-op :after ...) M ./parenscript.asd -4 +5 Mon May 8 07:08:34 EDT 2006 attila.lendvai at gmail.com * Added compile-parenscript-file M ./src/package.lisp +2 M ./src/utils.lisp +52 Mon May 8 07:06:11 EDT 2006 attila.lendvai at gmail.com * Added character type conversion M ./src/js.lisp +2 Sun Apr 16 14:18:25 EDT 2006 attila.lendvai at gmail.com * Added a rebind js macro that rebinds variables on the js side M ./src/js.lisp +14 Sat Apr 1 06:39:18 EST 2006 Marco Baringer * Export defjsmacro M ./src/package.lisp -1 +2 Sat Apr 1 06:35:03 EST 2006 Marco Baringer * Added docstring for *js-quote-char* M ./src/js.lisp -1 +6 Sat Apr 1 06:28:58 EST 2006 Marco Baringer * Add variable *js-quote-char* (Patch by: Xan Lopez ) M ./src/js.lisp -2 +4 Sun Feb 26 12:05:27 EST 2006 Marco Baringer * Implement js-to-strings for the regex class M ./src/js.lisp +4 Sat Feb 25 12:07:51 EST 2006 Marco Baringer * #\$ is not a special javascript character. (Reported by: Richard Morse ) M ./src/js.lisp -1 M ./src/js2.lisp -1 Thu Feb 16 03:42:59 EST 2006 Luca Capello * remove docs/images and relative references in tutorial.lisp R ./docs/images/ R ./docs/images/slideshow.png R ./docs/images/tutorial1-1.png R ./docs/images/tutorial1-2.png M ./docs/tutorial.lisp -6 Fri Jan 27 08:25:11 EST 2006 Luca Capello * remove docs/reference.pdf, already included in manual.pdf R ./docs/reference.pdf Sun Feb 5 11:04:44 EST 2006 Marco Baringer * The #\Form is not a standard character name, use #.(code-char 12) instead. M ./src/js.lisp -1 +1 Thu Feb 2 07:39:12 EST 2006 henrik.hjelte at poboxes.com * proper escape sequences in strings M ./src/js.lisp -8 +27 M ./t/test.lisp +19 Wed Feb 1 06:17:12 EST 2006 henrik.hjelte at poboxes.com * ref2test finds reference.lisp in docs dir M ./t/ref2test.lisp -4 +8 M ./t/reference-tests.lisp -3 +3 Tue Dec 27 14:05:29 EST 2005 henrik.hjelte at poboxes.com * changed CASE to SWITCH and made CASE more like Lisp. M ./docs/reference.lisp -7 +31 M ./src/js.lisp -4 +19 M! ./t/reference-tests.lisp -4 +20 M ./t/test.lisp +60 Fri Jan 27 03:57:09 EST 2006 Luca Capello * merge parenscript-test.asd into parenscript.asd R ./parenscript-test.asd M ./parenscript.asd +8 Mon Jan 23 17:25:48 EST 2006 Luca Capello * move doc files to docs/ ./images -> ./docs/images ./introduction.lisp -> ./docs/introduction.lisp ./manual.pdf -> ./docs/manual.pdf ./pbook.py -> ./docs/pbook.py ./reference.lisp -> ./docs/reference.lisp ./reference.pdf -> ./docs/reference.pdf ./tutorial.lisp -> ./docs/tutorial.lisp A ./docs/ Mon Jan 23 16:50:26 EST 2006 Luca Capello * move test files to t/ and modify parenscript-test.asd as well ./ref2test.lisp -> ./t/ref2test.lisp ./reference-tests.lisp -> ./t/reference-tests.lisp ./test-package.lisp -> ./t/test-package.lisp ./test.lisp -> ./t/test.lisp M ./parenscript-test.asd -5 +6 A ./t/ Mon Jan 23 16:31:52 EST 2006 Luca Capello * move source files to src/ and modify parenscript.asd as well ./css.lisp -> ./src/css.lisp ./defgenerics.lisp -> ./src/defgenerics.lisp ./js-html.lisp -> ./src/js-html.lisp ./js.lisp -> ./src/js.lisp ./js2.lisp -> ./src/js2.lisp ./package.lisp -> ./src/package.lisp ./utils.lisp -> ./src/utils.lisp M ./parenscript.asd -14 +16 A ./src/ Mon Jan 23 16:19:27 EST 2006 Luca Capello * remove trailing spaces at endlines in *.lisp M ./css.lisp -3 +3 M ./introduction.lisp -2 +2 M ./js.lisp -1 +1 M ./js2.lisp -1 +1 M ./ref2test.lisp -2 +2 M ./reference-tests.lisp -174 +174 M ./reference.lisp -11 +11 M ./test.lisp -3 +3 M ./tutorial.lisp -2 +2 Sun Jan 22 16:57:42 EST 2006 Luca Capello * remove trailing spaces at empty lines in *.lisp M ./js-html.lisp -2 +2 M ./js.lisp -7 +7 M ./js2.lisp -6 +6 M ./package.lisp -2 +2 M ./ref2test.lisp -1 +1 M ./reference.lisp -1 +1 M ./tutorial.lisp -6 +6 Sun Jan 22 16:17:04 EST 2006 Luca Capello * pbook.py: convert endlines to Unix format M ./pbook.py -392 +392 Mon Jan 9 06:36:02 EST 2006 henrik.hjelte at poboxes.com * css-inline compiles with cmucl M ./js-html.lisp -1 +1 Mon Dec 19 11:04:35 EST 2005 Marco Baringer * New function gen-js-name-string This allows you to get a unique javascript name as a string and not just as a symbol. M ./js.lisp -2 +6 M ./package.lisp +1 Mon Dec 19 08:19:01 EST 2005 henrik.hjelte at poboxes.com * bugfix slot-value M ./js.lisp -3 +4 M ./test.lisp +23 Sun Dec 18 12:17:24 EST 2005 henrik.hjelte at poboxes.com * bug in dwim-join M ./js.lisp -16 +16 M ./ref2test.lisp -1 +1 M ./reference-tests.lisp -1 +1 M ./test.lisp -1 +23 Sun Dec 18 06:14:26 EST 2005 henrik.hjelte at poboxes.com * css-inline generator M ./js-html.lisp +12 M ./reference-tests.lisp +14 M ./reference.lisp +19 Sat Dec 17 04:52:57 EST 2005 henrik.hjelte at poboxes.com * cleaned reference M ./parenscript-test.asd -1 +1 M ./ref2test.lisp -8 +6 M ./reference-tests.lisp -19 +36 M ./reference.lisp -44 +48 M ./test.lisp -2 +19 Fri Dec 16 13:08:44 EST 2005 henrik.hjelte at poboxes.com * tests from the reference A ./parenscript-test.asd A ./ref2test.lisp A ./reference-tests.lisp A ./test-package.lisp A ./test.lisp Fri Dec 16 10:39:49 EST 2005 henrik.hjelte at poboxes.com * quotes in introduction M ./introduction.lisp -14 +15 Thu Dec 1 14:17:09 EST 2005 Alan-Shields at omrf.ouhsc.edu * Added defgenerics for all the defmethods Ze style warnings! Zey drive me craaaazy. A ./defgenerics.lisp M ./js.lisp -1 M ./parenscript.asd -1 +2 Tue Nov 15 18:53:51 EST 2005 Alan-Shields at omrf.ouhsc.edu * enable #+parenscript To integrate Parenscript with Araneida without requiring Parenscript, I had to do some compile conditionals. This would make it much easier. Marco, eventually I am going to add this to every last one of your projects. ;-p M ./parenscript.asd +2 Tue Nov 15 18:52:33 EST 2005 Alan-Shields at omrf.ouhsc.edu * need a function for css-inlining If you have code that needs to inline CSS across an array, it's difficult to use the current macro. Having a function helps - mapping the macro to the function only completes things. M ./css.lisp -2 +5 Tue Nov 15 18:48:12 EST 2005 Alan-Shields at omrf.ouhsc.edu * Proper concatenation of inline CSS CSS-INLINE does a simple concatenation of the results of CSS directives. This looks like: color:blacksize:200% Unfortunately, it should look like this: color:black;size:200% It now does. M ./css.lisp -2 +3 Mon Nov 7 07:30:47 EST 2005 Luca Capello * added COPYING file A ./COPYING Mon Nov 7 05:21:18 EST 2005 Marco Baringer * Escape { and } chars in boring regexps M ./.boring -1 +1 Wed Oct 5 05:09:42 EDT 2005 Marco Baringer * Need to escape #\' in javascript strings M ./js.lisp -1 +9 Wed Oct 5 04:29:00 EDT 2005 Marco Baringer * Fix buf in JS-INLINE causing infinite macro expansion M ./js.lisp -1 +1 Mon Sep 12 04:17:00 EDT 2005 Marco Baringer * Add in checks to deal with functions/macros whose names aren't symbols M ./js.lisp -2 +4 Mon Sep 5 04:27:35 EDT 2005 Marco Baringer * Use strings, and not symbols, to name javascript functions/macros This effectivly flattens the namespace of javascript code. While this change makes js similar to javascript, and removes the need to export symbols from the JS package, it may break previous code which depended on, for expample, js:and not being equivalent to js:and. M ./js.lisp -12 +14 Mon Sep 5 04:17:02 EDT 2005 Marco Baringer * Added support for literal objects ( "{ ... }" syntax) M ./js.lisp +23 Wed Aug 31 07:58:20 EDT 2005 Marco Baringer * Export cen-js-names and with-unique-js-names M ./package.lisp +4 Mon Aug 15 09:51:28 EDT 2005 Marco Baringer * Added docstrings to previous patch M ./js.lisp +5 Mon Aug 15 09:49:40 EDT 2005 Marco Baringer * Added GEN-JS-NAME and WITH-UNIQUE-JS-NAMES M ./js.lisp +22 Mon Aug 15 04:09:06 EDT 2005 Ivan Toshkov * dotimes-dolist-fix Fixes the infinite loop problems of `dotimes' and `dolist'. M ./js.lisp -3 +3 Mon Aug 15 04:00:53 EDT 2005 Marco Baringer * Parenscript, documentation not withstandanding, does not depend on htmlgen M ./package.lisp -1 +1 M ./parenscript.asd -2 M ./tutorial.lisp -1 +1 Mon Aug 15 03:49:02 EDT 2005 Marco Baringer * Attempt to improve the conversion of (js ((lambda ...) ...)) M ./js.lisp -9 +13 Mon Aug 15 03:48:36 EDT 2005 Marco Baringer * Introduce the JS-LAMBDA class. Make JS-DEFUN a subclass of JS-LAMBDA M ./js.lisp -19 +31 Mon Aug 15 02:39:21 EDT 2005 Marco Baringer * Implement JS and JS-INLINE in terms of JS* and JS-INLINE* M ./js.lisp -7 +5 Sun Aug 14 10:16:29 EDT 2005 Marco Baringer * Symbols starting with #\: are left as is, no case conversion or other mangling M ./js.lisp -4 +15 Sun Aug 14 09:45:34 EDT 2005 Marco Baringer * Added JS* and JS-INLINE*. M ./js.lisp +14 M ./package.lisp +2 Sun Aug 14 09:43:44 EDT 2005 Marco Baringer * Javascript strings need to be quated with ' and not " to avoid interfering with the surrounding HTML. M ./js.lisp -1 +1 Sat Aug 13 10:20:23 EDT 2005 Marco Baringer * Ugly hack to support ((lambda ...) ...) M ./js.lisp -2 +7 Sat Aug 13 09:52:38 EDT 2005 Marco Baringer * Mention that I'm maintaining this version of parenscript M ./parenscript.asd -1 +1 Sat Aug 13 09:51:07 EDT 2005 Marco Baringer * Rename the system/package in the system definition, just renaming the file doesn't cut it :(. M ./parenscript.asd -6 +7 Sat Aug 13 09:44:41 EDT 2005 Marco Baringer * Added images used in documentation A ./images/ A ./images/slideshow.png A ./images/tutorial1-1.png A ./images/tutorial1-2.png Sat Aug 13 09:37:32 EDT 2005 Marco Baringer * Added the pbook.py file used to generate the documentation A ./pbook.py Mon Aug 8 11:48:43 EDT 2005 Marco Baringer * Added declare ignore forms for unused function arguments M ./js.lisp +4 Mon Aug 8 11:48:36 EDT 2005 Marco Baringer * Rename system def ./js.asd -> ./parenscript.asd Tue Jul 26 06:05:49 EDT 2005 Marco Baringer * Setup boringfile A ./.boring Tue Jul 26 06:04:16 EDT 2005 Marco Baringer * Added files from parenscript 0.1.0 as distributed by Manuel Odendahl A ./css.lisp A ./introduction.lisp A ./js-html.lisp A ./js.asd A ./js.lisp A ./js2.lisp A ./manual.pdf A ./package.lisp A ./reference.lisp A ./reference.pdf A ./tutorial.lisp A ./utils.lisp An updated tarball of parenscript's source can be downloaded here: http://common-lisp.net/project/ucw/tarballs/parenscript-20070801.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=parenscript;a=summary From attila.lendvai at gmail.com Thu Aug 2 11:49:40 2007 From: attila.lendvai at gmail.com (Attila Lendvai) Date: Thu, 2 Aug 2007 13:49:40 +0200 Subject: [Bese-devel] New patches to parenscript: 1-Aug-2007 In-Reply-To: <20070802042008.AF82733083@common-lisp.net> References: <20070802042008.AF82733083@common-lisp.net> Message-ID: i've confused the diff script by renaming the parenscript repo to parenscript.DEAD, but then i decided not to port UCW to the new parenscript repo just yet, and renamed it back. just to clarify... -- attila From luca at pca.it Fri Aug 3 08:58:21 2007 From: luca at pca.it (Luca Capello) Date: Fri, 03 Aug 2007 10:58:21 +0200 Subject: [Bese-devel] New patches to parenscript: 1-Aug-2007 In-Reply-To: References: <20070802042008.AF82733083@common-lisp.net> Message-ID: <87vebx0zbm.fsf@gismo.pca.it> Hello! On Thu, 02 Aug 2007 13:49:40 +0200, Attila Lendvai wrote: > i've confused the diff script by renaming the parenscript repo to > parenscript.DEAD, but then i decided not to port UCW to the new > parenscript repo just yet, and renamed it back. Is there any particular reason to not porting UCW to the new upstream parenscript? I think we should abandon parenscript at the UCW repository and with abandon I mean completely remove it. Or, at least, rename it to something like parenscript-ucw. Thx, bye, Gismo / Luca From henrik at evahjelte.com Fri Aug 3 09:29:23 2007 From: henrik at evahjelte.com (Henrik Hjelte) Date: Fri, 3 Aug 2007 11:29:23 +0200 Subject: [Bese-devel] New patches to parenscript: 1-Aug-2007 In-Reply-To: <87vebx0zbm.fsf@gismo.pca.it> References: <20070802042008.AF82733083@common-lisp.net> <87vebx0zbm.fsf@gismo.pca.it> Message-ID: <50e8e4f60708030229i221949fbhfdf2dbfb4c526e47@mail.gmail.com> On 8/3/07, Luca Capello wrote: > Is there any particular reason to not porting UCW to the new upstream > parenscript? I think we should abandon parenscript at the UCW > repository and with abandon I mean completely remove it. Or, at > least, rename it to something like parenscript-ucw. I don't agree, since darcs is a distributed version controlling system, why can't there be different repos? Having to keep your code in sync with a development repo that is changing often can be a big pain. /Henrik Hjelte From attila.lendvai at gmail.com Fri Aug 3 09:44:07 2007 From: attila.lendvai at gmail.com (Attila Lendvai) Date: Fri, 3 Aug 2007 11:44:07 +0200 Subject: [Bese-devel] New patches to parenscript: 1-Aug-2007 In-Reply-To: <50e8e4f60708030229i221949fbhfdf2dbfb4c526e47@mail.gmail.com> References: <20070802042008.AF82733083@common-lisp.net> <87vebx0zbm.fsf@gismo.pca.it> <50e8e4f60708030229i221949fbhfdf2dbfb4c526e47@mail.gmail.com> Message-ID: > > Is there any particular reason to not porting UCW to the new upstream > > parenscript? I think we should abandon parenscript at the UCW lack of time. i've spent about half an hour and rolled it back. but it's probably easier now, because the new repo became much more friendly to old code with some recent changes. > > repository and with abandon I mean completely remove it. Or, at > > least, rename it to something like parenscript-ucw. > > I don't agree, since darcs is a distributed version controlling > system, why can't there be different repos? Having to keep your code > in sync with a development repo that is changing often can be a big > pain. well, yes and no. i like that aspect of darcs, but the current parenscript repo in ucw got separate from the new one, because there were so many restructuring changes in the new repo that you can't pull stuff between them. but ucw _may_ need a branch that follows the official repo only in leaps. it's a similar problem we have with dojo, where the answer was 'yes', because it's so tightly integrated that i've decided to put dojo under the ucw repo, so you always get the dojo version which is working fine with ucw. -- attila From mbaringer at common-lisp.net Tue Aug 14 04:30:19 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Tue, 14 Aug 2007 00:30:19 -0400 (EDT) Subject: [Bese-devel] New patches to ucw_ajax: 13-Aug-2007 Message-ID: <20070814043019.70E1B24004@common-lisp.net> Tue Jul 31 19:42:29 EDT 2007 attila.lendvai at gmail.com * Updated dojo to 9882 M ./wwwroot/dojo/dojo.js M ./wwwroot/dojo/src/bootstrap1.js M ./wwwroot/dojo/src/currency.js M ./wwwroot/dojo/src/date/format.js M ./wwwroot/dojo/src/flash/flash6/DojoExternalInterface.as -5 +5 M ./wwwroot/dojo/src/flash/flash8/DojoExternalInterface.as -8 +8 M ./wwwroot/dojo/src/flash/flash8/ExpressInstall.as -1 +1 M ./wwwroot/dojo/src/gfx/vml.js M ./wwwroot/dojo/src/io/BrowserIO.js M ./wwwroot/dojo/src/io/common.js M ./wwwroot/dojo/src/io/xip_client.html -7 +13 M ./wwwroot/dojo/src/io/xip_server.html -13 +21 M ./wwwroot/dojo/src/number.js R ./wwwroot/dojo/src/rpc/ R ./wwwroot/dojo/src/rpc/Deferred.js R ./wwwroot/dojo/src/rpc/JotService.js R ./wwwroot/dojo/src/rpc/JsonService.js R ./wwwroot/dojo/src/rpc/RpcService.js R ./wwwroot/dojo/src/rpc/YahooService.js R ./wwwroot/dojo/src/rpc/__package__.js R ./wwwroot/dojo/src/rpc/yahoo.smd M ./wwwroot/dojo/src/widget/DropdownDatePicker.js M ./wwwroot/dojo/src/widget/DropdownTimePicker.js M ./wwwroot/dojo/src/widget/Editor2.js M ./wwwroot/dojo/src/widget/Editor2Plugin/CreateLinkDialog.js M ./wwwroot/dojo/src/widget/Editor2Plugin/DialogCommands.js M ./wwwroot/dojo/src/widget/Editor2Plugin/DropDownList.js M ./wwwroot/dojo/src/widget/Editor2Plugin/InsertImageDialog.js M ./wwwroot/dojo/src/widget/Editor2Plugin/InsertTableDialog.js M ./wwwroot/dojo/src/widget/Editor2Toolbar.js M ./wwwroot/dojo/src/widget/ResizableTextarea.js M ./wwwroot/dojo/src/widget/Textbox.js M ./wwwroot/dojo/src/widget/TimePicker.js M ./wwwroot/dojo/src/widget/Wizard.js M ./wwwroot/dojo/src/widget/demoEngine/DemoItem.js M ./wwwroot/dojo/src/widget/demoEngine/DemoNavigator.js Fri Aug 10 09:24:30 EDT 2007 attila.lendvai at gmail.com * switching-container-selector-js now works with component keys, too M ./src/components/container.lisp -2 +6 Thu Aug 9 18:20:07 EDT 2007 attila.lendvai at gmail.com * rename to iterate-visible-dirty-components and record a TODO related to them M ./src/application-mixins/ajax-application.lisp -5 +5 M ./src/components/ajax.lisp -2 +5 Wed Aug 8 15:24:43 EDT 2007 attila.lendvai at gmail.com * :remember-selected-child-p for client-side switching-container M ./src/components/container.lisp -21 +34 M ./src/per-application-parenscript.lisp -3 +21 Thu Aug 2 11:52:09 EDT 2007 attila.lendvai at gmail.com * housekeeping M ./etc/ucw.profile.js M ./examples/src/examples.lisp -1 +1 M ./src/backend/basic-backend.lisp -8 +9 M ./src/components/ajax.lisp -12 +12 M ./src/components/window.lisp -2 +2 Thu Aug 2 10:43:34 EDT 2007 attila.lendvai at gmail.com * Added support for setting the client timezone on the session M ./src/l10n/l10n-application.lisp -5 +28 M ./src/packages.lisp +2 Thu Aug 2 10:40:02 EDT 2007 attila.lendvai at gmail.com * rename l10n logger M ./src/l10n/l10n-application.lisp -11 +11 M ./src/l10n/l10n.lisp -6 +6 M ./src/loggers.lisp -1 +2 Tue Jul 31 19:42:53 EDT 2007 attila.lendvai at gmail.com * Annotate some optimizations on parse-accept-language-header M ./src/backend/accept-headers.lisp -69 +70 An updated tarball of ucw_ajax's source can be downloaded here: http://common-lisp.net/project/ucw/tarballs/ucw_ajax-20070813.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=ucw_ajax;a=summary From mbaringer at common-lisp.net Wed Aug 15 04:05:03 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Wed, 15 Aug 2007 00:05:03 -0400 (EDT) Subject: [Bese-devel] New patches to fiveam: 14-Aug-2007 Message-ID: <20070815040503.4F29E19005@common-lisp.net> Tue Aug 14 13:36:09 EDT 2007 Marco Baringer * def-suite should expand into an (eval-when (:always) ...) not a progn M ./src/suite.lisp -1 +1 An updated tarball of fiveam's source can be downloaded here: http://common-lisp.net/project/bese/tarballs/fiveam-20070814.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=fiveam;a=summary From clinton at unknownlamer.org Wed Aug 22 04:42:57 2007 From: clinton at unknownlamer.org (Clinton Ebadi) Date: Wed, 22 Aug 2007 00:42:57 -0400 Subject: [Bese-devel] Re: your future is your future In-Reply-To: (Madj Ebadi's message of "Tue, 21 Aug 2007 15:25:03 -0400") References: Message-ID: <87d4xgkwmm.fsf@unknownlamer.org> "Madj Ebadi" writes: > You continue to sell me out to what you call friends, friends who will not help > you with your future... And you've met how many of them? > You continue to complain about me to my staff, you should be embarrassed to do > so since it shows your lack of ability to communicate with your own father and > that you are making things up!!! You seem to have a poor memory of me having to ask you several times every month to pay me since I started working for you. > Now business, I told you back in May that we need to put you on the payroll > here at CBC and that I'm also very concerned about the fact you have no health > insurance coverage. > This is also important to help you establish credit and to help you get on your > feet and hopefully make you a responsible individual. > > In anticipation of you promising to come to New York since June with your > brother Tyler, I did all your paper work and it has been ready for your > signature, > yet you to continue to have excuses about why you can't come up to New York.... > And how you are bored when you are here, etc. > This is work not an action park... who cares that you are bored. Given that I have been making ~$12000 a year I think being bored matters. It is one thing to be paid a reasonable wage and be bored, and another thing entirely to make less than I did making subs and be bored. I was billing $20 to $40 an hour when I was fifteen, and now I make $10 an hour in a good month! > My son, I have done what I can to help you stand on your feet, and I'm sorry I > wasn't there your entire life... > I have been paying for your school, and your expenses, all coming out of my > personal account which has had serious tax consequences and > I don't even claim you guys as dependants. > I have 10x weeks of paychecks that are piling up here with your name on it, I > gave you $2,000 from my account again despite the fact you also had paychecks > here, and when I spoke to you, you said you were going to come up shortly, in > reconciling my personal account I put back $1,000 since I had to cover > another paycheck and I thought you were coming up the following week which was > weeks ago! > It's like I'm paying 3X times.... Please reconcile your statement that you are waiting for my signature and you somehow have ten weeks of paychecks for me. Last I checked you couldn't print checks until you had my signature so you have a bit of a contradiction there. I have to suspect that you are attempting to trick me; what good does being on payroll do me if you never told me? Why did you continue to give me money at the end of June if I were already on payroll? Something doesn't add up. I also did not say I was travelling to NY soon in July. I told you that I was in the process of moving and would be unable to travel until mid-August. > In addition, I'm paying for Tyler's car and car insurance, not to mention other > monies that I give you guys when I can... I'm not an ATM machine, and I also > have had a tough battle since my heart procedure to save my business, I am > working very very hard and I am still there for you with every breath I take > and yet you continue to add distance between us.... And now you complain to > strangers about us And you don't even care how I'm doing! I have asked you to > send us invoices, Time sheets... not once have you done it, who do you think > you are? > Why would you expect to get paid when you are always late, you make mistakes, > you don't send time sheets, you miss delaines, you disappear, etc. etc. Tyler's expenses have nothing to do with me. The mistakes that I make are minor, and are generally due to the differences in software versions between your servers and my machine. This cannot be helped because the software you are running is so ancient that it no longer compiles on a modern system so I have no way to test with it (I tried because it would make my life easier). It doesn't help that MySQL and PHP break between minor versions so I can inadvertedly do something that works fine on one and is completely broken on another. > It is obvious that you have no LOVE whatsoever for me or your Grandmother and > you were around because you needed my help to get out of the house and to pay > for your college... > I don't fault you since LOVE is a strange word with you and you don't know > what it is and you won't allow me or your grand mother to show you! Now you are making baseless accusations in an attempt to manipulate me. Please do not use those and stick to logical arguments; emotional appeals and personal attacks are often a sign of having no argument. > A. You must come up and interview with Anthony & Todd I do not have time to go to New York and end up trapped there for weeks. I have other jobs to do, and sitting in your office making below minimum wage does not allow me to do them. I will also not interview for a job I already perform. I am well aware of the psychological manipulation and self-esteem degradation that is intended in the re-interviewing process. As much as you may think I am a fool, understand that I am not. > B. You must agree on a work schedule and commit to being reliable and on time I already did. The last delay was due to my phone which is nearing the end of its life failing. I have been unable to purchase a new phone since you pay me so little, and took the money I was going to use to buy a new phone. Unfortunately I must use my phone as a modem for this month since I have no alternative net access. > C. You must establish appropriate technology at your end so you can get your > work done properly and on time I already have all the tools I need. It is your fault that you are running ten year old software that does not function on modern systems. > I have payroll checks for you since 6/8/07, once you have concluded your > meeting with Anthony and Todd. You and I will discuss how and what is due to > you. You will not be receiving the remaing working on LPK or NYNJ until I am paid. If LPK currently has any bugs then so be it, I will not be able to help until I am paid because I have no guarantees that I will receive compensation for my effort. This includes the thousand that you took last month and the thousand for this month. If I am paid I will complete the work that has been emailed to me including the small email database. If not, you're on your own. -- From clinton at unknownlamer.org Wed Aug 22 14:41:01 2007 From: clinton at unknownlamer.org (Clinton Ebadi) Date: Wed, 22 Aug 2007 10:41:01 -0400 Subject: [Bese-devel] Re: your future is your future In-Reply-To: <87d4xgkwmm.fsf@unknownlamer.org> (Clinton Ebadi's message of "Wed, 22 Aug 2007 00:42:57 -0400") References: <87d4xgkwmm.fsf@unknownlamer.org> Message-ID: <87fy2bk4xu.fsf@unknownlamer.org> Gnus farted and resent the wrong message to the list. Please disregard. I am unsure what happened; the point was on the right message ... Stupid smtpmail and weird mail system barffage. -- From clinton at unknownlamer.org Wed Aug 22 01:38:17 2007 From: clinton at unknownlamer.org (Clinton Ebadi) Date: Tue, 21 Aug 2007 21:38:17 -0400 Subject: [Bese-devel] UCW-Presentations Fixed (Sort Of) Message-ID: <87d4xfk4py.fsf@unknownlamer.org> Greetings, I managed to get UCW-Presentations working against ucw_dev (I've yet to try ucw_ajax as I wanted to tackle one task at a time). Normally loading UCW-Presentations caused method dispatch for structs to stop working which was most immediately reveleaded when auto-flush ran in swank and failed to dispatch output-stream-p properly which causes the auto-flush thread to die, and then streams to stop working entirely. This, naturally, makes it a tad bit difficult to debug things. Luckily the SBCL inspector still worked so I was able to sanity check the state and poke around a bit to discover that it wasn't directly related to streams. The offending form appeared to be: (define-ie-type (interface-element interface-element) ((ie-type t)) ... (:metaclass interface-element-class) ...) in form.lisp After much debugging I made a last ditch effort and changed interface-element-class to indirect-value-standard-component-class and the form compiled without making SBCL barf. I changed every occurence, and lo and behold! All was well. After making sure all was really well by running the example app through its paces I then moved the (defclass interface-element-class ...) into indirect-value-class.lisp after the definition for indirect-value-standard-component-class and before any method definitions. This, oddly enough, made everything work. I am honestly very perplexed by this. I poured through AMOP looking for a reason why things might behave like this, but found nothing. I renamed the class, made it a subclass of i-v-s-c-c, etc. and SBCL still broke horribly. The stranger thing is that if I added a method to a generic then dispatching for that generic worked again while the other generics in the image still only dispatched to their t cases, but this only affected *some* generics (as above I suspect for structs only, but I didn't test this extensively). I suspect there might be a bug in PCL or else some very slight MOP protocol violation in indirect-value-class or standard-component-class that is corrupting the method cache. I cannot think of another reason. In the meantime, my slightly-hacked ucw-presentations works. Would you like me to send a patch bundle that moves the definition so presentations can be used again? I can also send a patch to the example file that will make it work properly again as well (mostly fixing a few explicit package qualitifers and adding a simple-window around the demo so that js works). -- From evrim at core.gen.tr Thu Aug 23 13:41:11 2007 From: evrim at core.gen.tr (Evrim Ulu) Date: Thu, 23 Aug 2007 16:41:11 +0300 Subject: [Bese-devel] UCW-Presentations Fixed (Sort Of) In-Reply-To: <87d4xfk4py.fsf@unknownlamer.org> References: <87d4xfk4py.fsf@unknownlamer.org> Message-ID: <46CD8E77.9090103@core.gen.tr> Clinton Ebadi wrote: >In the meantime, my slightly-hacked ucw-presentations works. Would you >like me to send a patch bundle that moves the definition so >presentations can be used again? > > nice, please send the patch to the list and i'll apply them. evrim. From clinton at unknownlamer.org Thu Aug 23 17:57:23 2007 From: clinton at unknownlamer.org (Clinton Ebadi) Date: Thu, 23 Aug 2007 13:57:23 -0400 Subject: [Bese-devel] UCW-Presentations Fixed (Sort Of) In-Reply-To: <46CD8E77.9090103@core.gen.tr> (Evrim Ulu's message of "Thu, 23 Aug 2007 16:41:11 +0300") References: <87d4xfk4py.fsf@unknownlamer.org> <46CD8E77.9090103@core.gen.tr> Message-ID: <87odgycews.fsf@unknownlamer.org> Evrim Ulu writes: > Clinton Ebadi wrote: > >>In the meantime, my slightly-hacked ucw-presentations works. Would you >>like me to send a patch bundle that moves the definition so >>presentations can be used again? >> >> > nice, please send the patch to the list and i'll apply them. A patch bundle is attached. I split things into multiple patches in case you didn't want to apply the packages or examples patches. -------------- next part -------------- A non-text attachment was scrubbed... Name: fixes.darcs-patches.gz Type: application/octet-stream Size: 1387 bytes Desc: not available URL: -------------- next part -------------- -- From mbaringer at common-lisp.net Mon Aug 27 04:00:19 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Mon, 27 Aug 2007 00:00:19 -0400 (EDT) Subject: [Bese-devel] New patches to arnesi_dev: 26-Aug-2007 Message-ID: <20070827040019.F325D18@common-lisp.net> Thu Jun 28 12:29:56 EDT 2007 attila.lendvai at gmail.com * Added random-queue-element M ./src/packages.lisp +1 M ./src/queue.lisp -8 +19 Thu Jun 28 12:29:20 EDT 2007 attila.lendvai at gmail.com * Added '/' to the *uri-escaping-ok-table* M ./src/http.lisp -1 +4 Mon May 21 11:25:36 EDT 2007 attila.lendvai at gmail.com * Add an implicit block for defmethod/cc and defun/cc so that the semantics of return-from remains the same M ./src/call-cc/generic-functions.lisp -2 +4 Wed May 16 09:15:47 EDT 2007 attila.lendvai at gmail.com * Dropped unnecessary eval-always from log.lisp (to make Nikodemus happy :) M ./src/log.lisp -6 +5 An updated tarball of arnesi_dev's source can be downloaded here: http://common-lisp.net/project/bese/tarballs/arnesi_dev-20070826.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=arnesi_dev;a=summary From mbaringer at common-lisp.net Mon Aug 27 04:30:29 2007 From: mbaringer at common-lisp.net (Marco Baringer) Date: Mon, 27 Aug 2007 00:30:29 -0400 (EDT) Subject: [Bese-devel] New patches to ucw_ajax: 26-Aug-2007 Message-ID: <20070827043029.18CB161059@common-lisp.net> Fri Aug 24 15:06:17 EDT 2007 attila.lendvai at gmail.com * Added call-in-restored-rendering-environment; renamed to call-in-rendering-environment M ./src/components/ajax.lisp -16 +23 M ./src/components/form.lisp -1 +1 M ./src/contextl-integration.lisp -2 +2 M ./src/packages.lisp -1 +2 M ./src/rerl/protocol.lisp -1 +1 M ./src/rerl/standard-component/standard-component.lisp -2 +2 Fri Aug 24 15:05:59 EDT 2007 attila.lendvai at gmail.com * rename funcall-as- to call-as- M ./src/backend/common.lisp -1 +1 M ./src/backend/httpd.lisp -3 +3 M ./src/backend/iolib.lisp -2 +2 M ./src/backend/multithread-httpd.lisp -2 +2 M ./src/rerl/basic-application.lisp -1 +1 M ./src/rerl/standard-server.lisp -5 +5 M ./test/core/application.lisp -3 +3 M ./test/core/server.lisp -4 +4 Fri Aug 24 15:04:11 EDT 2007 attila.lendvai at gmail.com * Fix client side collapsible pane onclick js M ./src/components/collapsible-pane.lisp -3 +11 Mon Aug 20 13:05:09 EDT 2007 attila.lendvai at gmail.com * housekeeping M ./src/application-mixins/ajax-application.lisp -1 +1 M ./src/components/ajax.lisp -1 +2 M ./src/components/dojo-widgets.lisp +1 M ./src/contextl-integration.lisp -2 +2 M ./src/rerl/protocol.lisp +1 M ./src/rerl/request-loop-error.lisp -1 +1 M ./src/rerl/standard-dispatchers.lisp +1 Mon Aug 20 06:05:43 EDT 2007 attila.lendvai at gmail.com * fix: drop registered form fields when they are not in the DOM anymore (to fix form dirtyness checking) M ./src/per-application-parenscript.lisp -12 +16 Mon Aug 20 05:38:33 EDT 2007 attila.lendvai at gmail.com * trivial changes to the examples M ./examples/src/examples.lisp -1 +2 M ./examples/wwwroot/static/examples.css +5 Mon Aug 20 05:37:15 EDT 2007 attila.lendvai at gmail.com * refactor ajax rendering to use call-with-rendering-environment on the parent chain before calling ajax-render on the component to be ajax rendered. M ./src/application-mixins/ajax-application.lisp +4 M ./src/components/ajax.lisp -14 +19 M ./src/packages.lisp -1 Mon Aug 20 05:28:18 EDT 2007 attila.lendvai at gmail.com * Mon Aug 27 10:17:09 EDT 2007 attila.lendvai at gmail.com * fix operation of the js side without cl-l10n being loaded M ./src/per-application-parenscript.lisp -4 +6 Mon Aug 27 08:19:55 EDT 2007 attila.lendvai at gmail.com * small change create-server to make the boxset's start.lisp happy M ./src/control.lisp -9 +11 An updated tarball of ucw_ajax's source can be downloaded here: http://common-lisp.net/project/ucw/tarballs/ucw_ajax-20070827.tar.gz Darcsweb URL: http://uncommon-web.com/darcsweb/darcsweb.cgi?r=ucw_ajax;a=summary From evrim at core.gen.tr Tue Aug 28 09:42:20 2007 From: evrim at core.gen.tr (Evrim Ulu) Date: Tue, 28 Aug 2007 12:42:20 +0300 Subject: [Bese-devel] UCW-Presentations Fixed (Sort Of) In-Reply-To: <87odgycews.fsf@unknownlamer.org> References: <87d4xfk4py.fsf@unknownlamer.org> <46CD8E77.9090103@core.gen.tr> <87odgycews.fsf@unknownlamer.org> Message-ID: <46D3EDFC.30300@core.gen.tr> Clinton Ebadi wrote: >A patch bundle is attached. I split things into multiple patches in >case you didn't want to apply the packages or examples patches. > > Clinton, Sorry for late reply, unfortunately I can't compile your patch. The progn statement in defnumber-criteria gives |-- --> LET IF OR | ==> | "" | This is not a (OR FUNCTION SYMBOL): | "" | See also: | SBCL Manual, Handling of Types [node] |-- --> LET IF OR | ==> | "" | This is not a (OR FUNCTION SYMBOL): | "" | See also: | SBCL Manual, Handling of Types [node] `-- --> LET IF OR ==> "" This is not a (OR FUNCTION SYMBOL): "" See also: SBCL Manual, Handling of Types [node] evrim. From clinton at unknownlamer.org Wed Aug 29 00:14:33 2007 From: clinton at unknownlamer.org (Clinton Ebadi) Date: Tue, 28 Aug 2007 20:14:33 -0400 Subject: [Bese-devel] UCW-Presentations Fixed (Sort Of) In-Reply-To: <46D3EDFC.30300@core.gen.tr> (Evrim Ulu's message of "Tue, 28 Aug 2007 12:42:20 +0300") References: <87d4xfk4py.fsf@unknownlamer.org> <46CD8E77.9090103@core.gen.tr> <87odgycews.fsf@unknownlamer.org> <46D3EDFC.30300@core.gen.tr> Message-ID: <87k5rfmc2e.fsf@unknownlamer.org> Evrim Ulu writes: > Clinton Ebadi wrote: > >>A patch bundle is attached. I split things into multiple patches in >>case you didn't want to apply the packages or examples patches. > Clinton, > > Sorry for late reply, unfortunately I can't compile your patch. Are you patching a clean ucw-presentations (I recall conversations with you about hacking on it before) and working against ucw_dev? The patches don't touch criteria support and the important two (Fix interface-element-class definition clinton at unknownlamer.org**20070823155411 and Fix loading order of ucw-presentations clinton at unknownlamer.org**20070823155508) only move the position of a class definition and add a correct dependency so everything isn't loaded before the presentations package is created. -- From clinton at unknownlamer.org Fri Aug 31 03:03:02 2007 From: clinton at unknownlamer.org (Clinton Ebadi) Date: Thu, 30 Aug 2007 23:03:02 -0400 Subject: [Bese-devel] rfc2388-binary test suite fixes Message-ID: <87odgol82h.fsf@unknownlamer.org> The attached changeset fixes the test suite that depended on the rfc2388 system instead of the -binary version, and also renames the package and test suite to include the -binary suffix. -------------- next part -------------- A non-text attachment was scrubbed... Name: fix-tests.darcs-patch.gz Type: application/octet-stream Size: 2498 bytes Desc: not available URL: -------------- next part -------------- -- From attila.lendvai at gmail.com Fri Aug 31 09:31:33 2007 From: attila.lendvai at gmail.com (Attila Lendvai) Date: Fri, 31 Aug 2007 11:31:33 +0200 Subject: [Bese-devel] rfc2388-binary test suite fixes In-Reply-To: <87odgol82h.fsf@unknownlamer.org> References: <87odgol82h.fsf@unknownlamer.org> Message-ID: > The attached changeset fixes the test suite that depended on the > rfc2388 system instead of the -binary version, and also renames the > package and test suite to include the -binary suffix. pushed, thanks! -- attila