Tom Morris
Tom Morris
DRAFT - still needs test updates Fixes #6527 Changes proposed in this pull request: - Create utility method to handle creating an InputStreamReader with a character encoding which is null,...
It looks like the fix for #1241 is incomplete in that not all places which need to handle the new pseudo encoding which was introduced to handle UTF-8 with Byte...
When the Excel importer is invoked after downloading from a URL, the sheet selection logic doesn't work because it's comparing against the original URL rather than the local filename. The...
There are certain types of metaprogramming tasks where it would be useful to be able interpret a string as a GREL expression and have that expression evaluated. For example, a...
Currently project IDs are generated using the formula: ``` return System.currentTimeMillis() + Math.round(Math.random() * 1000000000000L); ``` This suffers from the problem that there's no way to recover the original Unix...
Currently our Jackson stack traces look like this (from #6464): ``` com.fasterxml.jackson.databind.exc.ValueInstantiationException: Cannot construct instance of `com.google.refine.model.Recon`, problem: there is a match hence no error at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled);...
As reported in #3243, JSON parsing errors, at least during the original preview parse, are being silently ignored. They should be reported to the user. ### To Reproduce Steps to...
Fixes #6443 Changes proposed in this pull request: - Introduce an OperationCommand class to hold the bulk of the EngineDependentCommand implementation and move EngineDependentCommand to be its subclass. - refactor...
_Original author: iainsproat (June 30, 2010 19:18:19)_ In the cell cluster & merge dialog, it should be possible to exclude individual candidates from being part of a single cluster. An...
Similar to the string concatenation bug (#6341), the Get() function (which also backs the array indexing notation) should not convert non-strings to string form before indexing. Using array indexing on...