--------------------- PatchSet 11295 Date: 2007/03/03 18:34:13 Author: hno Branch: SQUID_2_6 Tag: (none) Log: Author: Pawel Worach MFC: Subversion request method Here are patches for squid2 and squid3 that add three missing methods according to the list in the Subversion FAQ. Pawel Merged changes: 2007/03/03 18:23:45 Pawel Worach +8 -2 Subversion request method Members: src/enums.h:1.237.2.2->1.237.2.3 src/url.c:1.144->1.144.2.1 Index: squid/src/enums.h =================================================================== RCS file: /cvsroot/squid/squid/src/enums.h,v retrieving revision 1.237.2.2 retrieving revision 1.237.2.3 diff -u -r1.237.2.2 -r1.237.2.3 --- squid/src/enums.h 26 Feb 2007 22:41:46 -0000 1.237.2.2 +++ squid/src/enums.h 3 Mar 2007 18:34:13 -0000 1.237.2.3 @@ -1,6 +1,6 @@ /* - * $Id: enums.h,v 1.237.2.2 2007/02/26 22:41:46 hno Exp $ + * $Id: enums.h,v 1.237.2.3 2007/03/03 18:34:13 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -418,6 +418,9 @@ METHOD_UNSUBSCRIBE, METHOD_POLL, METHOD_REPORT, + METHOD_MKACTIVITY, + METHOD_CHECKOUT, + METHOD_MERGE, /* Extension methods must be last, Add any new methods before this line */ METHOD_EXT00, METHOD_EXT01, Index: squid/src/url.c =================================================================== RCS file: /cvsroot/squid/squid/src/url.c,v retrieving revision 1.144 retrieving revision 1.144.2.1 diff -u -r1.144 -r1.144.2.1 --- squid/src/url.c 17 Jun 2006 23:31:03 -0000 1.144 +++ squid/src/url.c 3 Mar 2007 18:34:13 -0000 1.144.2.1 @@ -1,6 +1,6 @@ /* - * $Id: url.c,v 1.144 2006/06/17 23:31:03 hno Exp $ + * $Id: url.c,v 1.144.2.1 2007/03/03 18:34:13 hno Exp $ * * DEBUG: section 23 URL Parsing * AUTHOR: Duane Wessels @@ -64,6 +64,9 @@ "UNSUBSCRIBE", "POLL", "REPORT", + "MKACTIVITY", + "CHECKOUT", + "MERGE", "%EXT00", "%EXT01", "%EXT02",