summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-06-09 16:50:33 -0700
committerLouie Shprung <lshprung@scu.edu>2023-06-10 12:04:34 -0700
commit0779d60460d99f8f950fd97bcef897ba6cbf1b8a (patch)
treefc923bca398566dec0b49bcc099bfcda97132c21
parenta4784bbacc356d381ff833e1c181b75c30f776c6 (diff)
Download and package (or disable) CSS as part of docsetlocal-css
-rw-r--r--Makefile5
-rw-r--r--README5
-rwxr-xr-xsrc/set-stylesheet.sh44
3 files changed, 53 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 14031d1..47209a1 100644
--- a/Makefile
+++ b/Makefile
@@ -74,6 +74,11 @@ $(INFO_PLIST_FILE): src/Info.plist $(CONTENTS_DIR)
$(INDEX_FILE): src/index-pages.sh $(DOCUMENTS_DIR)
rm -f $@
src/index-pages.sh $@ $(DOCUMENTS_DIR)/*.html
+ifndef NO_CSS
+ src/set-stylesheet.sh "yes" $(DOCUMENTS_DIR)/*.html
+else
+ src/set-stylesheet.sh "no" $(DOCUMENTS_DIR)/*.html
+endif
src/index-terms.sh "Entry" $@ $(DOCUMENTS_DIR)/Concept-Index.html
src/index-terms.sh "Directive" $@ $(DOCUMENTS_DIR)/Name-Index.html
diff --git a/README b/README
index e84ff6a..9635405 100644
--- a/README
+++ b/README
@@ -8,10 +8,13 @@ To generate a docset from the latest edition of the GNU Make Manual, simply
execute `make` from the same directory as this README file. The latest edition
will be downloaded from www.gnu.org and packaged appropriately.
+If you would prefer a docset without CSS, this can be specified by running `make NO_CSS=yes`.
+Otherwise, a local CSS file will also be downloaded from www.gnu.org and included in the docset.
+
Requirements:
- any POSIX-compliant shell
- curl - https://curl.se/
- make - https://www.gnu.org/software/make/
-- pup - https://tracker.debian.org/pkg/pup
+- pup - https://github.com/ericchiang/pup
- sqlite3 - https://www.sqlite.org/index.html
diff --git a/src/set-stylesheet.sh b/src/set-stylesheet.sh
new file mode 100755
index 0000000..c2345a4
--- /dev/null
+++ b/src/set-stylesheet.sh
@@ -0,0 +1,44 @@
+#!/usr/bin/sh
+
+unset LOCAL_CSS_PATH
+unset WEB_CSS_PATH
+CSS="$1"
+shift
+
+get_css_path() {
+ # Used to set WEB_CSS_PATH
+ pup "link[rel=stylesheet] attr{href}" -f "$1"
+}
+
+stylesheet_replace() {
+ # Replace each stylesheet href value with LOCAL_CSS_PATH
+ while [ -n "$1" ]; do
+ sed -i 's|'"$(pup link[rel=stylesheet] -f "$1")"'|<link rel="stylesheet" type="text/css" href="manual.css">|g' "$1"
+ shift
+ done
+}
+
+stylesheet_remove() {
+ # Remove the stylesheet link
+ while [ -n "$1" ]; do
+ sed -i 's|'"$(pup link[rel=stylesheet] -f "$1")"'||g' "$1"
+ shift
+ done
+}
+
+if [ "$CSS" = "yes" ]; then
+ WEB_CSS_PATH="$(get_css_path "$1")"
+ if [ -n "$WEB_CSS_PATH" ]; then
+ LOCAL_CSS_PATH="$(dirname "$1")"/manual.css
+ curl -o "$LOCAL_CSS_PATH" "$WEB_CSS_PATH"
+ fi
+ if [ -r "$LOCAL_CSS_PATH" ]; then
+ stylesheet_replace "$@"
+ else
+ CSS="no"
+ fi
+fi
+
+if [ "$CSS" = "no" ]; then
+ stylesheet_remove "$@"
+fi