瀏覽代碼

Fix sitemap package imports.

Brit Butler 11 年之前
父節點
當前提交
7fc472bb7f
共有 1 個文件被更改,包括 12 次插入13 次删除
  1. 12 13
      plugins/sitemap.lisp

+ 12 - 13
plugins/sitemap.lisp

@@ -1,18 +1,17 @@
1 1
 (defpackage :coleslaw-sitemap
2 2
   (:use :cl)
3
-  (:import-from :coleslaw
4
-                #:*config*
5
-                #:deploy
6
-                #:find-all
7
-                #:make-pubdate
8
-                #:page-url
9
-                #:rel-path
10
-                #:staging-dir
11
-                #:theme-fn
12
-                #:write-file)
13
-  (:import-from :local-time
14
-		#:format-timestring
15
-		#:now)
3
+  (:import-from :coleslaw #:*config*
4
+                          #:deploy
5
+                          #:find-all
6
+                          #:make-pubdate
7
+                          #:page-url
8
+                          #:rel-path
9
+                          #:staging-dir
10
+                          #:theme-fn
11
+                          #:write-file)
12
+  (:import-from :local-time #:format-timestring
13
+                            #:now)
14
+  (:import-from :alexandria #:hash-table-values)
16 15
   (:export #:enable))
17 16
 
18 17
 (in-package :coleslaw-sitemap)