mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2026-01-10 11:09:32 +00:00
Compare commits
80 commits
c8f6f7a4b5
...
56a60f2c70
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
56a60f2c70 | ||
|
|
9759658a8a | ||
|
|
48384c1c4c | ||
|
|
4ab39bab99 | ||
|
|
5d1b886c72 | ||
|
|
7e9863c894 | ||
|
|
b8b6214180 | ||
|
|
cf6072342f | ||
|
|
b0c1a53c48 | ||
|
|
43bc6af2a1 | ||
|
|
c5fba39ecc | ||
|
|
394cf53fff | ||
|
|
83ed893565 | ||
|
|
a5ccdd19c1 | ||
|
|
1041bde426 | ||
|
|
40ca880d5c | ||
|
|
8699155e2b | ||
|
|
14e94ea661 | ||
|
|
74f40e234e | ||
|
|
73b5b91b2e | ||
|
|
d55199a9bf | ||
|
|
10c49d9dbd | ||
|
|
48b185fd17 | ||
|
|
a755e71bb1 | ||
|
|
ea7e46750d | ||
|
|
1c5c8f190e | ||
|
|
288be184d8 | ||
|
|
766e641fc7 | ||
|
|
99829a59a1 | ||
|
|
9b38e7b5d7 | ||
|
|
8eeefb3c7c | ||
|
|
4d1d536bb9 | ||
|
|
b7fcfd761d | ||
|
|
e5567df5a4 | ||
|
|
bc73a32bc5 | ||
|
|
2a2b152e3d | ||
|
|
5f3482047d | ||
|
|
0bd0193d19 | ||
|
|
b7fb8737e9 | ||
|
|
04b4fbaa71 | ||
|
|
f0044f9886 | ||
|
|
7a28834374 | ||
|
|
7bc9622736 | ||
|
|
a72bccc49c | ||
|
|
beae09620a | ||
|
|
d98aca4a4a | ||
|
|
dad4bc3f18 | ||
|
|
bd8c54d1cd | ||
|
|
af9c0df96e | ||
|
|
66f247cf6e | ||
|
|
5fcaf2ef07 | ||
|
|
a74da2fb84 | ||
|
|
32edc8231b | ||
|
|
64b1b6f444 | ||
|
|
1efebf591d | ||
|
|
98e598eedd | ||
|
|
a1da673f95 | ||
|
|
5cd51c3d18 | ||
|
|
854679775f | ||
|
|
153fcbd69d | ||
|
|
502c04e903 | ||
|
|
05ce15f966 | ||
|
|
8603acd4a4 | ||
|
|
43f77661ab | ||
|
|
0e993813e2 | ||
|
|
4882d87c2b | ||
|
|
d591017437 | ||
|
|
cf321da423 | ||
|
|
a975018fc7 | ||
|
|
afe8318979 | ||
|
|
1351d67530 | ||
|
|
5542294e1f | ||
|
|
bcaf737b03 | ||
|
|
be77cf1ca5 | ||
|
|
647e14cd6f | ||
|
|
3e17387d1e | ||
|
|
7684c66407 | ||
|
|
0dc78a1a51 | ||
|
|
8b1d2524d3 | ||
|
|
a1f568ab7e |
5 changed files with 11 additions and 7 deletions
1
Makefile
1
Makefile
|
|
@ -43,3 +43,4 @@ rsc: $(GEN_RSC)
|
|||
|
||||
clean:
|
||||
rm -f $(HTML) checksums.json
|
||||
make -C contrib clean
|
||||
|
|
|
|||
|
|
@ -1,13 +1,17 @@
|
|||
# Makefile
|
||||
|
||||
STATIC_HTML := $(shell grep -xl '<!-- static html //-->' *.html)
|
||||
HTML := $(shell grep -xl '<!-- static html //-->' *.html)
|
||||
|
||||
.PHONY: all docs
|
||||
.PHONY: all docs clean
|
||||
|
||||
all: docs
|
||||
|
||||
badges.html: badges.md
|
||||
markdown $< > $@
|
||||
|
||||
docs: static-html.sh $(STATIC_HTML) badges.html
|
||||
./static-html.sh $(STATIC_HTML)
|
||||
docs: static-html.sh $(HTML) badges.html
|
||||
./static-html.sh $(HTML)
|
||||
|
||||
clean:
|
||||
rm -f badges.html
|
||||
git checkout HEAD -- $(HTML)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!-- static html //-->
|
||||
<!DOCTYPE html><html lang="en">
|
||||
<!-- static html //-->
|
||||
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<title>RouterOS Scripts :: Logo Color Changer</title>
|
||||
<link rel="stylesheet" type="text/css" href="../general/style.css">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!-- static html //-->
|
||||
<!DOCTYPE html><html lang="en">
|
||||
<!-- static html //-->
|
||||
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<title>RouterOS Scripts :: Notification Generator</title>
|
||||
<link rel="stylesheet" type="text/css" href="../general/style.css">
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ set -e
|
|||
sed -i \
|
||||
-e '/href=/s|\.md|\.html|' \
|
||||
-e '/blockquote/s|/\* display \*/|display: none;|' \
|
||||
-e '/<!-- static html \/\/-->/d' \
|
||||
-e '/<!-- badges here \/\/-->/r badges.html' \
|
||||
-e '/<!-- badges here \/\/-->/d' \
|
||||
"${@}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue