-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from 40ants/allow-to-change-asdf-system-title
A generic-function 40ANTS-DOC/LOCATIVES/ASDF-SYSTEM:ASDF-SYSTEM-DOCUMENTATION-TITLE was added.
- Loading branch information
Showing
11 changed files
with
63 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
("quicklisp" . | ||
(:class qlot/source/dist:source-dist | ||
:initargs (:distribution "http://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest) | ||
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest) | ||
:version "2023-10-21")) | ||
("ultralisp" . | ||
(:class qlot/source/dist:source-dist | ||
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest) | ||
:version "20240303155001")) | ||
:initargs (:distribution "https://dist.ultralisp.org" :%version :latest) | ||
:version "20240504100002")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(uiop:define-package #:40ants-doc/locatives/asdf-system | ||
(:use #:cl) | ||
(:export #:asdf-system-documentation-title)) | ||
(in-package #:40ants-doc/locatives/asdf-system) | ||
|
||
|
||
(defgeneric asdf-system-documentation-title (system) | ||
(:documentation "Returns a title for a section describing an ASDF system. | ||
You might want to define a method using EQL specializer | ||
to make a title shorter or to remove a system name from it.") | ||
|
||
(:method ((system asdf:system)) | ||
(format nil "~A ASDF System Details" | ||
(string-upcase | ||
(asdf:primary-system-name system))))) |