X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=9bb14c6d5bc48ae453d784cd608959e1df93b7bc;hb=cbb63ee2a1ead34ef393ed47eed6d1a0d6e6bd94;hp=9ffc3b775474842d27d7b9287908bbcf68e15e8c;hpb=658b0b1957eef3b319ab75da562c768fb6f73861;p=pubmed.git diff --git a/package.lisp b/package.lisp index 9ffc3b7..9bb14c6 100644 --- a/package.lisp +++ b/package.lisp @@ -3,33 +3,33 @@ ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: package.lisp -;;;; Purpose: Package file for cl-pubmed +;;;; Purpose: Package file for cl-entrez ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Jun 2001 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of cl-pubmed, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of cl-pubmed, is Copyright (c) 2002-2013 by Kevin M. Rosenberg ;;;; ;;;; cl-pubmed users are granted the rights to distribute and use this software -;;;; as governed by the terms of the GNU Lesser General Public License +;;;; as governed by the terms of the GNU Lesser General Public License ;;;; (http://www.gnu.org/licenses/lgpl.html) ;;;; ************************************************************************* (in-package #:cl-user) -(defpackage #:pubmed +(defpackage #:entrez (:use #:common-lisp #:kmrcl) (:export ;; Conditions - #:pubmed-condition - #:pubmed-query-error - #:pubmed-server-error - #:pubmed-condition-response - + #:entrez-condition + #:entrez-query-error + #:entrez-server-error + #:entrez-condition-response + ;; Query functions - #:pm-query + #:equery + #:esummary + #:efetch #:pm-fetch-ids ;; Print functions @@ -40,7 +40,7 @@ #:pm-article #:pm-article-set - ;; pm-article-set accessors + ;; pm-article-set accessors #:articles #:articles-query #:articles-total @@ -59,4 +59,7 @@ #:article-pages #:article-abstract #:article-mesh-headings + + ;; proxy setting + #:*proxy-host* ))