From 8bb86acc75a348599c706c89715d71b2eae6bed0 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Mon, 7 Dec 2020 09:53:49 +0300 Subject: . --- data/butterfly/content | 10 ---------- data/butterfly/title | 1 - data/juniper | 10 ---------- data/licorice | 5 ----- site/404.html | 4 ++++ site/act/admin | 3 +++ site/act/article | 5 +++++ site/act/entry | 18 ++++++++++++++++++ site/article/butterfly/content | 10 ++++++++++ site/article/butterfly/title | 1 + site/article/juniper | 10 ++++++++++ site/article/licorice | 5 +++++ site/index.html | 4 ++++ site/proc/123/request/cookie | 2 ++ site/proc/123/request/file/avatar | 1 + site/proc/123/request/meta | 4 ++++ site/proc/123/request/param | 2 ++ site/proc/123/request/urlparam | 1 + site/template/admin | 0 site/template/article | 13 +++++++++++++ titles.sh | 6 ------ 21 files changed, 83 insertions(+), 32 deletions(-) delete mode 100644 data/butterfly/content delete mode 100644 data/butterfly/title delete mode 100644 data/juniper delete mode 100644 data/licorice create mode 100644 site/404.html create mode 100644 site/act/admin create mode 100644 site/act/article create mode 100644 site/act/entry create mode 100644 site/article/butterfly/content create mode 100644 site/article/butterfly/title create mode 100644 site/article/juniper create mode 100644 site/article/licorice create mode 100644 site/index.html create mode 100644 site/proc/123/request/cookie create mode 100644 site/proc/123/request/file/avatar create mode 100644 site/proc/123/request/meta create mode 100644 site/proc/123/request/param create mode 100644 site/proc/123/request/urlparam create mode 100644 site/template/admin create mode 100644 site/template/article delete mode 100755 titles.sh diff --git a/data/butterfly/content b/data/butterfly/content deleted file mode 100644 index 5ecbc59..0000000 --- a/data/butterfly/content +++ /dev/null @@ -1,10 +0,0 @@ -Butterflies are insects in the macrolepidopteran clade -Rhopalocera from the order Lepidoptera, which also includes moths. -Adult butterflies have large, often brightly coloured wings, -and conspicuous, fluttering flight. -The group comprises the large superfamily Papilionoidea, -which contains at least one former group, -the skippers (formerly the superfamily "Hesperioidea"), -and the most recent analyses suggest it also contains the moth-butterflies -(formerly the superfamily "Hedyloidea"). -Butterfly fossils date to the Paleocene, about 56 million years ago. diff --git a/data/butterfly/title b/data/butterfly/title deleted file mode 100644 index a32b910..0000000 --- a/data/butterfly/title +++ /dev/null @@ -1 +0,0 @@ -Butterfly diff --git a/data/juniper b/data/juniper deleted file mode 100644 index 66e3d03..0000000 --- a/data/juniper +++ /dev/null @@ -1,10 +0,0 @@ -title Juniper -content Junipers are coniferous trees and shrubs in the genus Juniperus - of the cypress family Cupressaceae. - Depending on taxonomic viewpoint, between 50 and 67 species of junipers are - widely distributed throughout the Northern Hemisphere, from the Arctic, - south to tropical Africa, from Ziarat, Pakistan, east to eastern Tibet - in the Old World, and in the mountains of Central America. - The highest-known juniper forest occurs at an altitude of 16,000 ft (4,900 m) - in southeastern Tibet and the northern Himalayas, - creating one of the highest tree-lines on earth. diff --git a/data/licorice b/data/licorice deleted file mode 100644 index 613b1b7..0000000 --- a/data/licorice +++ /dev/null @@ -1,5 +0,0 @@ -title Licorice -content Liquorice (British English) or licorice (American English) - is the common name of Glycyrrhiza glabra, - a flowering plant of the bean family Fabaceae, - from the root of which a sweet, aromatic flavouring can be extracted. diff --git a/site/404.html b/site/404.html new file mode 100644 index 0000000..49d5ddf --- /dev/null +++ b/site/404.html @@ -0,0 +1,4 @@ + +404 Not Found +

404 Not Found

+ diff --git a/site/act/admin b/site/act/admin new file mode 100644 index 0000000..e87c758 --- /dev/null +++ b/site/act/admin @@ -0,0 +1,3 @@ +#!/bin/bash +# Some admin act. (No such now, so 404.) +cat 404.html diff --git a/site/act/article b/site/act/article new file mode 100644 index 0000000..fbd4d5a --- /dev/null +++ b/site/act/article @@ -0,0 +1,5 @@ +#!/bin/bash +if test -z "$1" +then # Response list of articles +else # Response article page +fi diff --git a/site/act/entry b/site/act/entry new file mode 100644 index 0000000..33fd084 --- /dev/null +++ b/site/act/entry @@ -0,0 +1,18 @@ +#!/bin/bash +# This is the process to be called. +# $proc and $base (initial working directory) is already set. +# Requested path is in $1, any other request data is in proc/$proc/request. +# Usually you want to dispatch the path here and call some other programs. =) +# Path has ending / and no starting one (apth for root is empty). +# Response meta should be formed in proc/$proc/response, +# output is response body. +after () { test -z "${2##*$1*}" && echo -n "${2#*$1}"; } +startswith() { case $2 in "$1"*) true;; *) false;; esac; } +if test -z "$1" +then cat index.html +elif startswith "article/" "$1" +then ./act/article "$(after / $1)" +elif startswith "admin/" "$1" +then ./act/admin "$(after / $1)" +else cat 404.html +fi diff --git a/site/article/butterfly/content b/site/article/butterfly/content new file mode 100644 index 0000000..5ecbc59 --- /dev/null +++ b/site/article/butterfly/content @@ -0,0 +1,10 @@ +Butterflies are insects in the macrolepidopteran clade +Rhopalocera from the order Lepidoptera, which also includes moths. +Adult butterflies have large, often brightly coloured wings, +and conspicuous, fluttering flight. +The group comprises the large superfamily Papilionoidea, +which contains at least one former group, +the skippers (formerly the superfamily "Hesperioidea"), +and the most recent analyses suggest it also contains the moth-butterflies +(formerly the superfamily "Hedyloidea"). +Butterfly fossils date to the Paleocene, about 56 million years ago. diff --git a/site/article/butterfly/title b/site/article/butterfly/title new file mode 100644 index 0000000..a32b910 --- /dev/null +++ b/site/article/butterfly/title @@ -0,0 +1 @@ +Butterfly diff --git a/site/article/juniper b/site/article/juniper new file mode 100644 index 0000000..66e3d03 --- /dev/null +++ b/site/article/juniper @@ -0,0 +1,10 @@ +title Juniper +content Junipers are coniferous trees and shrubs in the genus Juniperus + of the cypress family Cupressaceae. + Depending on taxonomic viewpoint, between 50 and 67 species of junipers are + widely distributed throughout the Northern Hemisphere, from the Arctic, + south to tropical Africa, from Ziarat, Pakistan, east to eastern Tibet + in the Old World, and in the mountains of Central America. + The highest-known juniper forest occurs at an altitude of 16,000 ft (4,900 m) + in southeastern Tibet and the northern Himalayas, + creating one of the highest tree-lines on earth. diff --git a/site/article/licorice b/site/article/licorice new file mode 100644 index 0000000..613b1b7 --- /dev/null +++ b/site/article/licorice @@ -0,0 +1,5 @@ +title Licorice +content Liquorice (British English) or licorice (American English) + is the common name of Glycyrrhiza glabra, + a flowering plant of the bean family Fabaceae, + from the root of which a sweet, aromatic flavouring can be extracted. diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..e163357 --- /dev/null +++ b/site/index.html @@ -0,0 +1,4 @@ + +Welcome! +

Welcome!

+ diff --git a/site/proc/123/request/cookie b/site/proc/123/request/cookie new file mode 100644 index 0000000..07766a7 --- /dev/null +++ b/site/proc/123/request/cookie @@ -0,0 +1,2 @@ +monster-name monster-value +another-name another-value diff --git a/site/proc/123/request/file/avatar b/site/proc/123/request/file/avatar new file mode 100644 index 0000000..61a0691 --- /dev/null +++ b/site/proc/123/request/file/avatar @@ -0,0 +1 @@ +Some image, probably PNG. (Too lazy to insert actual one.) diff --git a/site/proc/123/request/meta b/site/proc/123/request/meta new file mode 100644 index 0000000..f58e6e5 --- /dev/null +++ b/site/proc/123/request/meta @@ -0,0 +1,4 @@ +host veresov.pro +port 80 +method POST +secure no diff --git a/site/proc/123/request/param b/site/proc/123/request/param new file mode 100644 index 0000000..5bc8bae --- /dev/null +++ b/site/proc/123/request/param @@ -0,0 +1,2 @@ +name Aleksey Veresov +email aleksey@veresov.pro diff --git a/site/proc/123/request/urlparam b/site/proc/123/request/urlparam new file mode 100644 index 0000000..e5e0334 --- /dev/null +++ b/site/proc/123/request/urlparam @@ -0,0 +1 @@ +q how many cows? diff --git a/site/template/admin b/site/template/admin new file mode 100644 index 0000000..e69de29 diff --git a/site/template/article b/site/template/article new file mode 100644 index 0000000..fec42d7 --- /dev/null +++ b/site/template/article @@ -0,0 +1,13 @@ +list + page + List of articles + +

Here are some articles for you:

+ + + + item
  • $title
  • +page + $title + $content + diff --git a/titles.sh b/titles.sh deleted file mode 100755 index 374094a..0000000 --- a/titles.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -export base="$(pwd)/" -export proc=$$ -mkdir -p "$base/proc/$proc" -vsvs-extract $'echo "$value" | vsvs-parse \'test "$key" == "title" && echo "$value"\'' data -rm -r "$base/proc/$proc" -- cgit v1.2.3