Commit 75bf0598e0e73c6a2747b736075d1e61f07f699b

Thomas de Grivel 2015-04-08T15:50:44

Rename RoL packages.

diff --git a/lowh.triangle.template.asd b/lowh.triangle.template.asd
deleted file mode 100644
index a261566..0000000
--- a/lowh.triangle.template.asd
+++ /dev/null
@@ -1,32 +0,0 @@
-;;
-;;  Triangle
-;;
-;;  Copyright 2012,2013 Thomas de Grivel <thomas@lowh.net>
-;;
-;;  Permission to use, copy, modify, and distribute this software for any
-;;  purpose with or without fee is hereby granted, provided that the above
-;;  copyright notice and this permission notice appear in all copies.
-;;
-;;  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-;;  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-;;  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-;;  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-;;  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-;;  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-;;  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-;;
-
-(in-package #:cl-user)
-
-(defpackage #:lowh.triangle.template.system
-  (:use #:cl #:asdf))
-
-(in-package #:lowh.triangle.template.system)
-
-(defsystem lowh.triangle.template
-  :name "lowh.triangle.template"
-  :author "Thomas de Grivel <thomas@lowh.net>"
-  :version "0.1"
-  :description "Compiled text templates with file-level cache."
-  :components
-  ((:file "template")))
diff --git a/rol-template.asd b/rol-template.asd
new file mode 100644
index 0000000..c499c5e
--- /dev/null
+++ b/rol-template.asd
@@ -0,0 +1,32 @@
+;;
+;;  RoL-template  -  Compiled text templates with file-level cache
+;;
+;;  Copyright 2012-2015 Thomas de Grivel <thomas@lowh.net>
+;;
+;;  Permission to use, copy, modify, and distribute this software for any
+;;  purpose with or without fee is hereby granted, provided that the above
+;;  copyright notice and this permission notice appear in all copies.
+;;
+;;  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+;;  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+;;  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+;;  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+;;  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+;;  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+;;  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+;;
+
+(in-package #:cl-user)
+
+(defpackage #:RoL-template.system
+  (:use #:cl #:asdf))
+
+(in-package #:RoL-template.system)
+
+(asdf:defsystem #:RoL-template
+  :name "RoL-template"
+  :author "Thomas de Grivel <thomas@lowh.net>"
+  :version "0.1"
+  :description "Compiled text templates with file-level cache."
+  :components
+  ((:file "template")))
diff --git a/template.lisp b/template.lisp
index 0627150..55e5320 100644
--- a/template.lisp
+++ b/template.lisp
@@ -16,8 +16,8 @@
 ;;  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 ;;
 
-(defpackage :lowh.triangle.template
-  (:nicknames :L>template)
+(defpackage :RoL-template
+  (:nicknames :L>template :lowh.triangle.template)
   (:use :cl)
   (:export
    #:*template-output*
@@ -32,12 +32,12 @@
    #:clear-template-cache
    #:print-template))
 
-(in-package :L>template)
+(in-package :RoL-template)
 
 ;;  Environment
 
 (defparameter *template-vars-package*
-  (defpackage :lowh.triangle.template.vars
+  (defpackage :RoL-template.vars
     (:nicknames :L>template.vars)))
 
 (defun template-var-key (var)