Roxen.git/
server/
base_server/
prototypes.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2005-12-09
2005-12-09 16:15:36 by Henrik Grubbström (Grubba) <grubba@grubba.org>
e1559da13cce6b1ab67f76bb9f46060c3bf48415 (
10
lines) (+
9
/-
1
)
[
Show
|
Annotate
]
Branch:
5.2
More CookieJar fixes.
Rev: server/base_server/prototypes.pike:1.163
6:
#include <module.h> #include <variables.h> #include <module_constants.h>
-
constant cvs_version="$Id: prototypes.pike,v 1.
162
2005/12/09
00
:
47
:
39
mast
Exp $";
+
constant cvs_version="$Id: prototypes.pike,v 1.
163
2005/12/09
16
:
15
:
36
grubba
Exp $";
#ifdef DAV_DEBUG #define DAV_WERROR(X...) werror(X)
952:
//! Wrapper that calls @[register_vary_callback()] as appropriate when //! cookies are accessed. //!
+
//! @note
+
//! Uses the parent pointer to access @[register_vary_callback()] and
+
//! will thus update the original @[RequestID] object even if copied
+
//! to a cloned @[RequestID]. This is a feature.
+
//!
//! @seealso //! @[cookies], @[register_vary_callback()], @[Roxen.get_cookie_callback()] static class CookieJar
1031:
} static mapping(string:string) `+ (mapping(string:string) other) {
+
register_vary_callback("Cookie");
return jar + other; } static mapping(string:string) ``+ (mapping(string:string) other) {
-
+
register_vary_callback("Cookie");
return other + jar; } static string _sprintf(int fmt)