From: Clinton Ebadi Date: Fri, 22 May 2015 13:50:54 +0000 (-0400) Subject: autodoc: fix css and image paths to automatically use ssl X-Git-Tag: release_20150523~2 X-Git-Url: https://git.hcoop.net/jyaworski/domtool2.git/commitdiff_plain/16979091cba7af8fc67df1a4308acc64dc43aab4 autodoc: fix css and image paths to automatically use ssl hcoop.net is ssl-only now and the css cannot be loaded from http://. Use a relative path instead. --- diff --git a/configDefault/autodoc.cfg b/configDefault/autodoc.cfg index 85af4c3..3fb2418 100644 --- a/configDefault/autodoc.cfg +++ b/configDefault/autodoc.cfg @@ -1,12 +1,12 @@ structure Autodoc :> AUTODOC_CONFIG = struct val htmlHeader = fn title => - String.concat ["
\n
\n\n

", + String.concat ["
\n
\n\n

", title, "

\n
"] val htmlFooter = "
" -val stylesheet = "http://hcoop.net/hcoop.css" +val stylesheet = "/hcoop.css" end