[jira] [Updated] (TIKA-1710) Replace usages of classes in org.apache.tika.io with current alternatives

2015-08-17 Thread Yaniv Kunda (JIRA)

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

Yaniv Kunda updated TIKA-1710:
--
Attachment: TIKA-1710.patch

> Replace usages of classes in org.apache.tika.io with current alternatives
> -
>
> Key: TIKA-1710
> URL: https://issues.apache.org/jira/browse/TIKA-1710
> Project: Tika
>  Issue Type: Improvement
>  Components: batch, cli, core, example, gui, parser, server, 
> translation
>Reporter: Yaniv Kunda
>Priority: Minor
> Fix For: 1.11
>
> Attachments: TIKA-1710.patch
>
>
> Many of the classes in org.apache.tika.io were inlined from commons-io in 
> TIKA-249, but these days most components use commons-io anyway, so in order 
> to clean the dependencies on org.apache.tika.io in preparation of adding 
> commons-io to tika-core, the following can be done:
> - Replace usages of classes in org.apache.tika.io within non-core components 
> with the corresponding classes in commons-io
> - Replace usages of org.apache.tika.io.IOUtils.UTF_8 with 
> java.nio.charset.StandardCharsets.UTF_8 (in all components, including 
> tika-core)
> - Replace other uses of String encoding names of standard charsets with their 
> corresponding Charsets instances from StandardCharsets (this is logically 
> related to IOUtils as these constants should have been there as UTF_8 was 
> before Java 7)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TIKA-1710) Replace usages of classes in org.apache.tika.io with current alternatives

2015-08-17 Thread Yaniv Kunda (JIRA)

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

Yaniv Kunda updated TIKA-1710:
--
Attachment: (was: TIKA-1710.patch)

> Replace usages of classes in org.apache.tika.io with current alternatives
> -
>
> Key: TIKA-1710
> URL: https://issues.apache.org/jira/browse/TIKA-1710
> Project: Tika
>  Issue Type: Improvement
>  Components: batch, cli, core, example, gui, parser, server, 
> translation
>Reporter: Yaniv Kunda
>Priority: Minor
> Fix For: 1.11
>
> Attachments: TIKA-1710.patch
>
>
> Many of the classes in org.apache.tika.io were inlined from commons-io in 
> TIKA-249, but these days most components use commons-io anyway, so in order 
> to clean the dependencies on org.apache.tika.io in preparation of adding 
> commons-io to tika-core, the following can be done:
> - Replace usages of classes in org.apache.tika.io within non-core components 
> with the corresponding classes in commons-io
> - Replace usages of org.apache.tika.io.IOUtils.UTF_8 with 
> java.nio.charset.StandardCharsets.UTF_8 (in all components, including 
> tika-core)
> - Replace other uses of String encoding names of standard charsets with their 
> corresponding Charsets instances from StandardCharsets (this is logically 
> related to IOUtils as these constants should have been there as UTF_8 was 
> before Java 7)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TIKA-1710) Replace usages of classes in org.apache.tika.io with current alternatives

2015-08-16 Thread Yaniv Kunda (JIRA)

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

Yaniv Kunda updated TIKA-1710:
--
Attachment: TIKA-1710.patch

Revised patch without StandardCharsets wildcard static imports

> Replace usages of classes in org.apache.tika.io with current alternatives
> -
>
> Key: TIKA-1710
> URL: https://issues.apache.org/jira/browse/TIKA-1710
> Project: Tika
>  Issue Type: Improvement
>  Components: batch, cli, core, example, gui, parser, server, 
> translation
>Reporter: Yaniv Kunda
>Priority: Minor
> Fix For: 1.11
>
> Attachments: TIKA-1710.patch
>
>
> Many of the classes in org.apache.tika.io were inlined from commons-io in 
> TIKA-249, but these days most components use commons-io anyway, so in order 
> to clean the dependencies on org.apache.tika.io in preparation of adding 
> commons-io to tika-core, the following can be done:
> - Replace usages of classes in org.apache.tika.io within non-core components 
> with the corresponding classes in commons-io
> - Replace usages of org.apache.tika.io.IOUtils.UTF_8 with 
> java.nio.charset.StandardCharsets.UTF_8 (in all components, including 
> tika-core)
> - Replace other uses of String encoding names of standard charsets with their 
> corresponding Charsets instances from StandardCharsets (this is logically 
> related to IOUtils as these constants should have been there as UTF_8 was 
> before Java 7)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TIKA-1710) Replace usages of classes in org.apache.tika.io with current alternatives

2015-08-16 Thread Yaniv Kunda (JIRA)

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

Yaniv Kunda updated TIKA-1710:
--
Attachment: (was: TIKA-1710.patch)

> Replace usages of classes in org.apache.tika.io with current alternatives
> -
>
> Key: TIKA-1710
> URL: https://issues.apache.org/jira/browse/TIKA-1710
> Project: Tika
>  Issue Type: Improvement
>  Components: batch, cli, core, example, gui, parser, server, 
> translation
>Reporter: Yaniv Kunda
>Priority: Minor
> Fix For: 1.11
>
>
> Many of the classes in org.apache.tika.io were inlined from commons-io in 
> TIKA-249, but these days most components use commons-io anyway, so in order 
> to clean the dependencies on org.apache.tika.io in preparation of adding 
> commons-io to tika-core, the following can be done:
> - Replace usages of classes in org.apache.tika.io within non-core components 
> with the corresponding classes in commons-io
> - Replace usages of org.apache.tika.io.IOUtils.UTF_8 with 
> java.nio.charset.StandardCharsets.UTF_8 (in all components, including 
> tika-core)
> - Replace other uses of String encoding names of standard charsets with their 
> corresponding Charsets instances from StandardCharsets (this is logically 
> related to IOUtils as these constants should have been there as UTF_8 was 
> before Java 7)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TIKA-1710) Replace usages of classes in org.apache.tika.io with current alternatives

2015-08-15 Thread Yaniv Kunda (JIRA)

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

Yaniv Kunda updated TIKA-1710:
--
Attachment: TIKA-1710.patch

A patch for the described changes

> Replace usages of classes in org.apache.tika.io with current alternatives
> -
>
> Key: TIKA-1710
> URL: https://issues.apache.org/jira/browse/TIKA-1710
> Project: Tika
>  Issue Type: Improvement
>  Components: batch, cli, core, example, gui, parser, server, 
> translation
>Reporter: Yaniv Kunda
>Priority: Minor
> Fix For: 1.11
>
> Attachments: TIKA-1710.patch
>
>
> Many of the classes in org.apache.tika.io were inlined from commons-io in 
> TIKA-249, but these days most components use commons-io anyway, so in order 
> to clean the dependencies on org.apache.tika.io in preparation of adding 
> commons-io to tika-core, the following can be done:
> - Replace usages of classes in org.apache.tika.io within non-core components 
> with the corresponding classes in commons-io
> - Replace usages of org.apache.tika.io.IOUtils.UTF_8 with 
> java.nio.charset.StandardCharsets.UTF_8 (in all components, including 
> tika-core)
> - Replace other uses of String encoding names of standard charsets with their 
> corresponding Charsets instances from StandardCharsets (this is logically 
> related to IOUtils as these constants should have been there as UTF_8 was 
> before Java 7)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)