Re: [VOTE] Promote [weaver] component out of sandbox

2013-09-20 Thread Romain Manni-Bucau
+1 (non binding) Le 20 sept. 2013 23:06, "Mark Struberg" a écrit : > +1 > > LieGrue, > strub > > > > > - Original Message - > > From: Matt Benson > > To: dev@commons.apache.org > > Cc: > > Sent: Friday, 20 September 2013, 19:49 > > Subject: [VOTE] Promote [weaver] component out of sandbo

Re: [VOTE] Promote [weaver] component out of sandbox

2013-09-20 Thread Mark Struberg
+1 LieGrue, strub - Original Message - > From: Matt Benson > To: dev@commons.apache.org > Cc: > Sent: Friday, 20 September 2013, 19:49 > Subject: [VOTE] Promote [weaver] component out of sandbox > > Hi Commons developers, >   I hereby propose a vote to promote the [weaver] sandbox c

Re: [VOTE] Promote [weaver] component out of sandbox

2013-09-20 Thread James Carman
+1 (binding) On Fri, Sep 20, 2013 at 1:49 PM, Matt Benson wrote: > Hi Commons developers, > I hereby propose a vote to promote the [weaver] sandbox component to > Commons proper. My intent is that the promotion would be followed by a > release of Apache Commons Weaver v1.0. > > This vote will

Re: [VOTE] Promote [weaver] component out of sandbox

2013-09-20 Thread Matt Benson
On Fri, Sep 20, 2013 at 12:49 PM, Matt Benson wrote: > Hi Commons developers, > I hereby propose a vote to promote the [weaver] sandbox component to > Commons proper. My intent is that the promotion would be followed by a > release of Apache Commons Weaver v1.0. > > This vote will be open for

[VOTE] Promote [weaver] component out of sandbox

2013-09-20 Thread Matt Benson
Hi Commons developers, I hereby propose a vote to promote the [weaver] sandbox component to Commons proper. My intent is that the promotion would be followed by a release of Apache Commons Weaver v1.0. This vote will be open for at least 72 hours. [ ] +1, Promote it! [ ] +0, Whatever [ ] -0, M

[email] Problem reading filename from inline email

2013-09-20 Thread Olaf Kaus
Hi, how can I extract the filename from an included email. If I use mimeMessageParser.getAttachmentList() and then dataSource.getName() but I received null for attched emails. The incoming email was created with outlook (html-email) and via drag-n-drop I include an other email as an attachment. T

Re: [LANG] isAnyBlank, isNoneBlank, isAnyEmpty, isNoneEmpty

2013-09-20 Thread Benedikt Ritter
Not sure if you're being sarcastic, but yes that would probably make sense. 2013/9/20 James Carman > If we're going to support varargs, we should also support collections. > > On Fri, Sep 20, 2013 at 10:11 AM, Benedikt Ritter > wrote: > > I guess it's just convenience... > > > > if( StringUtil

Re: [LANG] isAnyBlank, isNoneBlank, isAnyEmpty, isNoneEmpty

2013-09-20 Thread Matt Benson
Not that I'm saying we *should* do either of these things but let's remember that most places where one formerly would have said "support collections" should now be substituted "support iterables". Matt On Fri, Sep 20, 2013 at 9:25 AM, Benedikt Ritter wrote: > Not sure if you're being sarcastic

Re: [LANG] isAnyBlank, isNoneBlank, isAnyEmpty, isNoneEmpty

2013-09-20 Thread James Carman
If we're going to support varargs, we should also support collections. On Fri, Sep 20, 2013 at 10:11 AM, Benedikt Ritter wrote: > I guess it's just convenience... > > if( StringUtils.isAnyBlank(str1, str2, str3)) > > is shorter than > > if( StringUtils.isBlank(str1) && StringUtils.isBlank(str2) &

Re: [LANG] isAnyBlank, isNoneBlank, isAnyEmpty, isNoneEmpty

2013-09-20 Thread Benedikt Ritter
I guess it's just convenience... if( StringUtils.isAnyBlank(str1, str2, str3)) is shorter than if( StringUtils.isBlank(str1) && StringUtils.isBlank(str2) && StringUtils.isBlank(str3) ) Benedikt 2013/9/20 James Carman > What is the usecase for something like this? Are we more likely to > ha

Re: [LANG] isAnyBlank, isNoneBlank, isAnyEmpty, isNoneEmpty

2013-09-20 Thread James Carman
What is the usecase for something like this? Are we more likely to have varargs params or a collection? Varargs *can* happen, but what is the more likely case? On Fri, Sep 20, 2013 at 9:30 AM, Benedikt Ritter wrote: > Hi, > > we have this pull request on github [1] with an accompanying jira iss

[LANG] isAnyBlank, isNoneBlank, isAnyEmpty, isNoneEmpty

2013-09-20 Thread Benedikt Ritter
Hi, we have this pull request on github [1] with an accompanying jira issue [2]. I'd say it is a useful addition but I think I remember a contribution of noneIsNull(Object... args) for Validate, that we rejected. So I wanted to be sure about our policy here: Do we want to add corresponding var ar

Re: [CSV] Prohibit creation of more than one iterator over a CSVParser?

2013-09-20 Thread Benedikt Ritter
Hi, sorry for the late reply. This is still an unresolved issue. What do we want to do about it? I like Emmanuels idea of having only one entry point into the API. Exposing a parser that uses formats to parse and at the same time having a format that can create parsers to parse input may be confu

Re: [SITE] Updating to fluido

2013-09-20 Thread Benedikt Ritter
Hi Matt, thanks for the hint. I've already been looking into commons-parent, commons-skin and commons-build-plugin (not sure if it is also involved). It looks like commons-skin does the trick of replacing the dummy URL to the commons logo on component sites. This means we can not use fluido as a s

Re: [SITE] Updating to fluido

2013-09-20 Thread Matt Benson
You probably want to check both commons-parent and commons-skin. HTH, Matt On Sep 20, 2013 3:08 AM, "Benedikt Ritter" wrote: > I've fixed the footer on the main site (see [1]). > > I'm still working on the component web sites... ATM I don't understand > where the footer and the commons logo are

Re: [graph] is now ****** up :(

2013-09-20 Thread Simone Tripodi
Are you sure?!? [1] [1] http://svn.apache.org/repos/asf/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledVertex.java http://people.apache.org/~simonetripodi/ http://twitter.com/simonetripodi On Fri, Sep 20, 2013 at 1:30 PM, Rodion Efremov wrote: > Hello, y'al

Re: [graph] Breadth-Fist Search library to commons graph?

2013-09-20 Thread Simone Tripodi
Hi Rodion, BFS is already implemented in commons-graph[1] you can provide a GraphVisitHandler[2] implementation to handle the case when you have found the target node, so the search is now complete. HTH, -Best [1] http://svn.apache.org/repos/asf/commons/sandbox/graph/trunk/src/test/java/org/apac

Re: [OT] Anyone going to JavaOne?

2013-09-20 Thread James Carman
Stephen, looks like some good stuff. If I can make the 1pm on Wednesday, I will. On Fri, Sep 20, 2013 at 6:19 AM, Stephen Colebourne wrote: > I'll be there talking three times. Usually best to find me after one > of the talks... > http://blog.joda.org/2013/09/speaking-at-javaone2013.html > Steph

Re: [OT] Anyone going to JavaOne?

2013-09-20 Thread James Carman
I might try to come heckle you, Mark. ;) Sounds like an interesting presentation. Hopefully I'll see you there. On Thu, Sep 19, 2013 at 4:38 PM, Mark Thomas wrote: > On 19/09/2013 20:50, James Carman wrote: >> Is anyone planning on going? It would be great to meet some of you >> guys face-to-f

[graph] is now ****** up :(

2013-09-20 Thread Rodion Efremov
Hello, y'all! I did a checkout of commons graph, and guess what? There is no crucial BaseLabeledVertex.java in the entire repo. Did anyone of you tampered with the [graph] recently, because i would be infinitely happy, if some of you committers would fix the issue. I want to contribute more to

[graph] Breadth-Fist Search library to commons graph?

2013-09-20 Thread Rodion Efremov
Hello, might it be funky to have a few esoteric BFS-algorithms from [1]? :^) -- TIA, Rodion [1] https://github.com/coderodde/bfsbuddy - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail

Re: [OT] Anyone going to JavaOne?

2013-09-20 Thread Stephen Colebourne
I'll be there talking three times. Usually best to find me after one of the talks... http://blog.joda.org/2013/09/speaking-at-javaone2013.html Stephen On 19 September 2013 20:50, James Carman wrote: > Is anyone planning on going? It would be great to meet some of you > guys face-to-face for once

Re: [SITE] Updating to fluido

2013-09-20 Thread Benedikt Ritter
I've fixed the footer on the main site (see [1]). I'm still working on the component web sites... ATM I don't understand where the footer and the commons logo are added to the component sites. There is nothing in lang's site.xml. Can someone enlighten me? :) Benedikt [1] http://people.apache.org