diff options
author | Louie S <louie@example.com> | 2023-05-05 19:16:11 -0700 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-05-05 19:18:23 -0700 |
commit | d7ce7c21ad5fe18b7d0a4e6a496cce2783a50d1e (patch) | |
tree | 68a182570c4dd7bf1edb5ed6f4c438900326038f /src/index-page.sh | |
parent | a26adab1566f7ad0574c93b841f640363a799092 (diff) |
First commit for glibc docset
Diffstat (limited to 'src/index-page.sh')
-rwxr-xr-x | src/index-page.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/index-page.sh b/src/index-page.sh new file mode 100755 index 0000000..a57fd07 --- /dev/null +++ b/src/index-page.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env sh + +# shellcheck source=./lib/create_table +. "$(dirname "$0")"/lib/create_table +# shellcheck source=./lib/insert +. "$(dirname "$0")"/lib/insert + +DB_PATH="$1" +shift + +get_title() { + FILE="$1" + + pup -p -f "$FILE" 'title text{}' | \ + sed 's/ (The GNU C Library)//g' | \ + tr -d \\n | \ + sed 's/\"/\"\"/g' +} + +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")" + PAGE_TYPE="Guide" + if [ -n "$PAGE_NAME" ]; then + insert "$DB_PATH" "$PAGE_NAME" "$PAGE_TYPE" "$(basename "$1")" + fi + shift + done +} + +create_table "$DB_PATH" +insert_pages "$@" |