Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-04-17 | general housekeeping | stuebinm | 1 | -10/+5 | |
jumps to GHC2021 as default language, adds in some fields, moves the old org mode glossary to markdown, etc. | |||||
2023-05-26 | change server timetables api | stuebinm | 1 | -1/+2 | |
2023-05-26 | expose sequence length of trip to onboard unit | stuebinm | 1 | -0/+1 | |
2023-05-20 | expose the gtfs.zip used in the API | stuebinm | 1 | -6/+9 | |
2023-03-11 | simple on-board tools | stuebinm | 1 | -8/+19 | |
these are just enough to send train positions to tracktrain with the current API, but are somewhat brittle (e.g. will fail if not restarted between trips, etc.) | |||||
2023-02-23 | don't hardcode css | stuebinm | 1 | -5/+6 | |
2023-01-22 | oauth2 via uffd | stuebinm | 1 | -7/+6 | |
this is unfortunately uffd-specific, since oauth2 is apparently sort of a vague standard. But since it doesn't actually do much it should probably be possible to make it fully configurable & generic if needed. | |||||
2022-12-13 | simple realtime position map | stuebinm | 1 | -1/+9 | |
(what was that about doing the realtime stuff somewhere else and /not/ in this monolithic server thingie? oh well …) | |||||
2022-12-12 | a subscribe websocket for real-time location info | stuebinm | 1 | -7/+36 | |
(for a leaflet map view or sth which isn't implemented yet) | |||||
2022-10-16 | simple prometheus metrics | stuebinm | 1 | -5/+16 | |
2022-09-14 | remove some extrapolation bugs | stuebinm | 1 | -3/+3 | |
2022-09-11 | on-board-unit: display estimated delay etc. | stuebinm | 1 | -3/+5 | |
2022-09-10 | gtfs realtime: add tripUpdate feed | stuebinm | 1 | -3/+3 | |
2022-09-10 | use websockets for the on-board-unit | stuebinm | 1 | -32/+31 | |
2022-08-31 | guess at future delays (horrible, incorrect, and unfinished) | stuebinm | 1 | -2/+2 | |
2022-08-28 | some config thingyesod | stuebinm | 1 | -1/+4 | |
works kinda well, but doesn't complain about unknown config values in json, which is kinda hmpf tbh | |||||
2022-08-28 | this does way too much tbh (also functioning delays) | stuebinm | 1 | -5/+17 | |
most of it deals with timezones, and all the weird implications that has | |||||
2022-08-27 | controlroom: lots of pretty little knobs | stuebinm | 1 | -41/+37 | |
(also some database schema changes, for good measure) | |||||
2022-08-14 | control room: translations & form input | stuebinm | 1 | -2/+2 | |
still basic, but works pretty well overall | |||||
2022-08-14 | controlroom: replace servant/lucid with yesod | stuebinm | 1 | -1/+4 | |
aka use something meant for webapps to write the webapp | |||||
2022-07-11 | somewhat functioning control room | stuebinm | 1 | -1/+1 | |
tbh i've kinda lost track at what has all been changed in this, but the control room form handling now works, and i can write announcements into the database. Now on to making it do useful things! | |||||
2022-07-07 | don't have the ControlRoom API in Swagger | stuebinm | 1 | -2/+2 | |
just causes pain and isn't really useful for anything since it's a webform API meant to be used by the web frontend, not by other applications. | |||||
2022-07-03 | barebones webform API & frontend | stuebinm | 1 | -0/+2 | |
2022-07-03 | remove some unused imports | stuebinm | 1 | -30/+11 | |
2022-07-03 | add service monad (with built-in logging) | stuebinm | 1 | -19/+20 | |
2022-07-02 | websockets and better (empty) response messages | stuebinm | 1 | -48/+65 | |
(tough mostly untested) | |||||
2022-07-02 | better module names | stuebinm | 1 | -1/+1 | |
2022-07-02 | rudimentary admin api implementation | stuebinm | 1 | -2/+17 | |
2022-07-02 | gtfs realtime: add vehicle positions | stuebinm | 1 | -1/+2 | |
(or at least something that looks like it might be correct — though it carries very little information, and lacks things like what the next stop along the route is) | |||||
2022-07-02 | more or less functional servicealerts for gtfs rt | stuebinm | 1 | -62/+8 | |
(kinda barebones, but the important things should be there) | |||||
2022-07-02 | gtfs realtime proof of concept | stuebinm | 1 | -1/+63 | |
this adds a package for protobuf stuff, generated via hprotoc. Seems to work kinda fine? (the generated API is horrible though, will have to write some wrappers for that) | |||||
2022-06-27 | optional date parameter for the timetable endpoint | stuebinm | 1 | -4/+8 | |
(mostly to make debugging easier, but also more generially useful i guess) | |||||
2022-06-16 | foreign keys are a thing | stuebinm | 1 | -47/+19 | |
(and they can be useful, too!) Also, documentation & deleting imports / extensions that aren't used. | |||||
2022-06-16 | actually use the database | stuebinm | 1 | -96/+103 | |
(at least for a few simple things) Also, more modules! | |||||
2022-06-15 | add some persist stuff | stuebinm | 1 | -22/+35 | |
this doesn't yet actually use the database, but it's getting close to 3am and I should probably go to bed or something | |||||
2022-06-10 | generate OpenAPI docs | stuebinm | 1 | -37/+69 | |
lots of lenses in this stuff :( | |||||
2022-06-06 | restructure GTFS types | stuebinm | 1 | -8/+6 | |
unfortunately doesn't quite get rid of all the type family still since it's just too useful … but does reduce it somewhat. Also, maps are much easier for looking things up than vectors! | |||||
2022-06-06 | better aeson generics | stuebinm | 1 | -2/+7 | |
(template haskell doesn't work well with type families, unfortunately) | |||||
2022-06-05 | basic server setup | stuebinm | 1 | -0/+96 | |