Compare commits
No commits in common. "master" and "typo" have entirely different histories.
67
rivet.sh
Executable file → Normal file
67
rivet.sh
Executable file → Normal file
@ -169,8 +169,11 @@ cp -r "$srcdir"/* "$destdir"
|
||||
rm -f "$destdir"/_header.html "$destdir"/_footer.html "$destdir"/_metadata.html
|
||||
|
||||
# Generate an ordered (by open time) file list
|
||||
find "$srcdir" -type f -not -iname "__*" -exec ls -1t {} + | awk '/^.*\/[^_].+\.(md|html)$/' > "$objlist"
|
||||
|
||||
find "$srcdir" -type f -exec ls -1t {} + | awk '/^.*\/[^_].+\.(md|html)$/' > "$objlist"
|
||||
rm -f "$objdate"
|
||||
while IFS="" read -r file; do
|
||||
stat -c '%y' "$file" >> "$objdate"
|
||||
done < "$objlist"
|
||||
sed -e "s,^\/*[^\/]*\/,$destdir/," "$objlist" > "$tmpsed"
|
||||
mv "$tmpsed" "$objlist"
|
||||
|
||||
@ -198,48 +201,13 @@ if ! [ "$SKIP_META" ]; then
|
||||
done
|
||||
fi
|
||||
|
||||
# For every file named "index.html", prepare index file list
|
||||
# Prepare index file list
|
||||
if ! [ "$SKIP_LIST" ]; then
|
||||
lobjlist=$(mktemp)
|
||||
lobjdate=$(mktemp)
|
||||
llinklist=$(mktemp)
|
||||
lmdlist=$(mktemp)
|
||||
|
||||
for indexf in $(find "$destdir" -mindepth 1 -type f -iname "index.html"); do
|
||||
outdir=$(echo $(dirname "$indexf") | sed "s/$destdir//g")
|
||||
|
||||
# Generate an ordered (by open time) list of files in the subdirectory by filtering the global list
|
||||
# Filter global list
|
||||
grep "$outdir" "$objlist" > "$lobjlist"
|
||||
sed -e "s,^\/*[^\/]*\/,$destdir/," "$lobjlist" > "$tmpsed"
|
||||
mv "$tmpsed" "$lobjlist"
|
||||
|
||||
# Get the corresponding .md source file for every .html file, so that the file date is referring to
|
||||
# the source and not to the output
|
||||
sed -e 's/\.html$/\.md/' "$lobjlist" > "$tmpsed"
|
||||
sed -e "s/$destdir/$srcdir/" "$tmpsed" > "$lmdlist"
|
||||
|
||||
# Generate the list of dates for each file (open time)
|
||||
rm -f "$lobjdate"
|
||||
while IFS="" read -r file; do
|
||||
stat -c '%y' "$file" >> "$lobjdate"
|
||||
done < "$lmdlist"
|
||||
|
||||
grep "$outdir" "$linklist" > "$llinklist"
|
||||
|
||||
# Modify "Pages" header to show the current section
|
||||
if [ "$indexf" = "$destdir/index.html" ]; then
|
||||
llinksec=$linksec
|
||||
else
|
||||
title="$(sed -E -n 's/.*<title>\s*(.+)\s*<\/title>.*/\1/p' "$indexf")"
|
||||
llinksec="$linksec in $title"
|
||||
fi
|
||||
|
||||
tmpfile="$(mktemp)"
|
||||
rm -f "$tmpfile"
|
||||
cat << EOF >> "$tmpfile"
|
||||
<div id="map">
|
||||
<h2 id="Pages">$llinksec</h2>
|
||||
<h2 id="Pages">$linksec</h2>
|
||||
EOF
|
||||
count='0'
|
||||
while IFS="" read -r line; do
|
||||
@ -247,23 +215,22 @@ EOF
|
||||
if echo "$line" | grep -q 'index\.html'; then
|
||||
continue
|
||||
fi
|
||||
tfile="$(awk "NR==$count" "$lobjlist")"
|
||||
tfile="$(awk "NR==$count" "$objlist")"
|
||||
title="$(sed -E -n 's/.*<title>\s*(.+)\s*<\/title>.*/\1/p' "$tfile")"
|
||||
if [ -z "$title" ]; then
|
||||
title="${tfile##*/}"
|
||||
fi
|
||||
ldate="$(awk "NR==$count" "$lobjdate" | sed 's/\s.*$//')"
|
||||
printf "<p><a href=\"%s\">%s - %s</a></p>\n" "$line" "$ldate" "$title" >> "$tmpfile"
|
||||
done < "$llinklist"
|
||||
ldate="$(awk "NR==$count" "$objdate" | sed 's/\s.*$//')"
|
||||
printf "<p><a href=\"%s\">%s - %s</a></p>\n" "$line" "$ldate" "$title" >> "$tmpfile"
|
||||
done < "$linklist"
|
||||
echo '</div>' >> "$tmpfile"
|
||||
sed '/<\/body>/i REPLACE' $indexf > "$tmpsed"
|
||||
mv "$tmpsed" $indexf
|
||||
sed "/^REPLACE/r $tmpfile" $indexf > "$tmpsed"
|
||||
mv "$tmpsed" $indexf
|
||||
sed 's/^REPLACE//' $indexf > "$tmpsed"
|
||||
mv "$tmpsed" $indexf
|
||||
sed '/<\/body>/i REPLACE' "$destdir"/index.html > "$tmpsed"
|
||||
mv "$tmpsed" "$destdir"/index.html
|
||||
sed "/^REPLACE/r $tmpfile" "$destdir"/index.html > "$tmpsed"
|
||||
mv "$tmpsed" "$destdir"/index.html
|
||||
sed 's/^REPLACE//' "$destdir"/index.html > "$tmpsed"
|
||||
mv "$tmpsed" "$destdir"/index.html
|
||||
rm -f "$tmpfile"
|
||||
done;
|
||||
fi
|
||||
|
||||
# enclose article inside <article></article>
|
||||
|
Loading…
Reference in New Issue
Block a user