Overview
Comment: | couple files to help recreate the eval problem |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | move-to-ck4.7.x |
Files: | files | file ages | folders |
SHA1: |
2be28d85adccb41f4f1ccc6df73b3329 |
User & Date: | matt on 2011-10-04 02:58:10 |
Other Links: | branch diff | manifest | tags |
Context
2011-10-04
| ||
03:39 | Moved to units based compilation check-in: 31955e0a02 user: matt tags: move-to-ck4.7.x | |
02:58 | couple files to help recreate the eval problem check-in: 2be28d85ad user: matt tags: move-to-ck4.7.x | |
02:56 | Minor porting and debugging tweaks check-in: 471f3f9325 user: matt tags: move-to-ck4.7.x | |
Changes
Modified stml.scm from [790f2122c1] to [73ed44f16b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ;; Copyright 2007-2008, Matthew Welland. ;; ;; This program is made available under the GNU GPL version 2.0 or ;; greater. See the accompanying file COPYING for details. ;; ;; This program is distributed WITHOUT ANY WARRANTY; without even the ;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. ;; stml is a list of html strings ;; extract various tokens from the parameter list ;; 'key val => put in the params list ;; strings => maintain order and add to the datalist <<== IMPORTANT (define (s:extract inlst) (if (null? inlst) inlst (let loop ((data '()) | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ;; Copyright 2007-2008, Matthew Welland. ;; ;; This program is made available under the GNU GPL version 2.0 or ;; greater. See the accompanying file COPYING for details. ;; ;; This program is distributed WITHOUT ANY WARRANTY; without even the ;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. ;; stml is a list of html strings (declare (unit stml)) (include "misc-stml") ;; extract various tokens from the parameter list ;; 'key val => put in the params list ;; strings => maintain order and add to the datalist <<== IMPORTANT (define (s:extract inlst) (if (null? inlst) inlst (let loop ((data '()) |
︙ | ︙ |
Added test.scm version [62a996e095].
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | (use test md5) (require-extension sqlite3) (import (prefix sqlite3 sqlite3:)) (require-library dbi) ;; (declare (uses stml)) (include "requirements.scm") (include "cookie.scm") (include "misc-stml.scm") (include "formdat.scm") (include "stml.scm") (include "session.scm") (include "sqltbl.scm") (include "html-filter.scm") (include "keystore.scm") (define p (open-input-file "test.stml")) (print (process-port p)) (close-input-port p) |
Added test.stml version [0f6611f558].
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | ;; Copyright 2007-2008, Matthew Welland. Kiatoa.com All rights reserved. ;; ;; index (list (s:html (s:head (s:title "Kiatoa") (s:link 'rel "stylesheet" 'type "text/css" 'href "/kiatoa/markup.css") (s:link 'rel "stylesheet" 'type "text/css" 'href "/kiatoa/layout.css")))) |