[GitHub] commons-io pull request #58: Fix IO-535

2018-04-29 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/commons-io/pull/58 --- - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

[GitHub] commons-codec pull request #12: Corrected vital comment issue

2018-04-29 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/commons-codec/pull/12 --- - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

[GitHub] commons-validator pull request #11: add Belarus (BY) valid example

2018-04-29 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/commons-validator/pull/11 --- - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.or

[GitHub] commons-validator pull request #10: Add El Salvador (SV)

2018-04-29 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/commons-validator/pull/10 --- - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.or

[GitHub] commons-codec pull request #11: CODEC-240 Percent-Encoding codec proposal

2018-04-29 Thread sermojohn
Github user sermojohn closed the pull request at: https://github.com/apache/commons-codec/pull/11 --- - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

[GitHub] commons-io pull request #36: FileAlternationMonitor#stop() does not stop the...

2018-04-29 Thread anthonyraymond
Github user anthonyraymond closed the pull request at: https://github.com/apache/commons-io/pull/36 --- - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.o

Re: [compress] High Level API for Archives

2018-04-29 Thread Stefan Bodewig
On 2018-04-26, Matt Sicker wrote: > If it helps in design, the most promising approach I found was to integrate > with the java.nio.file API. However, that turns into a sort of hybrid > library between VFS and Compress. The current compress-2.0 branch - which is something that I haven't fully giv

Re: [compress] High Level API for Archives

2018-04-29 Thread Stefan Bodewig
On 2018-04-26, Oliver Heger wrote: > Recently I had a closer look at streaming libraries like Akka Streams. > So I had the idea to model the problem in a similar way: > An archive or deflate operation could be modeled by a flow from a source > via some filtering or modifying stages to a sink. The

Re: [compress] High Level API for Archives

2018-04-29 Thread Stefan Bodewig
Hi all I've introduced a whole lot of infrastructure code with https://github.com/apache/commons-compress/commit/f62c523154dfedcf49a87a865db545bb8c55e795 but the interface now looks nicer to me, in particual see try (Sink sink = FileToArchiveSink.forFile(args[1], new File(args[2]))) {

Re: [compress] High Level API for Archives

2018-04-29 Thread Matt Sicker
On 29 April 2018 at 06:24, Stefan Bodewig wrote: > The current compress-2.0 branch - which is something that I haven't fully > given up on but is dormant right now - at least uses the file views for > permissions and stuff. > Neat! I've experimented a bit locally in the past to see how big an ef

Re: [compress] High Level API for Archives

2018-04-29 Thread Matt Sicker
On 26 April 2018 at 14:38, Oliver Heger wrote: > Recently I had a closer look at streaming libraries like Akka Streams. > So I had the idea to model the problem in a similar way: > I've used Akka Streams a bit in the past, and while it's pretty awesome, I feel as though taking this approach woul

Re: [compress] High Level API for Archives

2018-04-29 Thread Oliver Heger
Am 29.04.2018 um 19:08 schrieb Stefan Bodewig: > Hi all > > I've introduced a whole lot of infrastructure code with > > https://github.com/apache/commons-compress/commit/f62c523154dfedcf49a87a865db545bb8c55e795 > > but the interface now looks nicer to me, in particual see > > try (Sin

Re: [compress] High Level API for Archives

2018-04-29 Thread Oliver Heger
Hi Matt, Am 29.04.2018 um 20:30 schrieb Matt Sicker: > On 26 April 2018 at 14:38, Oliver Heger > wrote: > >> Recently I had a closer look at streaming libraries like Akka Streams. >> So I had the idea to model the problem in a similar way: >> > > I've used Akka Streams a bit in the past, and wh

Re: [compress] High Level API for Archives

2018-04-29 Thread Stefan Bodewig
On 2018-04-29, Stefan Bodewig wrote: > If this is something that looks acceptable I'll add expansion and remove > the other two classes. Just went ahead and added expansion as well, which doesn't mean it has to stay. Stefan - T