/usr/share/common-lisp/source/hyperobject/metaclass.lisp is in cl-hyperobject 2.12.0-1.
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 | ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: metaclass.lisp
;;;; Purpose: Define options for hyperobject metaclass
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Apr 2000
;;;;
;;;;
;;;; $Id$
;;;;
;;;; This file is Copyright (c) 2000-2006 by Kevin M. Rosenberg
;;;; *************************************************************************
(in-package #:hyperobject)
(defparameter *class-options*
'(:user-name :default-print-slots :description :version :sql-name
:guid :version :direct-functions :direct-views :direct-rules)
"List of class options for hyperobjects.")
(defparameter *slot-options*
'(:value-type :print-formatter :description :short-description :user-name
:subobject :hyperlink :hyperlink-parameters :indexed :inverse :unique
:sql-name :null-allowed :stored :input-filter :unbound-lookup
:value-constraint :void-text :read-only-groups :hidden-groups :unit
:compute-cached-value :disable-predicate :view-type :list-of-values)
"Slot options that can appear as an initarg")
(defparameter *slot-options-no-initarg*
'(:ho-type :sql-type :sql-length)
"Slot options that do not have an initarg")
|