Re: [IUG] Patronview_web.html not displaying for all ptypes


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
>>> On 3/9/2010 at 12:37 PM, Anne LePage <annel at athabascau dot ca> wrote:
> I've attached two samples of the displays - one with the display I want, and
> one with the incorrect display.

The list processor strips attachments.

You don't state which PTYPEs give you the appropriate display, but I do notice that your STAFF wwwoption is wrong on your live port:

STAFF=15, 0

On your staging port, it is set to:

STAFF=0,15

The IGR states that the value should match on all ports (#106933). The value also should not include any spaces.

You also are calling all of your includes in the patronview_web.html and/or toplogo.html via http rather than https. Any time you call an external file from an SSL protected page, you should use either a root-relative URL or an absolute URL that uses https rather than http.

Something like:

<link rel="stylesheet" href="http://library.athabascau.ca/library.css"; type="text/css">
<script language="JavaScript1.2" src="http://library.athabascau.ca/new/include/library.js";></script>

should be:

<link rel="stylesheet" href="https://library.athabascau.ca/library.css"; type="text/css">
<script language="JavaScript1.2" src="https://library.athabascau.ca/new/include/library.js";></script>

or:

<link rel="stylesheet" href="/screens/library.css" type="text/css">
<script language="JavaScript1.2" src="/screens/library.js"></script>

HTH,
David



_____________________________________________________________________
David Jones mailto:djones at scu dot edu
Library Systems Manager http://www.scu.edu/library/
University Library fax: 408-551-1805
Santa Clara University phone: 408-551-7167
500 El Camino Real
Santa Clara CA 95053-0500
_____________________________________________________________________
Logic must take care of itself.
-- Wittgenstein, Notebooks, 1914-196, 22.8.14



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.