Skip to content

Commit

Permalink
Match oldest reference to an ODK namespace is in Aggregate (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanokwa authored and lognaturel committed Jul 19, 2018
1 parent 3639562 commit 808818e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/sms_form.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h:html xmlns="http://www.w3.org/2002/xforms"
xmlns:h="http://www.w3.org/1999/xhtml"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:odk="http://opendatakit.org/xforms"
xmlns:odk="http://www.opendatakit.org/xforms"
xmlns:jr="http://openrosa.org/javarosa">
<h:head>
<h:title>SMS Tester Form</h:title>
Expand Down
2 changes: 1 addition & 1 deletion src/org/javarosa/xform/parse/XFormParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public class XFormParser implements IXFormParserFunctions {
private static final Logger logger = LoggerFactory.getLogger(XFormParser.class);

public static final String NAMESPACE_JAVAROSA = "http://openrosa.org/javarosa";
public static final String NAMESPACE_ODK = "http://opendatakit.org/xforms";
public static final String NAMESPACE_ODK = "http://www.opendatakit.org/xforms";

//Constants to clean up code and prevent user error
private static final String FORM_ATTR = "form";
Expand Down

0 comments on commit 808818e

Please sign in to comment.