Re: [IUG] ILL, SFX and Millennium


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
We run SFX & Millennium as well, so we can probably join forces.


Anja Kakau
Systems Librarian
Information Resource Center

Jacobs University Bremen gGmbH
Campus Ring 1 | 28759 Bremen | Germany
phone: +49 421 200 4615 | fax: +49 421 200 49 4615
e-mail: a dot kakau at jacobs-university dot de
www.jacobs-university.de

Commercial registry: Amtsgericht Bremen, HRB 18117
CEO: Prof. Dr. Joachim Treusch
Chairman Board of Governors: Prof. Dr. Karin Lochte





-----Original Message-----
From: innopac-bounces at innovativeusers dot org [mailto:innopac-bounces at innovativeusers dot org] On Behalf Of Harney, Resa
Sent: Freitag, 19. November 2010 19:19
To: IUG INNOPAC List
Subject: Re: [IUG] ILL, SFX and Millennium



We are also experiencing problems with ILL, SFX and Millennium, and I'm
trying to determine whether any of the recent discussion is relevant to
our situation.

Unlike the respondents, we do not use WebBridge, so I'm trying to figure
out if the suggestions are WebBridge-dependent, or would apply to a
non-WebBridge site. (It's hard to figure out how a feature affects
things, when you don't have it.)

Thanks for any sage advice!


Resa Harney
Systems & Technical Services Librarian
Agnes Scott College, McCain Library
141 E. College Ave., Decatur, GA 30030-3770
voice 404.471-6141 fax 404.471-5037

-----Original Message-----
From: innopac-bounces at innovativeusers dot org
[mailto:innopac-bounces at innovativeusers dot org] On Behalf Of Kakau, Anja
Sent: Friday, November 19, 2010 11:10 AM
To: IUG INNOPAC List
Subject: Re: [IUG] ILL, SFX and Millennium

Disclaimer: Even less JavaScript expertise than Perl expertise, so I am
not sure I have figured out your answers correctly.

If I got it right, what you describe is how an incoming link is split so
the data is put into the correct fields. Correct?
Than that's not the problem I had, the bug was sitting on the SFX side
and produced an SFXResolver error message. However, the break I took
from dealing with this cleared my head: the bug is fixed.

@Kerstin: There are still a couple of things on my to-do list, but it's
already much better than no filled-out form at all. The parser works
with our customized ILL forms. I'll send it to you after I've done some
clean up, and will add some comments on how to adapt it and the sfx
target config as well.

Best,
Anja

-----Original Message-----
From: innopac-bounces at innovativeusers dot org
[mailto:innopac-bounces at innovativeusers dot org] On Behalf Of David Jones
Sent: Donnerstag, 18. November 2010 22:51
To: IUG INNOPAC List
Subject: Re: [IUG] ILL, SFX and Millennium

>>> On 11/18/2010 at 12:58 PM, Bob Duncan <duncanr at lafayette dot edu> wrote:

> FWIW, if you use a token to create your ILL forms, the form should
> auto-populate with information from the URL without having to do
> anything else. If you don't use a token, some simple Javascript can
> do the trick.

Here's what we use [1]. We just include it inline in the head element on
the journal request page as that is the only ILL form to which we
currently forward WebBridge links.

We give our ILL forms the ID is "oscar_ill_form" as that makes it easier
to apply javascript to them.

HTH,
David

[1]
function startILL() {
var form = document.getElementById('oscar_ill_form');
var query = window.location.search.substring(1);
var parms = query.split('&');
for (var i=0; i< parms.length; i++) {
var pairArray = parms[i].split("=");
var key = pairArray[0];
var value = decodeURIComponent(pairArray[1]);
if(form.elements[key]) {
setValue(form.elements[key], value);
}
}
}

window.onload = startILL;




_____________________________________________________________________
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.


--
This message was distributed through the Innovative Users Group INNOPAC
list
Public replies: INNOPAC at innovativeusers dot org
Update your subscription options:
http://innovativeusers.org/iug-discussion-list

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


--
This message was distributed through the Innovative Users Group INNOPAC
list
Public replies: INNOPAC at innovativeusers dot org
Update your subscription options:
http://innovativeusers.org/iug-discussion-list

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


--
This message was distributed through the Innovative Users Group INNOPAC list
Public replies: INNOPAC at innovativeusers dot org
Update your subscription options: http://innovativeusers.org/iug-discussion-list

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