Johannes Maas
Johannes Maas
I'm having the same problem on Windows 10. It expects the README to be at path `C:\Users\y0hy0h\AppData\Roaming\Racket\7.6\pkgs\polyglot-lib\polyglot\README.md`, but there is no such file. I couldn't find it in the `polyglot`...
You can do nothing. ;) I haven't contributed here for a long time and don't have time to review right now. You'll have to wait until someone finds the time...
As far as I can tell the problem is a 404 in the Darmstadt parser. (I'm not 100% certain, though.) That means that it is unrelated to this PR. I...
Wow, I missed a lot of things. Especially the entry into the test urls... 😅 It's been a while... Thanks, @klemens, for the review!
If you want to test the parser, you can clone the repo and run it locally on your computer, following the [instructions from the README](https://github.com/mswart/openmensa-parsers#get-started). Then you can also play...
Yes, this might be a caching issue. As far as I remember, the parsers are run daily. So if the menu changes inbetween runs, the feed might diverge. This looks...
I would also like to close this PR. There is [one review comment](https://github.com/mswart/openmensa-parsers/pull/96/files/e3e76bc4ec851efa8067107de92b744e85099f79#diff-0bc599ac90b201bf511092ec84364520) where I would like some more explanation. Otherwise, would you like to merge this and then add...
I think the snapshot tests do not actually need to know how the parsers fetch the website. As long as we are ok with only being able to fetch the...
Slightly more detailed explanation of the issue: The dish in the category "Fleischgericht" is "Riesen-Currywurst mit Currysoße". On [the canteen's website]( https://www.studentenwerk-leipzig.de/mensen-cafeterien/speiseplan?location=162&date=2018-04-18&criteria=&meal_type=all), when you click it to expand its description,...
I just figured out that an alternative workaround is to repeat the `prefix` in the `AppModule` where `SubModule` is imported: ```ts @Module({ imports: [ RouterModule.forRoutes([ { path: '/prefix', module: SubModule...