Re: [ALL] DOAP file placement - move out of trunk?

2013-03-11 Thread Stefan Bodewig
On 2013-03-12, sebb wrote: > The DOAP files are currently held under > /commons/proper//trunk/doap_.rdf > This is sort of convenient for editting, but means the doap file gets > included in tags and branches and may get included in source. > If included in source, the release date may be missing

Re: svn commit: r1455005 - in /commons/proper/compress/tags/COMPRESS-1.5_RC1: ./ pom.xml

2013-03-11 Thread Stefan Bodewig
On 2013-03-11, sebb wrote: > On 11 March 2013 06:10, wrote: >> Author: bodewig >> Date: Mon Mar 11 06:10:51 2013 >> New Revision: 1455005 >> URL: http://svn.apache.org/r1455005 >> Log: >> Tagging first RC for Compress 1.5 > Please don't recreate a tag with the same name. > If you need to re-r

[compress] Missing Files in Source Distribution (was Re: [VOTE] Release Compress 1.5 based on RC1)

2013-03-11 Thread Stefan Bodewig
On 2013-03-11, Benedikt Ritter wrote: > I've noticed, that the src archives differ from the RC tag. The following > files are missing: > .gitattributes > .gitignore > doap_compress.rdf > PROPOSAL.txt > Is this intended? In a way, yes. They are not listed inside the assembly descriptor. The .gi

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread Stefan Bodewig
On 2013-03-11, Gary Gregory wrote: > - Some (maybe not all) of the PMD/CPD issues seems easy to fix At least the CPD one looks easier than it is - it uses a lot of variables that are mutated and used outside of the block. Many of the PMDs have reasons as well like overriding equals when not doin

[compress] Since and Implemented Interfaces (was Re: [VOTE] Release Compress 1.5 based on RC1)

2013-03-11 Thread Stefan Bodewig
On 2013-03-11, sebb wrote: > Minor nit: the addition of "implements Serializable" to ZipLong, > ZipShort and ZipEightBightInteger is not documented in the Javadoc. Is there a formal way to document "implements Foo since 1.5" other than free form text in a class level comment? I'd like to add it

Re: [ALL] DOAP file placement - move out of trunk?

2013-03-11 Thread Gary Gregory
Hi All, My thought would be to leave it where it is. I only want to fiddle with one "place" (a SVN local dir) when working and releasing a project/component. It seems to me that moving it out is asking for it to become out of sync. Gary On Mon, Mar 11, 2013 at 7:30 PM, sebb wrote: > The DOAP

Re: Wrong processing for encoding of Content-disposition 'filename' parameter

2013-03-11 Thread Jaime Hablutzel Egoavil
nothing on this? On Fri, Mar 8, 2013 at 10:38 AM, Jaime Hablutzel Egoavil < hablutz...@gmail.com> wrote: > I'm looking that commons fileupload uses a 'headerEncoding' variable which > Javadoc explanes: > > Specifies the character encoding to be used when reading the headers of >> individual part

Re: [Bag] random pick

2013-03-11 Thread Ted Dunning
Othmen, The common way to contribute code is to file a bug report/enhancement request at the correct commons component: https://issues.apache.org/jira/secure/BrowseProjects.jspa#10260 My guess is that you want collections which is at https://issues.apache.org/jira/browse/COLLECTIONS Then you s

[ALL] DOAP file placement - move out of trunk?

2013-03-11 Thread sebb
The DOAP files are currently held under /commons/proper//trunk/doap_.rdf This is sort of convenient for editting, but means the doap file gets included in tags and branches and may get included in source. If included in source, the release date may be missing or inaccurate. The DOAP files are on

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread sebb
On 11 March 2013 21:18, Benedikt Ritter wrote: > Hello Stefan, > > 2013/3/11 Stefan Bodewig > >> Hi all, >> >> [took me a few days longer since I wanted to incorporate fixes for the >> two issues that popped up last week. So here we go.] >> >> With 30 JIRA issues fixed it is about time to cut a

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread Benedikt Ritter
Hello Stefan, 2013/3/11 Stefan Bodewig > Hi all, > > [took me a few days longer since I wanted to incorporate fixes for the > two issues that popped up last week. So here we go.] > > With 30 JIRA issues fixed it is about time to cut a new release of > Commons Compress. > > Tarballs: > htt

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread sebb
On 11 March 2013 08:57, Stefan Bodewig wrote: > Hi all, > > [took me a few days longer since I wanted to incorporate fixes for the > two issues that popped up last week. So here we go.] > > With 30 JIRA issues fixed it is about time to cut a new release of > Commons Compress. > > Tarballs: >

Re: svn commit: r1455005 - in /commons/proper/compress/tags/COMPRESS-1.5_RC1: ./ pom.xml

2013-03-11 Thread sebb
On 11 March 2013 06:10, wrote: > Author: bodewig > Date: Mon Mar 11 06:10:51 2013 > New Revision: 1455005 > > URL: http://svn.apache.org/r1455005 > Log: > Tagging first RC for Compress 1.5 Please don't recreate a tag with the same name. If you need to re-roll, choose the next RC number, i.e. RC

[Commons Wiki] Update of "CodeStyle" by sebbapache

2013-03-11 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The "CodeStyle" page has been changed by sebbapache: http://wiki.apache.org/commons/CodeStyle?action=diff&rev1=8&rev2=9 Comment: Statements on separate lines ||'''Rules''' ||'''S

RE: [math] Scaling arrays

2013-03-11 Thread Becksfort, Jared
On 3/11/13 8:21 AM, Becksfort, Jared wrote: > Hi Phil, > >> What exactly *is* it and what are the use cases? > Just a method to multiply each element in an array by a number and return > either a copy of the array or do it in place. Maybe there can be one method > for either way: > > public stat

Re: [math] Scaling arrays

2013-03-11 Thread Phil Steitz
On 3/11/13 8:21 AM, Becksfort, Jared wrote: > Hi Phil, > >> What exactly *is* it and what are the use cases? > Just a method to multiply each element in an array by a number and return > either a copy of the array or do it in place. Maybe there can be one method > for either way: > > public stat

RE: [math] Scaling arrays

2013-03-11 Thread Becksfort, Jared
Hi Phil, > What exactly *is* it and what are the use cases? Just a method to multiply each element in an array by a number and return either a copy of the array or do it in place. Maybe there can be one method for either way: public static double[] scale(double val, final double[] arr) {

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread Gary Gregory
+1 but with some non-showstoppers of note: - I see some nice little fixes Sebb's has committed that would make the release nicer. - Some (maybe not all) of the PMD/CPD issues seems easy to fix Tested the SVN tag with: Apache Maven 3.0.5 (r01de14724cdef164cd33c7c8c2fe155faf9602da; 2013-02-19 08:5

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread Stefan Bodewig
>> http://svn.apache.org/viewvc/commons/proper/compress/tags/COMPRESS-1.5_RC1/ On 2013-03-11, Gary Gregory wrote: > The tag is wrong, it is: > http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.5_RC1 Right. I copy-pasted the example vote mail from the compress site and it a

Re: [VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread Gary Gregory
The tag is wrong, it is: http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.5_RC1 Gary On Mon, Mar 11, 2013 at 4:57 AM, Stefan Bodewig wrote: > Hi all, > > [took me a few days longer since I wanted to incorporate fixes for the > two issues that popped up last week. So her

Re: [math] releasing 3.2?

2013-03-11 Thread sebb
On 11 March 2013 08:33, Luc Maisonobe wrote: > Le 11/03/2013 08:51, Luc Maisonobe a écrit : >> Le 11/03/2013 00:47, sebb a écrit : >>> On 10 March 2013 16:35, Luc Maisonobe wrote: Le 10/03/2013 15:28, Thomas Neidhart a écrit : > On 03/04/2013 01:24 PM, Luc Maisonobe wrote: >> Hi all,

[VOTE] Release Compress 1.5 based on RC1

2013-03-11 Thread Stefan Bodewig
Hi all, [took me a few days longer since I wanted to incorporate fixes for the two issues that popped up last week. So here we go.] With 30 JIRA issues fixed it is about time to cut a new release of Commons Compress. Tarballs: http://people.apache.org/~bodewig/cc-1.5/ Maven artifacts a

Re: [math] releasing 3.2?

2013-03-11 Thread Luc Maisonobe
Le 11/03/2013 08:51, Luc Maisonobe a écrit : > Le 11/03/2013 00:47, sebb a écrit : >> On 10 March 2013 16:35, Luc Maisonobe wrote: >>> Le 10/03/2013 15:28, Thomas Neidhart a écrit : On 03/04/2013 01:24 PM, Luc Maisonobe wrote: > Hi all, > > I would like to release version 3.2 of [

Re: [math] releasing 3.2?

2013-03-11 Thread Luc Maisonobe
Le 11/03/2013 00:47, sebb a écrit : > On 10 March 2013 16:35, Luc Maisonobe wrote: >> Le 10/03/2013 15:28, Thomas Neidhart a écrit : >>> On 03/04/2013 01:24 PM, Luc Maisonobe wrote: Hi all, I would like to release version 3.2 of [math] soon. Any thoughts about it? >>> >>> There