From fc9980e5e19602748b8cc596cdd07c02ac2889f1 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Sat, 23 Mar 2024 13:51:57 +0100
Subject: Added very scientific std stats
---
docs/genstd.sh | 11 +++++++++--
docs/index.css | 14 ++++++++++++++
docs/std.template | 2 ++
3 files changed, 25 insertions(+), 2 deletions(-)
(limited to 'docs')
diff --git a/docs/genstd.sh b/docs/genstd.sh
index df585ea..e290063 100755
--- a/docs/genstd.sh
+++ b/docs/genstd.sh
@@ -7,6 +7,8 @@ rm -rf std/ && mkdir -p std/
files=$(find ../std/ -type f -name "*.bruijn" -printf '%h\0%d\0%p\n' | sort -t '\0' -n | awk -F '\0' '{print $3}')
links=""
+tot_ntests=0
+tot_ndefs=0
prefix="seeelefant"
for file in $files; do
name=$(cut -c8- <<<"$file")
@@ -16,11 +18,16 @@ for file in $files; do
links="$links\n
std/$prefix
"
fi
filename=$(sed s@/@_@g <<<"$name")
- links="$links\n- :import $name
"
+ ndefs=$(grep -cP "^[^:# \t]" "$file" || true)
+ ntests=$(grep -cP "^:test" "$file" || true)
+ links="$links\n- :import $(basename "$name" .bruijn) ($ndefs definitions, $ntests tests)
"
awk 'NR==FNR { gsub("<", "\\<", $0); gsub(">", "\\>", $0); a[n++]=$0; next } /CONTENT/ { for (i=0;i"std/$filename.html"
sed -i -e "s@NAME@$name@g" "std/$filename.html"
+
+ tot_ndefs=$((tot_ndefs + ndefs))
+ tot_ntests=$((tot_ntests + ntests))
done
-sed -e "s@LINKS@$links@g" std.template >std/index.html
+sed -e "s@STATS@Total: $tot_ndefs definitions, $tot_ntests tests@g" -e "s@LINKS@$links@g" std.template >std/index.html
cp res/* code.js content.css index.css code.css std/
diff --git a/docs/index.css b/docs/index.css
index e28f004..adfd509 100644
--- a/docs/index.css
+++ b/docs/index.css
@@ -14,6 +14,20 @@ a {
color: #cccccc;
}
+ol {
+ max-width: 500px;
+}
+
+.stats {
+ float: right;
+}
+
.com {
color: #ff64bd;
}
+
+@media (max-width: 800px) {
+ .stats {
+ display: none;
+ }
+}
diff --git a/docs/std.template b/docs/std.template
index c33f5db..3a4bbcf 100644
--- a/docs/std.template
+++ b/docs/std.template
@@ -12,5 +12,7 @@ This is the browsable standard library of the bruijn programming language. Follo
LINKS
+
+ STATS