Forum OpenACS Q&A: Re: Tcl client-side cookie support?

Collapse
Posted by Andrew Piskorski on
Thanks Tilmann, that looks like it will do the trick. Btw, the regexp in proc set_cookie is bad. I have not tested it against any other cookies but the one that was giving me trouble, but this should be an improvement:

    # Cookies spec. is here:
    #   http://wp.netscape.com/newsref/std/cookie_spec.html
    # Some examples of actual cookies seen on the web follow:
    # --atp@piskorski.com, 2003/05/09 00:22 EDT
    #
    # 'cookietest=1; expires=Mon, 09-May-2033 04:18:36 GMT; path=/'

    if { [regexp -nocase {expires\s*=\s*([^;]*)} $set_cookie_string match expires] } {

Also, I noticed you don't have any tag in CVS for your tclwebtest 0.2 release (nor for 0.1d for that matter). (Which always peeves me.) If you get a chance, I recommend going back and tagging CVS so it's clear what versions of files went into your 0.2 release...

Collapse
Posted by Tilmann Singer on
Thanks for the hint, I finally committed it now.

The 0.2 version is not tagged in cvs, but at least the recently released tclwebtest 0.3 is (and future versions will be).