buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-11-03 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/119

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-linux64-nightly

2015-11-03 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/130

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

Buildslave for this Build: tethys_ubuntu

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

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1712367 - in /openoffice/trunk: main/sc/source/core/data/table6.cxx test/testgui/data/bvt/searchFormulasValues.ods test/testgui/source/bvt/gui/BasicFunctionTest.java test/testgui/source/t

2015-11-03 Thread damjan
Author: damjan
Date: Tue Nov  3 18:44:21 2015
New Revision: 1712367

URL: http://svn.apache.org/viewvc?rev=1712367=rev
Log:
#i60307# search for strings in date formats fails.
When "Search in" is set to "Values", search the formatted values
instead of just the raw input. This fixes a 9 year old
bug that's been duplicated at least 6 times, and matches what Excel
does. Tests show even "Replace" works, and works well: if
"October" is replaced by "November", it converts the original
month from 10 to 11; it only converts the cell type to text if the
resulting text is no longer a valid date. Also added BVT tests
for the expected behaviour.


Added:
openoffice/trunk/test/testgui/data/bvt/searchFormulasValues.ods   (with 
props)
Modified:
openoffice/trunk/main/sc/source/core/data/table6.cxx
openoffice/trunk/test/testgui/source/bvt/gui/BasicFunctionTest.java
openoffice/trunk/test/testgui/source/testlib/gui/UIMap.java

Modified: openoffice/trunk/main/sc/source/core/data/table6.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/core/data/table6.cxx?rev=1712367=1712366=1712367=diff
==
--- openoffice/trunk/main/sc/source/core/data/table6.cxx (original)
+++ openoffice/trunk/main/sc/source/core/data/table6.cxx Tue Nov  3 18:44:21 
2015
@@ -91,7 +91,7 @@ sal_Bool ScTable::SearchCell(const SvxSe
bMultiLine = lcl_GetTextWithBreaks(
*(const ScEditCell*)pCell, 
pDocument, aString );
else
-   aCol[nCol].GetInputString( nRow, 
aString );
+   aCol[nCol].GetString( nRow, aString );
break;
case SVX_SEARCHIN_NOTE:
{

Added: openoffice/trunk/test/testgui/data/bvt/searchFormulasValues.ods
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/data/bvt/searchFormulasValues.ods?rev=1712367=auto
==
Binary file - no diff available.

Propchange: openoffice/trunk/test/testgui/data/bvt/searchFormulasValues.ods
--
svn:mime-type = application/vnd.oasis.opendocument.spreadsheet

Modified: openoffice/trunk/test/testgui/source/bvt/gui/BasicFunctionTest.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/bvt/gui/BasicFunctionTest.java?rev=1712367=1712366=1712367=diff
==
--- openoffice/trunk/test/testgui/source/bvt/gui/BasicFunctionTest.java 
(original)
+++ openoffice/trunk/test/testgui/source/bvt/gui/BasicFunctionTest.java Tue Nov 
 3 18:44:21 2015
@@ -327,6 +327,36 @@ public class BasicFunctionTest {
copyAll());
discard();
}
+   
+   @Test
+   public void testFindFormulasAndValues() {
+   open(prepareData("bvt/searchFormulasValues.ods"));
+   calc.waitForExistence(10, 2);
+   
+   // Searching for 2003 by formula finds A2
+   SCTool.selectRange("A1");
+   app.dispatch(".uno:SearchDialog");
+findDlgFor.setText("2003");
+findDlgMore.click();
+findDlgCalcSearchIn.select("Formulas");
+findDlgFind.click();
+sleep(1);
+   assertEquals("wrong cell found for formulas search", "A2", 
scInputBarPosition.getText());
+   findDlg.close();
+   
+   // Searching for October by value finds A2
+   SCTool.selectRange("A1");
+   app.dispatch(".uno:SearchDialog");
+   findDlgFor.setText("October");
+   findDlgMore.click();
+   findDlgCalcSearchIn.select("Values");
+   findDlgFind.click();
+   sleep(1);
+   assertEquals("wrong cell found for values search", "A2", 
scInputBarPosition.getText());
+   findDlg.close();
+   
+   discard();
+   }
 
@Test
public void testFillInSpreadsheet() {

Modified: openoffice/trunk/test/testgui/source/testlib/gui/UIMap.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/testlib/gui/UIMap.java?rev=1712367=1712366=1712367=diff
==
--- openoffice/trunk/test/testgui/source/testlib/gui/UIMap.java (original)
+++ openoffice/trunk/test/testgui/source/testlib/gui/UIMap.java Tue Nov  3 
18:44:21 2015
@@ -181,6 +181,7 @@ public class UIMap {
public static final VclButton findDlgMatchCase = 
button("svx:CheckBox:RID_SVXDLG_SEARCH:CB_MATCH_CASE");
public static final VclButton findDlgWholeWord = 
button("svx:CheckBox:RID_SVXDLG_SEARCH:CB_WHOLE_WORDS");
public static final VclButton 

svn commit: r1712377 - /openoffice/trunk/main/basic/source/runtime/iosys.cxx

2015-11-03 Thread damjan
Author: damjan
Date: Tue Nov  3 19:09:04 2015
New Revision: 1712377

URL: http://svn.apache.org/viewvc?rev=1712377=rev
Log:
#i61277# Basic open file with random access erases all data.
StarBasic tries to emulate truncation of files opened for writing
by deleting them before opening them (if they exist). However there
are exclusion to the truncation behaviour when the file is opened
in append mode or is a binary file. Another exclusion - that was
missing with disasterous consequences - is that the file should
not be truncated when opened in random access mode.


Modified:
openoffice/trunk/main/basic/source/runtime/iosys.cxx

Modified: openoffice/trunk/main/basic/source/runtime/iosys.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/basic/source/runtime/iosys.cxx?rev=1712377=1712376=1712377=diff
==
--- openoffice/trunk/main/basic/source/runtime/iosys.cxx (original)
+++ openoffice/trunk/main/basic/source/runtime/iosys.cxx Tue Nov  3 19:09:04 
2015
@@ -665,7 +665,7 @@ SbError SbiStream::Open
{
 
// #??? For write access delete file if it 
already exists (not for appending)
-   if( (nStrmMode & STREAM_WRITE) != 0 && 
!IsAppend() && !IsBinary() &&
+   if( (nStrmMode & STREAM_WRITE) != 0 && 
!IsAppend() && !IsBinary() && !IsRandom() &&
 xSFI->exists( aNameStr ) && !xSFI->isFolder( aNameStr ) )
{
xSFI->kill( aNameStr );




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

2015-11-03 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/115

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-linux64-nightly

2015-11-03 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/131

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

Buildslave for this Build: tethys_ubuntu

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

BUILD FAILED: failed

Sincerely,
 -The Buildbot





svn commit: r1712473 - in /openoffice/trunk/main: offapi/com/sun/star/drawing/ offapi/com/sun/star/geometry/ offapi/com/sun/star/report/ offapi/com/sun/star/sdb/ offapi/com/sun/star/sdbc/ offapi/com/s

2015-11-03 Thread hanya
Author: hanya
Date: Wed Nov  4 05:49:19 2015
New Revision: 1712473

URL: http://svn.apache.org/viewvc?rev=1712473=rev
Log:
#i126627# wrong type description in @see tag

Modified:
openoffice/trunk/main/offapi/com/sun/star/drawing/DrawPage.idl

openoffice/trunk/main/offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl
openoffice/trunk/main/offapi/com/sun/star/geometry/RealBezierSegment2D.idl
openoffice/trunk/main/offapi/com/sun/star/report/XReportControlFormat.idl
openoffice/trunk/main/offapi/com/sun/star/report/XReportDefinition.idl
openoffice/trunk/main/offapi/com/sun/star/report/XReportEngine.idl
openoffice/trunk/main/offapi/com/sun/star/sdb/ErrorMessageDialog.idl
openoffice/trunk/main/offapi/com/sun/star/sdbc/XRowSetListener.idl
openoffice/trunk/main/offapi/com/sun/star/style/ParagraphProperties.idl
openoffice/trunk/main/offapi/com/sun/star/style/ParagraphStyle.idl
openoffice/trunk/main/offapi/com/sun/star/text/DocumentIndexFormat.idl
openoffice/trunk/main/offapi/com/sun/star/text/Footnote.idl
openoffice/trunk/main/offapi/com/sun/star/text/TextPortion.idl
openoffice/trunk/main/offapi/com/sun/star/text/TextTable.idl
openoffice/trunk/main/offapi/com/sun/star/text/XNumberingRulesSupplier.idl
openoffice/trunk/main/offapi/com/sun/star/text/XTextTableCursor.idl
openoffice/trunk/main/udkapi/com/sun/star/bridge/IiopBridge.idl
openoffice/trunk/main/udkapi/com/sun/star/bridge/UrpBridge.idl
openoffice/trunk/main/udkapi/com/sun/star/bridge/XBridge.idl

Modified: openoffice/trunk/main/offapi/com/sun/star/drawing/DrawPage.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/drawing/DrawPage.idl?rev=1712473=1712472=1712473=diff
==
--- openoffice/trunk/main/offapi/com/sun/star/drawing/DrawPage.idl (original)
+++ openoffice/trunk/main/offapi/com/sun/star/drawing/DrawPage.idl Wed Nov  4 
05:49:19 2015
@@ -69,9 +69,9 @@ published service DrawPage
Every draw page may contain a form layer - that is, a 
hierarchy of form elements. The layer can be
accessed using this interface.
 
-   @see com.sun.star.form.FormComponent
-   @see com.sun.star.form.FormComponents
-   @see com.sun.star.form.Forms
+   @see com::sun::star::form::FormComponent
+   @see com::sun::star::form::FormComponents
+   @see com::sun::star::form::Forms
*/
[optional] interface com::sun::star::form::XFormsSupplier; 
 }; 

Modified: 
openoffice/trunk/main/offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl?rev=1712473=1712472=1712473=diff
==
--- 
openoffice/trunk/main/offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl 
(original)
+++ 
openoffice/trunk/main/offapi/com/sun/star/geometry/IntegerBezierSegment2D.idl 
Wed Nov  4 05:49:19 2015
@@ -36,7 +36,7 @@ module com {  module sun {  module star
 the end point of the last curve, and the remaining members
 ignored.
 
-@see com.sun.star.rendering.XBezierPolyPolygon2D
+@see com::sun::star::rendering::XBezierPolyPolygon2D
 @since OpenOffice 2.0
  */
 struct IntegerBezierSegment2D

Modified: 
openoffice/trunk/main/offapi/com/sun/star/geometry/RealBezierSegment2D.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/geometry/RealBezierSegment2D.idl?rev=1712473=1712472=1712473=diff
==
--- openoffice/trunk/main/offapi/com/sun/star/geometry/RealBezierSegment2D.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/geometry/RealBezierSegment2D.idl 
Wed Nov  4 05:49:19 2015
@@ -36,7 +36,7 @@ module com {  module sun {  module star
 the end point of the last curve, and the remaining members
 ignored.
 
-@see com.sun.star.rendering.XBezierPolyPolygon2D
+@see com::sun::star::rendering::XBezierPolyPolygon2D
 @since OpenOffice 2.0
  */
 published struct RealBezierSegment2D

Modified: 
openoffice/trunk/main/offapi/com/sun/star/report/XReportControlFormat.idl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/offapi/com/sun/star/report/XReportControlFormat.idl?rev=1712473=1712472=1712473=diff
==
--- openoffice/trunk/main/offapi/com/sun/star/report/XReportControlFormat.idl 
(original)
+++ openoffice/trunk/main/offapi/com/sun/star/report/XReportControlFormat.idl 
Wed Nov  4 05:49:19 2015
@@ -352,7 +352,7 @@ published interface XReportControlFormat
 
 //-
 /**determins the type of the strike out of the character.
-@see 

buildbot success in ASF Buildbot on openoffice-fbsd-nightly

2015-11-03 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/121

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