Removing noter as submodule and copying files into subdirectory
This commit is contained in:
parent
b67fab79ae
commit
07ec3fb833
|
@ -1,3 +0,0 @@
|
||||||
[submodule "noter"]
|
|
||||||
path = noter
|
|
||||||
url = https://code.criminallycute.fi/siina/noter
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
all: write publish
|
||||||
|
|
||||||
|
write:
|
||||||
|
./noter/writer.sh public
|
||||||
|
|
||||||
|
publish:
|
||||||
|
ssh siina.monster "cd /var/www/siina.monster && git pull"
|
|
@ -1,4 +1,6 @@
|
||||||
# siina.monster
|
# siina.monster
|
||||||
|
|
||||||
Writing notes is done via `./noter/writer.sh public` to ensure html ends up in `./public/`, which is a publicly served directory.
|
Writing notes is done via `make write` and updating the live site is through `make publish`.
|
||||||
|
|
||||||
|
To do both, simply use `make`.
|
||||||
|
|
||||||
|
|
1
noter
1
noter
|
@ -1 +0,0 @@
|
||||||
Subproject commit 5ec3c6130c3bcf27208873f12fb7311a464bf6ef
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
Copyright (c) 2023 koutsie
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
|
@ -0,0 +1,7 @@
|
||||||
|
a simple note taking system, that also generates weboages with rss feeds!
|
||||||
|
made with bash.
|
||||||
|
|
||||||
|
### see noter.sh for generation time options
|
||||||
|
### place your notes onto a foldier named "notes" in the directory noter.sh is in!
|
||||||
|
|
||||||
|
example of what a page looks like: https://k0.tel/
|
|
@ -0,0 +1,100 @@
|
||||||
|
showgenerator="true"
|
||||||
|
backtotop="true"
|
||||||
|
lastupdated="true"
|
||||||
|
#rssfeed="true"
|
||||||
|
|
||||||
|
site_title="koutsie's telenotes"
|
||||||
|
site_description="thoughts about mainly computers... maybe recipes and cats too?"
|
||||||
|
site_link="https://k0.tel/"
|
||||||
|
publish_dir="."
|
||||||
|
|
||||||
|
# Put CSS between <<EOF and EOF
|
||||||
|
site_css=$(cat <<EOF
|
||||||
|
/* font by https://www.1001fonts.com/users/junkohanhero/ */
|
||||||
|
@font-face { font-family: header; src: url(scratch_x_black.ttf); }
|
||||||
|
body {
|
||||||
|
background-color: #0f0f0f;
|
||||||
|
color: #fff;
|
||||||
|
font-family: 'Arial Rounded MT', sans-serif;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
/* font legibility optimizations */
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
.note {
|
||||||
|
background-color: #181717;
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
font-family: "header", sans-serif;
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
note {
|
||||||
|
color: #fff;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
code {
|
||||||
|
color: #00ff62b5;
|
||||||
|
font-family: "Lucida Console", "Courier New", monospace;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
.back-to-top {
|
||||||
|
text-align: right;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
.last-updated {
|
||||||
|
text-align: right;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
color: #888;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
a:link, a:visited, a:hover, a:active {
|
||||||
|
color: #ff7b00;
|
||||||
|
font-style: normal;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
/* le tableee */
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
border-radius: 8px;
|
||||||
|
overflow: hidden;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 10px 15px;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
background: #1f1f1f;
|
||||||
|
text-align: left;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
background: #0b0b0b;
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
)
|
|
@ -0,0 +1,192 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# noter 1.3.0 - "nice configs" - @k@layer8.space - mit
|
||||||
|
|
||||||
|
# a pretty nifty little logging utility!
|
||||||
|
nlog() {
|
||||||
|
local ORANGE='\033[0;33m'
|
||||||
|
local NO_COLOR='\033[0m'
|
||||||
|
local calling_function=${FUNCNAME[1]}
|
||||||
|
|
||||||
|
echo -e "${ORANGE}[noter] ${calling_function} | ${1} ${NO_COLOR}"
|
||||||
|
}
|
||||||
|
|
||||||
|
nlog "sourcing config.sh"
|
||||||
|
noter_dir=$(dirname "$0")
|
||||||
|
source $noter_dir/config.sh
|
||||||
|
|
||||||
|
# Override publish dir if passed as cli arg
|
||||||
|
[[ ! -z "$1" ]] && nlog "overriding publish_dir to $1" && publish_dir="$1"
|
||||||
|
|
||||||
|
if [ ! -d "notes" ]; then
|
||||||
|
nlog "Error: 'notes' folder not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
checksetting() {
|
||||||
|
# Use this function to check for a setting without repetition
|
||||||
|
# Eg:
|
||||||
|
# checksetting "yourmom" "$isyourmom"
|
||||||
|
if [ "$2" = true ]; then
|
||||||
|
nlog "$1 set to $2"
|
||||||
|
echo "$1" >>"$output_file"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
givefavicon() {
|
||||||
|
local file_path="$1"
|
||||||
|
|
||||||
|
if [ -f "$file_path" ]; then
|
||||||
|
local base64_data="$(base64 -w 0 "$file_path")"
|
||||||
|
echo "data:image/png;base64,$base64_data"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
generate_note_html() {
|
||||||
|
# NOTE TO SELF: Figure out parsing html blocks (ie: <code>) so that we can apply styles for whole
|
||||||
|
# elements instead of doing what we're doing right now...
|
||||||
|
local note_date="$(date -d "$(basename "$1" .txt)" +"%B %d, %Y")"
|
||||||
|
for img in $(grep -oP '(?<=<img src=").*?(?=")' "$1"); do
|
||||||
|
# Check if the loading attribute already exists
|
||||||
|
if ! grep -q "src=\"$img\" loading=\"lazy\"" "$1"; then
|
||||||
|
# Add the loading attribute if it doesn't exist
|
||||||
|
sed -i "s|<img src=\"$img\"|<img src=\"$img\" loading=\"lazy\"|g" "$1"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "<a name='$(basename "$1" .txt)'></a>"
|
||||||
|
echo "<div class='note'>"
|
||||||
|
if [ "$2" = true ]; then
|
||||||
|
echo "<h3><a href='#$(date -d "$(basename "$1" .txt)" +"%Y")'>$(date -d "$(basename "$1" .txt)" +"%Y")</a></h3>"
|
||||||
|
fi
|
||||||
|
echo "<h4><a href='#$(basename "$1" .txt)'>$note_date</a></h4>"
|
||||||
|
echo "$(cat "$1")</br>"
|
||||||
|
echo "</div>"
|
||||||
|
}
|
||||||
|
|
||||||
|
generate_top_year_bar() {
|
||||||
|
local years=$(find notes -name "*.txt" ! -empty | cut -d'/' -f2 | cut -d'-' -f1 | sort -u | tac)
|
||||||
|
local top_bar="<center><div class='top-bar'>"
|
||||||
|
local first_year=true
|
||||||
|
for year in $years; do
|
||||||
|
if [ "$first_year" = false ]; then
|
||||||
|
top_bar+=" | "
|
||||||
|
else
|
||||||
|
first_year=false
|
||||||
|
fi
|
||||||
|
top_bar+="<a href='#$(find notes -name "$year-*.txt" ! -empty | sort -n | head -n1 | cut -d'/' -f2 | cut -d'.' -f1)'>$year</a>"
|
||||||
|
done
|
||||||
|
top_bar+="</div></center><br>"
|
||||||
|
echo "$top_bar"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# this took way too long but fuck it
|
||||||
|
# im faster than Google at getting a
|
||||||
|
# feed going goddamit!
|
||||||
|
generate_rss_feed() {
|
||||||
|
nlog "generating rss feed"
|
||||||
|
local rss_file="feed.xml"
|
||||||
|
local rss_pubdate=$(date -u +"%a, %d %b %Y %H:%M:%S GMT")
|
||||||
|
|
||||||
|
xml_escape() {
|
||||||
|
local content="$1"
|
||||||
|
sed 's/&/\&/g; s/</\</g; s/>/\>/g; s/"/\"/g; s/'"'"'/\'/g' <<< "$content"
|
||||||
|
}
|
||||||
|
|
||||||
|
# im sorry for these crimes against humanity
|
||||||
|
echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
|
||||||
|
<rss version=\"2.0\">
|
||||||
|
<channel>
|
||||||
|
<title>$(xml_escape "$site_title")</title>
|
||||||
|
<link>$site_link</link>
|
||||||
|
<description>$(xml_escape "$site_description")</description>
|
||||||
|
<pubDate>$rss_pubdate</pubDate>
|
||||||
|
<lastBuildDate>$rss_pubdate</lastBuildDate>
|
||||||
|
<docs>https://cyber.harvard.edu/rss/rss.html</docs>
|
||||||
|
<generator>noter</generator>" >"$rss_file"
|
||||||
|
|
||||||
|
# this works, don't touch.
|
||||||
|
for file in $(find notes -name '*.txt' -type f -print0 | sort -zr | xargs -0); do
|
||||||
|
if [ -f "$file" ] && [ -s "$file" ]; then
|
||||||
|
nlog "$file"
|
||||||
|
local note_date=$(date -d "$(basename "$file" .txt)" +"%a, %d %b %Y %H:%M:%S GMT")
|
||||||
|
local note_link="$rss_link#$(basename "$file" .txt)"
|
||||||
|
local note_title=$(basename "$file" .txt)
|
||||||
|
local note_description=$(head -n 1 "$file")
|
||||||
|
# Currently we use the first line of the note as the description
|
||||||
|
# This could be improved uppon by using a selector or something to grab
|
||||||
|
# the title for example from a h1 or something as (at least I) tend to
|
||||||
|
# use those when i type posts.
|
||||||
|
|
||||||
|
echo " <item>
|
||||||
|
<title>$(xml_escape "$note_title")</title>
|
||||||
|
<link>$note_link</link>
|
||||||
|
<description>$(xml_escape "$note_description")</description>
|
||||||
|
<pubDate>$note_date</pubDate>
|
||||||
|
</item>" >>"$rss_file"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "</channel>
|
||||||
|
</rss>" >>"$rss_file"
|
||||||
|
|
||||||
|
nlog "rss feed generated, please remember to move it too with the site: $rss_file"
|
||||||
|
}
|
||||||
|
|
||||||
|
# why is this stray here, im too afraid to move it
|
||||||
|
# godspeed notecount...
|
||||||
|
notecount=$(find notes -name "*.txt" ! -empty | wc -l)
|
||||||
|
|
||||||
|
if [ ! -d "${publish_dir}" ]; then
|
||||||
|
nlog "Creating ${publish_dir}"
|
||||||
|
mkdir -p "${publish_dir}"
|
||||||
|
fi
|
||||||
|
# Create HTML file
|
||||||
|
output_file="${publish_dir}/index.html"
|
||||||
|
echo "<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8'>
|
||||||
|
<title>$notecount notes | noter</title>
|
||||||
|
<meta property='og:title' content='$site_title' />
|
||||||
|
<meta property='og:description' content='$site_description' />
|
||||||
|
<meta property='og:type' content='blog' />
|
||||||
|
<meta property='og:generator' content='noter' />
|
||||||
|
<!-- those who seek, shall see - but thy shall be prepared... -->
|
||||||
|
<link rel='icon' type='image/png' href='$(givefavicon "$favicon")'>
|
||||||
|
<link rel='alternate' type='application/atom+xml' title="rss" href='/feed.xml' />
|
||||||
|
<meta name='last-generated' content='$(date +"%Y-%m-%d %H:%M:%S")' />
|
||||||
|
<style>
|
||||||
|
$site_css
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class='container'>
|
||||||
|
<h1>$site_title</h1><br>
|
||||||
|
<center> <a rel='me' href='https://social.criminallycute.fi/@siina'>fedi</a> | <a href="feed.xml">rss</a> | <a href="https://criminallycute.fi/">criminally cute</a> </center>" >"$output_file"
|
||||||
|
generate_top_year_bar >>"$output_file"
|
||||||
|
|
||||||
|
# loop for every note in notes
|
||||||
|
nlog "generating page..."
|
||||||
|
for file in $(ls -r notes/*.txt); do
|
||||||
|
nlog "processing: $file"
|
||||||
|
if [ -f "$file" ] && [ -s "$file" ]; then
|
||||||
|
generate_note_html "$file" >>"$output_file"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# generate page's rss feed
|
||||||
|
[[ $rssfeed == true ]] && generate_rss_feed
|
||||||
|
|
||||||
|
# bottom navigation
|
||||||
|
nlog "applying settings"
|
||||||
|
checksetting "<div class='generated-with'>generated with <a href='https://code.criminallycute.fi/siina/noter'>noter</a></div>" "$showgenerator"
|
||||||
|
checksetting "<div class='back-to-top'><a href='#'>Back to Top</a></div>" "$backtotop"
|
||||||
|
checksetting "<div class='last-updated'>last Updated: $(date +"%Y-%m-%d %H:%M:%S")</div>" "$lastupdated"
|
||||||
|
|
||||||
|
|
||||||
|
echo "</div>
|
||||||
|
</body>
|
||||||
|
</html>" >>"$output_file"
|
||||||
|
|
||||||
|
nlog "Done, please see: $output_file."
|
|
@ -0,0 +1,24 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# writer 1.2 - @k@layer8.space - mit
|
||||||
|
|
||||||
|
# Use the assigned editor, if any, else use nano
|
||||||
|
[[ ${EDITOR:-"unset"} == "unset" ]] && EDITOR=nano
|
||||||
|
|
||||||
|
nlog() {
|
||||||
|
local ORANGE='\033[0;33m'
|
||||||
|
local NO_COLOR='\033[0m'
|
||||||
|
echo -e "${ORANGE}[noter] | ${1} ${NO_COLOR}"
|
||||||
|
}
|
||||||
|
|
||||||
|
mkdir -p notes
|
||||||
|
current_date=$(date +%Y-%m-%d)
|
||||||
|
nlog "opening note notes/$current_time.txt"
|
||||||
|
filename="notes/${current_date}.txt"
|
||||||
|
$EDITOR "$filename"
|
||||||
|
|
||||||
|
# Get writer's location in case executed elsewhere
|
||||||
|
noter_dir=$(dirname "$0")
|
||||||
|
|
||||||
|
# Override publish dir if passed as cli arg
|
||||||
|
[[ ! -z "$1" ]] && publish_dir="$1"
|
||||||
|
"$noter_dir/noter.sh" "${publish_dir}"
|
|
@ -10,7 +10,7 @@
|
||||||
<!-- those who seek, shall see - but thy shall be prepared... -->
|
<!-- those who seek, shall see - but thy shall be prepared... -->
|
||||||
<link rel='icon' type='image/png' href=''>
|
<link rel='icon' type='image/png' href=''>
|
||||||
<link rel='alternate' type='application/atom+xml' title=rss href='/feed.xml' />
|
<link rel='alternate' type='application/atom+xml' title=rss href='/feed.xml' />
|
||||||
<meta name='last-generated' content='2024-02-17 17:42:06' />
|
<meta name='last-generated' content='2024-02-17 17:46:49' />
|
||||||
<style>
|
<style>
|
||||||
/* font by https://www.1001fonts.com/users/junkohanhero/ */
|
/* font by https://www.1001fonts.com/users/junkohanhero/ */
|
||||||
@font-face { font-family: header; src: url(scratch_x_black.ttf); }
|
@font-face { font-family: header; src: url(scratch_x_black.ttf); }
|
||||||
|
@ -114,7 +114,7 @@ href="https://code.criminallycute.fi/siina/noter">noter</a> script.</br>
|
||||||
</div>
|
</div>
|
||||||
<div class='generated-with'>generated with <a href='https://code.criminallycute.fi/siina/noter'>noter</a></div>
|
<div class='generated-with'>generated with <a href='https://code.criminallycute.fi/siina/noter'>noter</a></div>
|
||||||
<div class='back-to-top'><a href='#'>Back to Top</a></div>
|
<div class='back-to-top'><a href='#'>Back to Top</a></div>
|
||||||
<div class='last-updated'>last Updated: 2024-02-17 17:42:06</div>
|
<div class='last-updated'>last Updated: 2024-02-17 17:46:49</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue