Adding the flag --include-script to build. Used to textual include Javascript files in the header.

This commit is contained in:
Jens Axel Søgaard 2012-02-27 19:26:13 +01:00
parent 3ed2d19eab
commit 2d7baca4c5
5 changed files with 67 additions and 5 deletions

View File

@ -0,0 +1,21 @@
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"] }
});
</script>
<script>
var UpdateMath = function () {
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
window.setTimeout(UpdateMath, 1000*1);
return true;
};
window.setTimeout(UpdateMath, 1000*1);
</script>

22
examples/mathjax.rkt Normal file
View File

@ -0,0 +1,22 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
;;; This demonstrates how to use MathJax to write equations.
;;; Use --include-script mathjax-script.js to include the MathJax.
;;; racket whalesong.rkt build --include-script mathjax-script.js mathjax.rkt
;; tick: world view -> world
(define (tick n view)
(add1 n))
;; draw: world view -> view
(define (draw n view)
(->view
(xexp->dom `(p "This equation has no integer solutions: "
,(let ([n (number->string n)])
(format "$$ x^~a + y^~a = z^~a $$" n n n))))))
(big-bang 3
(initial-view (xexp->dom '(html (head) (body))))
(on-tick tick 5)
(to-draw draw))

View File

@ -444,7 +444,7 @@ M.modules[~s] =
;; package-standalone-xhtml: X output-port -> void ;; package-standalone-xhtml: X output-port -> void
(define (package-standalone-xhtml source-code op) (define (package-standalone-xhtml source-code op)
(display *header* op) (display (get-header) op)
(display (quote-cdata (display (quote-cdata
(string-append (get-runtime) (string-append (get-runtime)
(get-inert-code source-code (get-inert-code source-code
@ -513,11 +513,18 @@ M.modules[~s] =
(force *the-runtime*)) (force *the-runtime*))
(define (append-text-files paths)
(string-join (map (λ (p) (if (file-exists? p)
(bytes->string/utf-8 (call-with-input-file p port->bytes))
""))
paths)
"\n"))
;; *header* : string ;; get-header : -> string
(define *header* (define (get-header)
(format
#<<EOF #<<EOF
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
@ -525,11 +532,12 @@ M.modules[~s] =
<meta name="viewport" content="initial-scale=1.0, width=device-width, height=device-height, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="viewport" content="initial-scale=1.0, width=device-width, height=device-height, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="utf-8"/> <meta charset="utf-8"/>
<title></title> <title></title>
~a
</head> </head>
<script> <script>
EOF EOF
) (append-text-files (current-header-scripts))))
;; get-html-template: (listof string) (#:manifest path) -> string ;; get-html-template: (listof string) (#:manifest path) -> string
@ -547,6 +555,7 @@ EOF
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta charset="utf-8"/> <meta charset="utf-8"/>
<title>~a</title> <title>~a</title>
~a
~a ~a
<script> <script>
~a ~a
@ -561,6 +570,7 @@ EOF
"<meta http-equiv='X-UA-Compatible' content='IE=7,chrome=1'><!--[if lt IE 9]><script src='excanvas.js' type='text/javascript'></script><script src='canvas.text.js'></script><script src='optimer-normal-normal.js'></script><![endif]-->" "<meta http-equiv='X-UA-Compatible' content='IE=7,chrome=1'><!--[if lt IE 9]><script src='excanvas.js' type='text/javascript'></script><script src='canvas.text.js'></script><script src='optimer-normal-normal.js'></script><![endif]-->"
"") "")
title title
(append-text-files (current-header-scripts))
(string-join (map (lambda (js) (string-join (map (lambda (js)
(format " <script src='~a'></script>\n" js)) (format " <script src='~a'></script>\n" js))
js-files) js-files)

View File

@ -25,7 +25,7 @@
current-one-module-per-file? current-one-module-per-file?
current-with-cache? current-with-cache?
current-with-legacy-ie-support? current-with-legacy-ie-support?
current-header-scripts
current-report-port current-report-port
current-timing-port current-timing-port
@ -103,6 +103,9 @@
(define current-with-legacy-ie-support? (make-parameter #t)) (define current-with-legacy-ie-support? (make-parameter #t))
;; Keeps list of Javascript files to be included in the header.
(: current-header-scripts (Parameterof (Listof Path)))
(define current-header-scripts (make-parameter '()))
(: current-report-port (Parameterof Output-Port)) (: current-report-port (Parameterof Output-Port))

View File

@ -105,6 +105,12 @@
[("--as-standalone-xhtml") [("--as-standalone-xhtml")
("Write single standalone xhtml file") ("Write single standalone xhtml file")
(as-standalone-html? #t)] (as-standalone-html? #t)]
#:multi
[("--include-script")
script-path
("Include a Javascript file in the header.")
(current-header-scripts (cons (string->path script-path) (current-header-scripts)))]
#:args (path) #:args (path)
(maybe-with-profiling (maybe-with-profiling