summaryrefslogtreecommitdiff
path: root/defpackage.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2009-10-30 20:06:53 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2009-10-30 20:06:53 +0100
commite4b27cf22677f46c2f9f9e61496236246c1f2efd (patch)
treee1f8aadc4910fee7b959328dba4193b6b029abb3 /defpackage.lisp
parenteaad370b048bcb11f087fdf97528bfb31141ad0e (diff)
Implement the MetaWeblog API.
Ignore-this: 8157da40368760fdfdfe527b33134f4 darcs-hash:3ba0c89c45f5b5bcd9000e71ea700b3df00892b5
Diffstat (limited to 'defpackage.lisp')
-rw-r--r--defpackage.lisp10
1 files changed, 8 insertions, 2 deletions
diff --git a/defpackage.lisp b/defpackage.lisp
index 3911d1b..9f4ffd9 100644
--- a/defpackage.lisp
+++ b/defpackage.lisp
@@ -1,5 +1,5 @@
;;;; -*- coding: utf-8; mode: lisp -*-
-;;;; Copyright 2007, Matthias Andreas Benkard.
+;;;; Copyright 2007-2009, Matthias Andreas Benkard.
;;;------------------------------------------------------------------------
;;; This file is part of The Mulkblog Project.
@@ -23,5 +23,11 @@
(defpackage #:mulk.journal
(:nicknames #:journal)
(:use #:cl #:fad #:iterate #:markdown #:yaclml #:http #:alexandria
- #:xml-emitter #:split-sequence #:clsql #:drakma)
+ #:xml-emitter #:split-sequence #:clsql #:drakma #:s-xml-rpc)
(:shadow #:copy-file #:copy-stream #:format-date))
+
+(defpackage #:mulk.journal.xml-rpc
+ (:nicknames #:journal-xml-rpc)
+ ;; Do not :USE anything here, not even #:COMMON-LISP!
+ (:use)
+ (:import-from #:s-xml-rpc-exports #:system.getCapabilities #:system.listMethods #:system.methodHelp #:system.methodSignature #:system.multicall))