Compare commits

..

No commits in common. "6018e8b59347f21294f5e26dc18ab714b32eadde" and "6b67bd9d7b1734ee8b06b4bab4f562e65910885b" have entirely different histories.

5 changed files with 6 additions and 10 deletions

View File

@ -37,7 +37,6 @@ if msg_to_del is not None and hswro.is_admin():
r.lrem(CHAT_NAME, 0, msg) r.lrem(CHAT_NAME, 0, msg)
break break
print("#!c=0")
hswro.header("Shoutbox") hswro.header("Shoutbox")
if toast is not None: if toast is not None:
print(f"`c{toast}") print(f"`c{toast}")

View File

@ -22,8 +22,7 @@ FORBIDDEN_INPUT = [
MENU_ITEMS = [ MENU_ITEMS = [
("Home", "/page/index.mu]"), ("Home", "/page/index.mu]"),
("Status", "/page/status.mu"), ("Status", "/page/status.mu"),
("Shoutbox", "/page/chat.mu"), ("Shoutbox", "/page/chat.mu]")
("Library", "/page/library.mu")
] ]
ADMIN_IDENTITIES = [ ADMIN_IDENTITIES = [

View File

@ -6,7 +6,7 @@ from pathlib import PurePosixPath
from typing import List from typing import List
from os import environ from os import environ
LIBRARY_DIR = "/home/reticulum/.nomadnetwork/storage/files/library" LIBRARY_DIR = "/home/reticulum/library"
library_contents = [""] library_contents = [""]
@ -23,7 +23,7 @@ with os.scandir(LIBRARY_DIR) as it:
if not entry.name.startswith('.') and entry.is_file(): if not entry.name.startswith('.') and entry.is_file():
library_contents.append(PurePosixPath(entry.path).stem) library_contents.append(PurePosixPath(entry.path).stem)
content_lines = ["", "Select a file to begin reading.", "", "Some files are taken from textfiles.com"] content_lines = ["", "Select a file to begin reading."]
if "var_view" in environ: if "var_view" in environ:
document_name = environ["var_view"] document_name = environ["var_view"]
@ -39,10 +39,10 @@ page_len = max(len(library_contents), len(content_lines)) + 2
hswro.header("Library") hswro.header("Library")
for i in range(page_len): for i in range(page_len):
menuitem = " "*25 menuitem = " "*23
item_name = get_from_list(library_contents, i) item_name = get_from_list(library_contents, i)
if item_name != "": if item_name != "":
menuitem = f"`[{item_name}`:/page/library.mu`view={item_name}] (`[DL`:/file/library/{item_name}.txt])" + " "*(max(0, 25-5-len(item_name))) menuitem = f" `[{item_name:<20}`:/page/library.mu`view={item_name}] "
content = get_from_list(content_lines, i) content = get_from_list(content_lines, i)
print(f"{hswro.MENUBGCOLOR}{menuitem}{hswro.BGCOLOR} {content}") print(f"{hswro.MENUBGCOLOR}{menuitem}{hswro.BGCOLOR} {content}")
print("-.") print("-.")

View File

@ -13,7 +13,6 @@ l = hswro.get_login_info()
form_login = environ.get('field_username', None) form_login = environ.get('field_username', None)
form_pass = environ.get('field_pass', None) form_pass = environ.get('field_pass', None)
print("#!c=0")
hswro.header() hswro.header()
if l[1] is not None: if l[1] is not None:
print(f"`c`!Warning:`! {l[1]}") print(f"`c`!Warning:`! {l[1]}")

View File

@ -5,7 +5,6 @@ from os import environ
hswro.logout() hswro.logout()
print("#!c=0")
hswro.header() hswro.header()
print("`cYou have been logged out.") print("`cYou have been logged out.")
hswro.footer() hswro.footer()