Fixed MathJax links on gh-pages.
This commit is contained in:
parent
50fdeaf253
commit
f9fe6a0783
|
@ -54,12 +54,11 @@ after_script:
|
|||
- git config --global user.name "Travis CI"
|
||||
- git config --global user.email "travis@nobody.com"
|
||||
- if test -e ~/gh-pages; then rm -rf ~/gh-pages; fi
|
||||
#- mv -i coverage docs
|
||||
- mv -i docs ~/gh-pages
|
||||
- git init ~/gh-pages
|
||||
#- mv -i make/index.html.root ~/gh-pages/index.html
|
||||
- mkdir -p ~/gh-pages/lib/doc/MathJax
|
||||
- echo 'document.write("<script src=\"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default\"></script>");' > ~/gh-pages/lib/doc/MathJax/MathJax.js
|
||||
- rm -f ~/gh-pages/MathJax
|
||||
- mkdir ~/gh-pages/MathJax
|
||||
- echo 'document.write("<script src=\"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default\"></script>");' > ~/gh-pages/MathJax/MathJax.js
|
||||
- touch ~/gh-pages/.nojekyll
|
||||
- (cd ~/gh-pages && git add -A . && git commit -m "Auto-publish to gh-pages")
|
||||
- (cd ~/gh-pages; git push --force --quiet "https://${GH_TOKEN}@github.com/jsmaniac/phc.git" master:gh-pages >/dev/null 2>&1 || true) # redirect to /dev/null to avoid showing credentials.
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/bash
|
||||
find "$@" -type d -print0 | xargs -n 1 -r0 bash -c '(shopt -s nullglob; cd "$0"; if (! test -e index.html) || test -e .make-index-html; then touch .make-index-html; echo "<html><ul>" > index.html; for i in */ *.html; do if test "$i" != "index.html"; then echo "<li><a href=\"$i\">$i</a></li>" >> index.html; fi; done; echo "</ul></html>" >> index.html; fi)'
|
||||
find "$@" -type d -print0 | xargs -n 1 -r0 bash -c '(shopt -s nullglob; cd "$0"; if (! test -e index.html) || test -e .make-index-html; then touch .make-index-html; echo "<html><ul>" > index.html; for i in */ *.html; do if test "$i" != "index.html" -a "$i" != "MathJax"; then echo "<li><a href=\"$i\">$i</a></li>" >> index.html; fi; done; echo "</ul></html>" >> index.html; fi)'
|
||||
|
|
|
@ -140,9 +140,15 @@
|
|||
"-j" "8"
|
||||
,@rkt-files))
|
||||
|
||||
;; Create root MathJax link, must be done before the others
|
||||
;; Otherwise make/proc thinks the (broken) link hasn't been created.
|
||||
(make-directory* "docs/") ;; docs/ must be created before Depencency graph too
|
||||
(make-file-or-directory-link (build-path 'up "lib" "doc" "MathJax")
|
||||
(build-path "docs" "MathJax"))
|
||||
|
||||
|
||||
;; Dependency graph, must be done before docs.
|
||||
(begin
|
||||
(make-directory* "docs/")
|
||||
(run! (list (find-executable-path-or-fail "racket")
|
||||
"make/dependency-graph.rkt"
|
||||
"graph/__DEBUG_graph__.rkt"
|
||||
|
@ -166,33 +172,40 @@
|
|||
"-o" "docs/deps.pdf")))
|
||||
|
||||
(make/proc
|
||||
(rules (list "zo" (append html-files
|
||||
pdf-files
|
||||
mathjax-links))
|
||||
(for/rules ([scrbl-or-lp2 doc-sources]
|
||||
[html html-files])
|
||||
(html)
|
||||
(scrbl-or-lp2)
|
||||
#;(scribble (list scrbl-or-lp2) doc-sources "--html")
|
||||
(scribble-all doc-sources html-files "--html"))
|
||||
(for/rules ([scrbl-or-lp2 doc-sources]
|
||||
[pdf pdf-files])
|
||||
(pdf)
|
||||
(scrbl-or-lp2)
|
||||
#;(scribble (list scrbl-or-lp2) doc-sources "--pdf")
|
||||
(scribble-all doc-sources pdf-files "--pdf"))
|
||||
(for/rules ([mathjax-link mathjax-links])
|
||||
(mathjax-link)
|
||||
()
|
||||
(let ([mathjax-dir
|
||||
(simplify-path
|
||||
(apply build-path
|
||||
`(same
|
||||
,@(map (λ (x) 'up)
|
||||
(explode-path (dirname mathjax-link)))
|
||||
"lib" "doc" "MathJax"))
|
||||
#f)])
|
||||
(make-file-or-directory-link mathjax-dir mathjax-link))))
|
||||
(rules
|
||||
(list "zo" (append html-files
|
||||
pdf-files
|
||||
mathjax-links))
|
||||
(for/rules ([scrbl-or-lp2 doc-sources]
|
||||
[html html-files])
|
||||
(html)
|
||||
(scrbl-or-lp2)
|
||||
#;(scribble (list scrbl-or-lp2) doc-sources "--html")
|
||||
(scribble-all doc-sources html-files "--html"))
|
||||
(for/rules ([scrbl-or-lp2 doc-sources]
|
||||
[pdf pdf-files])
|
||||
(pdf)
|
||||
(scrbl-or-lp2)
|
||||
#;(scribble (list scrbl-or-lp2) doc-sources "--pdf")
|
||||
(scribble-all doc-sources pdf-files "--pdf"))
|
||||
(for/rules ([mathjax-link mathjax-links])
|
||||
(mathjax-link)
|
||||
()
|
||||
(let* ([docs-mathjax-dir
|
||||
(simplify-path
|
||||
(apply build-path
|
||||
`(same
|
||||
,@(build-list (sub1 (length (explode-path
|
||||
(dirname mathjax-link))))
|
||||
(const 'up))
|
||||
"MathJax"))
|
||||
#f)]
|
||||
[docs-or-lib-mathjax-dir
|
||||
(if (equal? (build-path "docs" "MathJax") mathjax-link)
|
||||
(build-path 'up "lib" "doc" "MathJax")
|
||||
docs-mathjax-dir)])
|
||||
(make-file-or-directory-link docs-or-lib-mathjax-dir
|
||||
mathjax-link))))
|
||||
(argv))
|
||||
|
||||
(run! `(,(find-executable-path-or-fail "raco")
|
||||
|
|
Loading…
Reference in New Issue
Block a user