Code Monkey home page Code Monkey logo

validate's Introduction

ODK Validate

Platform License Build status Slack status

ODK Validate is a desktop Java application for confirming that a form is compliant with the ODK XForms spec.

ODK Validate is part of Open Data Kit (ODK), a free and open-source set of tools which help organizations author, field, and manage mobile data collection solutions. Learn more about the Open Data Kit project and its history here and read about example ODK deployments here.

Setting up your development environment

  1. Fork the validate project (why and how to fork)

  2. Clone your fork of the project locally. At the command line:

     git clone https://github.com/YOUR-GITHUB-USERNAME/validate
    

We recommend using IntelliJ IDEA for development. On the welcome screen, click Import Project, navigate to your validate folder, and select the build.gradle file. Use the defaults through the wizard. Once the project is imported, IntelliJ may ask you to update your remote maven repositories. Follow the instructions to do so.

The main class is org.opendatakit.validate.FormValidator.

Running the project

To run the project, go to the View menu, then Tool Windows > Gradle. run will be in odk-validate > Tasks > application > run. Double-click run to run the application. This Gradle task will now be the default action in your Run menu.

You must use the Gradle task to run the application because there is a generated class (BuildConfig) that IntelliJ may not properly import and recognize.

To package a runnable jar, use the jar Gradle task.

Integrating Validate with your Java app

  1. Download the latest ODKValidate jar or build your own.

  2. Add the ODKValidate jar to your classpath.

  3. Create a custom ErrorListener by implementing the org.opendatakit.validate.ErrorListener interface.

  4. Add the custom ErrorListener to the form validator and call any of the various validate(...) methods.

See example below:

ErrorListener listener = new ErrorListener() {
    public void error(Object err) {
        // ...custom code to handle error message
        System.err.println(err);
    }

    public void error(Object err, Throwable t) {
         // ...custom code to handle error message and exception
        System.err.println("" + err + t);
    }

    public void info(Object msg) {
        // ...custom code
        System.out.println(msg);
    }
};

new FormValidator().setErrorListener(listener).validateText("<xform>...");

Calling Validate via the command line interface

You can use Validate through the command line like this: java -jar ODKValidate.jar path/to/xform.xml.

An exit code of 0 means Valid XForm and 1 is Invalid XForm.

Contributing code

Any and all contributions to the project are welcome. ODK Validate is used across the world primarily by organizations with a social purpose so you can have real impact!

If you're ready to contribute code, see the contribution guide.

Downloading builds

Per-commit debug builds can be found on CircleCI. Login with your GitHub account, click the build you'd like, then find the JAR in the Artifacts tab under $CIRCLE_ARTIFACTS/libs.

Current and previous production builds can be found on the ODK website.

validate's People

Contributors

yanokwa avatar mitchellsundt avatar lognaturel avatar kayr avatar jbeorse avatar meletis avatar

Watchers

James Cloos avatar Vignesh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.