buildbot success in ASF Buildbot on openoffice-linux64-rat

2016-01-21 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-rat 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-rat/builds/198

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux32-nightly

2016-01-21 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux32-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux32-nightly/builds/154

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm2_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-fbsd-nightly

2016-01-21 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-fbsd-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/201

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: The Nightly scheduler named 'openoffice-fbsd-nightly' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-rat-aoo410

2016-01-21 Thread buildbot
The Buildbot has detected a passing build on builder 
openoffice-linux64-rat-aoo410 while building ASF Buildbot. Full details are 
available at:
http://ci.apache.org/builders/openoffice-linux64-rat-aoo410/builds/194

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat-aoo410' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-linux32-nightly

2016-01-21 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux32-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux32-nightly/builds/155

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm2_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on aoo-win7

2016-01-21 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-win7/builds/149

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-nightly' triggered this 
build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed svn info build.pl --all

Sincerely,
 -The Buildbot





svn commit: r1726068 - /openoffice/trunk/main/extensions/source/mozbootstrap/MNSProfileDiscover.cxx

2016-01-21 Thread damjan
Author: damjan
Date: Thu Jan 21 19:03:22 2016
New Revision: 1726068

URL: http://svn.apache.org/viewvc?rev=1726068=rev
Log:
#i125431# "The Password is incorrect. The file cannot be opened."

Fix handling of the "isRelative" option in Mozilla's profiles.ini files.

Patch by: Arrigo Marchiori 
Review by: me


Modified:
openoffice/trunk/main/extensions/source/mozbootstrap/MNSProfileDiscover.cxx

Modified: 
openoffice/trunk/main/extensions/source/mozbootstrap/MNSProfileDiscover.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/extensions/source/mozbootstrap/MNSProfileDiscover.cxx?rev=1726068=1726067=1726068=diff
==
--- openoffice/trunk/main/extensions/source/mozbootstrap/MNSProfileDiscover.cxx 
(original)
+++ openoffice/trunk/main/extensions/source/mozbootstrap/MNSProfileDiscover.cxx 
Thu Jan 21 19:03:22 2016
@@ -123,9 +123,14 @@ namespace connectivity
 {
 isRelative = sIsRelative.toInt32();
 }
+if (isRelative)
+{
+// Make it absolute
+profilePath = regDir + profilePath;
+}
 
 ProfileStruct*  profileItem = new 
ProfileStruct(product,profileName,
-regDir + profilePath);
+profilePath);
 m_Product.mProfileList[profileName] = profileItem;
 
 sal_Int32 isDefault = 0;