implement favorite hotkeys

This commit is contained in:
zefie
2025-07-31 11:23:57 -04:00
parent 4c527cba34
commit 6197fa99a3
3 changed files with 11 additions and 4 deletions

View File

@@ -12,7 +12,13 @@ Location: wtv-favorite:/favorite`
var folder_array = session_data.favstore.getFolders(); var folder_array = session_data.favstore.getFolders();
var url = request_headers.request; var url = request_headers.request;
var key = url.split('?')[1] var key = url.split('?')[1]
var scfav = session_data.favstore.getShortcutKey(key);
if (!scfav.id || scfav.id == "none") {
headers = `400 You have not assigned a favorite to ${key}` headers = `400 You have not assigned a favorite to ${key}`
} else {
var fav = session_data.favstore.getFavorite(scfav.folder, scfav.id);
headers = `300 OK
Content-Type: text/html
Location: ${fav.url}`
}
} }

View File

@@ -34,7 +34,7 @@ Keyboard shortcut list
<img src="wtv-home:/ROMCache/Spacer.gif" width="1" height="1"> </td></tr><tr><td absheight="32" colspan="3" width="100%"> <img src="wtv-home:/ROMCache/Spacer.gif" width="1" height="1"> </td></tr><tr><td absheight="32" colspan="3" width="100%">
<table cellspacing="0" cellpadding="0"> <table cellspacing="0" cellpadding="0">
<tbody><tr><td abswidth="6" absheight="26"> <tbody><tr><td abswidth="6" absheight="26">
</td><td width="100%"><table href="wtv-favorite:/serve-browser?favorite-folder-name=Personal" width="100%" cellspacing="0" cellpadding="0"> </td><td width="100%"><table href="wtv-favorite:/favorite" width="100%" cellspacing="0" cellpadding="0">
<tbody><tr><td> <tbody><tr><td>
<table cellspacing="0" cellpadding="0"> <table cellspacing="0" cellpadding="0">
<tbody><tr><td><shadow><font size="-1" color="E7CE4A"> <tbody><tr><td><shadow><font size="-1" color="E7CE4A">

View File

@@ -148,6 +148,7 @@ passport-domain: ${session_data.getSessionData("messenger_domain")}
wtv-mail-url: wtv-mail:/listmail wtv-mail-url: wtv-mail:/listmail
wtv-favorite-url: wtv-favorite:/favorite wtv-favorite-url: wtv-favorite:/favorite
wtv-favorites-folders-url: wtv-favorite:/list-folders wtv-favorites-folders-url: wtv-favorite:/list-folders
wtv-favorite-index-url: wtv-favorite:/favorite-index?
wtv-input-timeout: 14400 wtv-input-timeout: 14400
wtv-connection-timeout: 1440 wtv-connection-timeout: 1440
wtv-fader-timeout: 1440 wtv-fader-timeout: 1440