From bknr at bknr.net Fri Jun 4 05:37:39 2010 From: bknr at bknr.net (BKNR Commits) Date: Fri, 04 Jun 2010 07:37:39 +0200 Subject: [bknr-cvs] hans changed trunk/projects/hello-web/src/init.lisp Message-ID: Revision: 4552 Author: hans URL: http://bknr.net/trac/changeset/4552 Add :REQUEST-DISPATCHER argument to HUNCHENTOOT:ACCEPTOR instance creation argument list. U trunk/projects/hello-web/src/init.lisp Modified: trunk/projects/hello-web/src/init.lisp =================================================================== --- trunk/projects/hello-web/src/init.lisp 2010-05-23 05:29:01 UTC (rev 4551) +++ trunk/projects/hello-web/src/init.lisp 2010-06-04 05:37:39 UTC (rev 4552) @@ -24,5 +24,5 @@ (publish-hello-web) (when *webserver* (hunchentoot:stop *webserver*)) - (setq *webserver* (make-instance 'hunchentoot:acceptor :port port)) + (setq *webserver* (make-instance 'hunchentoot:acceptor :port port :request-dispatcher 'bknr.web:bknr-dispatch)) (hunchentoot:start *webserver*)) From bknr at bknr.net Fri Jun 4 06:59:34 2010 From: bknr at bknr.net (BKNR Commits) Date: Fri, 04 Jun 2010 08:59:34 +0200 Subject: [bknr-cvs] hans changed trunk/projects/hello-web/ Message-ID: Revision: 4553 Author: hans URL: http://bknr.net/trac/changeset/4553 More fixes to make HELLO-WEB behave better. U trunk/projects/hello-web/src/tags.lisp U trunk/projects/hello-web/src/webserver.lisp A trunk/projects/hello-web/website/templates/login.xml Modified: trunk/projects/hello-web/src/tags.lisp =================================================================== --- trunk/projects/hello-web/src/tags.lisp 2010-06-04 05:37:39 UTC (rev 4552) +++ trunk/projects/hello-web/src/tags.lisp 2010-06-04 06:59:34 UTC (rev 4553) @@ -2,4 +2,11 @@ (define-bknr-tag test-tag (&key arg) (html (:p "hi there, this is from a application-defined tag function, and the argument was " - (:b (:princ-safe arg))))) \ No newline at end of file + (:b (:princ-safe arg))))) + +(define-bknr-tag login-page () + (if (and (hunchentoot:session-value :login-redirect-uri) + (not (bknr.user:anonymous-p (bknr-session-user)))) + (redirect (puri:render-uri (hunchentoot:session-value :login-redirect-uri) nil)) + (emit-tag-children))) + Modified: trunk/projects/hello-web/src/webserver.lisp =================================================================== --- trunk/projects/hello-web/src/webserver.lisp 2010-06-04 05:37:39 UTC (rev 4552) +++ trunk/projects/hello-web/src/webserver.lisp 2010-06-04 06:59:34 UTC (rev 4553) @@ -22,10 +22,9 @@ images user ("/static" directory-handler - :destination ,(namestring (merge-pathnames #p"static/" *website-directory*)))) + :destination ,(namestring (merge-pathnames #p"static/" *website-directory*)))) :admin-navigation '(("user" . "/user/") ("images" . "/edit-images") - ("import" . "/import") ("logout" . "/logout")) :authorizer (make-instance 'bknr-authorizer) :style-sheet-urls '("/static/styles.css") Added: trunk/projects/hello-web/website/templates/login.xml =================================================================== --- trunk/projects/hello-web/website/templates/login.xml (rev 0) +++ trunk/projects/hello-web/website/templates/login.xml 2010-06-04 06:59:34 UTC (rev 4553) @@ -0,0 +1,27 @@ + + + + + + + Please log in + + + +

BKNR hello-web login

+
+ + + +
Username
Password
+ +
+ +
+ From bknr at bknr.net Tue Jun 8 06:35:15 2010 From: bknr at bknr.net (BKNR Commits) Date: Tue, 08 Jun 2010 08:35:15 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/hunchentoot/acceptor.lisp Message-ID: Revision: 4554 Author: hans URL: http://bknr.net/trac/changeset/4554 Simplified and working format string in error output generation, thanks to Stas Boukarev. U trunk/thirdparty/hunchentoot/acceptor.lisp Modified: trunk/thirdparty/hunchentoot/acceptor.lisp =================================================================== --- trunk/thirdparty/hunchentoot/acceptor.lisp 2010-06-04 06:59:34 UTC (rev 4553) +++ trunk/thirdparty/hunchentoot/acceptor.lisp 2010-06-08 06:35:15 UTC (rev 4554) @@ -439,7 +439,7 @@ (lambda (cond) (when *log-lisp-errors-p* (log-message *lisp-errors-log-level* - "~A~:[~*~;~%~:*~A~]" + "~A~@[~%~A~]" cond (and *log-lisp-backtraces-p* (get-backtrace)))) ;; if the headers were already sent, the error From bknr at bknr.net Mon Jun 14 05:43:14 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 07:43:14 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/ Message-ID: Revision: 4555 Author: hans URL: http://bknr.net/trac/changeset/4555 update cffi and iolib from upstream U trunk/thirdparty/cffi/_darcs/inventory U trunk/thirdparty/cffi/_darcs/patches/pending U trunk/thirdparty/cffi/_darcs/patches/pending.tentative U trunk/thirdparty/cffi/_darcs/pristine/grovel/common.h U trunk/thirdparty/cffi/_darcs/pristine/src/cffi-allegro.lisp U trunk/thirdparty/cffi/_darcs/pristine/src/cffi-ecl.lisp U trunk/thirdparty/cffi/_darcs/pristine/tests/bindings.lisp U trunk/thirdparty/cffi/_darcs/pristine/tests/libtest.c U trunk/thirdparty/cffi/_darcs/pristine/tests/memory.lisp U trunk/thirdparty/cffi/_darcs/pristine/tests/misc-types.lisp U trunk/thirdparty/cffi/_darcs/tentative_pristine U trunk/thirdparty/cffi/grovel/common.h U trunk/thirdparty/cffi/src/cffi-allegro.lisp U trunk/thirdparty/cffi/src/cffi-ecl.lisp U trunk/thirdparty/cffi/tests/bindings.lisp U trunk/thirdparty/cffi/tests/libtest.c U trunk/thirdparty/cffi/tests/memory.lisp U trunk/thirdparty/cffi/tests/misc-types.lisp U trunk/thirdparty/iolib/.git/index U trunk/thirdparty/iolib/.git/logs/HEAD U trunk/thirdparty/iolib/.git/logs/refs/heads/master U trunk/thirdparty/iolib/.git/refs/heads/master U trunk/thirdparty/iolib/.gitattributes U trunk/thirdparty/iolib/.template.lisp U trunk/thirdparty/iolib/README U trunk/thirdparty/iolib/examples/echo-server.lisp U trunk/thirdparty/iolib/src/base/conditions.lisp U trunk/thirdparty/iolib/src/base/debug.lisp U trunk/thirdparty/iolib/src/base/definitions.lisp U trunk/thirdparty/iolib/src/base/defobsolete.lisp U trunk/thirdparty/iolib/src/base/gray-stream-mixin.lisp U trunk/thirdparty/iolib/src/base/matching.lisp U trunk/thirdparty/iolib/src/base/pkgdcl.lisp U trunk/thirdparty/iolib/src/base/reader.lisp U trunk/thirdparty/iolib/src/base/return-star.lisp U trunk/thirdparty/iolib/src/base/scl-gray-streams.lisp U trunk/thirdparty/iolib/src/base/sequence.lisp U trunk/thirdparty/iolib/src/base/split-sequence.lisp U trunk/thirdparty/iolib/src/base/time.lisp U trunk/thirdparty/iolib/src/base/types.lisp U trunk/thirdparty/iolib/src/iolib/pkgdcl.lisp U trunk/thirdparty/iolib/src/iolib.asd U trunk/thirdparty/iolib/src/iolib.base.asd U trunk/thirdparty/iolib/src/iolib.multiplex.asd U trunk/thirdparty/iolib/src/iolib.os.asd U trunk/thirdparty/iolib/src/iolib.pathnames.asd U trunk/thirdparty/iolib/src/iolib.sockets.asd U trunk/thirdparty/iolib/src/iolib.streams.asd U trunk/thirdparty/iolib/src/iolib.syscalls.asd U trunk/thirdparty/iolib/src/iolib.trivial-sockets.asd U trunk/thirdparty/iolib/src/iolib.zstreams.asd U trunk/thirdparty/iolib/src/multiplex/backend-epoll.lisp U trunk/thirdparty/iolib/src/multiplex/backend-kqueue.lisp U trunk/thirdparty/iolib/src/multiplex/backend-poll.lisp U trunk/thirdparty/iolib/src/multiplex/backend-select.lisp U trunk/thirdparty/iolib/src/multiplex/detect.lisp U trunk/thirdparty/iolib/src/multiplex/event-loop.lisp U trunk/thirdparty/iolib/src/multiplex/fd-entry.lisp U trunk/thirdparty/iolib/src/multiplex/fd-wait.lisp U trunk/thirdparty/iolib/src/multiplex/multiplexer.lisp U trunk/thirdparty/iolib/src/multiplex/pkgdcl.lisp U trunk/thirdparty/iolib/src/multiplex/queue.lisp U trunk/thirdparty/iolib/src/multiplex/scheduler.lisp U trunk/thirdparty/iolib/src/multiplex/timers.lisp U trunk/thirdparty/iolib/src/multiplex/utils.lisp U trunk/thirdparty/iolib/src/os/os-unix.lisp U trunk/thirdparty/iolib/src/os/pkgdcl.lisp U trunk/thirdparty/iolib/src/pathnames/file-path-unix.lisp U trunk/thirdparty/iolib/src/pathnames/file-path.lisp U trunk/thirdparty/iolib/src/pathnames/pkgdcl.lisp U trunk/thirdparty/iolib/src/sockets/address-arithmetic.lisp U trunk/thirdparty/iolib/src/sockets/address-predicates.lisp U trunk/thirdparty/iolib/src/sockets/address.lisp U trunk/thirdparty/iolib/src/sockets/base-sockets.lisp U trunk/thirdparty/iolib/src/sockets/bsd.lisp U trunk/thirdparty/iolib/src/sockets/common.lisp U trunk/thirdparty/iolib/src/sockets/conditions.lisp U trunk/thirdparty/iolib/src/sockets/config.lisp U trunk/thirdparty/iolib/src/sockets/dns/common.lisp U trunk/thirdparty/iolib/src/sockets/dns/conditions.lisp U trunk/thirdparty/iolib/src/sockets/dns/dynamic-buffer.lisp U trunk/thirdparty/iolib/src/sockets/dns/lookup.lisp U trunk/thirdparty/iolib/src/sockets/dns/message.lisp U trunk/thirdparty/iolib/src/sockets/dns/nameservers.lisp U trunk/thirdparty/iolib/src/sockets/dns/query.lisp U trunk/thirdparty/iolib/src/sockets/grovel.lisp U trunk/thirdparty/iolib/src/sockets/iface.lisp U trunk/thirdparty/iolib/src/sockets/make-socket.lisp U trunk/thirdparty/iolib/src/sockets/namedb/etc-files.lisp U trunk/thirdparty/iolib/src/sockets/namedb/file-monitor.lisp U trunk/thirdparty/iolib/src/sockets/namedb/hosts.lisp U trunk/thirdparty/iolib/src/sockets/namedb/protocols.lisp U trunk/thirdparty/iolib/src/sockets/namedb/services.lisp U trunk/thirdparty/iolib/src/sockets/pkgdcl.lisp U trunk/thirdparty/iolib/src/sockets/socket-methods.lisp U trunk/thirdparty/iolib/src/sockets/socket-options.lisp U trunk/thirdparty/iolib/src/sockets/trivial-sockets.lisp U trunk/thirdparty/iolib/src/sockets/wrappers.lisp U trunk/thirdparty/iolib/src/streams/gray/buffer.lisp U trunk/thirdparty/iolib/src/streams/gray/classes.lisp U trunk/thirdparty/iolib/src/streams/gray/conditions.lisp U trunk/thirdparty/iolib/src/streams/gray/fd-mixin.lisp U trunk/thirdparty/iolib/src/streams/gray/gray-stream-methods.lisp U trunk/thirdparty/iolib/src/streams/gray/pkgdcl.lisp U trunk/thirdparty/iolib/src/streams/zeta/conditions.lisp U trunk/thirdparty/iolib/src/streams/zeta/device.lisp U trunk/thirdparty/iolib/src/streams/zeta/ffi-functions-unix.lisp U trunk/thirdparty/iolib/src/streams/zeta/file-unix.lisp U trunk/thirdparty/iolib/src/streams/zeta/iobuf.lisp U trunk/thirdparty/iolib/src/streams/zeta/pkgdcl.lisp U trunk/thirdparty/iolib/src/streams/zeta/stream.lisp U trunk/thirdparty/iolib/src/streams/zeta/types.lisp U trunk/thirdparty/iolib/src/syscalls/conditions.lisp U trunk/thirdparty/iolib/src/syscalls/designators.lisp U trunk/thirdparty/iolib/src/syscalls/early.lisp U trunk/thirdparty/iolib/src/syscalls/ffi-functions-unix.lisp U trunk/thirdparty/iolib/src/syscalls/ffi-types-unix.lisp U trunk/thirdparty/iolib/src/syscalls/ffi-wrappers-unix.lisp U trunk/thirdparty/iolib/src/syscalls/os-conditions-unix.lisp U trunk/thirdparty/iolib/src/syscalls/pkgdcl.lisp U trunk/thirdparty/iolib/src/syscalls/unix-syscall-path-strings.lisp U trunk/thirdparty/iolib/tests/base.lisp U trunk/thirdparty/iolib/tests/defsuites.lisp U trunk/thirdparty/iolib/tests/events.lisp U trunk/thirdparty/iolib/tests/file-paths-unix.lisp U trunk/thirdparty/iolib/tests/iolib-tests.asd U trunk/thirdparty/iolib/tests/pkgdcl.lisp U trunk/thirdparty/iolib/tests/sockets.lisp U trunk/thirdparty/iolib/tests/streams.lisp Change set too large, please see URL above From bknr at bknr.net Mon Jun 14 05:46:47 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 07:46:47 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/ Message-ID: Revision: 4556 Author: hans URL: http://bknr.net/trac/changeset/4556 add missing files in cffi, iolib. update babel from upstream U trunk/thirdparty/babel/NOTES A trunk/thirdparty/babel/_darcs/index_invalid A trunk/thirdparty/babel/_darcs/inventories/20080609012936-28748-f11ead3c1bbdd50726ba99b44afebf1c55f5315a.gz U trunk/thirdparty/babel/_darcs/inventory A trunk/thirdparty/babel/_darcs/patches/20080418142943-6b9e8-b8108b89b16a83ef699c56b19faf5ad3bf67753e.gz A trunk/thirdparty/babel/_darcs/patches/20080521170815-6b9e8-08b60b07634a0647ebdff227b02d0adc590d3ffa.gz A trunk/thirdparty/babel/_darcs/patches/20080525081351-6b9e8-f022866ae6f4defde87a2617851bf1e2a2ca41db.gz A trunk/thirdparty/babel/_darcs/patches/20080525104208-6b9e8-d68c6b685f23c698bb9a35d110dbba82d52a2386.gz A trunk/thirdparty/babel/_darcs/patches/20080609012843-28748-184b13651f6fedc41843a85fe64ea312beefadef.gz A trunk/thirdparty/babel/_darcs/patches/20080609012929-28748-8831262a6f5022bb693a97a526efd5b7fd799c12.gz A trunk/thirdparty/babel/_darcs/patches/20080609012936-28748-f11ead3c1bbdd50726ba99b44afebf1c55f5315a.gz A trunk/thirdparty/babel/_darcs/patches/20080624140030-6b9e8-7cc7468550fdedf93a0f6a263ed9d6286244c730.gz A trunk/thirdparty/babel/_darcs/patches/20080624150857-6b9e8-0e3f03522b9dfc1f781d7ade5444f07d41d3a074.gz A trunk/thirdparty/babel/_darcs/patches/20080624151044-28748-d6734b29bc2f5ad5ef370b1d4170088ce48eabee.gz A trunk/thirdparty/babel/_darcs/patches/20080624151323-28748-5dccc10a43225b97b96b41055ff0f65571b93f53.gz A trunk/thirdparty/babel/_darcs/patches/20080624151807-28748-dd9293f52bfff2cc62aa7d378c0889ad2984b189.gz A trunk/thirdparty/babel/_darcs/patches/20080624152835-6b9e8-52a33def8762ce68dad1a8ea5404c1ae58d0fdce.gz A trunk/thirdparty/babel/_darcs/patches/20080728223819-28748-3c2639d4c68174b253b38f3df3937f36728c5d45.gz A trunk/thirdparty/babel/_darcs/patches/20080729032101-28748-e58e641ff24a6c06a35d07ab9bf4b08cd190bf56.gz A trunk/thirdparty/babel/_darcs/patches/20080729032137-28748-91a4c21f04cd50d865251e46fef0a5203767e3ea.gz A trunk/thirdparty/babel/_darcs/patches/20080729032141-28748-f70ae1fc167f08ddf8cd4e67533e2c86a4757ae8.gz A trunk/thirdparty/babel/_darcs/patches/20080827220838-6b9e8-2b84681d7d4b3b24755329a1530ecf99452cdb46.gz A trunk/thirdparty/babel/_darcs/patches/20080907183059-6b9e8-e0ec051894867e520105551b72d60882eff4b75d.gz A trunk/thirdparty/babel/_darcs/patches/20080908134347-6b9e8-cff5179e17bb757043d68662b4086264010697da.gz A trunk/thirdparty/babel/_darcs/patches/20080909125047-6b9e8-5ab56f2d03438df21da62b133eaad7b840c7b39d.gz A trunk/thirdparty/babel/_darcs/patches/20080909173653-6b9e8-4cd3804909da3237c51dc18a9450c7377d8e87a2.gz A trunk/thirdparty/babel/_darcs/patches/20080909173751-6b9e8-be066a2c4201fc9124ace0d17a091a8a401983a0.gz A trunk/thirdparty/babel/_darcs/patches/20080909193418-6b9e8-a0c3e7836e3d5fed0dc6d6f1ba13efd015ee4260.gz A trunk/thirdparty/babel/_darcs/patches/20080919171853-6b9e8-071ee6d2ddb0b27225392623a1d10de34bdad5ea.gz A trunk/thirdparty/babel/_darcs/patches/20080920151529-6b9e8-9a2f628348a51d4e42ac7eaf163babfec607efca.gz A trunk/thirdparty/babel/_darcs/patches/20080920151535-6b9e8-1d9e8cc61c4af2e411284dd2fa6486cb663a7804.gz A trunk/thirdparty/babel/_darcs/patches/20080926123742-6b9e8-017883f5b8839b05089966107a8b7fb395301387.gz A trunk/thirdparty/babel/_darcs/patches/20080926200528-28748-f221b4877a10aa242f6e77a9779f905c17865b84.gz A trunk/thirdparty/babel/_darcs/patches/20080926203949-6b9e8-23a67a1654571239511484182ccb1d0625ceddf9.gz A trunk/thirdparty/babel/_darcs/patches/20081016172711-6b9e8-6bc06cabf960a075f31bdd97c3cdcbd3646d9e93.gz A trunk/thirdparty/babel/_darcs/patches/20081124205455-6b9e8-681bf983fbddfc3d66600c783be62f6ce369bed1.gz A trunk/thirdparty/babel/_darcs/patches/20081125193921-6b9e8-eb72549767d3b2072ebfea40019cfe53c1ffa665.gz A trunk/thirdparty/babel/_darcs/patches/20081207232006-6b9e8-89a0a36cbd89feeba543dce3cb01de3730453be3.gz A trunk/thirdparty/babel/_darcs/patches/20081208173643-6b9e8-f0be4b095498db69232627b5e18d1275fec6c291.gz A trunk/thirdparty/babel/_darcs/patches/20090316234347-28748-5816a24638b364564b006316f5a0ab9c52b91819.gz A trunk/thirdparty/babel/_darcs/patches/20090425165120-28748-4e618b67b3329f5290f3c8136e5fd03e4db24399.gz A trunk/thirdparty/babel/_darcs/patches/20090425165739-28748-999cecabe596993fe1a2606b3f5a2056713b668e.gz A trunk/thirdparty/babel/_darcs/patches/20090425170209-28748-a3f1502bde7c2197e22647cc69a5c784b8c8527d.gz A trunk/thirdparty/babel/_darcs/patches/20090515184829-6b9e8-bddeff98513432fba190859e602b76227825c814.gz A trunk/thirdparty/babel/_darcs/patches/20090601215956-28748-d9aafc673267f420f7c7be3285c316331e6801c6.gz A trunk/thirdparty/babel/_darcs/patches/20091203221023-28748-f9b5e8d2e3dca413c360fa03ab9b4302d548fbcb.gz A trunk/thirdparty/babel/_darcs/patches/20091203221213-28748-1cfe88202aecee7931cedee249fadf8c9f53c9a1.gz A trunk/thirdparty/babel/_darcs/patches/20091203224600-28748-203fc157d62c062188819f89c30f66fdb6b9f2bf.gz A trunk/thirdparty/babel/_darcs/patches/20091203233127-28748-de97a3ae8e9d03a2ffdba89d95f95431529226c5.gz A trunk/thirdparty/babel/_darcs/patches/20091205172758-28748-b0ef709ffe5bcabcfcbd10e81e0f9e8457ee8b23.gz A trunk/thirdparty/babel/_darcs/patches/20091205172953-28748-c7c4b616105f828dca26859c9d3fe7c1ae61edd7.gz A trunk/thirdparty/babel/_darcs/patches/20091229211505-b13eb-42858677f7aa47ef12e3af948089109741fbf886.gz A trunk/thirdparty/babel/_darcs/patches/pending A trunk/thirdparty/babel/_darcs/patches/pending.tentative U trunk/thirdparty/babel/_darcs/pristine/NOTES U trunk/thirdparty/babel/_darcs/pristine/babel-tests.asd U trunk/thirdparty/babel/_darcs/pristine/babel.asd U trunk/thirdparty/babel/_darcs/pristine/doc/Makefile A trunk/thirdparty/babel/_darcs/pristine/scripts/ A trunk/thirdparty/babel/_darcs/pristine/scripts/release.sh A trunk/thirdparty/babel/_darcs/pristine/src/enc-cp1251.lisp U trunk/thirdparty/babel/_darcs/pristine/src/enc-ebcdic.lisp A trunk/thirdparty/babel/_darcs/pristine/src/enc-jpn.lisp U trunk/thirdparty/babel/_darcs/pristine/src/enc-unicode.lisp U trunk/thirdparty/babel/_darcs/pristine/src/encodings.lisp U trunk/thirdparty/babel/_darcs/pristine/src/external-format.lisp A trunk/thirdparty/babel/_darcs/pristine/src/jpn-table.lisp U trunk/thirdparty/babel/_darcs/pristine/src/packages.lisp U trunk/thirdparty/babel/_darcs/pristine/src/sharp-backslash.lisp U trunk/thirdparty/babel/_darcs/pristine/src/streams.lisp U trunk/thirdparty/babel/_darcs/pristine/src/strings.lisp U trunk/thirdparty/babel/_darcs/pristine/tests/tests.lisp A trunk/thirdparty/babel/_darcs/tentative_pristine U trunk/thirdparty/babel/babel-tests.asd U trunk/thirdparty/babel/babel.asd U trunk/thirdparty/babel/doc/Makefile A trunk/thirdparty/babel/scripts/ A trunk/thirdparty/babel/scripts/release.sh A trunk/thirdparty/babel/src/enc-cp1251.lisp U trunk/thirdparty/babel/src/enc-ebcdic.lisp A trunk/thirdparty/babel/src/enc-jpn.lisp U trunk/thirdparty/babel/src/enc-unicode.lisp U trunk/thirdparty/babel/src/encodings.lisp U trunk/thirdparty/babel/src/external-format.lisp A trunk/thirdparty/babel/src/jpn-table.lisp U trunk/thirdparty/babel/src/packages.lisp U trunk/thirdparty/babel/src/sharp-backslash.lisp U trunk/thirdparty/babel/src/streams.lisp U trunk/thirdparty/babel/src/strings.lisp U trunk/thirdparty/babel/tests/tests.lisp A trunk/thirdparty/cffi/_darcs/index_invalid A trunk/thirdparty/cffi/_darcs/patches/0000000211-0020bfd9d3ed2d102754580ebeac2abdf7c1b1db35fd888fc96c8800b6733984 A trunk/thirdparty/cffi/_darcs/patches/0000000310-0793ec88be0e9b74c52be612396e0860a76e8a7925ac06931d5f3f4d32b7494a A trunk/thirdparty/cffi/_darcs/patches/0000000320-4a98243e0cae8c223d6e38b50ccd30e94fd40d7d690ea05126a933b99e8745f7 A trunk/thirdparty/cffi/_darcs/patches/0000000398-f8846670e9270cf346b5bc94a3c4e4b13fc349dddebfb39cca197bdc0a86a6a1 A trunk/thirdparty/cffi/_darcs/patches/0000000609-6de21dd0611a894f228243bf79fc12fcc6a813658b941bcf2edf8f61cbfdd1f5 A trunk/thirdparty/cffi/_darcs/patches/0000000652-876fb0639d9e8bad95840fe10a79ba3722839ab6bf8e72227565762702a2857c A trunk/thirdparty/cffi/_darcs/patches/0000000966-2bb035a46280af24298d0de5410294655b28b4cfc5f31cd70ef42b6ce049b79e A trunk/thirdparty/cffi/_darcs/patches/0000001082-49f868d592ca1507b79aa2dc2e8a1ba661ad01aecac19c7d022ca1cc95949731 A trunk/thirdparty/cffi/_darcs/patches/0000001629-0f474be5703e213d5fba93cceed4f801fbb940a9055661dd7b14963973f3fdd5 A trunk/thirdparty/cffi/_darcs/patches/0000003253-afc2cc8c671c2dfb563dc963c56fcb7ea7c8ef1774cb64ee6c4c5416c16e913f A trunk/thirdparty/cffi/_darcs/patches/0000003263-4668241e30e1703e8d123cadafafadc299012347d6d20b2fbe77f7785eea30ab A trunk/thirdparty/cffi/_darcs/patches/20100219173353-99d9c-fb79f7de40422ec279e152492f9b890c92cfa79c.gz A trunk/thirdparty/cffi/_darcs/patches/20100421091956-9aaaf-c27007ad87f275da023fdf0dae1cd67910d9e049.gz A trunk/thirdparty/cffi/_darcs/patches/20100425122443-28748-fbd7e918ac44262b8f8fffc5612bcfc424fbbbc7.gz A trunk/thirdparty/cffi/_darcs/patches/20100425223748-28748-fbe9c2b720b58333dc443f345bbfad4be3af7aad.gz A trunk/thirdparty/cffi/_darcs/patches/20100425223914-28748-041c30268b4e27f9821f89e74b88fd72763973d7.gz A trunk/thirdparty/cffi/_darcs/patches/20100425225004-28748-cbe24c007a89c7017f6f860e6283b1a1fbeb2d8b.gz A trunk/thirdparty/cffi/_darcs/patches/20100425230219-28748-1c8ae25da74cd66d03dd3f31179fea247a79d9a4.gz A trunk/thirdparty/cffi/_darcs/patches/20100425231232-28748-c8a44f7fbd2c75f5f13651efa97ada0605ceed6a.gz A trunk/thirdparty/cffi/_darcs/patches/20100428224243-28748-68930bfefa452fe3754298a006c008e884b358ac.gz A trunk/thirdparty/cffi/_darcs/patches/20100428225337-28748-4f3443da945bfd0a964f8b7222bc7970995ae460.gz A trunk/thirdparty/cffi/_darcs/patches/20100428225604-28748-6c59d3671c5a29f402df9f552da61bee17a6e606.gz D trunk/thirdparty/cffi/_darcs/tentative_inventory A trunk/thirdparty/iolib/.git/FETCH_HEAD A trunk/thirdparty/iolib/.git/ORIG_HEAD A trunk/thirdparty/iolib/.git/logs/refs/remotes/origin/abnf-ppcre A trunk/thirdparty/iolib/.git/logs/refs/remotes/origin/cc A trunk/thirdparty/iolib/.git/logs/refs/remotes/origin/master A trunk/thirdparty/iolib/.git/logs/refs/remotes/origin/socket-connected-p A trunk/thirdparty/iolib/.git/logs/refs/remotes/origin/tls A trunk/thirdparty/iolib/.git/objects/pack/pack-7150ca364ec12d96d687d5f6f60a6a967553d5ab.idx A trunk/thirdparty/iolib/.git/objects/pack/pack-7150ca364ec12d96d687d5f6f60a6a967553d5ab.pack A trunk/thirdparty/iolib/.git/refs/remotes/origin/abnf-ppcre A trunk/thirdparty/iolib/.git/refs/remotes/origin/cc A trunk/thirdparty/iolib/.git/refs/remotes/origin/master A trunk/thirdparty/iolib/.git/refs/remotes/origin/socket-connected-p A trunk/thirdparty/iolib/.git/refs/remotes/origin/tls A trunk/thirdparty/iolib/.gitconfig A trunk/thirdparty/iolib/examples/Makefile A trunk/thirdparty/iolib/examples/README A trunk/thirdparty/iolib/examples/ex1-client.lisp A trunk/thirdparty/iolib/examples/ex1-server.lisp A trunk/thirdparty/iolib/examples/ex2-client.lisp A trunk/thirdparty/iolib/examples/ex2-server.lisp A trunk/thirdparty/iolib/examples/ex3-client.lisp A trunk/thirdparty/iolib/examples/ex3-server.lisp A trunk/thirdparty/iolib/examples/ex4-client.lisp A trunk/thirdparty/iolib/examples/ex4-server.lisp A trunk/thirdparty/iolib/examples/ex5-server.lisp A trunk/thirdparty/iolib/examples/ex5a-client.lisp A trunk/thirdparty/iolib/examples/ex5b-client.lisp A trunk/thirdparty/iolib/examples/ex6-server.lisp A trunk/thirdparty/iolib/examples/ex7-buffer.lisp A trunk/thirdparty/iolib/examples/ex7-server.lisp A trunk/thirdparty/iolib/examples/ex8-buffer.lisp A trunk/thirdparty/iolib/examples/ex8-server.lisp A trunk/thirdparty/iolib/examples/gen-tutorial A trunk/thirdparty/iolib/examples/iolib.examples.asd A trunk/thirdparty/iolib/examples/package.lisp A trunk/thirdparty/iolib/examples/tutorial A trunk/thirdparty/iolib/examples/tutorial.tmpl A trunk/thirdparty/iolib/src/base/asdf.lisp A trunk/thirdparty/iolib/src/os/create-process-unix.lisp A trunk/thirdparty/iolib/src/os/ffi-functions-unix.lisp A trunk/thirdparty/iolib/src/os/ffi-types-unix.lisp A trunk/thirdparty/iolib/src/streams/gray/io-helpers.lisp Change set too large, please see URL above From bknr at bknr.net Mon Jun 14 06:28:43 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 08:28:43 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/alexandria/ Message-ID: Revision: 4557 Author: hans URL: http://bknr.net/trac/changeset/4557 update alexandria from upstream A trunk/thirdparty/alexandria/_darcs/index_invalid U trunk/thirdparty/alexandria/_darcs/inventory A trunk/thirdparty/alexandria/_darcs/patches/20081027140214-6b9e8-18aa7beaf4f1e2c54514b21255956a02834337dd.gz A trunk/thirdparty/alexandria/_darcs/patches/20081116174909-6b9e8-995941a3a687a0e9cef56a51b7dddcf56fb1df23.gz A trunk/thirdparty/alexandria/_darcs/patches/20081123111647-6b9e8-3b4498d4af12c4f92fd192680f2395151dc88509.gz A trunk/thirdparty/alexandria/_darcs/patches/20081123114716-6b9e8-ce608295ef029e5b16be5c65c0fde9fc98d0adc2.gz A trunk/thirdparty/alexandria/_darcs/patches/20081123120049-6b9e8-453159bef6273439aa59f6a13d8ac2cafa2cf32f.gz A trunk/thirdparty/alexandria/_darcs/patches/20081205131249-6b9e8-1efb1845fbfebbce44380392686a00d36bded7b8.gz A trunk/thirdparty/alexandria/_darcs/patches/20090324095758-6b9e8-8f87e12092ff11d8a5e1efb555e31d1d7457d30c.gz A trunk/thirdparty/alexandria/_darcs/patches/20090916132720-5f800-0dfe352d7e93ab996b4a56be4899ccd9ec3fa172.gz A trunk/thirdparty/alexandria/_darcs/patches/20090928201318-6b9e8-fd145391c004f33ca1298c32502925932442382e.gz A trunk/thirdparty/alexandria/_darcs/patches/20090928210526-6b9e8-733acd6e3af46f8ebde218bd3143d918c5115c47.gz A trunk/thirdparty/alexandria/_darcs/patches/20090928210647-6b9e8-f854892d750c44399b61fb2ea02ce8631273fa3e.gz A trunk/thirdparty/alexandria/_darcs/patches/20091009191235-153d5-94a47074910961641b16388c204fdd692ad7c5c9.gz A trunk/thirdparty/alexandria/_darcs/patches/20091030172411-6b9e8-c7d451c301a419311871daa7ef04ceaad27d4600.gz A trunk/thirdparty/alexandria/_darcs/patches/20091030172903-6b9e8-9ad88bd88fd5036e81ff992a5fa0acc7a287ad6b.gz A trunk/thirdparty/alexandria/_darcs/patches/20091101151643-455be-1922e506cf428d51772daab3869fea45396f69f6.gz A trunk/thirdparty/alexandria/_darcs/patches/20091125125004-6b9e8-a23304d023626c0e06fd6c6377a8594f0b12025e.gz A trunk/thirdparty/alexandria/_darcs/patches/20091125125014-6b9e8-7a8bab582b65f3cd160011b95aefbd10af9b59c9.gz A trunk/thirdparty/alexandria/_darcs/patches/20091204113405-6b9e8-79867986b095f074b608b36abcbe147e8e2aa56f.gz A trunk/thirdparty/alexandria/_darcs/patches/20100109201509-6b9e8-24edd8af4935c82afe4f31d9bdc9477181770ebd.gz A trunk/thirdparty/alexandria/_darcs/patches/20100212105421-6b9e8-5afb4ae607887a52b0fbc48ad2cf2e8591a15d14.gz A trunk/thirdparty/alexandria/_darcs/patches/20100212112314-6b9e8-0464bb70c7942018dd520906a127e103f5cc443b.gz A trunk/thirdparty/alexandria/_darcs/patches/20100212113256-6b9e8-f1502c9d7cf7277c9b175619f19c9bc745be4471.gz A trunk/thirdparty/alexandria/_darcs/patches/20100217140614-6b9e8-e7c2389f737b7cc839174269b64e4b93941675db.gz A trunk/thirdparty/alexandria/_darcs/patches/20100217140704-6b9e8-b62f0d7c3bbda3e18f329785b776919c2f07f2c4.gz U trunk/thirdparty/alexandria/_darcs/patches/pending A trunk/thirdparty/alexandria/_darcs/patches/pending.tentative U trunk/thirdparty/alexandria/_darcs/pristine/alexandria.asd U trunk/thirdparty/alexandria/_darcs/pristine/functions.lisp U trunk/thirdparty/alexandria/_darcs/pristine/io.lisp U trunk/thirdparty/alexandria/_darcs/pristine/lists.lisp U trunk/thirdparty/alexandria/_darcs/pristine/macros.lisp U trunk/thirdparty/alexandria/_darcs/pristine/numbers.lisp U trunk/thirdparty/alexandria/_darcs/pristine/package.lisp U trunk/thirdparty/alexandria/_darcs/pristine/sequences.lisp U trunk/thirdparty/alexandria/_darcs/pristine/tests.lisp A trunk/thirdparty/alexandria/_darcs/tentative_pristine U trunk/thirdparty/alexandria/alexandria.asd U trunk/thirdparty/alexandria/functions.lisp U trunk/thirdparty/alexandria/io.lisp U trunk/thirdparty/alexandria/lists.lisp U trunk/thirdparty/alexandria/macros.lisp U trunk/thirdparty/alexandria/numbers.lisp U trunk/thirdparty/alexandria/package.lisp U trunk/thirdparty/alexandria/sequences.lisp U trunk/thirdparty/alexandria/tests.lisp Change set too large, please see URL above From bknr at bknr.net Mon Jun 14 06:36:32 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 08:36:32 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/alexandria/ Message-ID: Revision: 4558 Author: hans URL: http://bknr.net/trac/changeset/4558 updating alexandria D trunk/thirdparty/alexandria/ From bknr at bknr.net Mon Jun 14 06:36:57 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 08:36:57 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/alexandria/ Message-ID: Revision: 4559 Author: hans URL: http://bknr.net/trac/changeset/4559 update alexandria from upstream git A trunk/thirdparty/alexandria/ A trunk/thirdparty/alexandria/.boring A trunk/thirdparty/alexandria/.git/ A trunk/thirdparty/alexandria/.git/HEAD A trunk/thirdparty/alexandria/.git/branches/ A trunk/thirdparty/alexandria/.git/config A trunk/thirdparty/alexandria/.git/description A trunk/thirdparty/alexandria/.git/hooks/ A trunk/thirdparty/alexandria/.git/hooks/applypatch-msg.sample A trunk/thirdparty/alexandria/.git/hooks/commit-msg.sample A trunk/thirdparty/alexandria/.git/hooks/post-commit.sample A trunk/thirdparty/alexandria/.git/hooks/post-receive.sample A trunk/thirdparty/alexandria/.git/hooks/post-update.sample A trunk/thirdparty/alexandria/.git/hooks/pre-applypatch.sample A trunk/thirdparty/alexandria/.git/hooks/pre-commit.sample A trunk/thirdparty/alexandria/.git/hooks/pre-rebase.sample A trunk/thirdparty/alexandria/.git/hooks/prepare-commit-msg.sample A trunk/thirdparty/alexandria/.git/hooks/update.sample A trunk/thirdparty/alexandria/.git/index A trunk/thirdparty/alexandria/.git/info/ A trunk/thirdparty/alexandria/.git/info/exclude A trunk/thirdparty/alexandria/.git/logs/ A trunk/thirdparty/alexandria/.git/logs/HEAD A trunk/thirdparty/alexandria/.git/logs/refs/ A trunk/thirdparty/alexandria/.git/logs/refs/heads/ A trunk/thirdparty/alexandria/.git/logs/refs/heads/master A trunk/thirdparty/alexandria/.git/logs/refs/remotes/ A trunk/thirdparty/alexandria/.git/logs/refs/remotes/origin/ A trunk/thirdparty/alexandria/.git/logs/refs/remotes/origin/HEAD A trunk/thirdparty/alexandria/.git/objects/ A trunk/thirdparty/alexandria/.git/objects/info/ A trunk/thirdparty/alexandria/.git/objects/pack/ A trunk/thirdparty/alexandria/.git/objects/pack/pack-ade3ac66a7748574dbc3143b05dab3a982452da1.idx A trunk/thirdparty/alexandria/.git/objects/pack/pack-ade3ac66a7748574dbc3143b05dab3a982452da1.pack A trunk/thirdparty/alexandria/.git/packed-refs A trunk/thirdparty/alexandria/.git/refs/ A trunk/thirdparty/alexandria/.git/refs/heads/ A trunk/thirdparty/alexandria/.git/refs/heads/master A trunk/thirdparty/alexandria/.git/refs/remotes/ A trunk/thirdparty/alexandria/.git/refs/remotes/origin/ A trunk/thirdparty/alexandria/.git/refs/remotes/origin/HEAD A trunk/thirdparty/alexandria/.git/refs/tags/ A trunk/thirdparty/alexandria/AUTHORS A trunk/thirdparty/alexandria/LICENCE A trunk/thirdparty/alexandria/README A trunk/thirdparty/alexandria/alexandria-tests.asd A trunk/thirdparty/alexandria/alexandria.asd A trunk/thirdparty/alexandria/arrays.lisp A trunk/thirdparty/alexandria/binding.lisp A trunk/thirdparty/alexandria/conditions.lisp A trunk/thirdparty/alexandria/control-flow.lisp A trunk/thirdparty/alexandria/definitions.lisp A trunk/thirdparty/alexandria/doc/ A trunk/thirdparty/alexandria/doc/Makefile A trunk/thirdparty/alexandria/doc/alexandria.texinfo A trunk/thirdparty/alexandria/doc/docstrings.lisp A trunk/thirdparty/alexandria/features.lisp A trunk/thirdparty/alexandria/functions.lisp A trunk/thirdparty/alexandria/hash-tables.lisp A trunk/thirdparty/alexandria/io.lisp A trunk/thirdparty/alexandria/lists.lisp A trunk/thirdparty/alexandria/macros.lisp A trunk/thirdparty/alexandria/numbers.lisp A trunk/thirdparty/alexandria/package.lisp A trunk/thirdparty/alexandria/sequences.lisp A trunk/thirdparty/alexandria/strings.lisp A trunk/thirdparty/alexandria/symbols.lisp A trunk/thirdparty/alexandria/tests.lisp A trunk/thirdparty/alexandria/types.lisp Change set too large, please see URL above From bknr at bknr.net Mon Jun 14 06:51:53 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 08:51:53 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/a Message-ID: Revision: 4560 Author: hans URL: http://bknr.net/trac/changeset/4560 updating asdf U trunk/thirdparty/alexandria/.git/index U trunk/thirdparty/alexandria/.git/logs/HEAD U trunk/thirdparty/alexandria/.git/logs/refs/heads/master U trunk/thirdparty/alexandria/.git/refs/heads/master U trunk/thirdparty/alexandria/types.lisp D trunk/thirdparty/asdf/ Modified: trunk/thirdparty/alexandria/.git/index =================================================================== (Binary files differ) Modified: trunk/thirdparty/alexandria/.git/logs/HEAD =================================================================== --- trunk/thirdparty/alexandria/.git/logs/HEAD 2010-06-14 06:36:57 UTC (rev 4559) +++ trunk/thirdparty/alexandria/.git/logs/HEAD 2010-06-14 06:51:53 UTC (rev 4560) @@ -1 +1,2 @@ 0000000000000000000000000000000000000000 a5d7ec2a97cc0b0f45a17298d781665fd6d19bb8 Hans Huebner 1276496273 +0200 clone: from git://common-lisp.net/projects/alexandria/alexandria.git +a5d7ec2a97cc0b0f45a17298d781665fd6d19bb8 0c53e15bd6b43e77970dd2dd8b79fbd3c80aabbf Hans Huebner 1276496560 +0200 commit: Modify CDR5 type generation macro to work with lower-case symbols for Modified: trunk/thirdparty/alexandria/.git/logs/refs/heads/master =================================================================== --- trunk/thirdparty/alexandria/.git/logs/refs/heads/master 2010-06-14 06:36:57 UTC (rev 4559) +++ trunk/thirdparty/alexandria/.git/logs/refs/heads/master 2010-06-14 06:51:53 UTC (rev 4560) @@ -1 +1,2 @@ 0000000000000000000000000000000000000000 a5d7ec2a97cc0b0f45a17298d781665fd6d19bb8 Hans Huebner 1276496273 +0200 clone: from git://common-lisp.net/projects/alexandria/alexandria.git +a5d7ec2a97cc0b0f45a17298d781665fd6d19bb8 0c53e15bd6b43e77970dd2dd8b79fbd3c80aabbf Hans Huebner 1276496560 +0200 commit: Modify CDR5 type generation macro to work with lower-case symbols for Modified: trunk/thirdparty/alexandria/.git/refs/heads/master =================================================================== --- trunk/thirdparty/alexandria/.git/refs/heads/master 2010-06-14 06:36:57 UTC (rev 4559) +++ trunk/thirdparty/alexandria/.git/refs/heads/master 2010-06-14 06:51:53 UTC (rev 4560) @@ -1 +1 @@ -a5d7ec2a97cc0b0f45a17298d781665fd6d19bb8 +0c53e15bd6b43e77970dd2dd8b79fbd3c80aabbf Modified: trunk/thirdparty/alexandria/types.lisp =================================================================== --- trunk/thirdparty/alexandria/types.lisp 2010-06-14 06:36:57 UTC (rev 4559) +++ trunk/thirdparty/alexandria/types.lisp 2010-06-14 06:51:53 UTC (rev 4560) @@ -18,9 +18,10 @@ ((frob (type &optional (base-type type)) (let ((subtype-names (list)) (predicate-names (list))) - (flet ((make-subtype-name (format-control) - (let ((result (format-symbol :alexandria format-control - (symbol-name type)))) + (flet ((make-subtype-name (prefix) + (let ((result (format-symbol :alexandria + "~A-~A" + prefix (symbol-name type)))) (push result subtype-names) result)) (make-predicate-name (sybtype-name) @@ -34,10 +35,10 @@ type (if (equal range-beg ''*) inf (ensure-car range-beg)) (if (equal range-end ''*) inf (ensure-car range-end)))))) - (let* ((negative-name (make-subtype-name "NEGATIVE-~A")) - (non-positive-name (make-subtype-name "NON-POSITIVE-~A")) - (non-negative-name (make-subtype-name "NON-NEGATIVE-~A")) - (positive-name (make-subtype-name "POSITIVE-~A")) + (let* ((negative-name (make-subtype-name '#:negative)) + (non-positive-name (make-subtype-name '#:non-positive)) + (non-negative-name (make-subtype-name '#:non-negative)) + (positive-name (make-subtype-name '#:positive)) (negative-p-name (make-predicate-name negative-name)) (non-positive-p-name (make-predicate-name non-positive-name)) (non-negative-p-name (make-predicate-name non-negative-name)) From bknr at bknr.net Mon Jun 14 06:52:14 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 08:52:14 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/asdf/ Message-ID: Revision: 4561 Author: hans URL: http://bknr.net/trac/changeset/4561 updated asdf A trunk/thirdparty/asdf/ A trunk/thirdparty/asdf/.git/ A trunk/thirdparty/asdf/.git/HEAD A trunk/thirdparty/asdf/.git/branches/ A trunk/thirdparty/asdf/.git/config A trunk/thirdparty/asdf/.git/description A trunk/thirdparty/asdf/.git/hooks/ A trunk/thirdparty/asdf/.git/hooks/applypatch-msg.sample A trunk/thirdparty/asdf/.git/hooks/commit-msg.sample A trunk/thirdparty/asdf/.git/hooks/post-commit.sample A trunk/thirdparty/asdf/.git/hooks/post-receive.sample A trunk/thirdparty/asdf/.git/hooks/post-update.sample A trunk/thirdparty/asdf/.git/hooks/pre-applypatch.sample A trunk/thirdparty/asdf/.git/hooks/pre-commit.sample A trunk/thirdparty/asdf/.git/hooks/pre-rebase.sample A trunk/thirdparty/asdf/.git/hooks/prepare-commit-msg.sample A trunk/thirdparty/asdf/.git/hooks/update.sample A trunk/thirdparty/asdf/.git/index A trunk/thirdparty/asdf/.git/info/ A trunk/thirdparty/asdf/.git/info/exclude A trunk/thirdparty/asdf/.git/logs/ A trunk/thirdparty/asdf/.git/logs/HEAD A trunk/thirdparty/asdf/.git/logs/refs/ A trunk/thirdparty/asdf/.git/logs/refs/heads/ A trunk/thirdparty/asdf/.git/logs/refs/heads/master A trunk/thirdparty/asdf/.git/logs/refs/remotes/ A trunk/thirdparty/asdf/.git/logs/refs/remotes/origin/ A trunk/thirdparty/asdf/.git/logs/refs/remotes/origin/HEAD A trunk/thirdparty/asdf/.git/objects/ A trunk/thirdparty/asdf/.git/objects/info/ A trunk/thirdparty/asdf/.git/objects/pack/ A trunk/thirdparty/asdf/.git/objects/pack/pack-9c229bd31515459ede67e5cf67f41aace4d3ee87.idx A trunk/thirdparty/asdf/.git/objects/pack/pack-9c229bd31515459ede67e5cf67f41aace4d3ee87.pack A trunk/thirdparty/asdf/.git/packed-refs A trunk/thirdparty/asdf/.git/refs/ A trunk/thirdparty/asdf/.git/refs/heads/ A trunk/thirdparty/asdf/.git/refs/heads/master A trunk/thirdparty/asdf/.git/refs/remotes/ A trunk/thirdparty/asdf/.git/refs/remotes/origin/ A trunk/thirdparty/asdf/.git/refs/remotes/origin/HEAD A trunk/thirdparty/asdf/.git/refs/tags/ A trunk/thirdparty/asdf/.gitattributes A trunk/thirdparty/asdf/.gitignore A trunk/thirdparty/asdf/GNUmakefile A trunk/thirdparty/asdf/README A trunk/thirdparty/asdf/asdf-ecl.lisp A trunk/thirdparty/asdf/asdf.asd A trunk/thirdparty/asdf/asdf.lisp A trunk/thirdparty/asdf/bin/ A trunk/thirdparty/asdf/bin/asdf-version.sh A trunk/thirdparty/asdf/bin/build-tarball.sh A trunk/thirdparty/asdf/bin/bump-revision-and-tag.sh A trunk/thirdparty/asdf/bin/link-tarball.sh A trunk/thirdparty/asdf/bin/make-helper.lisp A trunk/thirdparty/asdf/bin/rsync-cp.sh A trunk/thirdparty/asdf/bin/tag-release.sh A trunk/thirdparty/asdf/build.xcvb A trunk/thirdparty/asdf/debian/ A trunk/thirdparty/asdf/debian/README.Debian A trunk/thirdparty/asdf/debian/changelog A trunk/thirdparty/asdf/debian/cl-asdf.postinst A trunk/thirdparty/asdf/debian/cl-cclan.postinst A trunk/thirdparty/asdf/debian/cl-cclan.prerm A trunk/thirdparty/asdf/debian/compat A trunk/thirdparty/asdf/debian/control A trunk/thirdparty/asdf/debian/copyright A trunk/thirdparty/asdf/debian/docs A trunk/thirdparty/asdf/debian/postinst A trunk/thirdparty/asdf/debian/rules A trunk/thirdparty/asdf/doc/ A trunk/thirdparty/asdf/doc/.htaccess A trunk/thirdparty/asdf/doc/Makefile A trunk/thirdparty/asdf/doc/asdf.texinfo A trunk/thirdparty/asdf/doc/cclan.png A trunk/thirdparty/asdf/doc/favicon.ico A trunk/thirdparty/asdf/doc/index.html A trunk/thirdparty/asdf/doc/lisp-logo120x80.png A trunk/thirdparty/asdf/doc/style.css A trunk/thirdparty/asdf/test/ A trunk/thirdparty/asdf/test/GNUmakefile A trunk/thirdparty/asdf/test/asdf-pathname-test.script A trunk/thirdparty/asdf/test/compile-asdf.lisp A trunk/thirdparty/asdf/test/dweinreb-tests.lisp A trunk/thirdparty/asdf/test/file1.lisp A trunk/thirdparty/asdf/test/file2.lisp A trunk/thirdparty/asdf/test/file3-only.asd A trunk/thirdparty/asdf/test/file3.lisp A trunk/thirdparty/asdf/test/file4.lisp A trunk/thirdparty/asdf/test/graveyard/ A trunk/thirdparty/asdf/test/graveyard/test-preferences-1.lisp A trunk/thirdparty/asdf/test/graveyard/test-preferences-1.script A trunk/thirdparty/asdf/test/graveyard/test-preferences-system-1.asd A trunk/thirdparty/asdf/test/graveyard/test-preferences-system-load.lisp A trunk/thirdparty/asdf/test/graveyard/test-preferences-system-test.lisp A trunk/thirdparty/asdf/test/graveyard/test6.script A trunk/thirdparty/asdf/test/graveyard/test7.script A trunk/thirdparty/asdf/test/in-progress.lisp A trunk/thirdparty/asdf/test/run-tests.sh A trunk/thirdparty/asdf/test/script-support.lisp A trunk/thirdparty/asdf/test/sources/ A trunk/thirdparty/asdf/test/sources/level1/ A trunk/thirdparty/asdf/test/sources/level1/file1.lisp A trunk/thirdparty/asdf/test/sources/level1/level2/ A trunk/thirdparty/asdf/test/sources/level1/level2/file2.lisp A trunk/thirdparty/asdf/test/static-and-serial.asd A trunk/thirdparty/asdf/test/test-configuration.script A trunk/thirdparty/asdf/test/test-force.asd A trunk/thirdparty/asdf/test/test-force.script A trunk/thirdparty/asdf/test/test-missing-lisp-file.asd A trunk/thirdparty/asdf/test/test-missing-lisp-file.script A trunk/thirdparty/asdf/test/test-module-depend.asd A trunk/thirdparty/asdf/test/test-module-depend.script A trunk/thirdparty/asdf/test/test-module-excessive-depend.asd A trunk/thirdparty/asdf/test/test-module-excessive-depend.script A trunk/thirdparty/asdf/test/test-module-pathnames.asd A trunk/thirdparty/asdf/test/test-module-pathnames.script A trunk/thirdparty/asdf/test/test-modules-serial.asd A trunk/thirdparty/asdf/test/test-modules.asd A trunk/thirdparty/asdf/test/test-nested-1.lisp A trunk/thirdparty/asdf/test/test-nested-components-1.asd A trunk/thirdparty/asdf/test/test-nested-components.script A trunk/thirdparty/asdf/test/test-package.asd A trunk/thirdparty/asdf/test/test-package.script A trunk/thirdparty/asdf/test/test-redundant-recompile.asd A trunk/thirdparty/asdf/test/test-redundant-recompile.script A trunk/thirdparty/asdf/test/test-retry-loading-component-1.script A trunk/thirdparty/asdf/test/test-samedir-modules.asd A trunk/thirdparty/asdf/test/test-samedir-modules.script A trunk/thirdparty/asdf/test/test-static-and-serial.script A trunk/thirdparty/asdf/test/test-tmp.cl A trunk/thirdparty/asdf/test/test-touch-system-1.script A trunk/thirdparty/asdf/test/test-touch-system-2.script A trunk/thirdparty/asdf/test/test-try-recompiling-1.script A trunk/thirdparty/asdf/test/test-utilities.script A trunk/thirdparty/asdf/test/test-version.script A trunk/thirdparty/asdf/test/test1.asd A trunk/thirdparty/asdf/test/test1.preferences A trunk/thirdparty/asdf/test/test1.script A trunk/thirdparty/asdf/test/test2.asd A trunk/thirdparty/asdf/test/test2.script A trunk/thirdparty/asdf/test/test2a.asd A trunk/thirdparty/asdf/test/test2b1.asd A trunk/thirdparty/asdf/test/test2b2.asd A trunk/thirdparty/asdf/test/test2b3.asd A trunk/thirdparty/asdf/test/test3.asd A trunk/thirdparty/asdf/test/test3.script A trunk/thirdparty/asdf/test/test4.script A trunk/thirdparty/asdf/test/test5.asd A trunk/thirdparty/asdf/test/test5.not-implemented A trunk/thirdparty/asdf/test/test8.script A trunk/thirdparty/asdf/test/test9-1.asd A trunk/thirdparty/asdf/test/test9-2.asd A trunk/thirdparty/asdf/test/test9.script A trunk/thirdparty/asdf/test/try-recompiling-1.asd A trunk/thirdparty/asdf/test/try-recompiling-1.lisp A trunk/thirdparty/asdf/test/try-reloading-1.asd A trunk/thirdparty/asdf/test/try-reloading-dependency.hidden A trunk/thirdparty/asdf/test/wild-module.asd A trunk/thirdparty/asdf/test/wild-module.script A trunk/thirdparty/asdf/wild-modules.lisp Change set too large, please see URL above From bknr at bknr.net Mon Jun 14 07:56:23 2010 From: bknr at bknr.net (BKNR Commits) Date: Mon, 14 Jun 2010 09:56:23 +0200 Subject: [bknr-cvs] hans changed trunk/thirdparty/alexandria/.git/ Message-ID: Revision: 4562 Author: hans URL: http://bknr.net/trac/changeset/4562 add patch to make alexandria work with mlisp A trunk/thirdparty/alexandria/.git/COMMIT_EDITMSG A trunk/thirdparty/alexandria/.git/objects/0c/ A trunk/thirdparty/alexandria/.git/objects/0c/53e15bd6b43e77970dd2dd8b79fbd3c80aabbf A trunk/thirdparty/alexandria/.git/objects/5b/ A trunk/thirdparty/alexandria/.git/objects/5b/f695b3921e91f403073c5a9ee84ef03a307031 A trunk/thirdparty/alexandria/.git/objects/71/ A trunk/thirdparty/alexandria/.git/objects/71/6efc89ebb16e96df49709f183f56278254254e Added: trunk/thirdparty/alexandria/.git/COMMIT_EDITMSG =================================================================== --- trunk/thirdparty/alexandria/.git/COMMIT_EDITMSG (rev 0) +++ trunk/thirdparty/alexandria/.git/COMMIT_EDITMSG 2010-06-14 07:56:22 UTC (rev 4562) @@ -0,0 +1,15 @@ +Modify CDR5 type generation macro to work with lower-case symbols for +those lisps that make the distinction. +# Please enter the commit message for your changes. Lines starting +# with '#' will be ignored, and an empty message aborts the commit. +# On branch master +# Changes to be committed: +# (use "git reset HEAD ..." to unstage) +# +# modified: types.lisp +# +# Untracked files: +# (use "git add ..." to include in what will be committed) +# +# .svn/ +# doc/.svn/ Added: trunk/thirdparty/alexandria/.git/objects/0c/53e15bd6b43e77970dd2dd8b79fbd3c80aabbf =================================================================== --- trunk/thirdparty/alexandria/.git/objects/0c/53e15bd6b43e77970dd2dd8b79fbd3c80aabbf (rev 0) +++ trunk/thirdparty/alexandria/.git/objects/0c/53e15bd6b43e77970dd2dd8b79fbd3c80aabbf 2010-06-14 07:56:22 UTC (rev 4562) @@ -0,0 +1,4 @@ +x???j? ?{?)?{??1j?R +?a/?? +~?w#???.!o_K????f??y]S)?S+D?\?V9iAV??Kn?Wh???"?????Xhk?*?Z?=w?o ?G??????Y?}f????R