File: package.lisp

package info (click to toggle)
cl-lml 2.5.4-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 116 kB
  • ctags: 103
  • sloc: lisp: 689; makefile: 51; sh: 28
file content (60 lines) | stat: -rw-r--r-- 1,366 bytes parent folder | download | duplicates (2)
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
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          package.cl
;;;; Purpose:       Package file for Lisp Markup Language
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Aug 2002
;;;;
;;;; $Id: package.lisp 7061 2003-09-07 06:34:45Z kevin $
;;;;
;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
;;;;
;;;; LML users are granted the rights to distribute and use this software
;;;; as governed by the terms of the GNU General Public License v2
;;;; (http://www.gnu.org/licenses/gpl.html)
;;;; *************************************************************************

(in-package #:cl-user)

(defpackage #:lisp-markup-language
  (:use #:common-lisp)
  (:nicknames #:lml)
  (:export

   ;; base.lisp
   #:*print-spaces*
   #:reset-indent
   #:with
   #:print-page
   #:page
   #:lml-format
   #:lml-print
   #:lml-princ
   #:lml-write-char
   #:lml-write-string
   #:lml-print-date
   #:*html-output*
   
   ;; files.lisp
   #:with-dir
   #:process-dir
   #:lml-load
   #:include-file

   ;; stdsite.lisp
   #:print-std-page
   #:std-page
   #:std-body
   #:std-head
   #:titled-pre-section
   
   ;; downloads.lisp
   #:std-dl-page
   #:full-dl-page

   ;; utils.lisp
   #:lml-quit
   #:lml-cwd
))