Knut Olav Bøhmer
Knut Olav Bøhmer
You could add in your `defroute file` file something like this: ``` lisp (define-symbol-macro *web* your-app-package::*your-app-map*) ```
Do you mean how to bind to something else then 127.0.0.1? As far as I remember: ``` cl (myapp:start :address "0.0.0.0") ```
`defroute` depends on a object of type `ningle:`, that should be defined in the same package you call `defroute` from. the `*web*` variable is defined in your "webapp-name".web package. In...
Does your lisp give anything on stdout or stderr?
Is this something that pgbouncer or something similar could fix?
I don't know why json-encode expects simple-string, but here is what I do: ``` (defun ensure-simple-string (db-result) (typecase db-result (cons (mapcar 'ensure-string db-result)) ((vector character *) (coerce db-result 'simple-string)) (t...
Ref this: [DO NOT expect simple-strings!](http://ircbrowse.net/browse/lisp?id=9282910×tamp=1442474317#t1442474317) This issue belongs in https://github.com/Rudolph-Miller/jonathan/issues So maybe you close it here?
I was thinking maybe it would be easy just adding `KEYWORD_IS_NAME` Something like this: ``` lisp (defun rjsx-match-token (match &optional dont-unget) "Get next token and return t if it matches...
If there is anything I could try out, give me some hints.
How about not using js2 to parse the attribute name, and force js2 somehow to skip forward as much as we parse. Just check for {...var} and make js2 parse...