X-Git-Url: http://git.kpe.io/?p=pubmed.git;a=blobdiff_plain;f=pubmed-src.lisp;h=e53057a716d70c9f7d7935e6bf9eec5ebe42cf56;hp=492a9f5a986c2f4627c8ffd8e2410f18a6d6e2cf;hb=103ec67276ac3769e7adbb51736ba382cc906127;hpb=5b8ec8977ba1f8407495422e13285966c31392da diff --git a/pubmed-src.lisp b/pubmed-src.lisp index 492a9f5..e53057a 100644 --- a/pubmed-src.lisp +++ b/pubmed-src.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Jun 2001 ;;;; -;;;; $Id: pubmed-src.lisp,v 1.3 2003/06/20 08:35:22 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of cl-pubmed, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -22,6 +22,7 @@ (defparameter +pubmed-host+ "www.ncbi.nlm.nih.gov") (defparameter +pubmed-query-url+ "/entrez/utils/pmqty.fcgi") (defparameter +pubmed-fetch-url+ "/entrez/utils/pmfetch.fcgi") +(defparameter +proxy-host+ nil) (define-condition pubmed-condition () @@ -222,7 +223,8 @@ XML string of PubMed search results and XML search status" (net.aserve.client:do-http-request (format nil "http://~a~a" +pubmed-host+ +pubmed-query-url+) :method :get - :query query-alist))) + :query query-alist + :proxy *proxy-host*))) (defun pubmed-fetch-pmids-xml (pmids) "Fetch articles for a list of PubMed ID's and return XML string" @@ -233,7 +235,8 @@ XML string of PubMed search results and XML search status" :method :get :query `(("db" . "PubMed") ("report" . "xml") ("mode" . "text") - ("id" . ,(list-to-delimited-string pmids #\,)))))) + ("id" . ,(list-to-delimited-string pmids #\,))) + :proxy *proxy-host*))) ;;; XML Extraction Routines