Dennis Schridde

Results 234 comments of Dennis Schridde

It would definitely be nice if the src parameter could receive other targets directly, yes. I am still trying to get my first Lakefile to work, so I have not...

``` lua c_parser = target('src/parser.c','src/parser.y','$(LEMON) -s $(DEPENDS)') ``` What I just noticed: rule() and target() have their parameters in opposite order, which confused me originally when I changed from target()...

I think there is no easy way other than deleting all .d files whenever the lakefile changes. The only other option I can think of right now would be to...

For the reordering of `program_flags` I created a pullrequest (#18). I am not entirely sure about this being the best way to document it, though. Mostly because all kinds of...

P.S: Can the parts of the docs be generated from Lake's sourcecode itself? That might make "pasted as is into the docs" obsolete.

Sorry, this has been too long and I no longer have access to that system.

When running `docker-compose -f docker-compose.yml -f docker-compose.extras.yml up` with these files: ```docker-compose.yml # docker-compose.yml version: "3.2" services: srv: environment: - MY_VAR ``` and ```docker-compose.yml # docker-compose.extras.yml version: "3.2" srv: environment:...

It appears to me that `wrap-routes` does not work well with `context` or nested `routes`. When `http get http://localhost:5010/api/resource` is requested from a server running the following code: ```clj (defn-...

Thanks! This works: ```clj (defn- wrap-compojure-route [handler] (compojure/wrap-routes handler (fn [route-handler] (fn [request] (let [{:compojure/keys [route route-context]} request] (log/infof "ROUTE: %s" (str route-context (second route)))) (route-handler request))))) (defn resource-handler [request]...

Is there an ownCloud Calendar issue for this?