;;;; Copyright (C) 2006 David Patrick Mullen ;;;; ;;;; This file is part of Kira. ;;;; ;;;; Kira is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU General Public License ;;;; as published by the Free Software Foundation; either version 2 ;;;; of the License, or (at your option) any later version. ;;;; ;;;; Kira is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;;; GNU General Public License for more details. ;;;; ;;;; You should have received a copy of the GNU General Public License ;;;; along with Kira; if not, write to the Free Software ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. (in-package :kira) (defclass link (post) ()) (defmethod render-in-style ((link link) (style html-style)) (html (:li (:a (:princ (external-uri link)) (render-title link))))) (defmethod render-editor :before ((link link)) (html (:field "URL" (field uri external-uri))))