Skip to content

Commit

Permalink
Add published and last check dates to the CSV archive
Browse files Browse the repository at this point in the history
  • Loading branch information
jsanz committed Aug 2, 2024
1 parent f7c85fd commit ba8d38f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _pages/archive.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ layout: null
permalink: /archive.csv
regenerate: true
---
"id","keyw","desc","link","lang","via","invalid","nocheck"{% assign posts = site.posts | where: "draft", false %}{%for post in posts %}{% for rafaga in post.rafagas %}
"{{ post.rid }}","{{ rafaga.keyw }}","{{ rafaga.desc | escape}}","{{ rafaga.link}}",{% if rafaga.lang %}"{{ rafaga.lang | downcase }}"{% else %}"en"{% endif %},{% if rafaga.via %}"{{ rafaga.via}}"{% else %}"Raf"{% endif %},{% if rafaga.invalid %}true{% else %}false{% endif %},{% if rafaga.nocheck %}true{% else %}false{% endif %}{% endfor %}{% endfor %}
"date","id","keyw","desc","link","lang","via","invalid","lastcheck"{% assign posts = site.posts | where: "draft", false %}{% for post in posts %}{% for rafaga in post.rafagas %}
"{{post.date | date_to_xmlschema}}","{{ post.rid }}","{{ rafaga.keyw }}","{{ rafaga.desc | escape }}","{{ rafaga.link }}",{% if rafaga.lang %}"{{ rafaga.lang | downcase }}"{% else %}"en"{% endif %},{% if rafaga.via %}"{{ rafaga.via}}"{% else %}"Raf"{% endif %},{% if rafaga.invalid %}true{% else %}false{% endif %},{% if rafaga.lastCheck %}"{{ rafaga.lastCheck | date_to_xmlschema }}"{% else %}{% endif %}{% endfor %}{% endfor %}

0 comments on commit ba8d38f

Please sign in to comment.