aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm-web
Commit message (Collapse)AuthorAgeFilesLines
* bump seedJesse Luehrs2019-12-072-5/+10
|
* bump depsJesse Luehrs2019-12-071-1/+1
|
* simplifyJesse Luehrs2019-11-272-8/+4
|
* read the oauth method configs in the webfaceJesse Luehrs2019-11-264-1/+60
| | | | the oauth login link doesn't work yet, but the ui works at least
* add a logout buttonJesse Luehrs2019-11-263-0/+23
|
* remove title from webconfigJesse Luehrs2019-11-263-6/+1
| | | | this was only temporary to prove the webconfig stuff worked
* styleJesse Luehrs2019-11-261-3/+1
|
* remove a format! callJesse Luehrs2019-11-251-1/+1
| | | | apparently they are expensive (in code size)
* move value extraction logic into the viewJesse Luehrs2019-11-253-8/+10
| | | | since it depends more on the structure of the rendered page
* make logins persistentJesse Luehrs2019-11-256-14/+59
| | | | so if the server knows we're logged in, don't show the login page
* autofocus the username text boxJesse Luehrs2019-11-251-3/+5
|
* a bit more refactoringJesse Luehrs2019-11-252-15/+25
|
* add a basic login screenJesse Luehrs2019-11-242-3/+12
|
* simplify the update logic a bitJesse Luehrs2019-11-242-46/+41
|
* refactorJesse Luehrs2019-11-241-21/+46
|
* start working on the login flowJesse Luehrs2019-11-235-2/+34
|
* strip out most logging in release buildsJesse Luehrs2019-11-231-1/+1
|
* remove unicode-normalization from the wasm buildJesse Luehrs2019-11-231-1/+1
| | | | | this cuts about 30% off of the binary size, and should have almost no impact
* stop hardcoding the list and watch urlsJesse Luehrs2019-11-232-11/+7
|
* pass configuration from the web server to the web appJesse Luehrs2019-11-234-4/+39
|
* add basic template rendering abilityJesse Luehrs2019-11-231-6/+2
|
* remove some flickeringJesse Luehrs2019-11-232-2/+19
|
* i don't think rlib is necessary?Jesse Luehrs2019-11-231-1/+1
| | | | | i thiiiiink that's just if the crate is supposed to be for both native code and wasm
* shuffle some of the view structure aroundJesse Luehrs2019-11-235-56/+63
|
* rename a variableJesse Luehrs2019-11-231-4/+4
|
* commentJesse Luehrs2019-11-231-0/+7
|
* restrict the api a bit moreJesse Luehrs2019-11-235-44/+33
|
* move some things aroundJesse Luehrs2019-11-232-53/+61
|
* also draw the cursorJesse Luehrs2019-11-221-3/+15
|
* resize the browser terminal if the streamer terminal is resizedJesse Luehrs2019-11-223-1/+11
|
* add a button to stop watching the current streamJesse Luehrs2019-11-225-327/+341
|
* implement colors and text attributesJesse Luehrs2019-11-221-0/+299
|
* more web display improvementsJesse Luehrs2019-11-223-10/+17
|
* start working on watch displayJesse Luehrs2019-11-222-7/+20
|
* more information on the list pageJesse Luehrs2019-11-224-19/+73
|
* handle streamer disconnectsJesse Luehrs2019-11-223-0/+9
|
* move views out into separate modulesJesse Luehrs2019-11-227-14/+46
|
* remove no longer necessary directiveJesse Luehrs2019-11-221-1/+0
|
* use vt100 to render the terminal data in the browser(!)Jesse Luehrs2019-11-223-6/+20
|
* parse the websocket message in the browserJesse Luehrs2019-11-222-0/+20
|
* improve some loggingJesse Luehrs2019-11-221-4/+4
|
* switch to the log crateJesse Luehrs2019-11-222-17/+15
|
* don't manually disconnect on disconnect eventsJesse Luehrs2019-11-222-5/+0
| | | | | | | | we only get the disconnect events after the disconnect happens, and in this particular case it's happening because we dropped the old connection to replace it with a new connection, and so manually clearing the current connection on a disconnect event will usually end up clearing the new connection
* make sure we close old websocket connectionsJesse Luehrs2019-11-221-0/+6
|
* thread through the id to the actual message eventsJesse Luehrs2019-11-223-28/+16
| | | | | this is more accurate, since managing the lifetime of the websocket connection is a bit tricky
* connect to the teleterm server on watch requestsJesse Luehrs2019-11-221-1/+5
|
* refactorJesse Luehrs2019-11-222-45/+77
|
* implement listing and watching on the web sideJesse Luehrs2019-11-222-21/+81
| | | | | watching doesn't do anything yet, because the server side doesn't yet know how to send messages to a watch client
* this variant should take an ErrorEventJesse Luehrs2019-11-221-1/+1
|
* refactor a bitJesse Luehrs2019-11-222-36/+48
|