Overview
Comment: | Replaced use of regex with substring-index for form parsing. Former use was quite broken treating incoming data as the regex. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 2017-ww40 |
Files: | files | file ages | folders |
SHA1: |
0d4c0dc2fe4615db55797c5876eb3a61 |
User & Date: | matt on 2017-03-31 02:47:46 |
Other Links: | manifest | tags |
Context
2017-09-16
| ||
04:29 | Added session:generate-random-string. check-in: 9fe02f8d12 user: matt tags: trunk | |
2017-03-31
| ||
02:47 | Replaced use of regex with substring-index for form parsing. Former use was quite broken treating incoming data as the regex. check-in: 0d4c0dc2fe user: matt tags: trunk, 2017-ww40 | |
2017-03-13
| ||
06:30 | Added obfuscated set/get check-in: 544afe46f9 user: matt tags: trunk | |
Changes
Modified formdat.scm from [9664a46ced] to [e7bfc732dd].
︙ | ︙ | |||
94 95 96 97 98 99 100 | (string=? hs "")) header (loop (read-line datstr)(append header (list hs)))))) ;; get the data up to the next key. if there is no key then return #f ;; return (dat remdat) (define (formdat:read-dat dat key) | | | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | (string=? hs "")) header (loop (read-line datstr)(append header (list hs)))))) ;; get the data up to the next key. if there is no key then return #f ;; return (dat remdat) (define (formdat:read-dat dat key) (let ((index (substring-index key dat))) ;; (string-search-positions key dat))) (if (or (not index) (null? index)) ;; the key was not found #f (let* ((datstr (open-input-string dat)) (result (read-string (caar index) datstr)) (remdat (read-string #f datstr))) (close-input-port datstr) |
︙ | ︙ |
Modified session.scm from [2e2e2318d1] to [65e2ea7eb0].
︙ | ︙ | |||
609 610 611 612 613 614 615 | ;; 1. want filename to reflect page name (emacs limitation) ;; 2. that's it! no other reason. could make it configurable ... ;; page-dir-style is: ;; 'stored => stored in executable ;; 'flat => pages flat directory ;; 'dir => directory tree pages/<pagename>/{view,control}.scm ;; parts: | | | 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | ;; 1. want filename to reflect page name (emacs limitation) ;; 2. that's it! no other reason. could make it configurable ... ;; page-dir-style is: ;; 'stored => stored in executable ;; 'flat => pages flat directory ;; 'dir => directory tree pages/<pagename>/{view,control}.scm ;; parts: ;; 'both => load control and view (anything other than view or control and the default) ;; 'view => load view only ;; 'control => load control only (define (session:call-parts self page #!key (parts 'both)) (sdat-set-curr-page! self page) (let* ((dir-style (sdat-get-page-dir-style self));; (equal? (sdat-get-page-dir-style self) "onedir")) ;; flag #t for onedir, #f for old style (dir (string-append (sdat-get-sroot self) (if dir-style |
︙ | ︙ |