Guido Flohr

Results 59 issues of Guido Flohr

In my (jest) test I mock XHR like this: ``` mock.get('/assets/locale/de/LC_MESSAGES/http.json', { status: 200, body: 'some string', }); ``` I use `XMLHTTPRequest` in my code in like this: ```typescript loadFile(url:...

The incomplete fix to gonzus/JavaScript-Duktape-XS#13 breaks qgoda ("Perl sub died with error: Cannot find module 'buffer'!"). Fix: Check the version of the Duktape binding and bail out if the version...

bug

In large projects file system changes do not seem to be recognized all the times. This is rather a bug in the underlying third party modules but maybe there is...

bug

Global options that do not have a local counterpart should automatically be globalized. Such options are `--verbose` or `--quiet`. On the other hand, `--help` has different meanings as a local...

enhancement
good first issue

They should work like `contains` and `icontains` but use a regular expresion instead of an exact match.

enhancement
feature request
good first issue

Currently, the original file is written so that the source code is exposed. But the source code may contain sensitive data, so rather delete the file altogether.

enhancement

The default value for `config.linguas` should not be the empty list but `[en]`. When creating assets, its `lingua` property should default to the main language of the site, that is...

enhancement

Neither Qgoda's own watch mode nor that of webpack or gulp is working when running inside a docker container Docker on Mac OS X, see docker/for-mac#2375 Can be reproduced with...

bug
help wanted

Instead of using the source filter and the obscure first line in JavaScript files, rather write a simple `require_other()` function that just searches the file in `@INC` and returns the...

enhancement
good first issue

The HTMLFilter interface currently runs `HTML::Parser` over the document and lets the plug-ins install handlers for the various events. That is not flexible enough. It's better to use `HTML::Tree` so...

feature request