_blogs: Disable debug
This commit is contained in:
parent
ddbdccd490
commit
51e0a0c6d0
18
qsgen2
18
qsgen2
@ -583,7 +583,7 @@ function _blogs() {
|
|||||||
if [[ ${globaldebug} == "true" ]]; then
|
if [[ ${globaldebug} == "true" ]]; then
|
||||||
local debug=true
|
local debug=true
|
||||||
else
|
else
|
||||||
local debug=true
|
local debug=false
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_msg main "${0:t}_msg_3"
|
_msg main "${0:t}_msg_3"
|
||||||
@ -649,18 +649,18 @@ function _blogs() {
|
|||||||
|
|
||||||
# Check if DATE or BLOG_TITLE metadata is missing and log message
|
# Check if DATE or BLOG_TITLE metadata is missing and log message
|
||||||
if [[ "${date_found}" == false ]]; then
|
if [[ "${date_found}" == false ]]; then
|
||||||
_msg debug "${0:t}_msg_9" " ${blog}."
|
if (${debug}) _msg debug "${0:t}_msg_9" " ${blog}."
|
||||||
continue # Skip this file and move to the next
|
continue # Skip this file and move to the next
|
||||||
fi
|
fi
|
||||||
if [[ "${title_found}" == false ]]; then
|
if [[ "${title_found}" == false ]]; then
|
||||||
_msg debug "${0:t}_msg_10" " ${blog}."
|
if (${debug}) _msg debug "${0:t}_msg_10" " ${blog}."
|
||||||
continue # Skip this file and move to the next
|
continue # Skip this file and move to the next
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Extract blog information
|
# Extract blog information
|
||||||
sdate=( $( echo ${content} | grep DATE | sed "s|DATE\ ||" | sed "s|\-|\ |g" ) )
|
sdate=( $( echo ${content} | grep DATE | sed "s|DATE\ ||" | sed "s|\-|\ |g" ) )
|
||||||
if [[ ${config[project_generator]} == "native" ]]; then
|
if [[ ${config[project_generator]} == "native" ]]; then
|
||||||
_msg debug "* qstags: Fetching BLOG_TITLE"
|
if (${debug}) _msg debug "* qstags: Fetching BLOG_TITLE"
|
||||||
while IFS= read -r line; do
|
while IFS= read -r line; do
|
||||||
if [[ "$line" == "BLOG_TITLE "* ]]; then
|
if [[ "$line" == "BLOG_TITLE "* ]]; then
|
||||||
btitle="${line#BLOG_TITLE }"
|
btitle="${line#BLOG_TITLE }"
|
||||||
@ -668,7 +668,7 @@ function _blogs() {
|
|||||||
fi
|
fi
|
||||||
done <<< "$content"
|
done <<< "$content"
|
||||||
elif [[ ${config[project_generator]} == "markdown" ]]; then
|
elif [[ ${config[project_generator]} == "markdown" ]]; then
|
||||||
_msg debug "* markdown: Fetching BLOG_TITLE"
|
if (${debug}) _msg debug "* markdown: Fetching BLOG_TITLE"
|
||||||
while IFS= read -r line; do
|
while IFS= read -r line; do
|
||||||
if [[ "$line" == \#* ]]; then
|
if [[ "$line" == \#* ]]; then
|
||||||
btitle="${line#\#}" # Remove the first '#' character
|
btitle="${line#\#}" # Remove the first '#' character
|
||||||
@ -678,9 +678,9 @@ function _blogs() {
|
|||||||
fi
|
fi
|
||||||
done <<< "$content"
|
done <<< "$content"
|
||||||
fi
|
fi
|
||||||
_msg debug "* Fetching INGRESS"
|
if (${debug}) _msg debug "* Fetching INGRESS"
|
||||||
ingress=$( echo ${content} | sed "s/'/\\\'/g" | xargs | grep -Po "#INGRESS_START\K(.*?)#INGRESS_STOP" | sed "s|\ \#INGRESS_STOP||" | sed "s|^\ ||" )
|
ingress=$( echo ${content} | sed "s/'/\\\'/g" | xargs | grep -Po "#INGRESS_START\K(.*?)#INGRESS_STOP" | sed "s|\ \#INGRESS_STOP||" | sed "s|^\ ||" )
|
||||||
_msg debug "* Fetching BODY"
|
if (${debug}) _msg debug "* Fetching BODY"
|
||||||
body=$( echo ${content} | sed "s/'/\\\'/g" | xargs | grep -Po "#BODY_START\K(.*?)#BODY_STOP" | sed "s|\ \#BODY_STOP||" | sed "s|^\ ||" )
|
body=$( echo ${content} | sed "s/'/\\\'/g" | xargs | grep -Po "#BODY_START\K(.*?)#BODY_STOP" | sed "s|\ \#BODY_STOP||" | sed "s|^\ ||" )
|
||||||
|
|
||||||
blog_index=$(echo "${btitle:l}" | sed 's/ /_/g; s/,//g; s/\.//g; s/://g; s/[()]//g')
|
blog_index=$(echo "${btitle:l}" | sed 's/ /_/g; s/,//g; s/\.//g; s/://g; s/[()]//g')
|
||||||
@ -735,9 +735,9 @@ function _blogs() {
|
|||||||
if (${debug}) _msg debug "${0:t}_msg_20"
|
if (${debug}) _msg debug "${0:t}_msg_20"
|
||||||
blog_content=$( echo ${blog_content} | perl -pe "s|#tagline|${config[site_tagline]}|gs; s|#sitename|${config[site_name]}|gs; s|#pagetitle|${page_title}|gs" )
|
blog_content=$( echo ${blog_content} | perl -pe "s|#tagline|${config[site_tagline]}|gs; s|#sitename|${config[site_name]}|gs; s|#pagetitle|${page_title}|gs" )
|
||||||
|
|
||||||
_msg debug "* Running _last_updated"
|
if (${debug}) _msg debug "* Running _last_updated"
|
||||||
blog_content=$(_last_updated "${blog_content}")
|
blog_content=$(_last_updated "${blog_content}")
|
||||||
_msg debug "* Running _cleanup"
|
if (${debug}) _msg debug "* Running _cleanup"
|
||||||
blog_content=$(_cleanup "${blog_content}")
|
blog_content=$(_cleanup "${blog_content}")
|
||||||
|
|
||||||
# Create directory if it doesn't exist
|
# Create directory if it doesn't exist
|
||||||
|
Loading…
Reference in New Issue
Block a user