Erik B. wrote:

When running the XMLmind xxetool to generate WebHelp, I'm having an issue that 
the inclusion of jquery and other js and css files is done with the http prefix 
rather than https which I need because my site is running in SSL.

Yes that's right. What follows is an example of the head of an HTML page which is part of the WebHelp:

---
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />

<title>9. Window menu</title>

<link href="webhelp.css" rel="stylesheet" type="text/css" />

<meta content="DocBook XSL Stylesheets V1.78.1" name="generator" />

<link href="index.html" rel="home" title="XMLmind XML Editor - Online Help" />

<link href="menuBar.html" rel="up" title="Chapter 3. Menus" />
<link href="customizeConfigurationMenu.html" rel="prev" title="8.1. &quot;Customize Configuration&quot; menu" />
<link href="helpMenu.html" rel="next" title="10. Help menu" />

<script charset="UTF-8" src="_wh/snowball_en.min.js" type="text/javascript"></script>

<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css"; rel="stylesheet" type="text/css" />

<link href="_wh/wh.css" rel="stylesheet" type="text/css" />

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"; type="text/javascript"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"; type="text/javascript"></script>

<script charset="UTF-8" src="_wh/wh.min.js" type="text/javascript"</script>
<script charset="UTF-8" src="_wh/search.js" type="text/javascript"></script>

<link href="_wh/user/header_footer.css" rel="stylesheet" type="text/css" />
</head>
---

Relative URLs should not pose any problem. In my understanding, you want absolute URLs like:

---
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css"; rel="stylesheet" type="text/css" />
---

to become:

---
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css"; rel="stylesheet" type="text/css" />
---



Is there a way to specify during the conversion that it should use HTTPS rather 
than HTTP?


Yes, you have complete control over the jQuery JavaScript and CSS files which are referenced in the WebHelp.

Please use the following XSLT stylesheet parameters to specify the location of these files:

wh-jquery
wh-jquery-css
wh-jquery-theme
wh-jquery-ui

(See also wh-local-jquery in case you prefer the jQuery runtime to be local to your HTTPS server.)

The "wh-" prefix is required in the context of the xxetool.

More information in:

XMLmind Web Help Compiler, Parameters
http://www.xmlmind.com/ditac/_whc/doc/index.html#parameters




--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to