[ 
https://issues.apache.org/jira/browse/JENA-632?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16451848#comment-16451848
 ] 

ASF GitHub Bot commented on JENA-632:
-------------------------------------

Github user kinow commented on a diff in the pull request:

    https://github.com/apache/jena/pull/114#discussion_r183974343
  
    --- Diff: jena-arq/Grammar/master.jj ---
    @@ -2176,6 +2251,19 @@ String String() : { Token t ; String lex ; }
         }
     }
     
    +#ifdef ARQ
    +Number Number() : { Token t ; Number number ; }
    +{
    +  (
    +    t = < INTEGER > { number = integerValue(t.image) ; }
    +  | t = < DECIMAL > { number = doubleValue(t.image) ; }
    --- End diff --
    
    @afs nice catch in that observation. Reduced code duplication and avoids 
now possible "forgot to apply to the other part of the json clause" issues in 
the future :-)
    
    Change applied. Rebased, ran all tests, tried three queries mentioned in 
this pull request (we have a few already! :smiley: ), got no issues.
    
    Pushing the latest code, rebased onto the maste branch.


> Generate JSON from SPARQL directly.
> -----------------------------------
>
>                 Key: JENA-632
>                 URL: https://issues.apache.org/jira/browse/JENA-632
>             Project: Apache Jena
>          Issue Type: Improvement
>          Components: ARQ, Fuseki
>            Reporter: Andy Seaborne
>            Assignee: Bruno P. Kinoshita
>            Priority: Minor
>              Labels: java, javacc
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> The capability to generate JSON directly from a SPARQL (or extended SPARQL) 
> query would enable the creation of JSON data API over published linked data.
> This project would cover:
> # Design and publication of a design.
> # Refinement of design based on community feed
> # Implementation, including testing.
> # Refinement of implementation based on community feed
> Skills required: Java, some parser work, design and discussion with the user 
> community, basic understanding of HTTP and content negotiation.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to