buildbot failure in on openoffice-win7

2021-05-17 Thread buildbot
The Buildbot has detected a new failure on builder openoffice-win7 while 
building . Full details are available at:
https://ci.apache.org/builders/openoffice-win7/builds/624

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

Buildslave for this Build: bb-win10

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

BUILD FAILED: failed build.pl --all

Sincerely,
 -The Buildbot





[openoffice] branch trunk updated: Fixed typos, removed whitespace

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
 new d016691  Fixed typos, removed whitespace
d016691 is described below

commit d016691d2e0980460f9df67cb8684185c68c2703
Author: mseidel 
AuthorDate: Mon May 17 14:13:44 2021 +0200

Fixed typos, removed whitespace
---
 main/desktop/source/deployment/misc/dp_misc.cxx|  60 
 main/framework/source/inc/loadenv/loadenv.hxx  |  49 +++---
 main/offapi/com/sun/star/awt/AccessibleButton.idl  |  30 ++--
 .../offapi/com/sun/star/awt/AccessibleCheckBox.idl |  32 ++--
 main/offapi/com/sun/star/awt/Command.idl   | 100 ++--
 main/offapi/com/sun/star/awt/WindowAttribute.idl   | 167 +++--
 main/offapi/com/sun/star/awt/WindowEvent.idl   | 134 -
 .../sun/star/awt/grid/DefaultGridColumnModel.idl   |  41 ++---
 .../com/sun/star/awt/tree/XTreeEditListener.idl|  13 +-
 .../ui/Accessibility/AccessibleFilterMenu.cxx  |  44 +++---
 .../ui/slidesorter/inc/cache/SlsPageCache.hxx  |  36 ++---
 main/slideshow/source/engine/slide/slideimpl.cxx   | 144 +-
 12 files changed, 427 insertions(+), 423 deletions(-)

diff --git a/main/desktop/source/deployment/misc/dp_misc.cxx 
b/main/desktop/source/deployment/misc/dp_misc.cxx
index 53f9020..a03c692 100644
--- a/main/desktop/source/deployment/misc/dp_misc.cxx
+++ b/main/desktop/source/deployment/misc/dp_misc.cxx
@@ -1,5 +1,5 @@
 /**
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  */
 
 
@@ -47,7 +47,7 @@
 #include "boost/scoped_array.hpp"
 #include "boost/shared_ptr.hpp"
 #include 
- 
+
 #ifdef WNT
 //#include "tools/prewin.h"
 #define UNICODE
@@ -96,29 +96,29 @@ const OUString OfficePipeId::operator () ()
 OUString userPath;
::utl::Bootstrap::PathStatus aLocateResult =
::utl::Bootstrap::locateUserInstallation( userPath );
-   if (!(aLocateResult == ::utl::Bootstrap::PATH_EXISTS || 
+   if (!(aLocateResult == ::utl::Bootstrap::PATH_EXISTS ||
aLocateResult == ::utl::Bootstrap::PATH_VALID))
{
throw Exception(OUSTR("Extension Manager: Could not obtain path 
for UserInstallation."), 0);
}
-
+
 rtlDigest digest = rtl_digest_create( rtl_Digest_AlgorithmMD5 );
 if (digest == NULL) {
 throw RuntimeException(
 OUSTR("cannot get digest rtl_Digest_AlgorithmMD5!"), 0 );
 }
-
+
 sal_uInt8 const * data =
 reinterpret_cast(userPath.getStr());
 sal_Size size = (userPath.getLength() * sizeof (sal_Unicode));
 sal_uInt32 md5_key_len = rtl_digest_queryLength( digest );
 ::boost::scoped_array md5_buf( new sal_uInt8 [ md5_key_len ] );
-
+
 rtl_digest_init( digest, data, static_cast(size) );
 rtl_digest_update( digest, data, static_cast(size) );
 rtl_digest_get( digest, md5_buf.get(), md5_key_len );
 rtl_digest_destroy( digest );
-
+
 // create hex-value string from the MD5 value to keep
 // the string size minimal
 ::rtl::OUStringBuffer buf;
@@ -161,20 +161,20 @@ bool compareExtensionFolderWithLastSynchronizedFile(
 return true; //sync just in case
 }
 
-//If last synchronized does not exist, then OOo is started for the first 
time
+//If last synchronized does not exist, then AOO is started for the first 
time
 ::osl::DirectoryItem itemFile;
 ::osl::File::RC err2 = ::osl::DirectoryItem::get(fileURL, itemFile);
 if (err2 == ::osl::File::E_NOENT)
 {
 return true;
-
+
 }
 else if (err2 != ::osl::File::E_None)
 {
 OSL_ENSURE(0, "Cannot access file lastsynchronized");
 return true; //sync just in case
 }
-
+
 //compare the modification time of the extension folder and the last
 //modified file
 ::osl::FileStatus statFolder(FileStatusMask_ModifyTime);
@@ -192,7 +192,7 @@ bool compareExtensionFolderWithLastSynchronizedFile(
 else
 {
   

[openoffice] branch AOO42X updated: Fixed typos, removed whitespace

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
 new 982d8cc  Fixed typos, removed whitespace
982d8cc is described below

commit 982d8ccde5b2426401fed8bd586ad3e0ac1ddc20
Author: mseidel 
AuthorDate: Mon May 17 14:13:44 2021 +0200

Fixed typos, removed whitespace

(cherry picked from commit d016691d2e0980460f9df67cb8684185c68c2703)
---
 main/desktop/source/deployment/misc/dp_misc.cxx|  60 
 main/framework/source/inc/loadenv/loadenv.hxx  |  49 +++---
 main/offapi/com/sun/star/awt/AccessibleButton.idl  |  30 ++--
 .../offapi/com/sun/star/awt/AccessibleCheckBox.idl |  32 ++--
 main/offapi/com/sun/star/awt/Command.idl   | 100 ++--
 main/offapi/com/sun/star/awt/WindowAttribute.idl   | 167 +++--
 main/offapi/com/sun/star/awt/WindowEvent.idl   | 134 -
 .../sun/star/awt/grid/DefaultGridColumnModel.idl   |  41 ++---
 .../com/sun/star/awt/tree/XTreeEditListener.idl|  13 +-
 .../ui/Accessibility/AccessibleFilterMenu.cxx  |  44 +++---
 .../ui/slidesorter/inc/cache/SlsPageCache.hxx  |  36 ++---
 main/slideshow/source/engine/slide/slideimpl.cxx   | 144 +-
 12 files changed, 427 insertions(+), 423 deletions(-)

diff --git a/main/desktop/source/deployment/misc/dp_misc.cxx 
b/main/desktop/source/deployment/misc/dp_misc.cxx
index 53f9020..a03c692 100644
--- a/main/desktop/source/deployment/misc/dp_misc.cxx
+++ b/main/desktop/source/deployment/misc/dp_misc.cxx
@@ -1,5 +1,5 @@
 /**
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  */
 
 
@@ -47,7 +47,7 @@
 #include "boost/scoped_array.hpp"
 #include "boost/shared_ptr.hpp"
 #include 
- 
+
 #ifdef WNT
 //#include "tools/prewin.h"
 #define UNICODE
@@ -96,29 +96,29 @@ const OUString OfficePipeId::operator () ()
 OUString userPath;
::utl::Bootstrap::PathStatus aLocateResult =
::utl::Bootstrap::locateUserInstallation( userPath );
-   if (!(aLocateResult == ::utl::Bootstrap::PATH_EXISTS || 
+   if (!(aLocateResult == ::utl::Bootstrap::PATH_EXISTS ||
aLocateResult == ::utl::Bootstrap::PATH_VALID))
{
throw Exception(OUSTR("Extension Manager: Could not obtain path 
for UserInstallation."), 0);
}
-
+
 rtlDigest digest = rtl_digest_create( rtl_Digest_AlgorithmMD5 );
 if (digest == NULL) {
 throw RuntimeException(
 OUSTR("cannot get digest rtl_Digest_AlgorithmMD5!"), 0 );
 }
-
+
 sal_uInt8 const * data =
 reinterpret_cast(userPath.getStr());
 sal_Size size = (userPath.getLength() * sizeof (sal_Unicode));
 sal_uInt32 md5_key_len = rtl_digest_queryLength( digest );
 ::boost::scoped_array md5_buf( new sal_uInt8 [ md5_key_len ] );
-
+
 rtl_digest_init( digest, data, static_cast(size) );
 rtl_digest_update( digest, data, static_cast(size) );
 rtl_digest_get( digest, md5_buf.get(), md5_key_len );
 rtl_digest_destroy( digest );
-
+
 // create hex-value string from the MD5 value to keep
 // the string size minimal
 ::rtl::OUStringBuffer buf;
@@ -161,20 +161,20 @@ bool compareExtensionFolderWithLastSynchronizedFile(
 return true; //sync just in case
 }
 
-//If last synchronized does not exist, then OOo is started for the first 
time
+//If last synchronized does not exist, then AOO is started for the first 
time
 ::osl::DirectoryItem itemFile;
 ::osl::File::RC err2 = ::osl::DirectoryItem::get(fileURL, itemFile);
 if (err2 == ::osl::File::E_NOENT)
 {
 return true;
-
+
 }
 else if (err2 != ::osl::File::E_None)
 {
 OSL_ENSURE(0, "Cannot access file lastsynchronized");
 return true; //sync just in case
 }
-
+
 //compare the modification time of the extension folder and the last
 //modified file
 ::osl::FileStatus statFolder(FileStatusMask_ModifyTime);
@@ -192,7 +192,7 @@ b

[openoffice] 03/03: Remove dummy text from the Windows installer

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 9a966de5489d150bd1e07d26bf4f1e1603886f00
Author: Matthias Seidel 
AuthorDate: Sun Apr 22 14:37:48 2018 +

Remove dummy text from the Windows installer

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829787 
13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit e99c7fc5ac49fa7cae82405f3f506884bcc12bcf)
---
 .../inc_ooolangpack/windows/msi_templates/Property.idt | 1 -
 .../instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf | 3 ---
 .../instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt | 1 -
 main/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt | 1 -
 main/instsetoo_native/inc_ure/windows/msi_templates/Property.idt   | 1 -
 5 files changed, 7 deletions(-)

diff --git 
a/main/instsetoo_native/inc_ooolangpack/windows/msi_templates/Property.idt 
b/main/instsetoo_native/inc_ooolangpack/windows/msi_templates/Property.idt
index 0f3ed1e..e7b6067 100644
--- a/main/instsetoo_native/inc_ooolangpack/windows/msi_templates/Property.idt
+++ b/main/instsetoo_native/inc_ooolangpack/windows/msi_templates/Property.idt
@@ -9,7 +9,6 @@ ALLUSERS1
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 DefaultUIFont  Tahoma8
diff --git 
a/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf 
b/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
index f490349..1cdb15a 100644
--- a/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
+++ b/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
@@ -28,9 +28,6 @@ en-US = "Apache Software Foundation"
 [OOO_ARPHELPLINKTEMPLATE]
 en-US = "http://www.openoffice.org";
 
-[OOO_ARPHELPTELEPHONETEMPLATE]
-en-US = "x-xxx-xxx-xxx"
-
 [OOO_ARPURLINFOABOUTTEMPLATE]
 en-US = "http://www.openoffice.org";
 
diff --git 
a/main/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt 
b/main/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt
index edc9526..3225f74 100644
--- a/main/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt
+++ b/main/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt
@@ -9,7 +9,6 @@ ALLUSERS1
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 DefaultUIFont  Tahoma8
diff --git a/main/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt 
b/main/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt
index 6514eaa..e3251a6 100644
--- a/main/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt
+++ b/main/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt
@@ -8,7 +8,6 @@ ApplicationUsersAllUsers
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 ARPNOREPAIR1
diff --git a/main/instsetoo_native/inc_ure/windows/msi_templates/Property.idt 
b/main/instsetoo_native/inc_ure/windows/msi_templates/Property.idt
index e296bb7..a1a3c86 100644
--- a/main/instsetoo_native/inc_ure/windows/msi_templates/Property.idt
+++ b/main/instsetoo_native/inc_ure/windows/msi_templates/Property.idt
@@ -9,7 +9,6 @@ ApplicationUsersAllUsers
 ARPCOMMENTSARPCOMMENTSTEMPLATE
 ARPCONTACT OOO_ARPCONTACTTEMPLATE
 ARPHELPLINKOOO_ARPHELPLINKTEMPLATE
-ARPHELPTELEPHONE   OOO_ARPHELPTELEPHONETEMPLATE
 ARPURLINFOABOUTOOO_ARPURLINFOABOUTTEMPLATE
 ARPURLUPDATEINFO   OOO_ARPURLUPDATEINFOTEMPLATE
 ARPNOREPAIR1


[openoffice] branch AOO41X updated (d3efa59 -> 9a966de)

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a change to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git.


from d3efa59  Added 40x40 icon
 new e54a6f5  Crystal icon set was removed with r1206244.
 new 44bccbe  Replace generic text in Windows installer
 new 9a966de  Remove dummy text from the Windows installer

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../inc_ooolangpack/windows/msi_templates/Property.idt   | 1 -
 .../inc_openoffice/windows/msi_languages/Property.ulf| 5 +
 .../inc_openoffice/windows/msi_templates/Property.idt| 1 -
 main/instsetoo_native/inc_sdkoo/windows/msi_templates/Property.idt   | 1 -
 main/instsetoo_native/inc_ure/windows/msi_templates/Property.idt | 1 -
 main/packimages/pack/makefile.mk | 2 --
 6 files changed, 1 insertion(+), 10 deletions(-)


[openoffice] 02/03: Replace generic text in Windows installer

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 44bccbe200e7af8a42f022aa3875679607cbc6f6
Author: Matthias Seidel 
AuthorDate: Sat May 19 10:00:20 2018 +

Replace generic text in Windows installer

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1831881 
13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit d92cd47efd2b967269e3a929b1b43affa088)
---
 main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf 
b/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
index b42e1ea..f490349 100644
--- a/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
+++ b/main/instsetoo_native/inc_openoffice/windows/msi_languages/Property.ulf
@@ -23,7 +23,7 @@
 en-US = "Comment in the Add-Remove-Programs Applet"
 
 [OOO_ARPCONTACTTEMPLATE]
-en-US = "Department for technical support"
+en-US = "Apache Software Foundation"
 
 [OOO_ARPHELPLINKTEMPLATE]
 en-US = "http://www.openoffice.org";


[openoffice] 01/03: Crystal icon set was removed with r1206244.

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit e54a6f58f22eefaaa6ffd5eafad4ecc5260db943
Author: Matthias Seidel 
AuthorDate: Sat May 19 14:36:54 2018 +

Crystal icon set was removed with r1206244.

Deleting leftover.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1831894 
13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit abb2ff1c400b7fd509bbdabce89218ce4d0da8fb)
---
 main/packimages/pack/makefile.mk | 2 --
 1 file changed, 2 deletions(-)

diff --git a/main/packimages/pack/makefile.mk b/main/packimages/pack/makefile.mk
index 2ddc850..ca0627b 100644
--- a/main/packimages/pack/makefile.mk
+++ b/main/packimages/pack/makefile.mk
@@ -91,7 +91,5 @@ $(MISC)$/classic.flag : $(CLASSIC_TARBALL)
 # dependencies
 images_hicontrast : $(MISC)$/hicontrast.flag $(RES)$/img$/commandimagelist.ilst
 
-images_crystal : $(MISC)$/crystal.flag $(RES)$/img$/commandimagelist.ilst
-
 images_classic : $(MISC)$/classic.flag $(RES)$/img$/commandimagelist.ilst
 


[openoffice-org] branch main updated: Add sub pages to hy

2021-05-17 Thread mseidel
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/main by this push:
 new c29ccf8  Add sub pages to hy
c29ccf8 is described below

commit c29ccf8a89befab55e6f7b22bdcdb39c7c4755ed
Author: mseidel 
AuthorDate: Mon May 17 19:22:04 2021 +0200

Add sub pages to hy
---
 content/hy/extensions/index.html | 67 +++
 content/hy/index.html|  4 +-
 content/hy/social/index.html | 97 
 3 files changed, 166 insertions(+), 2 deletions(-)

diff --git a/content/hy/extensions/index.html b/content/hy/extensions/index.html
new file mode 100644
index 000..c01cbea
--- /dev/null
+++ b/content/hy/extensions/index.html
@@ -0,0 +1,67 @@
+
+
+  Extensions : Enrich Apache OpenOffice
+  
+
+
+
+  Extensions and Templates: From production to end-users
+  
+Apache OpenOffice offers a complete framework allowing it to be enriched.
+OpenOffice allows for both "extensions" and "templates".
+An extension is a third party tool that brings OpenOffice new functions.
+This can be done through addons, addins, deployed by UNO packages.
+Templates are document setups designed for specific uses.
+
+
+The native-lang projects are welcomed helping translating all of these 
resources.
+The OpenOffice wiki can be used to provide translation of all the materials
+found here and now contains the majority of information.
+  
+  
+  
+https://extensions.openoffice.org"; target="_blank">
+  
+
+
+  
+  
+Get or submit extensions on the
+https://extensions.openoffice.org"; target="_blank">
+  OpenOffice Extensions Website.
+
+Get or submit templates on the
+https://templates.openoffice.org"; target="_blank">
+  OpenOffice Template Website.
+
+  
+
+  
+https://wiki.openoffice.org/wiki/Extensions"; target="_blank">
+  Find out much more on the Extensions Area Wiki
+
+  
+  
+Join the user mailing list if you're willing to share your extensions and 
need help:
+mailto:users-subscr...@openoffice.apache.org";>
+  users-subscr...@openoffice.apache.org
+
+
+
+Join the api mailing list for any questions related to developing 
extensions:
+mailto:api-subscr...@openoffice.apache.org";>
+  api-subscr...@openoffice.apache.org
+
+
+
+(See the
+https://openoffice.apache.org/mailing-lists.html";>
+  Apache OpenOffice mailing list page
+
+for mail subject tags and information on other useful mailing lists.)
+  
+
+
diff --git a/content/hy/index.html b/content/hy/index.html
index d9d970e..f5e4235 100644
--- a/content/hy/index.html
+++ b/content/hy/index.html
@@ -164,7 +164,7 @@ screen reader.
 
   
 
-  Ես ուզում եմ ավելին անել իմ 
OpenOffice -ի միջոցով
+  Ես ուզում եմ ավելին անել իմ 
OpenOffice -ի միջոցով
   Ընդլայնել Apache OpenOffice -ը հավելյալ ֆունկցիոնալությամբ, 
ձևանմուշներով և պատկերներով:
 
   
@@ -186,7 +186,7 @@ screen reader.
 
  
 
-  
+  
   Ես ուզում եմ մնալ կապի մեջ OpenOffice -ի հետ
   Հետևեք OpenOffice -ի առաջընթացին մեր հայտարարությունների ցուցակի, 
սոցիալական մեդիայի տարածքների և բլոգի միջոցով:
 
diff --git a/content/hy/social/index.html b/content/hy/social/index.html
new file mode 100644
index 000..0422747
--- /dev/null
+++ b/content/hy/social/index.html
@@ -0,0 +1,97 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
+http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
+
+
+
+
+
+Apache OpenOffice - Social Media
+
+
+
+  Official Announcements
+
+  
+The announce mailing list is the official avenue for announcements from 
Apache OpenOffice. This is a low-volume list.
+All users and interested parties are encouraged to subscribe in order to 
receive release announcements, security
+bulletins and other important updates.
+  
+  
+To subscribe to the announce mailing list, send an empty email to
+mailto:announce-subscr...@openoffice.apache.org";>announce-subscr...@openoffice.apache.org
 and respond to
+the confirmation mail you will receive.
+  
+  
+For more information about how to work with mailing lists
+https://openoffice.apache.org/mailing-lists.html";>please see 
here.
+  
+
+  Social Media
+
+  
+The Apache OpenOffice project provides occasional news updates and 
announcement via a variety of popular social media
+outlets. We invite you to follow us on any of these social networks, and 
to share our posts with friends in your
+network.
+  
+  
+We also have an https://blogs.apache.org/OOo/";>official blog, 
which features more in depth stories about
+Apache OpenOffice, previews of upcoming features and other interesting 
thin

[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2021-05-17 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new e75a6bc  git-site-role commit from build_staging.sh
e75a6bc is described below

commit e75a6bc26e462ece5bfb1c199c59beba2f63c97b
Author: jenkins 
AuthorDate: Mon May 17 17:58:29 2021 +

git-site-role commit from build_staging.sh
---
 content/feed.xml |   4 +-
 content/hy/extensions/index.html |  90 +
 content/hy/index.html|   4 +-
 content/hy/social/index.html | 119 +++
 4 files changed, 213 insertions(+), 4 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index 5c1ed54..dc209b3 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml"; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 16 May 2021 22:31:10 +
-Sun, 16 May 2021 22:31:10 +
+Mon, 17 May 2021 17:56:59 +
+Mon, 17 May 2021 17:56:59 +
 
 

diff --git a/content/hy/extensions/index.html b/content/hy/extensions/index.html
new file mode 100644
index 000..3c8841a
--- /dev/null
+++ b/content/hy/extensions/index.html
@@ -0,0 +1,90 @@
+
+
+
+  
+
+
+
+
+  Extensions : Enrich Apache OpenOffice
+  
+
+
+https://www.apachecon.com/event-images/snippet.js";>
+  
+  
+
+
+  
+  home » hy » extensions
+
+
+  
+  
+
+  
+  
+  Extensions and Templates: From production to end-users
+  
+Apache OpenOffice offers a complete framework allowing it to be enriched.
+OpenOffice allows for both "extensions" and "templates".
+An extension is a third party tool that brings OpenOffice new functions.
+This can be done through addons, addins, deployed by UNO packages.
+Templates are document setups designed for specific uses.
+
+
+The native-lang projects are welcomed helping translating all of these 
resources.
+The OpenOffice wiki can be used to provide translation of all the materials
+found here and now contains the majority of information.
+  
+  
+  
+https://extensions.openoffice.org"; target="_blank">
+  
+
+
+  
+  
+Get or submit extensions on the
+https://extensions.openoffice.org"; target="_blank">
+  OpenOffice Extensions Website.
+
+Get or submit templates on the
+https://templates.openoffice.org"; target="_blank">
+  OpenOffice Template Website.
+
+  
+
+  
+https://wiki.openoffice.org/wiki/Extensions"; target="_blank">
+  Find out much more on the Extensions Area Wiki
+
+  
+  
+Join the user mailing list if you're willing to share your extensions and 
need help:
+mailto:users-subscr...@openoffice.apache.org";>
+  users-subscr...@openoffice.apache.org
+
+
+
+Join the api mailing list for any questions related to developing 
extensions:
+mailto:api-subscr...@openoffice.apache.org";>
+  api-subscr...@openoffice.apache.org
+
+
+
+(See the
+https://openoffice.apache.org/mailing-lists.html";>
+  Apache OpenOffice mailing list page
+
+for mail subject tags and information on other useful mailing lists.)
+  
+
+  
+
+
+  
+
diff --git a/content/hy/index.html b/content/hy/index.html
index b7748e1..d0b3beb 100644
--- a/content/hy/index.html
+++ b/content/hy/index.html
@@ -182,7 +182,7 @@ screen reader.
 
   
 
-  Ես ուզում եմ ավելին անել իմ 
OpenOffice -ի միջոցով
+  Ես ուզում եմ ավելին անել իմ 
OpenOffice -ի միջոցով
   Ընդլայնել Apache OpenOffice -ը հավելյալ ֆունկցիոնալությամբ, 
ձևանմուշներով և պատկերներով:
 
   
@@ -204,7 +204,7 @@ screen reader.
 
  
 
-  
+  
   Ես ուզում եմ մնալ կապի մեջ OpenOffice -ի հետ
   Հետևեք OpenOffice -ի առաջընթացին մեր հայտարարությունների ցուցակի, 
սոցիալական մեդիայի տարածքների և բլոգի միջոցով:
 
diff --git a/content/hy/social/index.html b/content/hy/social/index.html
new file mode 100644
index 000..1ab7762
--- /dev/null
+++ b/content/hy/social/index.html
@@ -0,0 +1,119 @@
+
+
+
+  
+
+
+
+
+
+
+
+
+Apache OpenOffice - Social Media
+
+
+https://www.apachecon.com/event-images/snippet.js";>
+  
+  
+
+
+  
+  home » hy » social
+
+
+  
+  
+
+  
+  
+  Official Announcements
+
+  
+The announce mailing list is the official avenue for announcements from 
Apache OpenOffice. This is a low-volume list.
+All users and interested parties are encouraged to subscribe in order to 
receive release announcements, security
+bulletins and other important updates.
+  
+  
+To subs

OpenOffice-org Staging Site Published

2021-05-17 Thread Apache Jenkins Server
OpenOffice » OpenOffice-org-Staging-Site-Build - Build # 379 - Successful:

Check console output at 
https://ci-builds.apache.org/job/OpenOffice/job/OpenOffice-org-Staging-Site-Build/379/
 to view the results.

[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2021-05-17 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 99a6662  git-site-role commit from build_staging.sh
99a6662 is described below

commit 99a6662e3d4cb217bde12ef7febef714ea588904
Author: jenkins 
AuthorDate: Mon May 17 18:04:28 2021 +

git-site-role commit from build_staging.sh
---
 content/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index dc209b3..6977244 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml"; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Mon, 17 May 2021 17:56:59 +
-Mon, 17 May 2021 17:56:59 +
+Mon, 17 May 2021 18:03:13 +
+Mon, 17 May 2021 18:03:13 +
 
 



OpenOffice-org Staging Site Published

2021-05-17 Thread Apache Jenkins Server
OpenOffice » OpenOffice-org-Staging-Site-Build - Build # 380 - Successful:

Check console output at 
https://ci-builds.apache.org/job/OpenOffice/job/OpenOffice-org-Staging-Site-Build/380/
 to view the results.

[openoffice] branch AOO41X updated: Tests for warning dialog on certain hyperlinks in documents (i128450) (#128) (#129)

2021-05-17 Thread cmarcum
This is an automated email from the ASF dual-hosted git repository.

cmarcum pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO41X by this push:
 new 7d082fd  Tests for warning dialog on certain hyperlinks in documents 
(i128450) (#128) (#129)
7d082fd is described below

commit 7d082fd9765b368883eaf4fb8cf3f3b0bfa2b8c2
Author: Carl Marcum 
AuthorDate: Mon May 17 18:07:35 2021 -0400

Tests for warning dialog on certain hyperlinks in documents (i128450) 
(#128) (#129)

* Refs #i128450 - added fvt test class for verifying a warning dialog for 
certain hyperlinks.
Added a test method to bvt test so there is some coverage there.
added UI mappings for hyperlink dialogs.
---
 test/testgui/source/bvt/gui/BasicFunctionTest.java |  38 +-
 .../source/fvt/gui/sw/hyperlink/WarningDialog.java | 135 +
 test/testgui/source/testlib/gui/UIMap.java |   7 ++
 3 files changed, 179 insertions(+), 1 deletion(-)

diff --git a/test/testgui/source/bvt/gui/BasicFunctionTest.java 
b/test/testgui/source/bvt/gui/BasicFunctionTest.java
index 21aa315..ec7d770 100644
--- a/test/testgui/source/bvt/gui/BasicFunctionTest.java
+++ b/test/testgui/source/bvt/gui/BasicFunctionTest.java
@@ -681,4 +681,40 @@ public class BasicFunctionTest {
assertEquals("The calculated result", expectedResult, 
SCTool.getCellText("B1"));
discard();
}
-}
+
+   /**
+* Test open a non-http(s) type hyperlink (with host only) in a text 
document.
+* (coverage included in fvt.gui.sw.hyperlink.WarningDialog
+* testHyperlinkDisplaysWarning() and included here for build 
verification)
+* 1. New a text document
+* 2. Insert a dav type hyperlink
+* 3. Open hyperlink
+* 4. Verify security warning dialog is displayed
+*
+* @throws Exception
+*/
+   @Test
+   public void testNonHttpHyperlinkWithHostOnly() throws Exception {
+   // Create a new text document
+   newTextDocument();
+   writer.waitForExistence(10, 2);
+   // open the hyperlink dialog
+   writer.typeKeys(""); // insert menu
+   writer.typeKeys("h"); // hyperlink
+   hyperlinkInetPathComboBox.setText("dav://nonexistant.url.com"); 
//target
+   hyperlinkInetText.setText("dav://nonexistant.url.com"); // 
displayed text
+   hyperlinkDialogOkBtn.click(); // apply
+   hyperlinkDialogCancelBtn.click(); // close
+   sleep(1); // give the dialog time to close
+   typeKeys(""); // context menu
+   typeKeys("o"); // open hyperlink
+   // we can't be sure of the language so just check for the dialog
+   boolean msgExists = activeMsgBox.exists(1); // wait 1 second 
for the dialog
+   if (msgExists) {
+   activeMsgBox.no(); // close dialog
+   }
+   assertTrue("security warning not displayed", msgExists);
+   discard();
+   }
+
+}
\ No newline at end of file
diff --git a/test/testgui/source/fvt/gui/sw/hyperlink/WarningDialog.java 
b/test/testgui/source/fvt/gui/sw/hyperlink/WarningDialog.java
new file mode 100644
index 000..a7b12f5
--- /dev/null
+++ b/test/testgui/source/fvt/gui/sw/hyperlink/WarningDialog.java
@@ -0,0 +1,135 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package fvt.gui.sw.hyperlink;
+
+import static org.junit.Assert.*;
+import static org.openoffice.test.common.Testspace.*;
+import static org.openoffice.test.vcl.Tester.*;
+import static testlib.gui.AppTool.*;
+import static testlib.gui.UIMap.*;
+
+import java.awt.Rectangle;
+import java.io.File;
+
+import org.junit.AfterClass;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Rule;
+import org.junit.Test;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.Parameters;
+
+import java.util.Arrays;
+import java.util.Collection;
+
+import org.openoffice.test.common.FileUtil