[Bese-devel] New patches to parenscript: 1-Aug-2007

Marco Baringer mbaringer at common-lisp.net
Thu Aug 2 04:20:08 UTC 2007


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 <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * moretests for method-call (dot-notation) syntax

    M ./t/test.lisp +27

Wed Nov 15 16:35:02 EST 2006  Henrik Hjelte <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * tests for some bugs, reported by Marijn Haverbeke

    M ./t/test.lisp +8

Wed Nov 15 14:27:20 EST 2006  Henrik Hjelte <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * updated pdf manual for new with syntax

    M ./docs/manual.pdf

Wed Nov 15 11:43:39 EST 2006  Henrik Hjelte <henrik at evahjelte.com>
  * build.sh for documentation

    A ./docs/build.sh

Wed Nov 15 11:13:03 EST 2006  Henrik Hjelte <henrik at evahjelte.com>
  * 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 <henrik at evahjelte.com>
  * 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 <luca at pca.it>
  * 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 <mb at bese.it>
  * 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 <henrik.hjelte at evahjelte.com>
  * 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 <henrik.hjelte at evahjelte.com>
  * 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 <henrik.hjelte at evahjelte.com>
  * 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 <henrik.hjelte at evahjelte.com>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * Export defjsmacro

    M ./src/package.lisp -1 +2

Sat Apr  1 06:35:03 EST 2006  Marco Baringer <mb at bese.it>
  * Added docstring for *js-quote-char*

    M ./src/js.lisp -1 +6

Sat Apr  1 06:28:58 EST 2006  Marco Baringer <mb at bese.it>
  * Add variable *js-quote-char* (Patch by: Xan Lopez <xan.lopez at gmail.com>)

    M ./src/js.lisp -2 +4

Sun Feb 26 12:05:27 EST 2006  Marco Baringer <mb at bese.it>
  * Implement js-to-strings for the regex class

    M ./src/js.lisp +4

Sat Feb 25 12:07:51 EST 2006  Marco Baringer <mb at bese.it>
  * #\$ is not a special javascript character. (Reported by: Richard Morse <pukku at mac.com>)

    M ./src/js.lisp -1
    M ./src/js2.lisp -1

Thu Feb 16 03:42:59 EST 2006  Luca Capello <luca at pca.it>
  * 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 <luca at pca.it>
  * remove docs/reference.pdf, already included in manual.pdf

    R ./docs/reference.pdf

Sun Feb  5 11:04:44 EST 2006  Marco Baringer <mb at bese.it>
  * 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 <luca at pca.it>
  * 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 <luca at pca.it>
  * 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 <luca at pca.it>
  * 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 <luca at pca.it>
  * 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 <luca at pca.it>
  * 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 <luca at pca.it>
  * 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 <luca at pca.it>
  * 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 <mb at bese.it>
  * 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 <luca at pca.it>
  * added COPYING file

    A ./COPYING

Mon Nov  7 05:21:18 EST 2005  Marco Baringer <mb at bese.it>
  * Escape { and } chars in boring regexps

    M ./.boring -1 +1

Wed Oct  5 05:09:42 EDT 2005  Marco Baringer <mb at bese.it>
  * Need to escape #\' in javascript strings

    M ./js.lisp -1 +9

Wed Oct  5 04:29:00 EDT 2005  Marco Baringer <mb at bese.it>
  * Fix buf in JS-INLINE causing infinite macro expansion

    M ./js.lisp -1 +1

Mon Sep 12 04:17:00 EDT 2005  Marco Baringer <mb at bese.it>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * Added support for literal objects ( "{ ... }" syntax)

    M ./js.lisp +23

Wed Aug 31 07:58:20 EDT 2005  Marco Baringer <mb at bese.it>
  * Export cen-js-names and with-unique-js-names

    M ./package.lisp +4

Mon Aug 15 09:51:28 EDT 2005  Marco Baringer <mb at bese.it>
  * Added docstrings to previous patch

    M ./js.lisp +5

Mon Aug 15 09:49:40 EDT 2005  Marco Baringer <mb at bese.it>
  * Added GEN-JS-NAME and WITH-UNIQUE-JS-NAMES

    M ./js.lisp +22

Mon Aug 15 04:09:06 EDT 2005  Ivan Toshkov <itoshkov at gmail.com>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * Attempt to improve the conversion of (js ((lambda ...) ...))

    M ./js.lisp -9 +13

Mon Aug 15 03:48:36 EDT 2005  Marco Baringer <mb at bese.it>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * Added JS* and JS-INLINE*. 

    M ./js.lisp +14
    M ./package.lisp +2

Sun Aug 14 09:43:44 EDT 2005  Marco Baringer <mb at bese.it>
  * 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 <mb at bese.it>
  * Ugly hack to support ((lambda ...) ...)

    M ./js.lisp -2 +7

Sat Aug 13 09:52:38 EDT 2005  Marco Baringer <mb at bese.it>
  * Mention that I'm maintaining this version of parenscript

    M ./parenscript.asd -1 +1

Sat Aug 13 09:51:07 EDT 2005  Marco Baringer <mb at bese.it>
  * 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 <mb at bese.it>
  * 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 <mb at bese.it>
  * Added the pbook.py file used to generate the documentation

    A ./pbook.py

Mon Aug  8 11:48:43 EDT 2005  Marco Baringer <mb at bese.it>
  * Added declare ignore forms for unused function arguments

    M ./js.lisp +4

Mon Aug  8 11:48:36 EDT 2005  Marco Baringer <mb at bese.it>
  * Rename system def

     ./js.asd -> ./parenscript.asd

Tue Jul 26 06:05:49 EDT 2005  Marco Baringer <mb at bese.it>
  * Setup boringfile

    A ./.boring

Tue Jul 26 06:04:16 EDT 2005  Marco Baringer <mb at bese.it>
  * 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



More information about the bese-devel mailing list