Files
minisrv/zefie_wtvp_minisrv/ServiceVault/wtv-music/get-playlist.js
zefie df472ab91f v0.9.13
- wtv-cookie support
 - further development will be in dev branch (may rebase alot)
 - compression not yet ready, leave it disabled
 - update: do not delete WTVSec on last socket, instead recreate on prereg
 - update: clean up SSID session data only if client is not seen for 3 minutes
 - update: add shouldWeCompress() function
 - update: tweak lzpf (still corrupted)
 - update: rename wtv-setup:/get to wtv-setup:/get-settings
 - update: add additional headers to wtv-setup:/get-settings
 - update: add initial blank wtv-music:/get-playlist
 - update wtv-tricks system
   - Info now shows Guest Mode or Subscriber Info
   - Implemented wtv-tricks:/unregister
   - Implemented wtv-tricks:/register
   - Show correct link in wtv-tricks:/tricks based on Guest Mode status
 - config.json: enable compression by default
 - WTVP does not use \r, so swapping the internal header's usage for now. May remove internal header in future update
 - lzpf: this doesn't fix anything but doesn't break it more either :)
  - renamed some functions
  - fixed some param documentation
  - added ConvertToBuffer function
 - WTVSec Updates
  - optimize WordArray to Buffer functions
  - update documentation in WTVSec
  - update WTVSec barrowed function in WTVLzpf
  - removed NewRC4Session, was a pointless alias to SecureOn
2022-11-29 08:27:52 -05:00

37 lines
2.2 KiB
JavaScript

headers = `200 OK
Content-Type: text/html`;
// unfunctional example for documentation purposes
/*
headers += `
wtv-backgroundmusic-clear: no_zits
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/moods/mystical.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/moods/quietude.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/mellow/sunlane.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/ambient/byzantium.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/ambient/overmind.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/ambient/precipice.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/classical/moonlight_sonata.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/classical/mendelssohn-prelude.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/classical/mouret-rondeau.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/classical/la-barriera.rmf
wtv-backgroundmusic-add: wtv-music:/music/classicl/bach/bach_cmaj_prelude.mid
wtv-backgroundmusic-add: wtv-music:/music/classicl/bach/bach_fugue_cmajor.mid
wtv-backgroundmusic-add: wtv-music:/music/classicl/bach/bach_menuet_in_G.mid
wtv-backgroundmusic-add: wtv-music:/music/classicl/bach/bach_violin_partita_in_e.mid
wtv-backgroundmusic-add: wtv-music:/music/newmusic/keyboards/cata_wtv.mid
wtv-backgroundmusic-add: wtv-music:/music/newmusic/keyboards/home_wtv.mid
wtv-backgroundmusic-add: wtv-music:/music/newmusic/keyboards/just_wtv.mid
wtv-backgroundmusic-add: wtv-music:/music/newmusic/keyboards/nite_wtv.mid
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/moods/grandeur.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/moods/loungy-sixties.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/upbeat/tropicalist-full.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/upbeat/jetset.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/underground/renegado.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/moods/affectionate.rmf
wtv-backgroundmusic-add: wtv-music:/MusicCache/headspace/RMF/moods/sociable.rmf`;
*/
data = '';