Revision: 4682
Author: edi
URL: http://bknr.net/trac/changeset/4682
Prepare for 1.2.4 release
U trunk/thirdparty/drakma/CHANGELOG.txt
U trunk/thirdparty/drakma/conditions.lisp
U trunk/thirdparty/drakma/cookies.lisp
U trunk/thirdparty/drakma/doc/index.html
U trunk/thirdparty/drakma/drakma.asd
U trunk/thirdparty/drakma/packages.lisp
U trunk/thirdparty/drakma/read.lisp
U trunk/thirdparty/drakma/request.lisp
U trunk/thirdparty/drakma/specials.lisp
U trunk/thirdparty/drakma/util.lisp
Modified: trunk/thirdparty/drakma/CHANGELOG.txt
===================================================================
--- trunk/thirdparty/drakma/CHANGELOG.txt 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/CHANGELOG.txt 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,3 +1,5 @@
+Version 1.2.4
+2011-08-31
Make sure GET parameters are always URL-encoded
Add :RANGE keyword argument (Hans Hübner)
Better handling of optional filenames when uploading (Stas Boukarev)
Modified: trunk/thirdparty/drakma/conditions.lisp
===================================================================
--- trunk/thirdparty/drakma/conditions.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/conditions.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: ODD-STREAMS; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/odd-streams/conditions.lisp,v 1.5 2007/12/31 01:08:45 edi Exp $
-;;; Copyright (c) 2008-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2008-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Modified: trunk/thirdparty/drakma/cookies.lisp
===================================================================
--- trunk/thirdparty/drakma/cookies.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/cookies.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/cookies.lisp,v 1.15 2008/01/14 01:57:01 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Modified: trunk/thirdparty/drakma/doc/index.html
===================================================================
--- trunk/thirdparty/drakma/doc/index.html 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/doc/index.html 2011-08-31 13:46:19 UTC (rev 4682)
@@ -656,7 +656,7 @@
Drakma together with this documentation can be downloaded
from <a href="http://weitz.de/files/drakma.tar.gz">http://weitz.de/files/drakma.tar.gz</a>.
-The current version is 1.2.3. Drakma can be installed
+The current version is 1.2.4. Drakma can be installed
via <a href="http://www.cliki.net/asdf">ASDF</a> and depends on the
open source
libraries <a href="http://www.cliki.net/cl-base64">CL-BASE64</a> (use
Modified: trunk/thirdparty/drakma/drakma.asd
===================================================================
--- trunk/thirdparty/drakma/drakma.asd 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/drakma.asd 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/drakma.asd,v 1.49 2008/05/24 03:21:22 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
@@ -38,7 +38,7 @@
(in-package :drakma-asd)
-(defvar *drakma-version-string* "1.2.3"
+(defvar *drakma-version-string* "1.2.4"
"Drakma's version number as a string.")
;; we export its name so we can import it later
Modified: trunk/thirdparty/drakma/packages.lisp
===================================================================
--- trunk/thirdparty/drakma/packages.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/packages.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/packages.lisp,v 1.22 2008/01/14 01:57:01 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Modified: trunk/thirdparty/drakma/read.lisp
===================================================================
--- trunk/thirdparty/drakma/read.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/read.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/read.lisp,v 1.17 2008/05/25 11:35:20 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Modified: trunk/thirdparty/drakma/request.lisp
===================================================================
--- trunk/thirdparty/drakma/request.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/request.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/request.lisp,v 1.58 2008/05/30 11:30:45 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Modified: trunk/thirdparty/drakma/specials.lisp
===================================================================
--- trunk/thirdparty/drakma/specials.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/specials.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/specials.lisp,v 1.19 2008/01/14 01:57:02 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Modified: trunk/thirdparty/drakma/util.lisp
===================================================================
--- trunk/thirdparty/drakma/util.lisp 2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/util.lisp 2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/drakma/util.lisp,v 1.36 2008/05/30 11:30:45 edi Exp $
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz. All rights reserved.
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
Revision: 4680
Author: edi
URL: http://bknr.net/trac/changeset/4680
Cosmetics
U trunk/thirdparty/drakma/doc/index.html
U trunk/thirdparty/drakma/request.lisp
Modified: trunk/thirdparty/drakma/doc/index.html
===================================================================
--- trunk/thirdparty/drakma/doc/index.html 2011-08-31 12:11:24 UTC (rev 4679)
+++ trunk/thirdparty/drakma/doc/index.html 2011-08-31 12:23:17 UTC (rev 4680)
@@ -985,8 +985,8 @@
'Accept' header sent - the default is <code>"*/*"</code>.
<a class=none name="range"><code><i>range</i></code></a> optionally
specifies a subrange of the resource to be requested. It must be
-specified as list of two integers which indicate the start and
-(inclusive) end offset of the requested range, in bytes
+specified as a list of two integers which indicate the start and
+(inclusive) end offset of the requested range, in bytes (i.e. octets).
<p>
If <a class=none name="proxy"><code><i>proxy</i></code></a> is not <code>NIL</code>, it should be a
string denoting
Modified: trunk/thirdparty/drakma/request.lisp
===================================================================
--- trunk/thirdparty/drakma/request.lisp 2011-08-31 12:11:24 UTC (rev 4679)
+++ trunk/thirdparty/drakma/request.lisp 2011-08-31 12:23:17 UTC (rev 4680)
@@ -321,8 +321,9 @@
sent.
RANGE optionally specifies a subrange of the resource to be requested.
-It must be specified as list of two integers which indicate the start
-and (inclusive) end offset of the requested range, in bytes.
+It must be specified as a list of two integers which indicate the
+start and \(inclusive) end offset of the requested range, in bytes
+\(i.e. octets).
If PROXY is not NIL, it should be a string denoting a proxy
server through which the request should be sent. Or it can be a
Revision: 4678
Author: edi
URL: http://bknr.net/trac/changeset/4678
0.1.2 release
U trunk/thirdparty/cl-unicode/CHANGELOG.txt
U trunk/thirdparty/cl-unicode/build/dump.lisp
U trunk/thirdparty/cl-unicode/cl-unicode.asd
U trunk/thirdparty/cl-unicode/doc/index.html
Modified: trunk/thirdparty/cl-unicode/CHANGELOG.txt
===================================================================
--- trunk/thirdparty/cl-unicode/CHANGELOG.txt 2011-08-29 09:42:54 UTC (rev 4677)
+++ trunk/thirdparty/cl-unicode/CHANGELOG.txt 2011-08-31 12:09:56 UTC (rev 4678)
@@ -1,3 +1,5 @@
+Version 0.1.2
+2011-08-31
Make pathname creation conformant (thanks to Juan José Garcia-Ripoll)
Version 0.1.1
Modified: trunk/thirdparty/cl-unicode/build/dump.lisp
===================================================================
--- trunk/thirdparty/cl-unicode/build/dump.lisp 2011-08-29 09:42:54 UTC (rev 4677)
+++ trunk/thirdparty/cl-unicode/build/dump.lisp 2011-08-31 12:09:56 UTC (rev 4678)
@@ -108,6 +108,7 @@
`(let ((pathname (merge-pathnames ,relative-path
(make-pathname :name nil
:type nil
+ :version nil
:defaults *this-file*))))
(when *compile-verbose*
(format t "~&;;; Writing source file ~A" (file-namestring pathname))
Modified: trunk/thirdparty/cl-unicode/cl-unicode.asd
===================================================================
--- trunk/thirdparty/cl-unicode/cl-unicode.asd 2011-08-29 09:42:54 UTC (rev 4677)
+++ trunk/thirdparty/cl-unicode/cl-unicode.asd 2011-08-31 12:09:56 UTC (rev 4678)
@@ -63,7 +63,7 @@
(call-next-method))
(defsystem :cl-unicode
- :version "0.1.1"
+ :version "0.1.2"
:serial t
:depends-on (:cl-ppcre)
:components ((:file "packages")
Modified: trunk/thirdparty/cl-unicode/doc/index.html
===================================================================
--- trunk/thirdparty/cl-unicode/doc/index.html 2011-08-29 09:42:54 UTC (rev 4677)
+++ trunk/thirdparty/cl-unicode/doc/index.html 2011-08-31 12:09:56 UTC (rev 4678)
@@ -72,7 +72,7 @@
CL-UNICODE together with this documentation can be downloaded from <a
href="http://weitz.de/files/cl-unicode.tar.gz">http://weitz.de/files/cl-unicode.tar.gz</a>. The
-current version is 0.1.1.
+current version is 0.1.2.
<p>
The library comes with a system definition
for <a href="http://www.cliki.net/asdf">ASDF</a> and you compile and
Revision: 4676
Author: hans
URL: http://bknr.net/trac/changeset/4676
Change defparameters into defvars so that user customizations in a
running image are not overwritten when Hunchentoot is recompiled.
U trunk/thirdparty/hunchentoot/specials.lisp
Modified: trunk/thirdparty/hunchentoot/specials.lisp
===================================================================
--- trunk/thirdparty/hunchentoot/specials.lisp 2011-08-29 09:38:09 UTC (rev 4675)
+++ trunk/thirdparty/hunchentoot/specials.lisp 2011-08-29 09:39:54 UTC (rev 4676)
@@ -114,16 +114,16 @@
"The three-character names of the twelve months - needed for cookie
date format.")
-(defparameter *rewrite-for-session-urls* t
+(defvar *rewrite-for-session-urls* t
"Whether HTML pages should possibly be rewritten for cookie-less
session-management.")
-(defparameter *content-types-for-url-rewrite*
+(defvar *content-types-for-url-rewrite*
'("text/html" "application/xhtml+xml")
"The content types for which url-rewriting is OK. See
*REWRITE-FOR-SESSION-URLS*.")
-(defparameter *the-random-state* (make-random-state t)
+(defvar *the-random-state* (make-random-state t)
"A fresh random state.")
(defvar-unbound *session-secret*
@@ -154,20 +154,20 @@
(defvar *session-db* nil
"The default \(global) session database.")
-(defparameter *session-max-time* #.(* 30 60)
+(defvar *session-max-time* #.(* 30 60)
"The default time \(in seconds) after which a session times out.")
-(defparameter *session-gc-frequency* 50
+(defvar *session-gc-frequency* 50
"A session GC \(see function SESSION-GC) will happen every
*SESSION-GC-FREQUENCY* requests \(counting only requests which create
a new session) if this variable is not NIL. See SESSION-CREATED.")
-(defparameter *use-user-agent-for-sessions* t
+(defvar *use-user-agent-for-sessions* t
"Whether the 'User-Agent' header should be encoded into the session
string. If this value is true, a session will cease to be accessible
if the client sends a different 'User-Agent' header.")
-(defparameter *use-remote-addr-for-sessions* nil
+(defvar *use-remote-addr-for-sessions* nil
"Whether the client's remote IP \(as returned by REAL-REMOTE-ADDR)
should be encoded into the session string. If this value is true, a
session will cease to be accessible if the client's remote IP changes.
@@ -175,42 +175,42 @@
This might for example be an issue if the client uses a proxy server
which doesn't send correct 'X_FORWARDED_FOR' headers.")
-(defparameter *default-content-type* "text/html"
+(defvar *default-content-type* "text/html"
"The default content-type header which is returned to the client.
If this is text content type, the character set used for encoding the
response will automatically be added to the content type in a
``charset'' attribute.")
-(defparameter *methods-for-post-parameters* '(:post)
+(defvar *methods-for-post-parameters* '(:post)
"A list of the request method types \(as keywords) for which
Hunchentoot will try to compute POST-PARAMETERS.")
-(defparameter *header-stream* nil
+(defvar *header-stream* nil
"If this variable is not NIL, it should be bound to a stream to
which incoming and outgoing headers will be written for debugging
purposes.")
-(defparameter *show-lisp-errors-p* nil
+(defvar *show-lisp-errors-p* nil
"Whether Lisp errors in request handlers should be shown in HTML output.")
-(defparameter *show-lisp-backtraces-p* t
+(defvar *show-lisp-backtraces-p* t
"Whether Lisp errors shown in HTML output should contain backtrace information.")
-(defparameter *log-lisp-errors-p* t
+(defvar *log-lisp-errors-p* t
"Whether Lisp errors in request handlers should be logged.")
-(defparameter *log-lisp-backtraces-p* t
+(defvar *log-lisp-backtraces-p* t
"Whether Lisp backtraces should be logged. Only has an effect if
*LOG-LISP-ERRORS-P* is true as well.")
-(defparameter *log-lisp-warnings-p* t
+(defvar *log-lisp-warnings-p* t
"Whether Lisp warnings in request handlers should be logged.")
-(defparameter *lisp-errors-log-level* :error
+(defvar *lisp-errors-log-level* :error
"Log level for Lisp errors. Should be one of :ERROR \(the default),
:WARNING, or :INFO.")
-(defparameter *lisp-warnings-log-level* :warning
+(defvar *lisp-warnings-log-level* :warning
"Log level for Lisp warnings. Should be one of :ERROR, :WARNING
\(the default), or :INFO.")
@@ -222,7 +222,7 @@
"A global lock to prevent concurrent access to the log file used by
the ACCEPTOR-LOG-ACCESS function.")
-(defparameter *catch-errors-p* t
+(defvar *catch-errors-p* t
"Whether Hunchentoot should catch and log errors \(or rather invoke
the debugger).")
@@ -246,7 +246,7 @@
#+:openmcl "http://openmcl.clozure.com/"
"A link to the website of the underlying Lisp implementation.")
-(defparameter *tmp-directory*
+(defvar *tmp-directory*
#+(or :win32 :mswindows) "c:\\hunchentoot-temp\\"
#-(or :win32 :mswindows) "/tmp/hunchentoot/"
"Directory for temporary files created by MAKE-TMP-FILE-NAME.")
@@ -264,13 +264,13 @@
"A FLEXI-STREAMS external format used internally for logging and to
encode cookie values.")
-(defparameter *hunchentoot-default-external-format* +utf-8+
+(defvar *hunchentoot-default-external-format* +utf-8+
"The external format used to compute the REQUEST object.")
(defconstant +buffer-length+ 8192
"Length of buffers used for internal purposes.")
-(defparameter *default-connection-timeout* 20
+(defvar *default-connection-timeout* 20
"The default connection timeout used when an acceptor is reading
from and writing to a socket stream.")
@@ -295,7 +295,7 @@
;; see <http://common-lisp.net/project/hyperdoc/>
;; and <http://www.cliki.net/hyperdoc>
-(defparameter *hyperdoc-base-uri* "http://weitz.de/hunchentoot/")
+(defvar *hyperdoc-base-uri* "http://weitz.de/hunchentoot/")
(let ((exported-symbols-alist
(loop for symbol being the external-symbols of :hunchentoot