Compare commits
No commits in common. "6018e8b59347f21294f5e26dc18ab714b32eadde" and "6b67bd9d7b1734ee8b06b4bab4f562e65910885b" have entirely different histories.
6018e8b593
...
6b67bd9d7b
|
|
@ -37,7 +37,6 @@ if msg_to_del is not None and hswro.is_admin():
|
|||
r.lrem(CHAT_NAME, 0, msg)
|
||||
break
|
||||
|
||||
print("#!c=0")
|
||||
hswro.header("Shoutbox")
|
||||
if toast is not None:
|
||||
print(f"`c{toast}")
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@ FORBIDDEN_INPUT = [
|
|||
MENU_ITEMS = [
|
||||
("Home", "/page/index.mu]"),
|
||||
("Status", "/page/status.mu"),
|
||||
("Shoutbox", "/page/chat.mu"),
|
||||
("Library", "/page/library.mu")
|
||||
("Shoutbox", "/page/chat.mu]")
|
||||
]
|
||||
|
||||
ADMIN_IDENTITIES = [
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ from pathlib import PurePosixPath
|
|||
from typing import List
|
||||
from os import environ
|
||||
|
||||
LIBRARY_DIR = "/home/reticulum/.nomadnetwork/storage/files/library"
|
||||
LIBRARY_DIR = "/home/reticulum/library"
|
||||
|
||||
library_contents = [""]
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ with os.scandir(LIBRARY_DIR) as it:
|
|||
if not entry.name.startswith('.') and entry.is_file():
|
||||
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:
|
||||
document_name = environ["var_view"]
|
||||
|
|
@ -39,11 +39,11 @@ page_len = max(len(library_contents), len(content_lines)) + 2
|
|||
|
||||
hswro.header("Library")
|
||||
for i in range(page_len):
|
||||
menuitem = " "*25
|
||||
menuitem = " "*23
|
||||
item_name = get_from_list(library_contents, i)
|
||||
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)
|
||||
print(f"{hswro.MENUBGCOLOR} {menuitem} {hswro.BGCOLOR} {content}")
|
||||
print(f"{hswro.MENUBGCOLOR}{menuitem}{hswro.BGCOLOR} {content}")
|
||||
print("-.")
|
||||
hswro.footer()
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ l = hswro.get_login_info()
|
|||
form_login = environ.get('field_username', None)
|
||||
form_pass = environ.get('field_pass', None)
|
||||
|
||||
print("#!c=0")
|
||||
hswro.header()
|
||||
if l[1] is not None:
|
||||
print(f"`c`!Warning:`! {l[1]}")
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ from os import environ
|
|||
|
||||
hswro.logout()
|
||||
|
||||
print("#!c=0")
|
||||
hswro.header()
|
||||
print("`cYou have been logged out.")
|
||||
hswro.footer()
|
||||
|
|
|
|||
Loading…
Reference in New Issue