Vebjorn Ljosa

Results 16 comments of Vebjorn Ljosa

Did you envision this a menu option within CPA? Perhaps it should instead be a data tool in CellProfiler? After all, people might have and use a database created by...

By table_id, are you refering to the table_id property in the properties file, which we typically map to the TableNumber database column? If so then it has to be an...

What quoting is necessary here? I know we don't have any quoting for `target`, but that one has a much more limited use. Can you please add unit tests? See...

Perhaps I should have written "escaping" instead of "quoting." The code builds HTML. As you know, many characters have special meaning in HTML. If these characters occur in the value...

Sorry, that's not right kind of escaping. If you have an HTML document with ``` http://www.example.com/ ``` then `document.getElementById('foo').getAttribute('open-in-app')` returns `"%22%2Ctrue"`, which is not what you want. You'll have to...

A few problems still: - In the value, ampersand (`&`) needs to be escaped as `&`. - In the value, backtick (\`) needs to be escaped as ```. - The...

Good catch! Are you up for putting together a pull request?

If this reduced functionality, the version will most likely have to be bumped to 2.0.0. See http://semver.org/.

I think that would be ok, if that's the only clean solution. We might need a third base package for code that is shared between the two.