/usr/share/common-lisp/source/pubmed/package.lisp is in cl-pubmed 2.1.3-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: package.lisp
;;;; Purpose: Package file for cl-pubmed
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Jun 2001
;;;;
;;;; $Id: package.lisp 9010 2004-04-15 06:47:23Z kevin $
;;;;
;;;; This file, part of cl-pubmed, is Copyright (c) 2002 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
;;;; (http://www.gnu.org/licenses/lgpl.html)
;;;; *************************************************************************
(in-package #:cl-user)
(defpackage #:pubmed
(:use #:common-lisp #:kmrcl)
(:export
;; Conditions
#:pubmed-condition
#:pubmed-query-error
#:pubmed-server-error
#:pubmed-condition-response
;; Query functions
#:pm-query
#:pm-fetch-ids
;; Print functions
#:print-article
#:print-article-set
; Classes
#:pm-article
#:pm-article-set
;; pm-article-set accessors
#:articles
#:articles-query
#:articles-total
#:articles-count
#:articles-start
;; article accessors
#:article-pmid
#:article-title
#:article-authors
#:article-affiliation
#:article-journal
#:article-date
#:article-volume
#:article-issue
#:article-pages
#:article-abstract
#:article-mesh-headings
;; proxy setting
#:*proxy-host*
))
|