Code Monkey home page Code Monkey logo

p3-pipeline-gui's Introduction

Pipeline GUI Build Status

Pipeline GUI provides a user interface that allows an easy way to create pipeline transformers by clicking the available transformers together in a list.

All available transformers inluding the pipelines are stored in an LDP container called Transformer Registry. This interface allows users to add new pipeline transformers to or delete existing ones from the registry. In addition it also provides an interface to invoke pipelines with data.

Compiling and Running

Compile the source code and start the application with

mvn clean install exec:java -Dexec.args="-P <port>"

-P sets the port (optional)

Usage

Open a browser go to http://localhost:8201/

Specify the query parameters platformURI and transformerBase to define the URI of the P3 platform as well as the base URI of the Pipeline Transformer Service.

p3-pipeline-gui's People

Contributors

gaborremenyi avatar retog avatar szluca avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

p3-pipeline-gui's Issues

retunr appropriate HTTP response codews when something goes wrong

e.g. this returns a 200 response even when delete fails (btw. wondering why HTTP DELET isn't used for this)

@POST
    @Path("/delete")
    @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
    @Produces(MediaType.TEXT_PLAIN)
    public String delete(@FormParam("uri") String uri) {
        try {
            Transformers.deletePipeline(uri);
            return "OK";
        } catch (RuntimeException e) {
            return e.getMessage();
        }
    }

Release for sandbox

Gabor did a new release which should hopefully fix the issue on sandbox, @retog could you make sure that there is a new release pulled?

Registered transformer UI is not correct

The dashboard does not get the correct URI of a registered pipeline, all it sees is the base URI of the pipeline transformer. In the test-dialog of the pipeline UI the full URI is present and if I manually register a widget with this transformer URI it is fine.

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.