From 1f5ffc1061e2868af42a152cf7cdb94e782d2ac1 Mon Sep 17 00:00:00 2001 From: Astatin3 <77305074+Astatin3@users.noreply.github.com> Date: Sun, 25 Feb 2024 11:30:07 -0700 Subject: [PATCH] Rename to Polyboard --- README.md | 2 +- modules/main/Dashboard.html | 2 +- modules/main/docs-home.html | 2 +- modules/main/docs-writing-modules.html | 2 +- src/web.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b9baf05..d4a3350 100755 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ### A very dynamic dashboard, with many features -Modulator is basically just a fancy dashboard template, but with a very extensible module system, and security features! +Polyboard is basically just a fancy dashboard template, but with a very extensible module system, and security features! [Read the wiki!](https://github.com/Astatin3/Modulator/wiki) diff --git a/modules/main/Dashboard.html b/modules/main/Dashboard.html index f1ba348..5d85c8f 100755 --- a/modules/main/Dashboard.html +++ b/modules/main/Dashboard.html @@ -8,7 +8,7 @@ var req = new XMLHttpRequest(); -req.open('GET', 'https://raw.githubusercontent.com/Astatin3/Modulator/main/README.md', false); +req.open('GET', 'https://raw.githubusercontent.com/Astatin3/Polyboard/main/README.md', false); req.send(null); if(req.status == 200) { diff --git a/modules/main/docs-home.html b/modules/main/docs-home.html index 91e40c8..5047b3e 100644 --- a/modules/main/docs-home.html +++ b/modules/main/docs-home.html @@ -8,7 +8,7 @@ var req = new XMLHttpRequest(); -req.open('GET', 'https://raw.githubusercontent.com/wiki/Astatin3/Modulator/Home.md', false); +req.open('GET', 'https://raw.githubusercontent.com/wiki/Astatin3/Polyboard/Home.md', false); req.send(null); if(req.status == 200) { diff --git a/modules/main/docs-writing-modules.html b/modules/main/docs-writing-modules.html index c2b0bd4..ada79e9 100644 --- a/modules/main/docs-writing-modules.html +++ b/modules/main/docs-writing-modules.html @@ -8,7 +8,7 @@ var req = new XMLHttpRequest(); -req.open('GET', 'https://raw.githubusercontent.com/wiki/Astatin3/Modulator/Writing-a-module.md', false); +req.open('GET', 'https://raw.githubusercontent.com/wiki/Astatin3/Polyboard/Writing-a-module.md', false); req.send(null); if(req.status == 200) { diff --git a/src/web.py b/src/web.py index 5c6189f..0a9a1ed 100755 --- a/src/web.py +++ b/src/web.py @@ -130,7 +130,7 @@ def err404(err): class webserv(): def __init__(self): - self.title = 'Modulator' + self.title = 'Polyboard' self.port = 443 self.host = '0.0.0.0' self.verbose = False