mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2026-02-02 06:19:33 +00:00
Compare commits
43 commits
88155d901a
...
b751a6d5b6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b751a6d5b6 | ||
|
|
736c0ac08c | ||
|
|
6fb70fe2a1 | ||
|
|
378aad070d | ||
|
|
b5f6881f3d | ||
|
|
c9cf6b7023 | ||
|
|
ba89aa229c | ||
|
|
ca7c72338d | ||
|
|
7a8eecf555 | ||
|
|
2b4ccfe7aa | ||
|
|
c25d276d0e | ||
|
|
c50844d46f | ||
|
|
204977c685 | ||
|
|
ac9dfe4913 | ||
|
|
a31f5559aa | ||
|
|
066ef8cc4a | ||
|
|
74f343f6d5 | ||
|
|
76f9d34a70 | ||
|
|
8a908be4e0 | ||
|
|
e62a19257a | ||
|
|
735c163362 | ||
|
|
b6be7ded9a | ||
|
|
a0b4d422b5 | ||
|
|
87f28c234f | ||
|
|
4de0b2e7be | ||
|
|
cf375cbdd1 | ||
|
|
b20f025fc5 | ||
|
|
0f1f9a467f | ||
|
|
5c9825760f | ||
|
|
daf1cfb381 | ||
|
|
42ad0d310f | ||
|
|
f7e9f529d0 | ||
|
|
2e1d59721f | ||
|
|
29a82d1a42 | ||
|
|
de97ed6f19 | ||
|
|
0f3df0c75d | ||
|
|
668f29776b | ||
|
|
c0e8ee8c9b | ||
|
|
1b914274fd | ||
|
|
98343cf8fb | ||
|
|
2aad3add26 | ||
|
|
60a1b98866 | ||
|
|
7560020aff |
12 changed files with 62 additions and 28 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -7,7 +7,6 @@
|
|||
*.rej
|
||||
|
||||
# html files (as generated from markdown)
|
||||
style.css
|
||||
*.html
|
||||
|
||||
# checksums file as used by $ScriptInstallUpdate
|
||||
|
|
|
|||
7
Makefile
7
Makefile
|
|
@ -6,7 +6,7 @@ ALL_RSC := $(wildcard *.rsc */*.rsc)
|
|||
GEN_RSC := $(wildcard *.capsman.rsc *.local.rsc *.wifi.rsc)
|
||||
|
||||
MARKDOWN := $(wildcard *.md doc/*.md doc/mod/*.md)
|
||||
HTML := $(MARKDOWN:.md=.html) style.css
|
||||
HTML := $(MARKDOWN:.md=.html)
|
||||
|
||||
.PHONY: all checksums docs rsc clean
|
||||
|
||||
|
|
@ -19,10 +19,7 @@ checksums.json: contrib/checksums.sh $(ALL_RSC)
|
|||
|
||||
docs: $(HTML)
|
||||
|
||||
style.css: contrib/general/style.css
|
||||
cp $< $@
|
||||
|
||||
%.html: %.md style.css contrib/html.sh contrib/html.sh.d/head.html
|
||||
%.html: %.md general/style.css contrib/html.sh contrib/html.sh.d/head.html
|
||||
contrib/html.sh $< > $@
|
||||
|
||||
rsc: $(GEN_RSC)
|
||||
|
|
|
|||
|
|
@ -404,7 +404,7 @@ immediately remove the link in question.
|
|||
Upstream
|
||||
--------
|
||||
|
||||
[](https://rsc.eworm.de/)
|
||||
[](https://rsc.eworm.de/)
|
||||
|
||||
URL:
|
||||
[GitHub.com](https://github.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||
|
|
|
|||
10
contrib/Makefile
Normal file
10
contrib/Makefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Makefile
|
||||
|
||||
HTML := $(wildcard *.html)
|
||||
|
||||
.PHONY: all docs
|
||||
|
||||
all: docs
|
||||
|
||||
docs: $(HTML)
|
||||
sed -i '/href=/s|\.md|\.html|' $(HTML)
|
||||
|
|
@ -5,11 +5,13 @@ set -e
|
|||
RELTO="$(dirname "${1}")"
|
||||
sed \
|
||||
-e "s|__TITLE__|$(head -n1 "${1}")|" \
|
||||
-e "s|__STYLE__|$(realpath --relative-to="${RELTO}" style.css)|" \
|
||||
-e "s|__STYLE__|$(realpath --relative-to="${RELTO}" general/style.css)|" \
|
||||
-e "s|__LOGO__|$(realpath --relative-to="${RELTO}" logo.png)|" \
|
||||
-e "s|__EWORM__|$(realpath --relative-to="${RELTO}" general/eworm-meadow.avif)|" \
|
||||
-e "s|__QR_CODE__|$(realpath --relative-to="${RELTO}" general/qr-code.png)|" \
|
||||
< "${0}.d/head.html"
|
||||
markdown -f toc,idanchor "${1}" | sed \
|
||||
-e 's/href="\([-_\./[:alnum:]]*\)\.md\(#[-[:alnum:]]*\)\?"/href="\1.html\2"/g' \
|
||||
-e '/<h[1234] /s| id="\(.*\)">| id="\L\1">|' \
|
||||
-e '/<h[1234] /s|-2c-||'
|
||||
-e '/<h[1234] /s|-2c-||g' -e '/<h[1234] /s|--26-amp-3b-||g'
|
||||
printf '</body></html>'
|
||||
|
|
|
|||
|
|
@ -4,3 +4,14 @@
|
|||
<link rel="stylesheet" type="text/css" href="__STYLE__">
|
||||
<link rel="icon" type="image/png" href="__LOGO__">
|
||||
</head><body>
|
||||
<table>
|
||||
<tr>
|
||||
<td rowspan=2><img src="__EWORM__" alt="eworm on meadow"></td>
|
||||
<td rowspan=2><img src="__QR_CODE__" alt="QR code: rsc.eworm.de"></td>
|
||||
<td class="head-top">RouterOS Scripts</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head-bottom">a collection of scripts for MikroTik RouterOS</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
<!DOCTYPE html><html lang="en">
|
||||
<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">
|
||||
<link rel="stylesheet" type="text/css" href="../general/style.css">
|
||||
<link rel="icon" type="image/png" href="../logo.png">
|
||||
<script src="logo-color.d/script.js"></script>
|
||||
</head><body>
|
||||
|
||||
<h1>Logo Color Changer</h1>
|
||||
|
||||
<p><a href="../README.html">⬅️ Go back to main README</a></p>
|
||||
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
||||
|
||||
<p>You want the logo for your own notifications? But you joined the
|
||||
<a href="https://t.me/routeros_scripts">Telegram Group</a> and want
|
||||
|
|
@ -24,20 +24,20 @@ something that differentiates? Color it!</p>
|
|||
<p>Then right-click, click "<i>Take Screenshot</i>" and finally select the
|
||||
logo and download it.</p>
|
||||
|
||||
<p><img src="logo-color.d/browser-01.avif" width=533 height=482 alt="Screenshot Browser 01">
|
||||
<img src="logo-color.d/browser-02.avif" width=533 height=482 alt="Screenshot Browser 02">
|
||||
<img src="logo-color.d/browser-03.avif" width=533 height=482 alt="Screenshot Browser 03"></p>
|
||||
<p><img src="logo-color.d/browser-01.avif" width=533 height=482 alt="Screenshot Browser 01"></p>
|
||||
<p><img src="logo-color.d/browser-02.avif" width=533 height=482 alt="Screenshot Browser 02"></p>
|
||||
<p><img src="logo-color.d/browser-03.avif" width=533 height=482 alt="Screenshot Browser 03"></p>
|
||||
|
||||
<p>(This example is with
|
||||
<a href="https://www.mozilla.org/de/firefox/new/">Firefox</a>. The workflow
|
||||
for other browsers may differ.)</p>
|
||||
|
||||
<p>See how to
|
||||
<a href="../../about/doc/mod/notification-telegram.md#set-a-profile-photo">Set
|
||||
<a href="../doc/mod/notification-telegram.md#set-a-profile-photo">Set
|
||||
a profile photo</a> for your Telegram bot.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p><a href="../README.html">⬅️ Go back to main README</a><br/>
|
||||
<p><a href="../README.md">⬅️ Go back to main README</a><br/>
|
||||
<a href="#top">⬆️ Go back to top</a></p>
|
||||
</body></html>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
<!DOCTYPE html><html lang="en">
|
||||
<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">
|
||||
<link rel="stylesheet" type="text/css" href="../general/style.css">
|
||||
<link rel="icon" type="image/png" href="../logo.png">
|
||||
<script src="notification.d/script.js"></script>
|
||||
</head><body>
|
||||
|
||||
<h1>Notification Generator</h1>
|
||||
|
||||
<p><a href="../README.html">⬅️ Go back to main README</a></p>
|
||||
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
||||
|
||||
<div class="notification">
|
||||
<img src="../logo.svg" alt="logo" class="logo" width=48 height=48>
|
||||
|
|
@ -33,6 +33,6 @@ notification and download it.</p>
|
|||
|
||||
<hr />
|
||||
|
||||
<p><a href="../README.html">⬅️ Go back to main README</a><br/>
|
||||
<p><a href="../README.md">⬅️ Go back to main README</a><br/>
|
||||
<a href="#top">⬆️ Go back to top</a></p>
|
||||
</body></html>
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ chat with [BotFather ↗️](https://t.me/BotFather) and set it there.
|
|||

|
||||
|
||||
Have a look at my
|
||||
[RouterOS-Scripts Logo Color Changer](https://git.eworm.de/cgit/routeros-scripts/plain/contrib/logo-color.html)
|
||||
[RouterOS-Scripts Logo Color Changer](../../contrib/logo-color.html)
|
||||
to create a colored version of this scripts' logo.
|
||||
|
||||
See also
|
||||
|
|
|
|||
BIN
general/eworm-meadow.avif
Normal file
BIN
general/eworm-meadow.avif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 207 B |
|
|
@ -5,12 +5,6 @@ body {
|
|||
font-size: 10pt;
|
||||
line-height: 1.6;
|
||||
}
|
||||
@media only screen and (orientation: landscape) {
|
||||
body {
|
||||
margin-left: 10vw;
|
||||
margin-right: 10vw;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
border-bottom: 1px solid #ccc;
|
||||
color: #000;
|
||||
|
|
@ -24,7 +18,7 @@ a:hover {
|
|||
blockquote {
|
||||
border-left: 4px solid #ccc;
|
||||
padding: 0 10px;
|
||||
color: #777;
|
||||
color: #555;
|
||||
}
|
||||
code {
|
||||
margin: 0 2px;
|
||||
|
|
@ -35,7 +29,7 @@ code {
|
|||
}
|
||||
div.notification {
|
||||
position: relative;
|
||||
float: right;
|
||||
float: none;
|
||||
width: 600px;
|
||||
border: 3px outset #6c5d53;
|
||||
/* border-radius: 5px; */
|
||||
|
|
@ -74,3 +68,24 @@ pre code {
|
|||
span.link {
|
||||
color: #863600;
|
||||
}
|
||||
td.head-top {
|
||||
height: 48px;
|
||||
vertical-align: bottom;
|
||||
font-size: 250%;
|
||||
font-weight: bold;
|
||||
}
|
||||
td.head-bottom {
|
||||
height: 48px;
|
||||
vertical-align: top;
|
||||
font-size: 125%;
|
||||
color: #555;
|
||||
}
|
||||
@media only screen and (orientation: landscape) {
|
||||
body {
|
||||
margin-left: 10vw;
|
||||
margin-right: 10vw;
|
||||
}
|
||||
div.notification {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue