You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Hoss Man (JIRA)" <ji...@apache.org> on 2009/09/09 00:07:58 UTC

[jira] Created: (LUCENE-1904) move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)

move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)
--------------------------------------------------------------------------------------------------

                 Key: LUCENE-1904
                 URL: https://issues.apache.org/jira/browse/LUCENE-1904
             Project: Lucene - Java
          Issue Type: Improvement
          Components: contrib/*
            Reporter: Hoss Man
            Priority: Minor


see LUCENE-387 ... some synonym related code has been living in contrib/memory for a very long time ... it should be refactored out.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Resolved: (LUCENE-1904) move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)

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

Robert Muir resolved LUCENE-1904.
---------------------------------

    Resolution: Fixed

Committed revision 830699.

> move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)
> --------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-1904
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1904
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/*
>            Reporter: Hoss Man
>            Assignee: Robert Muir
>            Priority: Minor
>             Fix For: 3.0
>
>         Attachments: LUCENE-1904.patch, LUCENE-1904.patch, LUCENE-1904.patch
>
>
> see LUCENE-387 ... some synonym related code has been living in contrib/memory for a very long time ... it should be refactored out.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1904) move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)

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

Robert Muir updated LUCENE-1904:
--------------------------------

    Attachment: LUCENE-1904.patch

new patch, with some updated package javadocs describing the two wordnet impls available: 
* the query expansion method that was already in wordnet
* the synonym analysis injection method that was in memory

first I do
{noformat}
svn move contrib/memory/src/java/org/apache/lucene/index/memory/SynonymMap.java contrib/wordnet/src/java/org/apache/lucene/wordnet
svn move contrib/memory/src/java/org/apache/lucene/index/memory/SynonymTokenFilter.java contrib/wordnet/src/java/org/apache/lucene/wordnet
svn move contrib/memory/src/java/org/apache/lucene/index/memory/AnalyzerUtil.java contrib/wordnet/src/java/org/apache/lucene/wordnet
svn move contrib/memory/src/test/org/apache/lucene/index/memory/TestSynonymTokenFilter.java contrib/wordnet/src/test/org/apache/lucene/wordnet
svn rm contrib/memory/src/test/org/apache/lucene/index/memory/testSynonyms.txt
{noformat}

will commit shortly

> move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)
> --------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-1904
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1904
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/*
>            Reporter: Hoss Man
>            Assignee: Robert Muir
>            Priority: Minor
>             Fix For: 3.0
>
>         Attachments: LUCENE-1904.patch, LUCENE-1904.patch, LUCENE-1904.patch
>
>
> see LUCENE-387 ... some synonym related code has been living in contrib/memory for a very long time ... it should be refactored out.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1904) move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)

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

Robert Muir updated LUCENE-1904:
--------------------------------

    Attachment: LUCENE-1904.patch

oops, missed converting path in the test.

> move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)
> --------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-1904
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1904
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/*
>            Reporter: Hoss Man
>            Priority: Minor
>         Attachments: LUCENE-1904.patch, LUCENE-1904.patch
>
>
> see LUCENE-387 ... some synonym related code has been living in contrib/memory for a very long time ... it should be refactored out.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1904) move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)

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

Robert Muir updated LUCENE-1904:
--------------------------------

    Fix Version/s: 3.0
         Assignee: Robert Muir

will bring this patch up to speed. its silly to be in the memory contrib instead of wordnet where it belongs.

> move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)
> --------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-1904
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1904
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/*
>            Reporter: Hoss Man
>            Assignee: Robert Muir
>            Priority: Minor
>             Fix For: 3.0
>
>         Attachments: LUCENE-1904.patch, LUCENE-1904.patch
>
>
> see LUCENE-387 ... some synonym related code has been living in contrib/memory for a very long time ... it should be refactored out.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1904) move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)

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

Robert Muir updated LUCENE-1904:
--------------------------------

    Attachment: LUCENE-1904.patch

before applying patch, run the following svn moves:
{noformat}
mkdir -p contrib/wordnet/src/test/org/apache/lucene/wordnet
svn add contrib/wordnet/src/test
svn move contrib/memory/src/java/org/apache/lucene/index/memory/SynonymMap.java contrib/wordnet/src/java/org/apache/lucene/wordnet
svn move contrib/memory/src/java/org/apache/lucene/index/memory/SynonymTokenFilter.java contrib/wordnet/src/java/org/apache/lucene/wordnet
svn move contrib/memory/src/java/org/apache/lucene/index/memory/AnalyzerUtil.java contrib/wordnet/src/java/org/apache/lucene/wordnet
svn move contrib/memory/src/test/org/apache/lucene/index/memory/TestSynonymTokenFilter.java contrib/wordnet/src/test/org/apache/lucene/wordnet
svn move contrib/memory/src/test/org/apache/lucene/index/memory/testSynonyms.txt contrib/wordnet/src/test/org/apache/lucene/wordnet
{noformat}

> move wordnet based synonym code out of contrib/memory and into contrib/wordnet (or somewhere else)
> --------------------------------------------------------------------------------------------------
>
>                 Key: LUCENE-1904
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1904
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: contrib/*
>            Reporter: Hoss Man
>            Priority: Minor
>         Attachments: LUCENE-1904.patch
>
>
> see LUCENE-387 ... some synonym related code has been living in contrib/memory for a very long time ... it should be refactored out.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org