Jamie Lentin
Jamie Lentin
> the whole thing should feel like a button i.e. the icon should highlight and be clickable as well as the text for each item This is inherited from not...
The middle item in this list is the same as #337, no?
> Something like this probably exists already in order to populate the "where am I" popup bar This happens entirely in the client, as it already has the details to...
Replacing the system call in gdbsource with system2 seems to solve this, at least on Linux: ``` system2('R', c( "-d", "gdb", paste("--debugger-args=\"-x", gdbscript, "\""))) ```
Oops, yes that would have been the sensible thing to do. Apologies. Happy to make a pull request, adding a note to the docs to save future head-scratching. The most...
If that works as we'd like now, don't see why not.
Web2py's auto-i18n magic: https://github.com/OneZoom/OZtree/blob/main/models/db.py#L44-L45 http://web2py.com/books/default/chapter/29/04/the-core#Translating-variables We don't keep these derived files up-to-date though, I think we should be turning it off by default.
(@davidebbo, web2py has some management pages with a translation GUI, which people have used to translate onezoom via. beta.onezoom.org before, thus why Yan is suggesting allowing it on beta) We...
The default of ``is_testing = True`` is definitely useful, there's a lot more testing than production after all. An ``allow_translation_string_writing`` that defaults to ``False`` means we can switch the two...
Yup, please do. If you do, watch out for ``myconf.take()``, if a config option doesn't exist, then it fires an exception, rather than returning a default. We should move to...