[bknr-cvs] edi changed trunk/thirdparty/chunga/
BKNR Commits
bknr at bknr.net
Wed May 19 15:39:41 UTC 2010
Revision: 4541
Author: edi
URL: http://bknr.net/trac/changeset/4541
Prepare for 1.1.1 release
U trunk/thirdparty/chunga/CHANGELOG.txt
U trunk/thirdparty/chunga/chunga.asd
U trunk/thirdparty/chunga/conditions.lisp
U trunk/thirdparty/chunga/doc/index.html
U trunk/thirdparty/chunga/input.lisp
U trunk/thirdparty/chunga/known-words.lisp
U trunk/thirdparty/chunga/output.lisp
U trunk/thirdparty/chunga/packages.lisp
U trunk/thirdparty/chunga/read.lisp
U trunk/thirdparty/chunga/specials.lisp
U trunk/thirdparty/chunga/streams.lisp
U trunk/thirdparty/chunga/util.lisp
Modified: trunk/thirdparty/chunga/CHANGELOG.txt
===================================================================
--- trunk/thirdparty/chunga/CHANGELOG.txt 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/CHANGELOG.txt 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,3 +1,5 @@
+Version 1.1.1
+2010-05-19
Read quoted cookie values (Red Daly)
Version 1.1.0
Modified: trunk/thirdparty/chunga/chunga.asd
===================================================================
--- trunk/thirdparty/chunga/chunga.asd 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/chunga.asd 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/chunga.asd,v 1.20 2008/05/24 18:38:30 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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
@@ -29,7 +29,7 @@
(asdf:defsystem :chunga
:serial t
- :version "1.1.0"
+ :version "1.1.1"
:depends-on (:trivial-gray-streams)
:components ((:file "packages")
(:file "specials")
Modified: trunk/thirdparty/chunga/conditions.lisp
===================================================================
--- trunk/thirdparty/chunga/conditions.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/conditions.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -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-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2008-2010, 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/chunga/doc/index.html
===================================================================
--- trunk/thirdparty/chunga/doc/index.html 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/doc/index.html 2010-05-19 15:39:41 UTC (rev 4541)
@@ -108,7 +108,7 @@
Chunga together with this documentation can be downloaded
from <a href="http://weitz.de/files/chunga.tar.gz">http://weitz.de/files/chunga.tar.gz</a>. The
-current version is 1.1.0. (This version is <b>not</b> compatible with
+current version is 1.1.1. (This version is <b>not</b> compatible with
pre-2009 releases
of <a href="http://weitz.de/hunchentoot/">Hunchentoot</a>
or <a href="http://weitz.de/drakma/">Drakma</a>.) Chunga will only
Modified: trunk/thirdparty/chunga/input.lisp
===================================================================
--- trunk/thirdparty/chunga/input.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/input.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/input.lisp,v 1.18 2008/05/24 03:06:22 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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/chunga/known-words.lisp
===================================================================
--- trunk/thirdparty/chunga/known-words.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/known-words.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/known-words.lisp,v 1.3 2008/05/29 22:21:09 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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/chunga/output.lisp
===================================================================
--- trunk/thirdparty/chunga/output.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/output.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/output.lisp,v 1.14 2008/05/24 03:06:22 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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/chunga/packages.lisp
===================================================================
--- trunk/thirdparty/chunga/packages.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/packages.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/packages.lisp,v 1.19 2008/05/24 18:38:30 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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/chunga/read.lisp
===================================================================
--- trunk/thirdparty/chunga/read.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/read.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/read.lisp,v 1.22 2008/05/26 08:18:00 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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
@@ -247,8 +247,7 @@
"Reads a cookie parameter value from STREAM which is returned as a
string. Simply reads until a semicolon is seen \(or an element of
SEPARATORS). Also reads quoted strings if the first non-whitespace
-character is a quotation mark \(as in RFC 2109) at
-http://www.w3.org/Protocols/rfc2109/rfc2109"
+character is a quotation mark \(as in RFC 2109)."
(if (char= #\" (peek-char* stream))
(read-quoted-string stream)
(trim-whitespace
Modified: trunk/thirdparty/chunga/specials.lisp
===================================================================
--- trunk/thirdparty/chunga/specials.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/specials.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/specials.lisp,v 1.12 2008/05/24 03:06:22 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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/chunga/streams.lisp
===================================================================
--- trunk/thirdparty/chunga/streams.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/streams.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/streams.lisp,v 1.10 2008/05/24 03:06:22 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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/chunga/util.lisp
===================================================================
--- trunk/thirdparty/chunga/util.lisp 2010-05-19 15:37:07 UTC (rev 4540)
+++ trunk/thirdparty/chunga/util.lisp 2010-05-19 15:39:41 UTC (rev 4541)
@@ -1,7 +1,7 @@
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CHUNGA; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/chunga/util.lisp,v 1.12 2008/05/25 10:53:48 edi Exp $
-;;; Copyright (c) 2006-2009, Dr. Edmund Weitz. All rights reserved.
+;;; Copyright (c) 2006-2010, 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
More information about the Bknr-cvs
mailing list