diff --git a/.smalltalk.ston b/.smalltalk.ston index 0f42b24c3..b015b6692 100644 --- a/.smalltalk.ston +++ b/.smalltalk.ston @@ -28,6 +28,9 @@ SmalltalkCISpec { #testing : { #exclude : { #packages : [ 'Cryptography.*' ] - } - } + }, + #include : { + #classes : [ #SentButNotImplementedTest , #UndefinedSymbolsTest ] + } + } } diff --git a/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC2965.toStream..st b/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC2965.toStream..st index b8a1eba31..72f510ccd 100644 --- a/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC2965.toStream..st +++ b/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC2965.toStream..st @@ -1,8 +1,5 @@ private addCookieRFC2965: aWACookie toStream: aStream + "https://github.com/SeasideSt/Seaside/issues/1115" - aStream - nextPutAll: 'Set-Cookie: '; - nextPutAll: aWACookie rfc2965String; - nextPut: Character cr; - nextPut: Character lf. \ No newline at end of file + self addCookieRFC6265: aWACookie toStream: aStream diff --git a/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC6265.toStream..st b/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC6265.toStream..st new file mode 100644 index 000000000..32d91377a --- /dev/null +++ b/repository/Seaside-Adaptors-FastCGI.package/WAFastCGIAdaptor.class/instance/addCookieRFC6265.toStream..st @@ -0,0 +1,7 @@ +private +addCookieRFC6265: aWACookie toStream: aStream + aStream + nextPutAll: 'Set-Cookie: '; + nextPutAll: aWACookie rfc6265String; + nextPut: Character cr; + nextPut: Character lf \ No newline at end of file diff --git a/repository/Seaside-Core.package/WACookie.class/README.md b/repository/Seaside-Core.package/WACookie.class/README.md index b98f2503a..5a8913c3f 100644 --- a/repository/Seaside-Core.package/WACookie.class/README.md +++ b/repository/Seaside-Core.package/WACookie.class/README.md @@ -12,10 +12,10 @@ Cookie spec http://tools.ietf.org/html/rfc2109 Cookie 2 spec -http://tools.ietf.org/html/rfc2965 +https://tools.ietf.org/html/rfc6265 HttpOnly http://msdn2.microsoft.com/en-us/library/ms533046.aspx https://bugzilla.mozilla.org/show_bug.cgi?id=178993 -Compared to WARequestCookie I represent the information that is sent to the user agent. \ No newline at end of file +Compared to WARequestCookie I represent the information that is sent to the user agent.