Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 60: Allow http://openrosa.org/xforms namespace for meta #153

Merged
merged 13 commits into from
Jul 19, 2017

Commits on Jun 9, 2017

  1. Configuration menu
    Copy the full SHA
    7b1275d View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2017

  1. Configuration menu
    Copy the full SHA
    7f09b95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    77ebf19 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0b2a50f View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2017

  1. After parsing a form’s XML, JavaRosa retains namespace names, but not…

    … prefixes, in its representation of instance elements (such as orx:meta). It removes the prefixes from the element names. This makes it impossible to match the element names with names that do include a prefix. Here is one possible solution:
    
     Capture the namespace names and prefixes from the html element, and make them available later when searching for instance elements by name. See the doc comments in TreeElementNameComparator for details.
    dcbriccetti committed Jun 12, 2017
    Configuration menu
    Copy the full SHA
    bdbf912 View commit details
    Browse the repository at this point in the history
  2. Replace tabs with spaces.

    dcbriccetti committed Jun 12, 2017
    Configuration menu
    Copy the full SHA
    c41aee8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd8976c View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2017

  1. Configuration menu
    Copy the full SHA
    e85ee04 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    26dc356 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2017

  1. Keep a namespace prefix as a TreeElement's field

    Instead of having namespace URI -> namespace prefix map,
    the prefix is kept as TreeElement's field the same way as the namespace
    URI is.
    Michal Dudzinski committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    37911b5 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2017

  1. Fix buildNamespacesMap's comment

    Michal Dudzinski committed Jul 18, 2017
    Configuration menu
    Copy the full SHA
    9c239a3 View commit details
    Browse the repository at this point in the history
  2. TreeElementNameComparator refactoring

    Changes:
    - removed debug logging
    - simplified if conditions since own block for each
      condition is no longer needed as there is no debug logging
    - removed `namespace` final variable and the related
      null check
    Michal Dudzinski committed Jul 18, 2017
    Configuration menu
    Copy the full SHA
    0176fc8 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2017

  1. Add serialize and restore form instance test

    Michal Dudzinski committed Jul 19, 2017
    Configuration menu
    Copy the full SHA
    9d60dbd View commit details
    Browse the repository at this point in the history