diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-07-14 21:14:05 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-07-14 21:14:05 +0200 |
commit | 509d11845afff1fb0f1f3f98cce2cc88980563e8 (patch) | |
tree | d9899392fe90415236f81a43893848d0a530a572 /foaf | |
parent | 3a64da08329df0bf99e7ee3d01627d08c19033cd (diff) |
Use linkedin2rdf.pl (not any2rdf.pl) to avoid non-stable website tracking URL.
Diffstat (limited to 'foaf')
-rwxr-xr-x | foaf/mkfoaf.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/foaf/mkfoaf.sh b/foaf/mkfoaf.sh index beab077..7ac9621 100755 --- a/foaf/mkfoaf.sh +++ b/foaf/mkfoaf.sh @@ -50,8 +50,7 @@ linkedin2foaf() { wget -q -O "$tmppath" "$uri" # perl -i -pe 's/&([a-zA-Z0-9]+=|\s)/&$1/g' "$tmppath" # xsltproc --html "$xsltdir/linkedin2foaf.xsl" "$tmppath" > "$outpath" -# perl "$bindir/linkedin2rdf.pl" "$tmppath" "$uri" > "$outpath" - perl "$bindir/any2rdf.pl" "$tmppath" "$uri" > "$outpath" + perl "$bindir/linkedin2rdf.pl" "$tmppath" "$uri" > "$outpath" rm -f "$tmppath" foafsign "$outpath" } |