git.fiddlerwoaroof.com
Browse code

renaming system

fiddlerwoaroof authored on 24/03/2016 04:18:27
Showing 3 changed files
... ...
@@ -1,7 +1,7 @@
1
-;;;; indexthomisticus-client.asd
1
+;;;; it-lookup.asd
2 2
 
3
-(asdf:defsystem #:indexthomisticus-client
4
-  :description "Describe indexthomisticus-client here"
3
+(asdf:defsystem #:it-lookup
4
+  :description "Describe it-lookup here"
5 5
   :author "Your Name <your.name@example.com>"
6 6
   :license "Specify license here"
7 7
   :depends-on (:alexandria
... ...
@@ -11,5 +11,5 @@
11 11
                 :lquery)
12 12
   :serial t
13 13
   :components ((:file "package")
14
-               (:file "indexthomisticus-client")))
14
+               (:file "it-lookup")))
15 15
 
... ...
@@ -1,8 +1,8 @@
1
-;;;; indexthomisticus-client.lisp
1
+;;;; it-lookup.lisp
2 2
 
3
-(in-package #:indexthomisticus-client)
3
+(in-package #:it-lookup)
4 4
 
5
-;;; "indexthomisticus-client" goes here. Hacks and glory await!
5
+;;; "it-lookup" goes here. Hacks and glory await!
6 6
 
7 7
 (defparameter *post-url*  "http://www.corpusthomisticum.org/it/index.age")
8 8
 
... ...
@@ -1,5 +1,5 @@
1 1
 ;;;; package.lisp
2 2
 
3
-(defpackage #:indexthomisticus-client
3
+(defpackage #:it-lookup
4 4
   (:use #:cl #:alexandria #:serapeum #:fwoar.lisputils))
5 5