You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by "Mihaly Heder (JIRA)" <ji...@apache.org> on 2012/09/15 16:24:07 UTC

[jira] [Created] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Mihaly Heder created STANBOL-743:
------------------------------------

             Summary: UIMA Integration tools - contribution to Stanbol
                 Key: STANBOL-743
                 URL: https://issues.apache.org/jira/browse/STANBOL-743
             Project: Stanbol
          Issue Type: New Feature
          Components: Commons, Enhancer
            Reporter: Mihaly Heder
            Priority: Minor


The patch contains the following:
- commons/caslight
Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
 
- enhancer/engines/uimaremote 
Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/

- enhancer/engines/uimatotriples 
Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/

- contrib/enhancer/uimalocal
Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
To be honest I did not know where to put this thing.

The patch was created against rev. 1385067.
The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Tommaso Teofili (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13456547#comment-13456547 ] 

Tommaso Teofili commented on STANBOL-743:
-----------------------------------------

I'll take care of reviewing this, thanks Mihaly :)
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Tommaso Teofili (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13457034#comment-13457034 ] 

Tommaso Teofili commented on STANBOL-743:
-----------------------------------------

I just noticed the org.apache.stanbol.enhancer.engines.uimalocal.endorsed package stuff inside uimalocal is merely the same as http://svn.apache.org/repos/asf/lucene/dev/trunk/lucene/analysis/uima/src/java/org/apache/lucene/analysis/uima/ae/ 
Maybe it'd make sense to not duplicate such code and add a dependency on that artifact (org.apache.lucene.analysis-uima)
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Mihaly Heder (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13457130#comment-13457130 ] 

Mihaly Heder commented on STANBOL-743:
--------------------------------------

Thanks Tommaso! I think the changes are ok. I really just forgot about the group Id. Also, the uimalocal-template as a place for the local engine is perfect. 
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: STANBOL-743_1.patch, UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Tommaso Teofili (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tommaso Teofili updated STANBOL-743:
------------------------------------

    Attachment: STANBOL-743_1.patch

attaching a new patch with changed groupIds (also I've aligned artifactIds and versions) plus moved the uimalocal-template to enhancer/engines.
I plan to commit that and improve it incrementally.
What do you think Mihaly?
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: STANBOL-743_1.patch, UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Mihaly Heder (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mihaly Heder updated STANBOL-743:
---------------------------------

    Attachment: UIMA-caslight-remote-local-triples.tar.gz

This tar has to be extracted in stanbol root and it puts things to the right folders.
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Comment Edited] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Tommaso Teofili (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13457013#comment-13457013 ] 

Tommaso Teofili edited comment on STANBOL-743 at 9/18/12 12:43 AM:
-------------------------------------------------------------------

First thing I noticed is that all of the modules have <groupId>hu.sztaki</groupId> which in my opinion should be avoided and converted to org.apache.stanbol (like all the existing modules/artifacts), I can take care of changing them.
I think the modules are in the right places except that Apache Stanbol UIMA Local Client which could go under enhancer/engines and add the -template suffix so that its scope is clearer.
                
      was (Author: teofili):
    First thing I noticed is that all of the modules have {{<groupId>hu.sztaki</groupId>}} which in my opinion should be avoided and converted to org.apache.stanbol (like all the existing modules/artifacts), I can take care of changing them.
I think the modules are in the right places except that Apache Stanbol UIMA Local Client which could go under enhancer/engines and add the -template suffix so that its scope is clearer.
                  
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Comment Edited] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Tommaso Teofili (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13457013#comment-13457013 ] 

Tommaso Teofili edited comment on STANBOL-743 at 9/18/12 12:43 AM:
-------------------------------------------------------------------

First thing I noticed is that all of the modules have {{<groupId>hu.sztaki</groupId>}} which in my opinion should be avoided and converted to org.apache.stanbol (like all the existing modules/artifacts), I can take care of changing them.
I think the modules are in the right places except that Apache Stanbol UIMA Local Client which could go under enhancer/engines and add the -template suffix so that its scope is clearer.
                
      was (Author: teofili):
    First thing I noticed is that all of the modules have _<groupId>hu.sztaki</groupId>_ which in my opinion should be avoided and converted to org.apache.stanbol (like all the existing modules/artifacts), I can take care of changing them.
I think the modules are in the right places except that Apache Stanbol UIMA Local Client which could go under enhancer/engines and add the -template suffix so that its scope is clearer.
                  
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Tommaso Teofili (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13457013#comment-13457013 ] 

Tommaso Teofili commented on STANBOL-743:
-----------------------------------------

First thing I noticed is that all of the modules have _<groupId>hu.sztaki</groupId>_ which in my opinion should be avoided and converted to org.apache.stanbol (like all the existing modules/artifacts), I can take care of changing them.
I think the modules are in the right places except that Apache Stanbol UIMA Local Client which could go under enhancer/engines and add the -template suffix so that its scope is clearer.
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Mihaly Heder (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13457137#comment-13457137 ] 

Mihaly Heder commented on STANBOL-743:
--------------------------------------

Also, thanks for pointing out that the endorsed classes are in Lucene now. I took them from the solr project, where they were in the package named org.apache.solr.uima.processor.ae until 3.6.0, but I could not find it in 4.0.0, so I thought they were removed. But if it is really in analysis-uima then I would love to get rid of them. If you commmit the patch then I will test if I can really remove the code and if ok will create a patch to do that against the latest rev.
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: STANBOL-743_1.patch, UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (STANBOL-743) UIMA Integration tools - contribution to Stanbol

Posted by "Mihaly Heder (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STANBOL-743?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mihaly Heder updated STANBOL-743:
---------------------------------

    Attachment: UIMA-caslight-remote-local-triples.patch.zip

pach created by diff -urPp stanbol-orig stanbol
                
> UIMA Integration tools - contribution to Stanbol
> ------------------------------------------------
>
>                 Key: STANBOL-743
>                 URL: https://issues.apache.org/jira/browse/STANBOL-743
>             Project: Stanbol
>          Issue Type: New Feature
>          Components: Commons, Enhancer
>            Reporter: Mihaly Heder
>            Priority: Minor
>              Labels: patch
>         Attachments: UIMA-caslight-remote-local-triples.patch.zip, UIMA-caslight-remote-local-triples.tar.gz
>
>
> The patch contains the following:
> - commons/caslight
> Apache Stanbol CAS Light Helper Module. This module provides utility classes that emulate some aspects of UIMA CAS Features and FeatureStructures without dependencies to real UIMA jars. This is used by 'UIMA Remote Client', 'UIMA Local Client', 'UIMA To Triples' and 'BookSpotter by Sztaki' Enhancement Engines. I hope this is in the right place under commons/, if not, please let me know.
>  
> - enhancer/engines/uimaremote 
> Apache Stanbol UIMA Remote Client. This Enhancement Engine communicates with an UIMA Simple Servlet trough REST to retreive UIMA annotations. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - enhancer/engines/uimatotriples 
> Apache Stanbol UIMA To Triples Enhancement Engine. This turns UIMA annotations into RDF triples by rules defined by the user. This module is only responsible for handling annotations that are coming from UIMA Remote Client or UIMA Local Client Enhancement Engines; It does not create any annotations on its own. Naturally, in the Enhancement Chain's processing order this enhancer should follow annotation source. For details, see: http://blog.iks-project.eu/uima-apache-stanbol-integration-2/
> - contrib/enhancer/uimalocal
> Apache Stanbol UIMA Local Client. This is a template Enhancement Engine to integrate Stanbol with your own UIMA engines. You cannot just bundle and run this package. It needs to be customized first to import the specific uima packages. For instructions, see: http://blog.iks-project.eu/running-uima-engines-in-stanbol-using-the-same-jvm/
> To be honest I did not know where to put this thing.
> The patch was created against rev. 1385067.
> The tar.gz contains the same thing for those who just want to download and check it out. It has to be extracted in stanbol root. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira