summaryrefslogtreecommitdiff
path: root/src/index-pages.sh
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-06-21 16:21:19 -0400
committerLouie S <louie@example.com>2024-06-21 16:21:19 -0400
commit628b2419c86d4921b423d62024460e25bacf77fa (patch)
tree17f4a3a002b5ff4c76aaf98b4f398c6081f574fd /src/index-pages.sh
parent75a9d380fdeb015e09a93e875a9a9edca9f16344 (diff)
Modularize get_titleHEADmaster
Diffstat (limited to 'src/index-pages.sh')
-rwxr-xr-xsrc/index-pages.sh42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/index-pages.sh b/src/index-pages.sh
new file mode 100755
index 0000000..573604c
--- /dev/null
+++ b/src/index-pages.sh
@@ -0,0 +1,42 @@
+#!/usr/bin/env sh
+
+# shellcheck source=../../../scripts/create_table.sh
+. "$(dirname "$0")"/../../../scripts/create_table.sh
+# shellcheck source=../../../scripts/get_title.sh
+. "$(dirname "$0")"/../../../scripts/get_title.sh
+# shellcheck source=../../../scripts/insert.sh
+. "$(dirname "$0")"/../../../scripts/insert.sh
+
+DB_PATH="$1"
+shift
+
+get_type() {
+ FILE="$(basename "$1")"
+ MACRO_PATTERN="^ax_"
+
+ if echo "$FILE" | grep -q "$MACRO_PATTERN"; then
+ echo "Macro"
+ fi
+}
+
+insert_pages() {
+ # Get title and insert into table for each html file
+ while [ -n "$1" ]; do
+ unset PAGE_NAME
+ unset PAGE_TYPE
+ PAGE_NAME="$(get_title "$1" | sed 's/(Autoconf Archive)//g')"
+ if [ -n "$PAGE_NAME" ]; then
+ PAGE_TYPE="$(get_type "$1")"
+ #get_type "$1"
+ if [ -z "$PAGE_TYPE" ]; then
+ PAGE_TYPE="Guide"
+ fi
+ #echo "$PAGE_TYPE"
+ insert "$DB_PATH" "$PAGE_NAME" "$PAGE_TYPE" "$(basename "$1")"
+ fi
+ shift
+ done
+}
+
+create_table "$DB_PATH"
+insert_pages "$@"