iWarn about the trailing slash in the url so RSS links are valids - cl-yag - Common Lisp Yet Another website Generator Err bitreich.org 70 hgit clone git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/cl-yag/ URL:git://bitreich.org/cl-yag/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/cl-yag/ bitreich.org 70 1Log /scm/cl-yag/log.gph bitreich.org 70 1Files /scm/cl-yag/files.gph bitreich.org 70 1Refs /scm/cl-yag/refs.gph bitreich.org 70 1Tags /scm/cl-yag/tag bitreich.org 70 1README /scm/cl-yag/file/README.md.gph bitreich.org 70 1LICENSE /scm/cl-yag/file/LICENSE.gph bitreich.org 70 i--- Err bitreich.org 70 1commit fb05dcdf99bb18fa6d9fe26569d3cf018c837443 /scm/cl-yag/commit/fb05dcdf99bb18fa6d9fe26569d3cf018c837443.gph bitreich.org 70 1parent ce03712ffad87a4ec77fa2fb56f2a1a5761ccca4 /scm/cl-yag/commit/ce03712ffad87a4ec77fa2fb56f2a1a5761ccca4.gph bitreich.org 70 hAuthor: Solene Rapenne URL:mailto:solene@dataswamp.org bitreich.org 70 iDate: Fri, 6 May 2016 12:01:47 +0200 Err bitreich.org 70 i Err bitreich.org 70 iWarn about the trailing slash in the url so RSS links are valids Err bitreich.org 70 i Err bitreich.org 70 iDiffstat: Err bitreich.org 70 i M data/articles.lisp | 2 +- Err bitreich.org 70 i M generator.lisp | 2 +- Err bitreich.org 70 i Err bitreich.org 70 i2 files changed, 2 insertions(+), 2 deletions(-) Err bitreich.org 70 i--- Err bitreich.org 70 1diff --git a/data/articles.lisp b/data/articles.lisp /scm/cl-yag/file/data/articles.lisp.gph bitreich.org 70 i@@ -9,7 +9,7 @@ Err bitreich.org 70 i :webmaster "Your author name here" Err bitreich.org 70 i :title "Your blog title here" Err bitreich.org 70 i :description "Yet another website on the net" Err bitreich.org 70 i- :url "https://my.website/~~user/" Err bitreich.org 70 i+ :url "https://my.website/~~user/" ;; the trailing slash is mandatory, rss links will fails without it Err bitreich.org 70 i )) Err bitreich.org 70 i Err bitreich.org 70 i ;; describes articles (ordered on the website as they are displayed here, the first in list is the top of the website) Err bitreich.org 70 1diff --git a/generator.lisp b/generator.lisp /scm/cl-yag/file/generator.lisp.gph bitreich.org 70 i@@ -135,7 +135,7 @@ Err bitreich.org 70 i (template "%%Title%%" (getf article :title)) Err bitreich.org 70 i (template "%%Description%%" (getf article :short "")) Err bitreich.org 70 i (template "%%Url%%" Err bitreich.org 70 i- (format nil "~d/article-~d.html" Err bitreich.org 70 i+ (format nil "~darticle-~d.html" Err bitreich.org 70 i (getf *config* :url) Err bitreich.org 70 i (getf article :id))))))) Err bitreich.org 70 i Err bitreich.org 70 .