From 16979091cba7af8fc67df1a4308acc64dc43aab4 Mon Sep 17 00:00:00 2001 From: Clinton Ebadi Date: Fri, 22 May 2015 09:50:54 -0400 Subject: [PATCH] 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. --- configDefault/autodoc.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1