(load (string-append laml-dir "laml.scm")) (laml-tool-load "xml-in-laml/xml-in-laml.scm")![]()
![]()
; tool-parameters ;; The name of the language for which we create a mirror![]()
![]()
(define mirror-name "bike-management") ;; The full path to the parsed DTD![]()
![]()
(define parsed-dtd-path (string-append laml-dir "examples/tutorial/xml-in-laml/dtds/bikes/bikes.lsp")) ;; The full path to the explicitly programmed validation predidates![]()
![]()
(define manually-programmed-validation-predicates (string-append (startup-directory) "bikes-content-validation-predicates.scm")) ;; The full path of the mirror target directory![]()
![]()
(define mirror-target-dir (string-append (startup-directory) "../../mirrors/bikes/"))![]()
![]()
(define use-manually-programmed-validation-predicates #t)![]()
![]()
(define action-elements '(bikes))![]()
![]()
; tool-activation (let ((mirror-destination-file (string-append mirror-target-dir mirror-name "-mirror" ".scm"))) (generate-mirror parsed-dtd-path mirror-destination-file manually-programmed-validation-predicates mirror-name))