Commit 83782bf7fb7896d0b5543fa9c6e8e1a8ec7f7e06

Thomas de Grivel 2017-03-05T12:18:35

Use /etc/mime.types and predefine some extensions.

diff --git a/mime-types.lisp b/mime-types.lisp
index 0efe735..cbbadd7 100644
--- a/mime-types.lisp
+++ b/mime-types.lisp
@@ -58,6 +58,7 @@
 	     t))
 	 '(#P"mime.types"
 	   #P"conf/mime.types"
+	   #P"/etc/mime.types"
 	   #P"/etc/nginx/mime.types"
 	   #P"/var/www/conf/mime.types"
 	   #P"/etc/apache/mime.types"))
diff --git a/package.lisp b/package.lisp
index 43f333f..c3033b1 100644
--- a/package.lisp
+++ b/package.lisp
@@ -24,7 +24,8 @@
       (when (find-package :RoL-ext)
 	(do-external-symbols (s :RoL-ext)
 	  (push s symbols)))
-      `(:export ,@symbols)))
+      `(:export ,@symbols
+		#:.woff #:.woff2)))
 
 (defpackage :RoL-assets
   (:nicknames :L>assets :lowh.triangle.assets)