Overview
Comment: | Moved back to built in date calc instead of unix calls, test fix (doesn't work) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b0c8348626c0aa5f42b57d8dad5e394d |
User & Date: | matt on 2012-08-04 03:48:19 |
Other Links: | manifest | tags |
Context
2012-08-04
| ||
18:56 | Improved message for broken stml check-in: 8f51206e58 user: matt tags: trunk | |
03:48 | Moved back to built in date calc instead of unix calls, test fix (doesn't work) check-in: b0c8348626 user: matt tags: trunk | |
2012-08-02
| ||
21:26 | Initial cleared out version of the manual. check-in: e1712c7156 user: matt tags: trunk | |
Changes
Modified cookie.scm from [bf01624c2b] to [49ca0d00a6].
︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - - - - - - - - - - + + + + + + + + + + - - + + | ;; <http://www.netscape.com/newsref/std/cookie_spec.html> (declare (unit cookie)) (require-extension srfi-1 srfi-13 srfi-14 regex) ;; (use srfi-1 srfi-13 srfi-14 regex) ;; (declare (export parse-cookie-string construct-cookie-string)) |
︙ |
Modified session.scm from [c951925aba] to [bc08001dad].
︙ | |||
323 324 325 326 327 328 329 330 331 332 | 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | + + - - - - + + + + + - + | (dbi:for-each-row (lambda (tuple) (set! result (vector-ref tuple 0))) ;; (vector-ref tuple 0))) (sdat-get-conn self) (s:sqlparam query session-key)) result)) ;; delete all records for a session ;; ;; NEEDS TO BE TRANSACTIONIZED! ;; (define (session:delete-session self session-key) (let ((session-id (session:get-session-id self session-key)) |
︙ |