Rename RoL packages.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
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)