Re: [PROPOSAL] AlchemyAPI Annotator

2010-02-16 Thread Tommaso Teofili
Hi all,
Just for information purpose: I've sent the grant 6 days ago, but still got
no reply.
Cheers.
Tommaso

2010/2/3 Tommaso Teofili 

> Sure,
> Tommaso
>
> 2010/2/3 Jörn Kottmann 
>
> Tommaso Teofili wrote:
>>
>>> Thanks a lot, Marshall!
>>> We'll fill the grant and let you know once it's been sent.
>>>
>>>
>> Maybe you want to open a jira issue, then we can track
>> the import of the project there.
>>
>> Jörn
>>
>
>


[jira] Created: (UIMA-1738) Adding a JTextArea in MetaDataPanel for larger text fields

2010-02-16 Thread JIRA
Adding a JTextArea in MetaDataPanel for larger text fields
--

 Key: UIMA-1738
 URL: https://issues.apache.org/jira/browse/UIMA-1738
 Project: UIMA
  Issue Type: New Feature
  Components: Tools
Affects Versions: 2.3
Reporter: Jérôme Rocheteau
Priority: Minor


I'll suggest to add the Swing component JTextArea into MetaDataPanel in order 
to set parameters that need large text fiedls.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1738) Adding a JTextArea in MetaDataPanel for larger text fields

2010-02-16 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/UIMA-1738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jérôme Rocheteau updated UIMA-1738:
---

Attachment: MetaDataPanel and ConfigField Patch.txt

I provide this patch for the MetaDataPanel and ConfigField classes that enables 
JTextArea into MetaDataPanel.

> Adding a JTextArea in MetaDataPanel for larger text fields
> --
>
> Key: UIMA-1738
> URL: https://issues.apache.org/jira/browse/UIMA-1738
> Project: UIMA
>  Issue Type: New Feature
>  Components: Tools
>Affects Versions: 2.3
>Reporter: Jérôme Rocheteau
>Priority: Minor
> Attachments: MetaDataPanel and ConfigField Patch.txt
>
>   Original Estimate: 0.25h
>  Remaining Estimate: 0.25h
>
> I'll suggest to add the Swing component JTextArea into MetaDataPanel in order 
> to set parameters that need large text fiedls.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (UIMA-1739) Modification of FormPanel's getCaptionFromName method

2010-02-16 Thread JIRA
Modification of FormPanel's  getCaptionFromName method
--

 Key: UIMA-1739
 URL: https://issues.apache.org/jira/browse/UIMA-1739
 Project: UIMA
  Issue Type: Improvement
  Components: Tools
Affects Versions: 2.3C
Reporter: Jérôme Rocheteau
Priority: Trivial


I'll suggest to change the current if-then condition « if (c > 'A' && c < 'Z') 
» to that one « if (c >= 'A' && c <= 'Z') » found in 
org.apache.uima.tools.util.gui.FormPanel.getCaptionFromName(String name).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1739) Modification of FormPanel's getCaptionFromName method

2010-02-16 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/UIMA-1739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jérôme Rocheteau updated UIMA-1739:
---

Attachment: FormPanel Patch.txt

I provide this patch in order to do that.

> Modification of FormPanel's  getCaptionFromName method
> --
>
> Key: UIMA-1739
> URL: https://issues.apache.org/jira/browse/UIMA-1739
> Project: UIMA
>  Issue Type: Improvement
>  Components: Tools
>Affects Versions: 2.3C
>Reporter: Jérôme Rocheteau
>Priority: Trivial
> Attachments: FormPanel Patch.txt
>
>
> I'll suggest to change the current if-then condition « if (c > 'A' && c < 
> 'Z') » to that one « if (c >= 'A' && c <= 'Z') » found in 
> org.apache.uima.tools.util.gui.FormPanel.getCaptionFromName(String name).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Reopened: (UIMA-1553) Add prospective search AE to Lucas

2010-02-16 Thread Marshall Schor (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marshall Schor reopened UIMA-1553:
--


reopening - seems that the calls to new IOException on line 134 and 136 use a 
form of this constructor that is only available on Java 6, not Java 5.

> Add prospective search AE to Lucas
> --
>
> Key: UIMA-1553
> URL: https://issues.apache.org/jira/browse/UIMA-1553
> Project: UIMA
>  Issue Type: Improvement
>  Components: Sandbox-Lucas
>Affects Versions: 2.3S
>Reporter: Jörn Kottmann
>Assignee: Jörn Kottmann
>
> Prospective search is a search method where the search query is given first
> and then searched against a stream of text, e.g. a xml feed.
> Lucene supports prospective search via their MemoryIndex
> http://lucene.apache.org/java/2_4_1/api/contrib-memory/org/apache/lucene/index/memory/MemoryIndex.html
> which is a fast one document in memory index.
> To add prospective search support to Lucas a new AE should be implemented,
> which uses a resource interface to fetch the search queries either from
> a user implemented object or from a resource file.
> The search results should be written to the CAS to be available for further
> processing by user implemented AEs.
> The new AE should share the code which is used to build the Index with the
> LuceneCASIndexer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Closed: (UIMA-1553) Add prospective search AE to Lucas

2010-02-16 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/UIMA-1553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jörn Kottmann closed UIMA-1553.
---

Resolution: Fixed

Replaced the call to IOException(String, Throwable) with IOException(String).

> Add prospective search AE to Lucas
> --
>
> Key: UIMA-1553
> URL: https://issues.apache.org/jira/browse/UIMA-1553
> Project: UIMA
>  Issue Type: Improvement
>  Components: Sandbox-Lucas
>Affects Versions: 2.3S
>Reporter: Jörn Kottmann
>Assignee: Jörn Kottmann
>
> Prospective search is a search method where the search query is given first
> and then searched against a stream of text, e.g. a xml feed.
> Lucene supports prospective search via their MemoryIndex
> http://lucene.apache.org/java/2_4_1/api/contrib-memory/org/apache/lucene/index/memory/MemoryIndex.html
> which is a fast one document in memory index.
> To add prospective search support to Lucas a new AE should be implemented,
> which uses a resource interface to fetch the search queries either from
> a user implemented object or from a resource file.
> The search results should be written to the CAS to be available for further
> processing by user implemented AEs.
> The new AE should share the code which is used to build the Index with the
> LuceneCASIndexer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: [Discuss] graduation

2010-02-16 Thread Jukka Zitting
Hi,

Let's push this forward... See below for a proposed board resolution
with Marshall as the chairman, with all the current committers (and me
as a former mentor) as PMC members, and with the scope I proposed in
response to Marshall's version. WDYT?

BR,

Jukka Zitting


X. Establish the Apache UIMA Project

   WHEREAS, the Board of Directors deems it to be in the best
   interests of the Foundation and consistent with the
   Foundation's purpose to establish a Project Management
   Committee charged with the creation and maintenance of
   open-source software related to the analysis of unstructured
   data, guided by the UIMA Oasis Standard, for distribution at
   no charge to the public.

   NOW, THEREFORE, BE IT RESOLVED, that a Project Management
   Committee (PMC), to be known as the "Apache UIMA Project",
   be and hereby is established pursuant to Bylaws of the
   Foundation; and be it further

   RESOLVED, that the Apache UIMA Project be and hereby is
   responsible for the creation and maintenance of software
   related to the analysis of unstructured data, guided by
   the UIMA Oasis Standard, and be it further

   RESOLVED, that the office of "Vice President, Apache UIMA" be
   and hereby is created, the person holding such office to
   serve at the direction of the Board of Directors as the chair
   of the Apache UIMA Project, and to have primary responsibility
   for management of the projects within the scope of
   responsibility of the Apache UIMA Project; and be it further

   RESOLVED, that the persons listed immediately below be and
   hereby are appointed to serve as the initial members of the
   Apache UIMA Project:

 * Adam Lally
 * Bhavani Iyer  
 * Burn Lewis
 * Edward Epstein
 * Jaroslaw Cwiklik  
 * Joern Kottmann
 * Jukka Zitting 
 * Marshall Schor
 * Michael Baessler  
 * Thilo Goetz   
 * Tommaso Teofili   
 * Tong Fin  

   NOW, THEREFORE, BE IT FURTHER RESOLVED, that Marshall Schor
   be appointed to the office of Vice President, Apache UIMA, to
   serve in accordance with and subject to the direction of the
   Board of Directors and the Bylaws of the Foundation until
   death, resignation, retirement, removal or disqualification,
   or until a successor is appointed; and be it further

   RESOLVED, that the initial Apache UIMA PMC be and hereby is
   tasked with the creation of a set of bylaws intended to
   encourage open development and increased participation in the
   Apache UIMA Project; and be it further

   RESOLVED, that the Apache UIMA Project be and hereby
   is tasked with the migration and rationalization of the Apache
   Incubator UIMA podling; and be it further

   RESOLVED, that all responsibilities pertaining to the Apache
   Incubator UIMA podling encumbered upon the Apache Incubator
   Project are hereafter discharged.


Re: [Discuss] graduation

2010-02-16 Thread Tommaso Teofili
Hi Jukka,
the proposed resolution is in my opinion very good.
+1
Cheers.
Tommaso

2010/2/16 Jukka Zitting 

> Hi,
>
> Let's push this forward... See below for a proposed board resolution
> with Marshall as the chairman, with all the current committers (and me
> as a former mentor) as PMC members, and with the scope I proposed in
> response to Marshall's version. WDYT?
>
> BR,
>
> Jukka Zitting
>
>
>X. Establish the Apache UIMA Project
>
>   WHEREAS, the Board of Directors deems it to be in the best
>   interests of the Foundation and consistent with the
>   Foundation's purpose to establish a Project Management
>   Committee charged with the creation and maintenance of
>   open-source software related to the analysis of unstructured
>   data, guided by the UIMA Oasis Standard, for distribution at
>   no charge to the public.
>
>   NOW, THEREFORE, BE IT RESOLVED, that a Project Management
>   Committee (PMC), to be known as the "Apache UIMA Project",
>   be and hereby is established pursuant to Bylaws of the
>   Foundation; and be it further
>
>   RESOLVED, that the Apache UIMA Project be and hereby is
>   responsible for the creation and maintenance of software
>   related to the analysis of unstructured data, guided by
>   the UIMA Oasis Standard, and be it further
>
>   RESOLVED, that the office of "Vice President, Apache UIMA" be
>   and hereby is created, the person holding such office to
>   serve at the direction of the Board of Directors as the chair
>   of the Apache UIMA Project, and to have primary responsibility
>   for management of the projects within the scope of
>   responsibility of the Apache UIMA Project; and be it further
>
>   RESOLVED, that the persons listed immediately below be and
>   hereby are appointed to serve as the initial members of the
>   Apache UIMA Project:
>
> * Adam Lally
> * Bhavani Iyer  
> * Burn Lewis
> * Edward Epstein
> * Jaroslaw Cwiklik  
> * Joern Kottmann
> * Jukka Zitting 
> * Marshall Schor
> * Michael Baessler  
> * Thilo Goetz   
> * Tommaso Teofili   
> * Tong Fin  
>
>   NOW, THEREFORE, BE IT FURTHER RESOLVED, that Marshall Schor
>   be appointed to the office of Vice President, Apache UIMA, to
>   serve in accordance with and subject to the direction of the
>   Board of Directors and the Bylaws of the Foundation until
>   death, resignation, retirement, removal or disqualification,
>   or until a successor is appointed; and be it further
>
>   RESOLVED, that the initial Apache UIMA PMC be and hereby is
>   tasked with the creation of a set of bylaws intended to
>   encourage open development and increased participation in the
>   Apache UIMA Project; and be it further
>
>   RESOLVED, that the Apache UIMA Project be and hereby
>   is tasked with the migration and rationalization of the Apache
>   Incubator UIMA podling; and be it further
>
>   RESOLVED, that all responsibilities pertaining to the Apache
>   Incubator UIMA podling encumbered upon the Apache Incubator
>   Project are hereafter discharged.
>


Re: [Discuss] graduation

2010-02-16 Thread Robert Burrell Donkin
On Tue, Feb 16, 2010 at 2:05 PM, Jukka Zitting  wrote:
> Hi,
>
> Let's push this forward... See below for a proposed board resolution
> with Marshall as the chairman, with all the current committers (and me
> as a former mentor) as PMC members, and with the scope I proposed in
> response to Marshall's version. WDYT?

+1

- robert


Re: [Discuss] graduation

2010-02-16 Thread Adam Lally
On Tue, Feb 16, 2010 at 9:05 AM, Jukka Zitting  wrote:
> Hi,
>
> Let's push this forward... See below for a proposed board resolution
> with Marshall as the chairman, with all the current committers (and me
> as a former mentor) as PMC members, and with the scope I proposed in
> response to Marshall's version. WDYT?
> 

+1

Adam


Re: [Discuss] graduation

2010-02-16 Thread Thilo Goetz
+1, let's go!

On 2/16/2010 15:05, Jukka Zitting wrote:
> Hi,
> 
> Let's push this forward... See below for a proposed board resolution
> with Marshall as the chairman, with all the current committers (and me
> as a former mentor) as PMC members, and with the scope I proposed in
> response to Marshall's version. WDYT?
> 
> BR,
> 
> Jukka Zitting
> 
> 
> X. Establish the Apache UIMA Project
> 
>WHEREAS, the Board of Directors deems it to be in the best
>interests of the Foundation and consistent with the
>Foundation's purpose to establish a Project Management
>Committee charged with the creation and maintenance of
>open-source software related to the analysis of unstructured
>data, guided by the UIMA Oasis Standard, for distribution at
>no charge to the public.
> 
>NOW, THEREFORE, BE IT RESOLVED, that a Project Management
>Committee (PMC), to be known as the "Apache UIMA Project",
>be and hereby is established pursuant to Bylaws of the
>Foundation; and be it further
> 
>RESOLVED, that the Apache UIMA Project be and hereby is
>responsible for the creation and maintenance of software
>related to the analysis of unstructured data, guided by
>the UIMA Oasis Standard, and be it further
> 
>RESOLVED, that the office of "Vice President, Apache UIMA" be
>and hereby is created, the person holding such office to
>serve at the direction of the Board of Directors as the chair
>of the Apache UIMA Project, and to have primary responsibility
>for management of the projects within the scope of
>responsibility of the Apache UIMA Project; and be it further
> 
>RESOLVED, that the persons listed immediately below be and
>hereby are appointed to serve as the initial members of the
>Apache UIMA Project:
> 
>  * Adam Lally
>  * Bhavani Iyer  
>  * Burn Lewis
>  * Edward Epstein
>  * Jaroslaw Cwiklik  
>  * Joern Kottmann
>  * Jukka Zitting 
>  * Marshall Schor
>  * Michael Baessler  
>  * Thilo Goetz   
>  * Tommaso Teofili   
>  * Tong Fin  
> 
>NOW, THEREFORE, BE IT FURTHER RESOLVED, that Marshall Schor
>be appointed to the office of Vice President, Apache UIMA, to
>serve in accordance with and subject to the direction of the
>Board of Directors and the Bylaws of the Foundation until
>death, resignation, retirement, removal or disqualification,
>or until a successor is appointed; and be it further
> 
>RESOLVED, that the initial Apache UIMA PMC be and hereby is
>tasked with the creation of a set of bylaws intended to
>encourage open development and increased participation in the
>Apache UIMA Project; and be it further
> 
>RESOLVED, that the Apache UIMA Project be and hereby
>is tasked with the migration and rationalization of the Apache
>Incubator UIMA podling; and be it further
> 
>RESOLVED, that all responsibilities pertaining to the Apache
>Incubator UIMA podling encumbered upon the Apache Incubator
>Project are hereafter discharged.


Re: [PROPOSAL] AlchemyAPI Annotator

2010-02-16 Thread Marshall Schor
Dear Secretary of ASF,

Can you please acknowledge receipt and recording of the referenced
Software Grant?  This was sent in by Tommaso Teofili, and covers the
submission AlchemyAPI Annotator.

Do you need additional information to track this?

Thanks. -Marshall Schor

Tommaso Teofili wrote:
> Hi all,
> Just for information purpose: I've sent the grant 6 days ago, but still got
> no reply.
> Cheers.
> Tommaso
>
> 2010/2/3 Tommaso Teofili 
>
>   
>> Sure,
>> Tommaso
>>
>> 2010/2/3 Jörn Kottmann 
>>
>> Tommaso Teofili wrote:
>> 
 Thanks a lot, Marshall!
 We'll fill the grant and let you know once it's been sent.


 
>>> Maybe you want to open a jira issue, then we can track
>>> the import of the project there.
>>>
>>> Jörn
>>>
>>>   
>> 
>
>   


Re: [Discuss] graduation

2010-02-16 Thread Marshall Schor
+1 from me, but I have recently received responses from our other 2
mentors, who both agree to help out occasionally, on the PMC - so I'd
like to add them to our PMC list (Sam Ruby, and Ken Coar).   Ken
acknowledges that he hasn't been too helpful in the past (but he has
done various things only an Apache "Member" can do, for us) and says
that maybe he can be of better help in the future, and Sam was OK either
way with us putting him on the PMC.

WDYT?

-Marshall

Thilo Goetz wrote:
> +1, let's go!
>
> On 2/16/2010 15:05, Jukka Zitting wrote:
>   
>> Hi,
>>
>> Let's push this forward... See below for a proposed board resolution
>> with Marshall as the chairman, with all the current committers (and me
>> as a former mentor) as PMC members, and with the scope I proposed in
>> response to Marshall's version. WDYT?
>>
>> BR,
>>
>> Jukka Zitting
>>
>>
>> X. Establish the Apache UIMA Project
>>
>>WHEREAS, the Board of Directors deems it to be in the best
>>interests of the Foundation and consistent with the
>>Foundation's purpose to establish a Project Management
>>Committee charged with the creation and maintenance of
>>open-source software related to the analysis of unstructured
>>data, guided by the UIMA Oasis Standard, for distribution at
>>no charge to the public.
>>
>>NOW, THEREFORE, BE IT RESOLVED, that a Project Management
>>Committee (PMC), to be known as the "Apache UIMA Project",
>>be and hereby is established pursuant to Bylaws of the
>>Foundation; and be it further
>>
>>RESOLVED, that the Apache UIMA Project be and hereby is
>>responsible for the creation and maintenance of software
>>related to the analysis of unstructured data, guided by
>>the UIMA Oasis Standard, and be it further
>>
>>RESOLVED, that the office of "Vice President, Apache UIMA" be
>>and hereby is created, the person holding such office to
>>serve at the direction of the Board of Directors as the chair
>>of the Apache UIMA Project, and to have primary responsibility
>>for management of the projects within the scope of
>>responsibility of the Apache UIMA Project; and be it further
>>
>>RESOLVED, that the persons listed immediately below be and
>>hereby are appointed to serve as the initial members of the
>>Apache UIMA Project:
>>
>>  * Adam Lally
>>  * Bhavani Iyer  
>>  * Burn Lewis
>>  * Edward Epstein
>>  * Jaroslaw Cwiklik  
>>  * Joern Kottmann
>>  * Jukka Zitting 
>>  * Marshall Schor
>>  * Michael Baessler  
>>  * Thilo Goetz   
>>  * Tommaso Teofili   
>>  * Tong Fin  
>>
>>NOW, THEREFORE, BE IT FURTHER RESOLVED, that Marshall Schor
>>be appointed to the office of Vice President, Apache UIMA, to
>>serve in accordance with and subject to the direction of the
>>Board of Directors and the Bylaws of the Foundation until
>>death, resignation, retirement, removal or disqualification,
>>or until a successor is appointed; and be it further
>>
>>RESOLVED, that the initial Apache UIMA PMC be and hereby is
>>tasked with the creation of a set of bylaws intended to
>>encourage open development and increased participation in the
>>Apache UIMA Project; and be it further
>>
>>RESOLVED, that the Apache UIMA Project be and hereby
>>is tasked with the migration and rationalization of the Apache
>>Incubator UIMA podling; and be it further
>>
>>RESOLVED, that all responsibilities pertaining to the Apache
>>Incubator UIMA podling encumbered upon the Apache Incubator
>>Project are hereafter discharged.
>> 
>
>
>   


Re: [Discuss] graduation

2010-02-16 Thread Jukka Zitting
Hi,

On Wed, Feb 17, 2010 at 3:01 AM, Marshall Schor  wrote:
> +1 from me, but I have recently received responses from our other 2
> mentors, who both agree to help out occasionally, on the PMC - so I'd
> like to add them to our PMC list (Sam Ruby, and Ken Coar).   Ken
> acknowledges that he hasn't been too helpful in the past (but he has
> done various things only an Apache "Member" can do, for us) and says
> that maybe he can be of better help in the future, and Sam was OK either
> way with us putting him on the PMC.

Sounds good to me!

BR,

Jukka Zitting


Re: [PROPOSAL] AlchemyAPI Annotator

2010-02-16 Thread Jukka Zitting
Hi,

On Wed, Feb 17, 2010 at 2:56 AM, Marshall Schor  wrote:
> Can you please acknowledge receipt and recording of the referenced
> Software Grant?  This was sent in by Tommaso Teofili, and covers the
> submission AlchemyAPI Annotator.

I just checked the records; the grant has been received and recorded.

BR,

Jukka Zitting