Re: [IMAGING] Github mirror doesn't sync anymore

2015-01-22 Thread Benedikt Ritter
FYI: the issue has been resolved and the mirror is up to date again. 2015-01-05 15:34 GMT+01:00 Benedikt Ritter : > Please vote this issue up, if you like, since it is still pending... > > 2014-12-29 11:39 GMT+01:00 Benedikt Ritter : > >> FYI: I have created INFRS-8949 [1], because the github mir

Re: [parent] Jira report and "improvements" type

2015-01-22 Thread Bernd Eckenfels
Am Fri, 23 Jan 2015 02:45:37 + schrieb sebb : > On 20 January 2015 at 01:44, sebb wrote: > > I get 141 if the Fix Version is limited to 2.1 > > By that I mean an Issue search using the JIRA GUI returns 141 entries. > > Unfortunately still above 100. > > VFS obviously needs to fix fewer bug

Re: [ALL] JIRA permissions for Kristian Rosenvold

2015-01-22 Thread sebb
On 22 January 2015 at 23:55, sebb wrote: > On 20 January 2015 at 16:26, Stefan Bodewig wrote: >> On 2015-01-20, Kristian Rosenvold wrote: >> >>> Btw it still seems like my JIRA karma is a bit weak ? >> >> I'm not sure what you are missing, but I am sure I cannot provide it :-) >> >> JIRA Admins f

Re: [parent] Jira report and "improvements" type

2015-01-22 Thread sebb
On 20 January 2015 at 01:44, sebb wrote: > I get 141 if the Fix Version is limited to 2.1 By that I mean an Issue search using the JIRA GUI returns 141 entries. Unfortunately still above 100. VFS obviously needs to fix fewer bugs between releases! > You can add > > true > > to the VFS pom (I r

Re: svn commit: r1650787 - /commons/proper/validator/trunk/pom.xml

2015-01-22 Thread sebb
On 10 January 2015 at 18:17, wrote: > Author: britter > Date: Sat Jan 10 18:17:54 2015 > New Revision: 1650787 > > URL: http://svn.apache.org/r1650787 > Log: > Add missing build properties (according to release guide) > > Modified: > commons/proper/validator/trunk/pom.xml > > Modified: common

Re: [ALL] JIRA permissions for Kristian Rosenvold

2015-01-22 Thread sebb
On 20 January 2015 at 16:26, Stefan Bodewig wrote: > On 2015-01-20, Kristian Rosenvold wrote: > >> Btw it still seems like my JIRA karma is a bit weak ? > > I'm not sure what you are missing, but I am sure I cannot provide it :-) > > JIRA Admins for Commons are Phil, Luc and Mark Struberg. Has th

[GitHub] commons-lang pull request: LANG-1082: Add ability to disable DiffB...

2015-01-22 Thread j--baker
GitHub user j--baker opened a pull request: https://github.com/apache/commons-lang/pull/44 LANG-1082: Add ability to disable DiffBuilder trivially equal test in constructor. You can merge this pull request into a Git repository by running: $ git pull https://github.com/j--bak

Re: [compress] Preparations for 1.10

2015-01-22 Thread Gary Gregory
Here is an easy one: "Avoid unused imports such as 'java.io.InputStream". Gary On Thu, Jan 22, 2015 at 11:30 AM, Stefan Bodewig wrote: > Hi all > > I've had good experience with creating a site build before cutting a > release candidate, so here we go: > >

[compress] Preparations for 1.10

2015-01-22 Thread Stefan Bodewig
Hi all I've had good experience with creating a site build before cutting a release candidate, so here we go: Please have a look and identify stuff that looks as if I'd have to reroll a new RC should it come to a vote with the current

Re: [DISCUSS][RDF] Separate mailing list for Commons RDF

2015-01-22 Thread Sergio Fernández
On 20/01/15 17:59, Reto Gmür wrote: On Tue, Jan 20, 2015 at 2:58 PM, Torsten Curdt wrote: And what's so bad about the incubator? You could (maybe) later on come to Commons. That's exactly what clerezza did, we incubated 2009 and now propose a generalized version of our RDF API as Apache comm

[Commons Wiki] Update of "ContributorsGroup" by StefanBodewig

2015-01-22 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The "ContributorsGroup" page has been changed by StefanBodewig: https://wiki.apache.org/commons/ContributorsGroup?action=diff&rev1=13&rev2=14 * DennisLundberg * EmmanuelBourg

Re: Creating a Wiki Page

2015-01-22 Thread Stefan Bodewig
On 2015-01-22, Jochen Wiedmann wrote: > Same as user ID: jochen sure? If so, then you should be set up now. Stefan - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.

Re: [math] Add temporary check for rare test failure.

2015-01-22 Thread sebb
On 22 January 2015 at 12:22, Thomas Neidhart wrote: > What about this change: > > if (x < 0.0) { > if (x < -746d) { > if (hiPrec != null) { > hiPrec[0] = 0.0; > hiPrec[1] = 0.0; > } > return

Re: [math] Add temporary check for rare test failure.

2015-01-22 Thread sebb
On 22 January 2015 at 11:44, sebb wrote: > On 22 January 2015 at 01:59, Phil Steitz wrote: >> On 1/21/15 4:56 PM, sebb wrote: >>> On 21 January 2015 at 20:39, Thomas Neidhart >>> wrote: On 01/21/2015 05:32 PM, Phil Steitz wrote: > On 1/21/15 3:43 AM, Thomas Neidhart wrote: >> Hi, >

Re: [math] Add temporary check for rare test failure.

2015-01-22 Thread Thomas Neidhart
What about this change: if (x < 0.0) { if (x < -746d) { if (hiPrec != null) { hiPrec[0] = 0.0; hiPrec[1] = 0.0; } return 0.0; } intVal = (int) -x; if (in

Re: Publishing a Sandbox Site

2015-01-22 Thread Jochen Wiedmann
On Thu, Jan 22, 2015 at 12:44 PM, Benedikt Ritter wrote: > You can find the instructions here [1]. Basically you'll need to inherit > from our parent pom. For sandbox components there is a special sandbox pom. > Further more some properties need to be set up. Probably it's best to have > a look a

Re: [math] Add temporary check for rare test failure.

2015-01-22 Thread sebb
On 22 January 2015 at 01:59, Phil Steitz wrote: > On 1/21/15 4:56 PM, sebb wrote: >> On 21 January 2015 at 20:39, Thomas Neidhart >> wrote: >>> On 01/21/2015 05:32 PM, Phil Steitz wrote: On 1/21/15 3:43 AM, Thomas Neidhart wrote: > Hi, > > I have re-run the jenkins build for com

Re: Publishing a Sandbox Site

2015-01-22 Thread Benedikt Ritter
Hi Jochen, 2015-01-22 7:53 GMT+01:00 Jochen Wiedmann : > On Wed, Jan 21, 2015 at 6:13 PM, Gary Gregory > wrote: > > Is it different than publishing any other site? I would hope the > > instructions on how to use our CMS apply here too. > > No idea. Bu anyways: What are those instructions? > You

Re: Creating a Wiki Page

2015-01-22 Thread Jochen Wiedmann
Same as user ID: jochen On Thu, Jan 22, 2015 at 11:23 AM, Stefan Bodewig wrote: > On 2015-01-22, Jochen Wiedmann wrote: > >> are there any special privileges, one needs to create a new page on >> wiki.apache.org/commons? > > Yes, you need to be added to the contributors group - unfortunately we

Re: Creating a Wiki Page

2015-01-22 Thread Stefan Bodewig
On 2015-01-22, Jochen Wiedmann wrote: > are there any special privileges, one needs to create a new page on > wiki.apache.org/commons? Yes, you need to be added to the contributors group - unfortunately we had to add this as an ant-spam measure. > If so, could I have those privileges? Sure, wha