Compare commits
No commits in common. "a13d4dd824aafcbbffc4715c9fd8c322f4f771ce" and "7a89c17953553ec09396d2370031974ef373ba7b" have entirely different histories.
a13d4dd824
...
7a89c17953
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,2 +1,6 @@
|
||||
# ignore generated site
|
||||
output/
|
||||
|
||||
# Ignore compiled files
|
||||
blog/templates/index.html/header.html
|
||||
blog/templates/index.html/footer.html
|
||||
|
14
phpsg.sh
14
phpsg.sh
@ -43,24 +43,28 @@ do
|
||||
exit
|
||||
;;
|
||||
*)
|
||||
>&2 echo "Unknown option '-$opt'."
|
||||
print_usage
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
while IFS= read -r -d '' dir
|
||||
for dir in $(find $SOURCE_DIR -mindepth 1 -type d)
|
||||
do
|
||||
OUT_DIR="${OUTPUT_DIR}/${dir:${#SOURCE_DIR}}"
|
||||
if ! [ -d "$OUT_DIR" ]
|
||||
then
|
||||
mkdir -p "${OUTPUT_DIR}/${dir:${#SOURCE_DIR}}"
|
||||
fi
|
||||
done < <(find "$SOURCE_DIR" -mindepth 1 -type d -print0)
|
||||
done
|
||||
|
||||
while IFS= read -r -d '' file
|
||||
for file in $(find $SOURCE_DIR -type f)
|
||||
do
|
||||
if [[ $file = *.php ]]
|
||||
if [[ $file = *.cfg.php ]]
|
||||
then
|
||||
continue
|
||||
elif [[ $file = *.html.php ]] || [[ $file = *.xml.php ]]
|
||||
then
|
||||
DEST_FILE="${OUTPUT_DIR}/${file:${#SOURCE_DIR}:-4}"
|
||||
if ! [ "$file" -nt "$DEST_FILE" ]
|
||||
@ -80,4 +84,4 @@ do
|
||||
cp "$file" "$DEST_FILE"
|
||||
echo "done"
|
||||
fi
|
||||
done < <(find "$SOURCE_DIR" -type f -not -name '*.cfg.php' -print0)
|
||||
done
|
||||
|
@ -36,6 +36,10 @@ to encrypt your e-mails following their very simple instructions.</p>
|
||||
<li><a href="ircs://irc.libera.chat:6697/gnu" >#gnu</a></li>
|
||||
<li><a href="ircs://irc.libera.chat:6697/gnu-offtopic" >#gnu-offtopic</a></li>
|
||||
</ul>
|
||||
<li>irc.oftc.net</li>
|
||||
<ul>
|
||||
<li><a href="ircs://irc.oftc.net:6697/debian" >#debian</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<?php
|
||||
|
Loading…
x
Reference in New Issue
Block a user