fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

commit fc767b2459193cbc4f5fd6ee07d9953afa93ad5b
parent ff361e15052f955e42564f5379d36c4887d1534c
Author: Friedel Schön <[email protected]>
Date:   Tue, 30 May 2023 23:00:08 +0200

stripping md-generator

Diffstat:
MMakefile | 7+++----
Mmake-man.py | 37++-----------------------------------
Mreadme.md | 2+-
3 files changed, 6 insertions(+), 40 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.3.2 +VERSION := 0.3.3 # Directories SRC_DIR := src @@ -7,8 +7,8 @@ INCLUDE_DIR := include BIN_DIR := bin EXEC_DIR := src/exec MAN_DIR := src/man -ROFF_DIR := man TEMPL_DIR := src/docs +ROFF_DIR := man DOCS_DIR := docs ASSETS_DIR := assets DOC_AST_DIR := docs/assets @@ -42,7 +42,6 @@ ROFF_FILES := $(patsubst $(MAN_DIR)/%.txt,$(ROFF_DIR)/%,$(MAN_FILES)) DOCS_FILES := $(patsubst $(TEMPL_DIR)/%.txt,$(DOCS_DIR)/%.html,$(TEMPL_FILES)) \ $(patsubst $(MAN_DIR)/%.txt,$(DOCS_DIR)/%.html,$(MAN_FILES)) -# Intermediate directories INTERMED_DIRS := $(BIN_DIR) $(BUILD_DIR) $(ROFF_DIR) $(DOCS_DIR) # Magic targets @@ -87,7 +86,7 @@ $(BIN_DIR)/%: $(EXEC_DIR)/%.sh | $(BIN_DIR) $(BIN_DIR)/%: $(EXEC_DIR)/%.lnk | $(BIN_DIR) ln -sf $(shell cat $<) $@ -# Documentation and Manual +# Documentation and Manual $(DOCS_DIR)/%.html: $(TEMPL_DIR)/%.txt $(DOC_AST_DIR) | $(DOCS_DIR) $(SED) 's/%VERSION%/$(VERSION)/' $< | $(PYTHON) $(MAKE_DOCS) > $@ diff --git a/make-man.py b/make-man.py @@ -1,44 +1,13 @@ import sys import re -WIDTH = 80 -HEADER_CHAR = '=' -TITLE_CHAR = '-' -HEADER_SUFFIX = "<span class=right><span id=toggle_dark onclick=toggle_dark()> turn the lights on </span> <a href=https://github.com/friedelschoen/fiss><img id=github alt=GitHub src=assets/github-mark.svg /></a></span>" - -PREFIX = """<!doctype html> -<html lang=en> - -<head> - <title>Friedel's Initialization and Service Supervision</title> - <meta charset=utf-8 /> - <meta name=viewport content='width=device-width,initial-scale=1' /> - <link rel=stylesheet href=assets/style.css /> - <script type=text/javascript src=assets/toggle-dark.js></script> -</head> - -<body> -<div id=wrapper>""" - -SUFFIX = """ -</div> -</body> -</html> -""" - -HEADER_TEMPLATE = "<span class=header><a class=title id=top href=#top>{text}</a><span class=right><span id=toggle_dark onclick=toggle_dark()> turn the lights on </span> <a href=https://github.com/friedelschoen/fiss><img id=github alt=GitHub src=assets/github-mark.svg /></a></span></span>" -TITLE_TEMPLATE = "<a class=title id={id} href=#{id}>{text}</a>" - def inline_convert(text): text = re.sub(r'\*(.+?)\*', r'\\fB\\fC\1\\fR', text) text = re.sub(r'_(.+?)_', r'\\fI\1\\fR', text) -# text = re.sub(r'\[(.*?)\]\((.*?)\)', r'<a href="\2">\1</a>', text) return text in_list = False -#print(PREFIX) - for line in sys.stdin: line = line.strip() @@ -69,6 +38,4 @@ for line in sys.stdin: elif in_list: # is empty but in line sys.stdout.write("\n.PP\n") else: # is empty - sys.stdout.write('\n.PP\n') - -#print(SUFFIX) -\ No newline at end of file + sys.stdout.write('\n.PP\n') +\ No newline at end of file diff --git a/readme.md b/readme.md @@ -1,6 +1,6 @@ # fiss (Friedel's Initialization and Service Supervision) -> 0.2.2 (May 2023) +> 0.3.3 (May 2023) fiss is a lightweight and easy-to-use tool for initializing and supervising long-running services on Unix-like systems. It provides a simple and reliable way to start, stop, and monitor services. It supports automatic restarts, logging, and customizable startup options.