;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.wiki.documentation) (def (book e) technical-specification (:title "Technical Specification") (chapter (:title "Supported Common Lisp Implementations") (paragraph () "SBCL")) (chapter (:title "Supported Operating Systems") (paragraph () "Linux")) (chapter (:title "Data Model") (find-class 'wiki-user) (find-class 'wiki-page) (find-class 'wiki-menu-item) (find-entity-relationship-diagram 'wiki-diagram)) (chapter (:title "Authorization") (find-authorization 'hu.dwim.wiki::wiki-authorization) (find-authorization 'hu.dwim.wiki::unauthenticated-authorization) (find-authorization 'hu.dwim.wiki::user-authorization) (find-authorization 'hu.dwim.wiki::administrator-authorization)))