Evgeny M.
Evgeny M.
The "Create or open database **after** environment start" example from the `http://sphia.org/administration.html#database` page does not work when DB already exists. First run - ok, DB gets autocreated; second run -...
it seems like it is impossible to draw multiple timeserie lines each starting with different date, as for timeseries graphs all lines are al aligned to the single "date" serie...
Django templates can be dependent on other templates with `{% include %}` and `{% extends %}` tags. Erlydtl compiles such templates as monolithic one, it won't call one template from...
At the moment CB starts webserver, and then runs init scripts from the app. I propose changing of this order and run init scripts before starting web server, because it's...
When string is not found in dictionaries it is better to return untranslated string than `undefined` atom.
Can't compile with 19.0 and 19.0.2 anything with included files with typed records. `01:21:26.343 [error] Compile Error, "src/mail/my_project_name_incoming_mail_controller.erl" -> [{"/home/erlang/19.0.2/lib/kernel-5.0/include/file.hrl",[{26,erl_lint,old_abstract_code},{63,erl_lint,old_abstract_code}]}] ` Steps to reproduce: - create an CB app -...
simple_bridge works incorrectly with the 'undefined' atom. See more there: https://github.com/nitrogen/simple_bridge/issues/56
Allow encoding terms containing tuples with the `[tuples_to_lists]` option of the `encode` function. Tuples are encoded as lists. No exception is made for the `[{}]` and `[{k, v}, ...]` special...
Custom behaviour declarations such as ``` -behaviour(gen_my_behaviour). ``` show warning as unresolved, though file with the behaviour exists. Erlang compiles the project with no warnings at all.