about summary refs log tree commit diff stats
path: root/update_html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-11-05 11:17:34 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-11-05 11:17:34 -0800
commitba6621b50748f0bcff98b150905f6a8c9337e620 (patch)
treecae12f6aa4910241fea487caaca034ce6c63ea03 /update_html
parent485775ec615d59634e05355b5c27a89f675a9b8f (diff)
downloadmu-ba6621b50748f0bcff98b150905f6a8c9337e620.tar.gz
4114
Diffstat (limited to 'update_html')
-rwxr-xr-xupdate_html98
1 files changed, 39 insertions, 59 deletions
diff --git a/update_html b/update_html
index 0717a979..3128e2ed 100755
--- a/update_html
+++ b/update_html
@@ -3,8 +3,17 @@
 
 set -e
 
-# convert a single file to html
+( cd linkify; build; )
+
+# generate html/$1.html using /tmp/tags
 process() {
+  rm html/$1.html
+  convert_html $1
+  linkify/linkify /tmp/tags html/$1.html
+  mv html/$1.html.out html/$1.html
+}
+
+convert_html() {
   vim -c "set number" -c TOhtml -c write -c qall $1
 
   sed -i 's,<title>\~/mu/,<title>Mu - ,' $1.html
@@ -37,68 +46,39 @@ process() {
   mv -i $1.html html/`dirname $1`
 }
 
-( cd linkify; build; )
-
-  rm html/*.cc.html
-  for f in *.cc
-  do
-    process $f
-  done
-  ctags -x *.cc  |grep -v "^operator \| member \| variable "  > /tmp/tags
-  linkify/linkify /tmp/tags html/*.cc.html
-  for f in html/*.cc.html
-  do
-    mv $f.out $f
-  done
+ctags -x *.cc  |grep -v "^operator \| member \| variable "  > /tmp/tags
+for f in *.cc
+do
+  process $f
+done
 
-  rm html/[0-9]*.mu.html
-  for f in [0-9]*.mu
-  do
-    process $f
-  done
-  ctags -x [0-9]*.mu  > /tmp/tags
-  linkify/linkify /tmp/tags html/[0-9]*.mu.html
-  for f in html/[0-9]*.mu.html
-  do
-    mv $f.out $f
-  done
+ctags -x [0-9]*.mu  > /tmp/tags
+for f in [0-9]*.mu
+do
+  process $f
+done
 
-  for f in [a-zA-Z]*.mu
-  do
-    rm -f html/$f.html
-    process $f
-    ctags -x [0-9]*.mu $f  > /tmp/tags
-    linkify/linkify /tmp/tags html/$f.html
-    mv html/$f.html.out html/$f.html
-  done
+for f in [a-zA-Z]*.mu
+do
+  ctags -x [0-9]*.mu $f  > /tmp/tags
+  process $f
+done
 
-  rm html/edit/*.html
-  for f in edit/*.mu
-  do
-    process $f
-  done
-  ( cd edit
-    ctags -x ../[0-9]*.mu *.mu  > /tmp/tags
-  )
-  linkify/linkify /tmp/tags html/edit/*.mu.html
-  for f in html/edit/*.mu.html
-  do
-    mv $f.out $f
-  done
+( cd edit
+  ctags -x ../[0-9]*.mu *.mu  > /tmp/tags
+)
+for f in edit/*.mu
+do
+  process $f
+done
 
-  rm html/subx/*.html
-  for f in subx/*.cc
-  do
-    process $f
-  done
-  ( cd subx
-    ctags -x *.cc  |grep -v '^. '  > /tmp/tags  # don't hyperlink every 'i' to the integer register variant
-  )
-  linkify/linkify /tmp/tags html/subx/*.html
-  for f in html/subx/*.cc.html
-  do
-    mv $f.out $f
-  done
+( cd subx
+  ctags -x *.cc  |grep -v '^. '  > /tmp/tags  # don't hyperlink every 'i' to the integer register variant
+)
+for f in subx/*.cc
+do
+  process $f
+done
 
 rm /tmp/tags
 ( cd linkify; clean; )