summaryrefslogtreecommitdiff
path: root/makerss.sh
diff options
context:
space:
mode:
Diffstat (limited to 'makerss.sh')
-rwxr-xr-xmakerss.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/makerss.sh b/makerss.sh
index cf03bf2..f4a6285 100755
--- a/makerss.sh
+++ b/makerss.sh
@@ -13,13 +13,12 @@ cat << EOF
@prefix rss: <http://purl.org/rss/1.0/>.
@prefix bibo: <http://purl.org/ontology/bibo/>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
-@prefix cc: <http://creativecommons.org/ns#>.
<> a rss:channel;
rss:title "${title}";
rss:link <${siteurl}>;
dc:creator <${creator}>;
- cc:license <http://creativecommons.org/licenses/by-sa/3.0/>;
+ dc:license <http://www.gnu.org/licenses/gpl.html>;
rss:items [ a rdf:Seq;
EOF
@@ -40,7 +39,7 @@ for item in $items; do
rss:link <${link}>;
dc:date "${moddate}";
dc:creator <${creator}>;
- cc:license <http://creativecommons.org/licenses/by-sa/3.0/>.
+ cc:license <http://www.gnu.org/licenses/gpl.html>.
EOF
done;