Derrell Lipman

Results 115 comments of Derrell Lipman

@oetiker This method is `_getValue`, not a setter. I don't know when this method is called or what its return value is used for. I agree that overriding a theme...

As described in #10320, there do not appear to be any constraints in JSDoc on the Type in curly braces. I recommend replacing `Map` (which is an actual type in...

Ah ha! I found it in JSDoc documentation. See https://jsdoc.app/tags-type.html and search for "an object with string keys and number values" for the example using `{Object.}`, but in the case...

I can't test this to confirm, but I believe this is the required fix: ``` modified source/class/qx/tool/compiler/targets/meta/Browserify.js @@ -102,6 +102,16 @@ qx.Class.define("qx.tool.compiler.targets.meta.Browserify", { localModules[requireName] ); + if (! stat) +...

Unfortunately, I have no way to test this, as I have almost no experience with localization, and only the most basic of usage of it in my apps. I'm concerned,...

As discussed on gitter, right now, changes of strings are not tracked if the new option is not provided, and in fact, no translation files are ever created even the...

I think the point here is that `qx create xyz` should generate files that `qx lint` will not find errors with. Shouldn't matter where it is run from (Windows or...

The list isn't ignored completely. Any libraries listed there which are not installed packages are honored. But installing a package and then attempting to override it with an entry in...

I think this problem may not be as severe as I'd thought. It does seem that compile.json is honored. The problem is that a misleading error message displays: ``` issue784:...

As discussed, this isn't an adequate solution. Strings are added, deleted, and changed all the time. The compiler should regenerate the .po files. Also as discussed, though, the .po files...