git.fiddlerwoaroof.com
Browse code

renaming in code

fiddlerwoaroof authored on 23/05/2016 17:57:11
Showing 3 changed files
... ...
@@ -1,7 +1,7 @@
1
-;;;; bigpulpit-puller.asd
1
+;;;; linkblog-to-rss-puller.asd
2 2
 
3
-(asdf:defsystem #:bigpulpit-puller
4
-  :description "Describe bigpulpit-puller here"
3
+(asdf:defsystem #:linkblog-to-rss-puller
4
+  :description "Describe linkblog-to-rss-puller here"
5 5
   :author "Your Name <your.name@example.com>"
6 6
   :license "Specify license here"
7 7
   :depends-on (#:alimenta
... ...
@@ -12,5 +12,5 @@
12 12
                #:fwoar.lisputils)
13 13
   :serial t
14 14
   :components ((:file "package")
15
-               (:file "bigpulpit-puller")))
15
+               (:file "linkblog-to-rss-puller")))
16 16
 
... ...
@@ -1,11 +1,11 @@
1
-;;;; bigpulpit-puller.lisp
1
+;;;; linkblog-to-rss-puller.lisp
2 2
 
3
-(in-package #:bigpulpit-puller)
3
+(in-package #:linkblog-to-rss-puller)
4 4
 
5
-;;; "bigpulpit-puller" goes here. Hacks and glory await!
5
+;;; "linkblog-to-rss-puller" goes here. Hacks and glory await!
6 6
 
7 7
 
8
-(defconstant +feed-url+ "http://bigpulpit.com/feed/atom")
8
+(defconstant +feed-url+ "http://linkblog-to-rss.com/feed/atom")
9 9
 
10 10
 (defparameter *feed-data* (alimenta.pull-feed:pull-feed +feed-url+ :type :atom))
11 11
 
... ...
@@ -24,7 +24,7 @@
24 24
                            (string-equal url "#" :end1 1)
25 25
                            (string-equal url "/" :end1 1)
26 26
                            (string-equal text "")
27
-                           (string-equal url  #1="http://bigpulpit.com" :end1 (length #1#)))))
27
+                           (string-equal url  #1="http://linkblog-to-rss.com" :end1 (length #1#)))))
28 28
                      (lquery:$ (initialize content) "a" (combine (attr "href") (text))
29 29
                                                                  (map-apply 
30 30
                                                                    (lambda (url text)
... ...
@@ -1,4 +1,4 @@
1 1
 ;;;; package.lisp
2 2
 
3
-(defpackage #:bigpulpit-puller
3
+(defpackage #:linkblog-to-rss-puller
4 4
   (:use #:cl))