javarosa icon indicating copy to clipboard operation
javarosa copied to clipboard

The core library that many of the ODK tools are built around. It's written in Java, implements the ODK XForms spec, and runs on mobile devices and cloud servers. ✨🏗✨

Results 102 javarosa issues
Sort by recently updated
recently updated
newest added

#### Software versions JavaRosa v2.11.2 #### Problem description Consider the following form: ```xml relative-current-ref Top level group Person Selected Person Value changed! ``` (don't mind the field names) The key...

Given the following code example: ```java TreeReference someRef = (TreeReference) new XPathReference("../foo").getReference(); TreeReference baseRef = (TreeReference) new XPathReference("bar/baz").getReference(); TreeReference output = someRef.parent(baseRef); ``` Looking at the code, it's hard to...

#### Problem description We've recently included new `DataType` and `ControlType` enums to abstract form data and control types in our code. Up to this moment, they have been used mainly...

Originally reported by: **Yaw Anokwa (Bitbucket: [yanokwa](https://bitbucket.org/yanokwa), GitHub: [yanokwa](https://github.com/yanokwa))** ---------------------------------------- == carl == It appears that javarosa will accept any answer to a select1 question, even those not in the...

enhancement
imported

From https://github.com/opendatakit/javarosa/pull/343#issue-202408494 >Javarosa is a little lax about enforcing namespace in general. Should we enforce it for rank? Currently parseElement just looks at name so we'd need to add a...

#### Problem description I have been supporting users on the forum for a long time and many times I noticed that it's strange and annoying that constraint is ignored when...

You may not like reading this (likely a historical artefact).... ;) Apparently this works in Collect as a check to see whether name1 has a value: `not(${name1} = null)` That...

We currently have 22 test classes that use the old `TestCase` jUnit API. Modern tools and IDEs support jUnit4's `@Test` annotations that let us have more useful interactions with the...

This issue depends on solving #286 and #290 Currently, our date and time code is based on `java.util.Date` which can unpredictable sometimes and generally difficult to work: - It is...

While working on other things, I've noticed this method on `DateUtils`: ```java public static Date parseDateTime (String str) { DateFields fields = new DateFields(); int i = str.indexOf("T"); if (i...