mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-06 01:49:28 +00:00
Compare commits
14 commits
40147dc1cd
...
c63826c99f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c63826c99f | ||
|
|
046c3811af | ||
|
|
543c4424e7 | ||
|
|
e2fea6eb1e | ||
|
|
515edeaf44 | ||
|
|
25e6780f2a | ||
|
|
f273392d7d | ||
|
|
6be669632b | ||
|
|
3b94878e0d | ||
|
|
e938ea8f0b | ||
|
|
9b34f60b89 | ||
|
|
a94c72493a | ||
|
|
64b651b6d7 | ||
|
|
c9da2423aa |
11 changed files with 77 additions and 12 deletions
|
|
@ -17,7 +17,7 @@ Initial commands
|
|||
Run the complete base installation:
|
||||
|
||||
{
|
||||
:local BaseUrl "https://git.eworm.de/cgit/routeros-scripts/plain/";
|
||||
:local BaseUrl "https://rsc.eworm.de/main/";
|
||||
:local CertCommonName "ISRG Root X2";
|
||||
:local CertFileName "ISRG-Root-X2.pem";
|
||||
:local CertFingerprint "69729b8e15a86efc177a57afb7171dfc64add28c2fca8cf1507e34453ccb1470";
|
||||
|
|
|
|||
15
README.md
15
README.md
|
|
@ -87,7 +87,7 @@ If you intend to download the scripts from a
|
|||
different location (for example from github.com) install the corresponding
|
||||
certificate chain.
|
||||
|
||||
/tool/fetch "https://git.eworm.de/cgit/routeros-scripts/plain/certs/ISRG-Root-X2.pem" dst-path="isrg-root-x2.pem";
|
||||
/tool/fetch "https://rsc.eworm.de/main/certs/ISRG-Root-X2.pem" dst-path="isrg-root-x2.pem";
|
||||
|
||||

|
||||
|
||||
|
|
@ -125,7 +125,7 @@ date and time is set correctly!
|
|||
|
||||
Now let's download the main scripts and add them in configuration on the fly.
|
||||
|
||||
:foreach Script in={ "global-config"; "global-config-overlay"; "global-functions" } do={ /system/script/add name=$Script owner=$Script source=([ /tool/fetch check-certificate=yes-without-crl ("https://git.eworm.de/cgit/routeros-scripts/plain/" . $Script . ".rsc") output=user as-value]->"data"); };
|
||||
:foreach Script in={ "global-config"; "global-config-overlay"; "global-functions" } do={ /system/script/add name=$Script owner=$Script source=([ /tool/fetch check-certificate=yes-without-crl ("https://rsc.eworm.de/main/" . $Script . ".rsc") output=user as-value]->"data"); };
|
||||
|
||||

|
||||
|
||||
|
|
@ -404,14 +404,15 @@ immediately remove the link in question.
|
|||
Upstream
|
||||
--------
|
||||
|
||||
[rsc.eworm.de](https://rsc.eworm.de/)
|
||||
|
||||
[](https://rsc.eworm.de/)
|
||||
|
||||
URL:
|
||||
[GitHub.com](https://github.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||
### Code hosting
|
||||
|
||||
Mirror:
|
||||
[eworm.de](https://git.eworm.de/cgit/routeros-scripts/about/)
|
||||
[GitLab.com](https://gitlab.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||
* [eworm.de](https://git.eworm.de/cgit/routeros-scripts/about/)
|
||||
* [GitHub.com](https://github.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||
* [GitLab.com](https://gitlab.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||
|
||||
---
|
||||
[⬆️ Go back to top](#top)
|
||||
|
|
|
|||
|
|
@ -7,4 +7,6 @@ HTML := $(wildcard *.html)
|
|||
all: docs
|
||||
|
||||
docs: $(HTML)
|
||||
sed -i '/href=/s|\.md|\.html|' $(HTML)
|
||||
sed -i -e '/href=/s|\.md|\.html|' \
|
||||
-e '/blockquote/s|/\*! display \*/|display: none;|' \
|
||||
$(HTML)
|
||||
|
|
|
|||
|
|
@ -7,9 +7,12 @@ sed \
|
|||
-e "s|__TITLE__|$(head -n1 "${1}")|" \
|
||||
-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-||g' -e '/<h[1234] /s|--26-amp-3b-||g'
|
||||
-e '/<h[1234] /s|-2c-||g' -e '/<h[1234] /s|--26-amp-3b-||g' \
|
||||
-e '/The above link may be broken on code hosting sites/s|blockquote|blockquote style="display: none;"|'
|
||||
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 />
|
||||
|
|
|
|||
|
|
@ -5,11 +5,27 @@
|
|||
<link rel="icon" type="image/png" href="../logo.png">
|
||||
<script src="logo-color.d/script.js"></script>
|
||||
</head><body>
|
||||
<table>
|
||||
<tr>
|
||||
<td rowspan=2><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td>
|
||||
<td rowspan=2><img src="../general/qr-code.png" 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 />
|
||||
|
||||
<h1>Logo Color Changer</h1>
|
||||
|
||||
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
||||
|
||||
<blockquote style="/*! display */"><p>💡️ <strong>Hint</strong>: This site or links
|
||||
on it may be broken on code hosting sites. Use
|
||||
<a href="https://rsc.eworm.de/main/contrib/logo-color.html">Logo Color Changer</a>
|
||||
instead.</p></blockquote>
|
||||
|
||||
<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
|
||||
something that differentiates? Color it!</p>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,27 @@
|
|||
<link rel="icon" type="image/png" href="../logo.png">
|
||||
<script src="notification.d/script.js"></script>
|
||||
</head><body>
|
||||
<table>
|
||||
<tr>
|
||||
<td rowspan=2><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td>
|
||||
<td rowspan=2><img src="../general/qr-code.png" 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 />
|
||||
|
||||
<h1>Notification Generator</h1>
|
||||
|
||||
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
||||
|
||||
<blockquote style="/*! display */"><p>💡️ <strong>Hint</strong>: This site or links
|
||||
on it may be broken on code hosting sites. Use
|
||||
<a href="https://rsc.eworm.de/main/contrib/notification.html">Notification Generator</a>
|
||||
instead.</p></blockquote>
|
||||
|
||||
<div class="notification">
|
||||
<img src="../logo.svg" alt="logo" class="logo" width=48 height=48>
|
||||
<div class="content">
|
||||
|
|
|
|||
|
|
@ -109,6 +109,10 @@ chat with [BotFather ↗️](https://t.me/BotFather) and set it there.
|
|||
Have a look at my [Logo Color Changer](../../contrib/logo-color.html)
|
||||
to create a colored version of this scripts' logo.
|
||||
|
||||
> 💡️ **Hint**: The above link may be broken on code hosting sites.
|
||||
> Use [Logo Color Changer](https://rsc.eworm.de/main/contrib/logo-color.html)
|
||||
> instead.
|
||||
|
||||
See also
|
||||
--------
|
||||
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ Usage and invocation
|
|||
The function `$ScriptRunOnce` expects an URL (or name if
|
||||
`ScriptRunOnceBaseUrl` is given) pointing to a script as parameter.
|
||||
|
||||
$ScriptRunOnce https://git.eworm.de/cgit/routeros-scripts/plain/doc/mod/scriptrunonce.d/hello-world.rsc;
|
||||
$ScriptRunOnce https://rsc.eworm.de/main/doc/mod/scriptrunonce.d/hello-world.rsc;
|
||||
|
||||

|
||||
|
||||
|
|
|
|||
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 |
|
|
@ -18,7 +18,7 @@ a:hover {
|
|||
blockquote {
|
||||
border-left: 4px solid #ccc;
|
||||
padding: 0 10px;
|
||||
color: #777;
|
||||
color: #555;
|
||||
}
|
||||
code {
|
||||
margin: 0 2px;
|
||||
|
|
@ -68,6 +68,18 @@ 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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue