You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Erik Hatcher (JIRA)" <ji...@apache.org> on 2012/06/11 12:34:43 UTC

[jira] [Created] (SOLR-3533) Show CharFilters in Schema Browser

Erik Hatcher created SOLR-3533:
----------------------------------

             Summary: Show CharFilters in Schema Browser
                 Key: SOLR-3533
                 URL: https://issues.apache.org/jira/browse/SOLR-3533
             Project: Solr
          Issue Type: Improvement
    Affects Versions: 4.0
            Reporter: Erik Hatcher
            Priority: Minor
             Fix For: 4.0


Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:

{code}
    <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
      <analyzer>
        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
      </analyzer>
    </fieldType>
{code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Commented] (SOLR-3533) Show CharFilters in Schema Browser

Posted by "Erik Hatcher (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3533?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13292741#comment-13292741 ] 

Erik Hatcher commented on SOLR-3533:
------------------------------------

oh, and my patch also changes "Filters" to "Token Filters" to make it labeled a little differently than "Char Filters".
                
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Assignee: Stefan Matheis (steffkes)
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Commented] (SOLR-3533) Show CharFilters in Schema Browser

Posted by "Erik Hatcher (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3533?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13292738#comment-13292738 ] 

Erik Hatcher commented on SOLR-3533:
------------------------------------

Another nicety would be to make the mapping parameter be special like "synonyms" and "words" are now in order to (eventually, I know it's not enabled on trunk at the moment) link them.
                
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Assignee: Stefan Matheis (steffkes)
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Commented] (SOLR-3533) Show CharFilters in Schema Browser

Posted by "Erik Hatcher (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3533?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13292740#comment-13292740 ] 

Erik Hatcher commented on SOLR-3533:
------------------------------------

bq. in order to (eventually, I know it's not enabled on trunk at the moment) link them

FYI - the link to the mapping file in this example is this:  http://localhost:8983/solr/admin/file?file=mapping-ISOLatin1Accent.txt
(optionally with core name in the URL too of course), so maybe we can spin off another issue to add these links in to those files now?
                
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Assignee: Stefan Matheis (steffkes)
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Resolved] (SOLR-3533) Show CharFilters in Schema Browser

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

Erik Hatcher resolved SOLR-3533.
--------------------------------

    Resolution: Fixed

Went ahead and committed this to trunk and branch_4x
                
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Assignee: Erik Hatcher
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Assigned] (SOLR-3533) Show CharFilters in Schema Browser

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

Erik Hatcher reassigned SOLR-3533:
----------------------------------

    Assignee: Erik Hatcher  (was: Stefan Matheis (steffkes))
    
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Assignee: Erik Hatcher
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Assigned] (SOLR-3533) Show CharFilters in Schema Browser

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

Erik Hatcher reassigned SOLR-3533:
----------------------------------

    Assignee: Stefan Matheis (steffkes)

I'm going to assign to Stefan to vet/commit, to ensure my first foray into the new UI is on track.
                
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Assignee: Stefan Matheis (steffkes)
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Updated] (SOLR-3533) Show CharFilters in Schema Browser

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

Erik Hatcher updated SOLR-3533:
-------------------------------

    Attachment: SOLR-3533.patch

This patch adds char filters to the index and query analysis sections.
                
> Show CharFilters in Schema Browser
> ----------------------------------
>
>                 Key: SOLR-3533
>                 URL: https://issues.apache.org/jira/browse/SOLR-3533
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 4.0
>            Reporter: Erik Hatcher
>            Priority: Minor
>             Fix For: 4.0
>
>         Attachments: SOLR-3533.patch
>
>
> Schema Browser (on trunk) currently does not show CharFilters.  The example/ schema has this definition that can be used to demonstrate, though it needs to be uncommented:
> {code}
>     <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
>       <analyzer>
>         <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
>         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
>       </analyzer>
>     </fieldType>
> {code}   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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