Commit 8f55d344 authored by Dave Cooper's avatar Dave Cooper
Browse files

added domains page.

parent 4361f239
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3,3 +3,4 @@
*.fasl
*.dx64fsl
system-index.txt
output/
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
(in-package :cl-user)

(load "/home/dcooper/quicklisp/setup.lisp")
(unless (find-package :quicklisp) (load "/home/dcooper/quicklisp/setup.lisp"))

(pushnew (make-pathname :defaults *load-truename* :name nil :type nil)
	 quicklisp:*local-project-directories* :test #'equalp)
+4 −4
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
(asdf:defsystem #:clf-site :description
 "The Gendl® clf-site Subsystem" :author "Genworks International"
 :license "Affero Gnu Public License (http://www.gnu.org/licenses/)"
 :serial t :version "20191107" :depends-on
 (:gwl :cl-markdown :cl-html-parse)
 :serial t :version "20200304" :depends-on
 (:gwl :cl-markdown #-allegro :cl-html-parse)
 #-asdf-unicode :defsystem-depends-on #-asdf-unicode (:asdf-encodings :gendl-asdf)
 #+asdf-unicode :defsystem-depends-on #+asdf-unicode (:gendl-asdf)
 #+asdf-encodings :encoding #+asdf-encodings :utf-8
@@ -12,5 +12,5 @@
 ((:file "source/patches") (:file "source/package")
  (:gdl "source/activities-page") (:gdl "source/base-page")
  (:gdl "source/board-page") (:gdl "source/contact-page")
  (:gdl "source/index-page") (:file "source/initialize")
  (:gdl "source/payment-policy-page")))
  (:gdl "source/domains-page") (:gdl "source/index-page")
  (:file "source/initialize") (:gdl "source/payment-policy-page")))
+1 −1
Original line number Diff line number Diff line
(:gwl :cl-markdown :cl-html-parse)
 No newline at end of file
"(:gwl :cl-markdown #-allegro :cl-html-parse)"
 No newline at end of file
+34 −0
Original line number Diff line number Diff line
(in-package :clf-site)

(define-object domains-page (base-page)

  :computed-slots
  ((strings-for-display "Domains")
   (main-content
    (with-cl-who-string ()
      (wmd
       (format nil
	       "

Internet Domain Names Currently under Stewardship of the Foundation
==================================================================

The CLF currently maintains the following Internet Domain Names as
well as hosting web properties on each of these names:

1. common-lisp.net

2. cl-foundation.org

3. cl-foundation.com

3. cl.foundation

5. cliki.net

The CLF maintains web properties at the following domains (not currently under our stewardship)

1. paste.lisp.org


"))))))
Loading