svn commit: r1524932 - in /openoffice/trunk/main: cli_ure/source/native/native_bootstrap.cxx cli_ure/version/version.txt odk/examples/CLI/CSharp/Spreadsheet/Makefile unoil/climaker/version.txt

2013-09-20 Thread jsc
Author: jsc
Date: Fri Sep 20 08:05:42 2013
New Revision: 1524932

URL: http://svn.apache.org/r1524932
Log:
#122869# fix problem to find office installation

Modified:
openoffice/trunk/main/cli_ure/source/native/native_bootstrap.cxx
openoffice/trunk/main/cli_ure/version/version.txt
openoffice/trunk/main/odk/examples/CLI/CSharp/Spreadsheet/Makefile
openoffice/trunk/main/unoil/climaker/version.txt

Modified: openoffice/trunk/main/cli_ure/source/native/native_bootstrap.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/cli_ure/source/native/native_bootstrap.cxx?rev=1524932r1=1524931r2=1524932view=diff
==
--- openoffice/trunk/main/cli_ure/source/native/native_bootstrap.cxx (original)
+++ openoffice/trunk/main/cli_ure/source/native/native_bootstrap.cxx Fri Sep 20 
08:05:42 2013
@@ -56,9 +56,6 @@ namespace cli_ure {
 // in main\scp2\source\ooo\registryitem_ooo.scp
 #define INSTALL_PATH LSoftware\\OpenOffice\\UNO\\InstallPath
 #define INSTALL_PATH_64 LSoftware\\Wow6432Node\\OpenOffice\\UNO\\InstallPath
-#define BASIS_LINK L\\basis-link
-#define URE_LINK L\\ure-link
-#define URE_BIN L\\bin
 #define UNO_PATH LUNO_PATH
 
 namespace
@@ -110,23 +107,6 @@ WCHAR* getPathFromRegistryKey( HKEY hroo
 return data;
 }
 
-/* If the path does not end with '\' the las segment will be removed.
-path: C:\a\b
--C:\a
-@param io_path
-in/out parameter. The string is not reallocated. Simply a '\0'
-will be inserted to shorten the string.
-*/
-void oneDirUp(LPTSTR io_path)
-{
-WCHAR * pEnd = io_path + lstrlen(io_path) - 1;
-while (pEnd  io_path //prevent crashing if provided string does not 
contain a backslash
- *pEnd != L'\\')
-pEnd --;
-*pEnd = L'\0';
-}
-
-
 /* Returns the path to the program folder of the brand layer,
 for example c:/openoffice.org 3/program
This path is either obtained from the environment variable UNO_PATH
@@ -142,8 +122,8 @@ WCHAR * getInstallPath()
 DWORD  cChars = GetEnvironmentVariable(UNO_PATH, NULL, 0);
 if (cChars  0)
 {  
-szInstallPath = new WCHAR[cChars];
-cChars = GetEnvironmentVariable(UNO_PATH, szInstallPath, cChars);
+szInstallPath = new WCHAR[cChars+1];
+cChars = GetEnvironmentVariable(UNO_PATH, szInstallPath, cChars+1);
//If PATH is not set then it is no error
if (cChars == 0)
{
@@ -158,14 +138,14 @@ WCHAR * getInstallPath()
 if ( szInstallPath == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_USER */
-szInstallPath = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, 
INSTALL_PATH_64 );
+szInstallPath = getPathFromRegistryKey( HKEY_CURRENT_USER, 
INSTALL_PATH_64 );
 }
-else if ( szInstallPath == NULL )
+if ( szInstallPath == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE */
 szInstallPath = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, 
INSTALL_PATH );
 }
-else if ( szInstallPath == NULL )
+if ( szInstallPath == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE */
 szInstallPath = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, 
INSTALL_PATH_64 );
@@ -174,67 +154,6 @@ WCHAR * getInstallPath()
 return szInstallPath;
 }
 
-/* Returns the path to the URE/bin path, where cppuhelper lib resides.
-The returned string must be freed with delete[]
-*/
-WCHAR* getUnoPath()
-{
-WCHAR * szLinkPath = NULL;
-WCHAR * szUrePath = NULL;
-WCHAR * szUreBin = NULL; //the return value
-
-WCHAR * szInstallPath = getInstallPath();
-if (szInstallPath)
-{
-//build the path tho the basis-link file
-oneDirUp(szInstallPath);
-int sizeLinkPath = lstrlen(szInstallPath) + lstrlen(INSTALL_PATH) + 1;
-if (sizeLinkPath  MAX_PATH)
-sizeLinkPath = MAX_PATH;
-szLinkPath = new WCHAR[sizeLinkPath];
-szLinkPath[0] = L'\0';
-lstrcat(szLinkPath, szInstallPath);
-lstrcat(szLinkPath, BASIS_LINK);
-
-//get the path to the actual Basis folder
-if (cli_ure::resolveLink(szLinkPath))
-{   
-//build the path to the ure-link file
-int sizeUrePath = lstrlen(szLinkPath) + lstrlen(URE_LINK) + 1;
-if (sizeUrePath  MAX_PATH)
-sizeUrePath = MAX_PATH;
-szUrePath = new WCHAR[sizeUrePath];
-szUrePath[0] = L'\0';
-lstrcat(szUrePath, szLinkPath);
-lstrcat(szUrePath, URE_LINK);
-
-//get the path to the actual Ure folder
-if (cli_ure::resolveLink(szUrePath))
-{
-//build the path to the URE/bin directory
-   szUreBin = new WCHAR[lstrlen(szUrePath) + lstrlen(URE_BIN) 
+ 1];
-  

svn commit: r1524936 - in /openoffice/branches/AOO401/main: cli_ure/source/native/native_bootstrap.cxx cli_ure/version/version.txt odk/examples/CLI/CSharp/Spreadsheet/Makefile unoil/climaker/version.t

2013-09-20 Thread jsc
Author: jsc
Date: Fri Sep 20 08:14:21 2013
New Revision: 1524936

URL: http://svn.apache.org/r1524936
Log:
#123869# merge fix from trunk

Modified:
openoffice/branches/AOO401/main/cli_ure/source/native/native_bootstrap.cxx
openoffice/branches/AOO401/main/cli_ure/version/version.txt
openoffice/branches/AOO401/main/odk/examples/CLI/CSharp/Spreadsheet/Makefile
openoffice/branches/AOO401/main/unoil/climaker/version.txt

Modified: 
openoffice/branches/AOO401/main/cli_ure/source/native/native_bootstrap.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/cli_ure/source/native/native_bootstrap.cxx?rev=1524936r1=1524935r2=1524936view=diff
==
--- openoffice/branches/AOO401/main/cli_ure/source/native/native_bootstrap.cxx 
(original)
+++ openoffice/branches/AOO401/main/cli_ure/source/native/native_bootstrap.cxx 
Fri Sep 20 08:14:21 2013
@@ -56,9 +56,6 @@ namespace cli_ure {
 // in main\scp2\source\ooo\registryitem_ooo.scp
 #define INSTALL_PATH LSoftware\\OpenOffice\\UNO\\InstallPath
 #define INSTALL_PATH_64 LSoftware\\Wow6432Node\\OpenOffice\\UNO\\InstallPath
-#define BASIS_LINK L\\basis-link
-#define URE_LINK L\\ure-link
-#define URE_BIN L\\bin
 #define UNO_PATH LUNO_PATH
 
 namespace
@@ -110,23 +107,6 @@ WCHAR* getPathFromRegistryKey( HKEY hroo
 return data;
 }
 
-/* If the path does not end with '\' the las segment will be removed.
-path: C:\a\b
--C:\a
-@param io_path
-in/out parameter. The string is not reallocated. Simply a '\0'
-will be inserted to shorten the string.
-*/
-void oneDirUp(LPTSTR io_path)
-{
-WCHAR * pEnd = io_path + lstrlen(io_path) - 1;
-while (pEnd  io_path //prevent crashing if provided string does not 
contain a backslash
- *pEnd != L'\\')
-pEnd --;
-*pEnd = L'\0';
-}
-
-
 /* Returns the path to the program folder of the brand layer,
 for example c:/openoffice.org 3/program
This path is either obtained from the environment variable UNO_PATH
@@ -142,8 +122,8 @@ WCHAR * getInstallPath()
 DWORD  cChars = GetEnvironmentVariable(UNO_PATH, NULL, 0);
 if (cChars  0)
 {  
-szInstallPath = new WCHAR[cChars];
-cChars = GetEnvironmentVariable(UNO_PATH, szInstallPath, cChars);
+szInstallPath = new WCHAR[cChars+1];
+cChars = GetEnvironmentVariable(UNO_PATH, szInstallPath, cChars+1);
//If PATH is not set then it is no error
if (cChars == 0)
{
@@ -158,14 +138,14 @@ WCHAR * getInstallPath()
 if ( szInstallPath == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_USER */
-szInstallPath = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, 
INSTALL_PATH_64 );
+szInstallPath = getPathFromRegistryKey( HKEY_CURRENT_USER, 
INSTALL_PATH_64 );
 }
-else if ( szInstallPath == NULL )
+if ( szInstallPath == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE */
 szInstallPath = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, 
INSTALL_PATH );
 }
-else if ( szInstallPath == NULL )
+if ( szInstallPath == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE */
 szInstallPath = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, 
INSTALL_PATH_64 );
@@ -174,67 +154,6 @@ WCHAR * getInstallPath()
 return szInstallPath;
 }
 
-/* Returns the path to the URE/bin path, where cppuhelper lib resides.
-The returned string must be freed with delete[]
-*/
-WCHAR* getUnoPath()
-{
-WCHAR * szLinkPath = NULL;
-WCHAR * szUrePath = NULL;
-WCHAR * szUreBin = NULL; //the return value
-
-WCHAR * szInstallPath = getInstallPath();
-if (szInstallPath)
-{
-//build the path tho the basis-link file
-oneDirUp(szInstallPath);
-int sizeLinkPath = lstrlen(szInstallPath) + lstrlen(INSTALL_PATH) + 1;
-if (sizeLinkPath  MAX_PATH)
-sizeLinkPath = MAX_PATH;
-szLinkPath = new WCHAR[sizeLinkPath];
-szLinkPath[0] = L'\0';
-lstrcat(szLinkPath, szInstallPath);
-lstrcat(szLinkPath, BASIS_LINK);
-
-//get the path to the actual Basis folder
-if (cli_ure::resolveLink(szLinkPath))
-{   
-//build the path to the ure-link file
-int sizeUrePath = lstrlen(szLinkPath) + lstrlen(URE_LINK) + 1;
-if (sizeUrePath  MAX_PATH)
-sizeUrePath = MAX_PATH;
-szUrePath = new WCHAR[sizeUrePath];
-szUrePath[0] = L'\0';
-lstrcat(szUrePath, szLinkPath);
-lstrcat(szUrePath, URE_LINK);
-
-//get the path to the actual Ure folder
-if (cli_ure::resolveLink(szUrePath))
-{
-//build the path to the URE/bin directory
-   szUreBin = new 

svn propchange: r1524936 - svn:log

2013-09-20 Thread jsc
Author: jsc
Revision: 1524936
Modified property: svn:log

Modified: svn:log at Fri Sep 20 08:26:02 2013
--
--- svn:log (original)
+++ svn:log Fri Sep 20 08:26:02 2013
@@ -1 +1 @@
-#123869# merge fix from trunk
+#122869# merge fix from trunk



svn commit: r1524946 [1/2] - /openoffice/trunk/extras/l10n/source/tr/localize.sdf

2013-09-20 Thread jsc
Author: jsc
Date: Fri Sep 20 08:49:45 2013
New Revision: 1524946

URL: http://svn.apache.org/r1524946
Log:
#123303# translation update from AOO 4.0.1

Modified:
openoffice/trunk/extras/l10n/source/tr/localize.sdf



svn commit: r1524953 - in /openoffice/trunk/main: cppuhelper/source/findsofficepath.c odk/source/com/sun/star/lib/loader/InstallationFinder.java

2013-09-20 Thread jsc
Author: jsc
Date: Fri Sep 20 09:01:45 2013
New Revision: 1524953

URL: http://svn.apache.org/r1524953
Log:
#123283# check places where registry is check for office installation

Modified:
openoffice/trunk/main/cppuhelper/source/findsofficepath.c

openoffice/trunk/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java

Modified: openoffice/trunk/main/cppuhelper/source/findsofficepath.c
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/cppuhelper/source/findsofficepath.c?rev=1524953r1=1524952r2=1524953view=diff
==
--- openoffice/trunk/main/cppuhelper/source/findsofficepath.c (original)
+++ openoffice/trunk/main/cppuhelper/source/findsofficepath.c Fri Sep 20 
09:01:45 2013
@@ -97,14 +97,14 @@ static char* platformSpecific()
 if ( path == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_USER 64 */
-path = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, SUBKEYNAME64 );
+path = getPathFromRegistryKey( HKEY_CURRENT_USER, SUBKEYNAME64 );
 }
-else if ( path == NULL )
+if ( path == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE */
 path = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, SUBKEYNAME );
 }
-else if ( path == NULL )
+if ( path == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE 64*/
 path = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, SUBKEYNAME64 );

Modified: 
openoffice/trunk/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java?rev=1524953r1=1524952r2=1524953view=diff
==
--- 
openoffice/trunk/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java
 (original)
+++ 
openoffice/trunk/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java
 Fri Sep 20 09:01:45 2013
@@ -200,7 +200,7 @@ final class InstallationFinder {
 } catch ( WinRegKeyException e ) {
 try {
 // read the key's default value from HKEY_LOCAL_MACHINE
-WinRegKey key = new WinRegKey( HKEY_LOCAL_USER,
+WinRegKey key = new WinRegKey( HKEY_CURRENT_USER,
SUBKEYNAME64 );
 path = key.getStringValue(  ); // default
 } catch ( WinRegKeyException e64 ) {




svn commit: r1524954 [1/2] - /openoffice/branches/AOO401/extras/l10n/source/tr/localize.sdf

2013-09-20 Thread jsc
Author: jsc
Date: Fri Sep 20 09:05:55 2013
New Revision: 1524954

URL: http://svn.apache.org/r1524954
Log:
#123303# merge translation update from trunk

Modified:
openoffice/branches/AOO401/extras/l10n/source/tr/localize.sdf



svn commit: r1524955 - in /openoffice/branches/AOO401/main: cppuhelper/source/findsofficepath.c odk/source/com/sun/star/lib/loader/InstallationFinder.java

2013-09-20 Thread jsc
Author: jsc
Date: Fri Sep 20 09:06:52 2013
New Revision: 1524955

URL: http://svn.apache.org/r1524955
Log:
#123283# merge fix from trunk

Modified:
openoffice/branches/AOO401/main/cppuhelper/source/findsofficepath.c

openoffice/branches/AOO401/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java

Modified: openoffice/branches/AOO401/main/cppuhelper/source/findsofficepath.c
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/cppuhelper/source/findsofficepath.c?rev=1524955r1=1524954r2=1524955view=diff
==
--- openoffice/branches/AOO401/main/cppuhelper/source/findsofficepath.c 
(original)
+++ openoffice/branches/AOO401/main/cppuhelper/source/findsofficepath.c Fri Sep 
20 09:06:52 2013
@@ -97,14 +97,14 @@ static char* platformSpecific()
 if ( path == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_USER 64 */
-path = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, SUBKEYNAME64 );
+path = getPathFromRegistryKey( HKEY_CURRENT_USER, SUBKEYNAME64 );
 }
-else if ( path == NULL )
+if ( path == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE */
 path = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, SUBKEYNAME );
 }
-else if ( path == NULL )
+if ( path == NULL )
 {
 /* read the key's default value from HKEY_LOCAL_MACHINE 64*/
 path = getPathFromRegistryKey( HKEY_LOCAL_MACHINE, SUBKEYNAME64 );

Modified: 
openoffice/branches/AOO401/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java?rev=1524955r1=1524954r2=1524955view=diff
==
--- 
openoffice/branches/AOO401/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java
 (original)
+++ 
openoffice/branches/AOO401/main/odk/source/com/sun/star/lib/loader/InstallationFinder.java
 Fri Sep 20 09:06:52 2013
@@ -200,7 +200,7 @@ final class InstallationFinder {
 } catch ( WinRegKeyException e ) {
 try {
 // read the key's default value from HKEY_LOCAL_MACHINE
-WinRegKey key = new WinRegKey( HKEY_LOCAL_USER,
+WinRegKey key = new WinRegKey( HKEY_CURRENT_USER,
SUBKEYNAME64 );
 path = key.getStringValue(  ); // default
 } catch ( WinRegKeyException e64 ) {




svn commit: r1524958 - /openoffice/branches/AOO401/main/instsetoo_native/util/openoffice.lst

2013-09-20 Thread orw
Author: orw
Date: Fri Sep 20 09:36:44 2013
New Revision: 1524958

URL: http://svn.apache.org/r1524958
Log:
123304: provide own UpdateURL for AOO 4.0.1


Modified:
openoffice/branches/AOO401/main/instsetoo_native/util/openoffice.lst

Modified: openoffice/branches/AOO401/main/instsetoo_native/util/openoffice.lst
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO401/main/instsetoo_native/util/openoffice.lst?rev=1524958r1=1524957r2=1524958view=diff
==
--- openoffice/branches/AOO401/main/instsetoo_native/util/openoffice.lst 
(original)
+++ openoffice/branches/AOO401/main/instsetoo_native/util/openoffice.lst Fri 
Sep 20 09:36:44 2013
@@ -72,7 +72,7 @@ Apache_OpenOffice
 ABOUTBOXPRODUCTVERSION 4.0.1
 BASEPRODUCTVERSION 4.0
 PCPFILENAME openoffice.pcp
-UPDATEURL https://ooo-updates.apache.org/aoo40/check.Update
+UPDATEURL https://ooo-updates.apache.org/aoo401/check.Update
 ADD_INCLUDE_FILES 
cliureversion.mk,clioootypesversion.mk,userland.txt,version.lst
 REMOVE_UPGRADE_CODE_FILE upgradecode_remove_ooo.txt
 ADDSYSTEMINTEGRATION 1
@@ -131,7 +131,7 @@ Apache_OpenOffice_wJRE
 USERDIRPRODUCTVERSION 4
 ABOUTBOXPRODUCTVERSION 4.0.1
 BASEPRODUCTVERSION 4.0
-UPDATEURL 
https://ooo-site.apache.org/projects/update/aoo40/check.Update
+UPDATEURL https://ooo-updates.apache.org/aoo401/check.Update
 ADD_INCLUDE_FILES 
cliureversion.mk,clioootypesversion.mk,javaversion2.dat,userland.txt,version.lst
 REMOVE_UPGRADE_CODE_FILE upgradecode_remove_ooo.txt
 ADDSYSTEMINTEGRATION 1
@@ -198,7 +198,7 @@ Apache_OpenOffice_Dev
 UREPACKAGEPREFIX aoodev
 SOLSUREPACKAGEPREFIX aoodev
 REGISTRYLAYERNAME LayerDev
-UPDATEURL 
https://ooo-site.apache.org/projects/update/aoo40/check.Update
+UPDATEURL https://ooo-updates.apache.org/aoo401/check.Update
 ADD_INCLUDE_FILES 
cliureversion.mk,clioootypesversion.mk,javaversion2.dat,userland.txt,version.lst
 EVAL
 PACKAGEVERSION 4.0.1




buildbot success in ASF Buildbot on aoo-win7

2013-09-20 Thread buildbot
Hi! , The aoo-win7 builder has just completed a run

STATUS: Success

 Build revision 1524700 on branch openoffice/trunk

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-win7/builds/771

 Build reason was: The Nightly scheduler named 'aoo-win7-nightly' triggered 
this build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






svn commit: r1524960 - in /openoffice/updates-site/trunk/aoo401: ./ check.Update index.html

2013-09-20 Thread orw
Author: orw
Date: Fri Sep 20 09:43:33 2013
New Revision: 1524960

URL: http://svn.apache.org/r1524960
Log:
123308: empty XML update feed for AOO 4.0.1


Added:
openoffice/updates-site/trunk/aoo401/
openoffice/updates-site/trunk/aoo401/check.Update   (with props)
openoffice/updates-site/trunk/aoo401/index.html   (with props)

Added: openoffice/updates-site/trunk/aoo401/check.Update
URL: 
http://svn.apache.org/viewvc/openoffice/updates-site/trunk/aoo401/check.Update?rev=1524960view=auto
==
--- openoffice/updates-site/trunk/aoo401/check.Update (added)
+++ openoffice/updates-site/trunk/aoo401/check.Update Fri Sep 20 09:43:33 2013
@@ -0,0 +1,4 @@
+?xml version=1.0 encoding=UTF-8?
+!-- Product Update Feed for AOO 4.0.1 instances --
+inst:description xmlns:inst=http://installation.openoffice.org/description;
+/inst:description
\ No newline at end of file

Propchange: openoffice/updates-site/trunk/aoo401/check.Update
--
svn:mime-type = text/xml

Added: openoffice/updates-site/trunk/aoo401/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/updates-site/trunk/aoo401/index.html?rev=1524960view=auto
==
--- openoffice/updates-site/trunk/aoo401/index.html (added)
+++ openoffice/updates-site/trunk/aoo401/index.html Fri Sep 20 09:43:33 2013
@@ -0,0 +1,12 @@
+!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
+html
+head
+meta http-equiv=content-type content=text/html; charset=utf-8 /
+titleApache OpenOffice Product Update Service for installed AOO 4.0.1 
instances/title
+/head
+body
+h1Apache OpenOffice Product Update Service for installed AOO 4.0.1 
instances/h1
+h2Folder containing update service feed for AOO 4.0.1 users performing 
the update check and getting the message about an available new version./h2
+pcontents...check.Update ... xml feed /p
+/body
+/html

Propchange: openoffice/updates-site/trunk/aoo401/index.html
--
svn:executable = *




svn commit: r1524966 - in /openoffice/updates-site/trunk/aoo410: ./ check.Update index.html

2013-09-20 Thread orw
Author: orw
Date: Fri Sep 20 10:05:12 2013
New Revision: 1524966

URL: http://svn.apache.org/r1524966
Log:
123305: empty XML update feed for AOO 4.1.0


Added:
openoffice/updates-site/trunk/aoo410/
openoffice/updates-site/trunk/aoo410/check.Update   (with props)
openoffice/updates-site/trunk/aoo410/index.html   (with props)

Added: openoffice/updates-site/trunk/aoo410/check.Update
URL: 
http://svn.apache.org/viewvc/openoffice/updates-site/trunk/aoo410/check.Update?rev=1524966view=auto
==
--- openoffice/updates-site/trunk/aoo410/check.Update (added)
+++ openoffice/updates-site/trunk/aoo410/check.Update Fri Sep 20 10:05:12 2013
@@ -0,0 +1,4 @@
+?xml version=1.0 encoding=UTF-8?
+!-- Product Update Feed for AOO 4.1.0 instances --
+inst:description xmlns:inst=http://installation.openoffice.org/description;
+/inst:description
\ No newline at end of file

Propchange: openoffice/updates-site/trunk/aoo410/check.Update
--
svn:mime-type = text/xml

Added: openoffice/updates-site/trunk/aoo410/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/updates-site/trunk/aoo410/index.html?rev=1524966view=auto
==
--- openoffice/updates-site/trunk/aoo410/index.html (added)
+++ openoffice/updates-site/trunk/aoo410/index.html Fri Sep 20 10:05:12 2013
@@ -0,0 +1,12 @@
+!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
+html
+head
+meta http-equiv=content-type content=text/html; charset=utf-8 /
+titleApache OpenOffice Product Update Service for installed AOO 4.1.0 
instances/title
+/head
+body
+h1Apache OpenOffice Product Update Service for installed AOO 4.1.0 
instances/h1
+h2Folder containing update service feed for AOO 4.1.0 users performing 
the update check and getting the message about an available new version./h2
+pcontents...check.Update ... xml feed /p
+/body
+/html

Propchange: openoffice/updates-site/trunk/aoo410/index.html
--
svn:executable = *




svn propchange: r1524960 - svn:log

2013-09-20 Thread orw
Author: orw
Revision: 1524960
Modified property: svn:log

Modified: svn:log at Fri Sep 20 10:57:33 2013
--
--- svn:log (original)
+++ svn:log Fri Sep 20 10:57:33 2013
@@ -1,2 +1,2 @@
-123308: empty XML update feed for AOO 4.0.1
+123304: empty XML update feed for AOO 4.0.1
 



[CONF] Apache OpenOffice Community AOO 4.0.1 Release Notes

2013-09-20 Thread Keith N. McKenna (Confluence)







AOO 4.0.1 Release Notes
Page edited by Keith N. McKenna


Comment:
Added Turkish as new language.


 Changes (1)
 




...
 | Chinese (zh-TW) | Khmer (km)| Lithuanian (lt)| Polish (pl) | Serbian (sr) | Vietnamese (vi) | 
| Swedish (sv) | Basque (eu) | Turkish (tr) | 
 h3. Updated translations available in Apache OpenOffice 4.0.1 include: 
...


Full Content



THIS IS A DRAFT PAGE. APACHE OPENOFFICE 4.0.1 HAS NOT BEEN RELEASED YET.
General Remarks
Improvements/Enhancements

Performance Improvements/Enhancements
Other Improvements/Enhancements
Bug Fixes

Additional Language Support

New translations available in Apache OpenOffice 4.0.1 include:
Updated translations available in Apache OpenOffice 4.0.1 include:

For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html

Updated Dictionaries

Important bug fixes have been made in these areas:
The QE team has been tracking additional fixes as well. See their complete reports at:


Known Issues
Stay informed about Apache OpenOffice


THIS IS A DRAFT PAGE. APACHE OPENOFFICE 4.0.1 HAS NOT BEEN RELEASED YET.

General Remarks

Apache OpenOffice 4.0.1 is a maintenance release, intended to fix critical issues and improve the overall quality of the application.

General areas of improvement include: additional language support, bug fixes, performance improvements and Windows 8 compatibility enhancements. Further details on each of these areas are below.

For a more comprehensive overview of the changes from version 3.4.x see AOO 4.0 Release Notes

Improvements/Enhancements

Performance Improvements/Enhancements

The performance for loading XLS files was boosted by more than 230%.

Other Improvements/Enhancements

(possibly: mention, as an addendum to the 4.0 Release Notes, that Presenter Screen is now integrated: see http://markmail.org/message/pntj24q3pc5g6rwi )

Bug Fixes


	Crashes when switching sidebar panes have been fixed
	Crashes with certain extensions have been fixed
	Crashes on Windows with text in complex scripts have been fixed
	Crashes when deleting footnotes have been solved
	Loading *.123 files has been fixed
	Rendering of charts with many data points has been fixed
	Image rendering on MacOSX has been fixed
	Python compatibility has been improved
...



As of September 10 th there were 42 issues that have been resolved.

This list can be found at: https://issues.apache.org/ooo/buglist.cgi?cmdtype=doremremaction=runnamedcmd=4.0.1RelaseBlockersResolved

You will need an OpenOffice Bugzilla login to view it.

(An OpenOffice Bugzilla login will enable you to search for any bugs that may interest you.)

Additional Language Support

New translations available in Apache OpenOffice 4.0.1 include:




 Chinese (zh-TW) 
 Khmer (km)
 Lithuanian (lt)
 Polish (pl) 
 Serbian (sr) 
 Vietnamese (vi) 


 Swedish (sv) 
 Basque (eu) 
 Turkish (tr) 





Updated translations available in Apache OpenOffice 4.0.1 include:




 Asturian (ast) 
 Czech (cs) 
 Dutch (nl) 
 English (en_GB) 
 Finnish (fi) 
 French (fr) 


 Galician (gl) 
 German (de) 
 Greek (el) 
 Italian (it)
 Japanese (ja) 
 Portuguese (pt-BR) 


 Portuguese (pt) 
 Russian (ru) 
 Spanish (es) 
 Slovak (sk) 
 Tamil (ta) 





For a complete list of available languages and language packs see: http://www.openoffice.org/download/other.html

Updated Dictionaries




 English (en-US, en-*) 
 Gaelic (gd) 
 French (fr) 
 Italian (it) 
 Spanish (es) 





Important bug fixes have been made in these areas:


	None at this time.



The QE team has been tracking additional fixes as well. See their complete reports at:

http://wiki.services.openoffice.org/wiki/QA/Report/WeeklyReport

Known Issues

Stay informed about Apache OpenOffice

You are encouraged to subscribe to the Apache OpenOffice announcement mailing list, to be receive important notifications such as product updates and security patches. To subscribe you can send an email to: announce-subscr...@openoffice.apache.org.

You can also follow the project on Twitter, Facebook and Google. 



Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









[CONF] Apache OpenOffice Community AOO 4.0.1 Release Notes (Spanish)

2013-09-20 Thread Ricardo Berlasso (Confluence)







AOO 4.0.1 Release Notes (Spanish)
Page edited by Ricardo Berlasso


 Changes (1)
 




...
 | Chino (zh-TW) | Camboyano (km)| Lituano (lt)| Polaco (pl) | Serbio (sr) | Vietnamita (vi) | 
| Sueco (sv) | Vasco (eu) | Turco (tr) | 
 h3. Traducciones actualizadas disponibles en Apache OpenOffice 4.0.1: 
...


Full Content



ESTA PÁGINA ES UN BORRADOR. APACHE OPENOFFICE 4.0.1 NO HA SIDO LIBERADO AÚN.
Comentarios generales
Mejoras

Mejoras en el rendimiento
Otras mejoras
Correcciones de error

Soporte para nuevos idiomas

Apache OpenOffice 4.0.1 incluye nuevas traducciones:
Traducciones actualizadas disponibles en Apache OpenOffice 4.0.1:

Para una lista completa de los idiomas disponibles y de los paquetes de idioma, vea: http://www.openoffice.org/download/other.html

Diccionarios actualizados

Correcciones importantes se han dado en estas áreas:
El equipo de QE ha realizado un seguimiento de otras correcciones también. Vea la lista completa de reportes en:


Problemas conocidos
Manténgase informado sobre Apache OpenOffice


ESTA PÁGINA ES UN BORRADOR. APACHE OPENOFFICE 4.0.1 NO HA SIDO LIBERADO AÚN.

Comentarios generales

Apache OpenOffice 4.0.1 es una versión de mantenimiento, pensada para corregir problemas críticos y mejorar la calidad general de la aplicación.

Áreas generales donde se han dado mejoras incluyen: soporte para nuevos idiomas, correcciones de error, mejoras en el rendimiento y mejoras en la compatibilidad con Windows 8. Puede encontrar más detalles de cada una de estas áreas más abajo.

Para una revisión más completa de los cambios desde la versión 3.4.x vea AOO 4.0 Release Notes Spanish

Mejoras

Mejoras en el rendimiento

El rendimiento al leer archivos XLS fue mejorado en más de un 230%. 

Otras mejoras

(posiblemente: mencionar como un agregado a las notas de versión 4.0 que la extensión Presenter Screen ha sido integrada: ver http://markmail.org/message/pntj24q3pc5g6rwi )

Correcciones de error


	Se han corregido fallos que provocaban caídas al cambiar entre paneles de la barra lateral
	Se han corregido fallos que provocaban caídas al leer ciertas extensiones
	Se han corregido fallos que provocaban caídas en Windows con textos de escritura compleja
	Se han corregido fallos que provocaban caídas al borrar notas al pie de página
	Se ha corregido la lectura de archivos *.123
	Se han corregido problemas de presentación en pantalla de gráficos con muchos puntos
	Se ha corregido la visualización de imágenes en MacOSX
	Se ha mejorado la compatibilidad con Python
...



Al 10 de septiembre se tienen 42 reportes que han sido resueltos.

La lista puede encontrarse en: https://issues.apache.org/ooo/buglist.cgi?cmdtype=doremremaction=runnamedcmd=4.0.1RelaseBlockersResolved

Necesitará una cuenta en OpenOffice Bugzilla login para ver la lista.

(Una cuenta en OpenOffice Bugzilla le permitirá buscar por cualquier reporte que pueda interesarle). 

Soporte para nuevos idiomas

Apache OpenOffice 4.0.1 incluye nuevas traducciones:




 Chino (zh-TW) 
 Camboyano (km)
 Lituano (lt)
 Polaco (pl) 
 Serbio (sr) 
 Vietnamita (vi) 


 Sueco (sv) 
 Vasco (eu) 
 Turco (tr) 





Traducciones actualizadas disponibles en Apache OpenOffice 4.0.1:




 Asturiano (ast) 
 Checo (cs) 
 Holandés (nl) 
 Inglés (en_GB) 
 Finés (fi) 
 Francés (fr) 


 Gallego (gl) 
 Alemán (de) 
 Griego (el) 
 Italiano (it)
 Japonés (ja) 
 Portugués (pt-BR) 


 Portugués (pt) 
 Ruso (ru) 
 Español (es) 
 Eslovaco (sk) 
 Tamil (ta) 





Para una lista completa de los idiomas disponibles y de los paquetes de idioma, vea: http://www.openoffice.org/download/other.html

Diccionarios actualizados




 Inglés (en-US, en-*) 
 Gaélico (gd) 
 Francés (fr) 
 Italiano (it) 
 Castellano (es) 





Correcciones importantes se han dado en estas áreas:


	Ninguno en este momento.



El equipo de QE ha realizado un seguimiento de otras correcciones también. Vea la lista completa de reportes en:

http://wiki.services.openoffice.org/wiki/QA/Report/WeeklyReport

Problemas conocidos

Manténgase informado sobre Apache OpenOffice

Lo alentamos a subscribirse a la lista de correos de anuncios de Apache OpenOffice, para así recibir notificaciones importantes como actualizaciones del producto o correcciones de seguridad. Para subscribirse puede enviar un correo electrónico a: announce-subscr...@openoffice.apache.org.

También puede seguir el proyecto en Twitter, Facebook y Google. 



Stop watching space
|
Change email notification preferences

View Online
|
View Changes
|
Add Comment









svn commit: r1525015 - /openoffice/trunk/main/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx

2013-09-20 Thread alg
Author: alg
Date: Fri Sep 20 14:09:31 2013
New Revision: 1525015

URL: http://svn.apache.org/r1525015
Log:
i123295 corrected object and clip rect in PDFExtOutDevData::EndGroup call in 
VclMetafileProcessor2D

Modified:

openoffice/trunk/main/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx

Modified: 
openoffice/trunk/main/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx?rev=1525015r1=1525014r2=1525015view=diff
==
--- 
openoffice/trunk/main/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
 (original)
+++ 
openoffice/trunk/main/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
 Fri Sep 20 14:09:31 2013
@@ -834,11 +834,14 @@ namespace drawinglayer

sal_Int32(ceil(aCropRange.getMaxX())), sal_Int32(ceil(aCropRange.getMaxY(;
}
 
-   
mpPDFExtOutDevData-EndGroup(rGraphicPrimitive.getGraphicObject().GetGraphic(),
-   rAttr.GetTransparency(),
-   aCurrentRect,
-   aCropRect);
-   }
+// #123295# 3rd param is uncropped rect, 4th is 
cropped. The primitive has the cropped
+// object transformation, thus aCurrentRect *is* the 
clip region while aCropRect is the expanded,
+// uncropped region. Thus, correct order is aCropRect, 
aCurrentRect
+
mpPDFExtOutDevData-EndGroup(rGraphicPrimitive.getGraphicObject().GetGraphic(),
+rAttr.GetTransparency(),
+aCropRect,
+aCurrentRect);
+}

break;
}




[CONF] Apache OpenOffice Community Localization Volunteers

2013-09-20 Thread Oliver Mucafir (Confluence)







Localization Volunteers
Page edited by Oliver Mucafir


 Changes (1)
 




...
| 正體中文 Chinese (traditional) (tw) | imacat, Chia-Yu Lee | imacat, Chia-Yu Lee | | Czech (cs) | | | 
| Croatian (hr) |Oliver Mucafir - App UI translation and maybe documentation | | Oliver Mucafir| 
| Danish (da) | | | | Dutch (nl) | DiGro - Help and UI at Pootle, DiGro - User Guide translation | | 
...


Full Content

Volunteers

Please follow first these steps: https://cwiki.apache.org/confluence/x/XBT8AQ and then add your name here.




 Language 
 Help with Product Translation 
 Help with Website Translation 


 Afar (aa) 




 Albanian (sq) 




 Afrikaans (af) 




 Amharic (am) 




 Arabic (ar) 
 Karwan Fendi 



 Armenian (hy) 




 Asturian (ast) 
 Xuacu Saturio 



 Azeri (az) 




 Balochi (bal) 




 Basque (eu) 




 Bengali (bn) 




 Bosnian (bs) 




 Breton (bre) 




 Bulgarian (bg) 
 Anton Sarov, Nikolay Ninkov 
 Nikolay Ninkov 


 Burmese (my) 




 Catalan (ca) 
 Maria Bosch 



 ChiNyanja (NY) 




 简体中文 Chinese (simplified) (cn) 
 Sun Simon 



 正體中文 Chinese (traditional) (tw) 
 imacat, Chia-Yu Lee 
 imacat, Chia-Yu Lee 


 Czech (cs) 




 Croatian (hr) 
Oliver Mucafir - App UI 
 Oliver Mucafir


 Danish (da) 




 Dutch (nl) 
 DiGro - Help and UI at Pootle, DiGro - User Guide translation 



 Dzongkha (dz) 




 English (British) (en-GB) 
 Stuart Swales - Help and UI at Pootle, Kez Gibbons 



 Esperanto (eo) 




 Estonian (et) 




 Finnish (fi) 




 French (fr) 
 Several volunteers coordinated by Cyril Beaussier (aka Bidouille) 
 Cyril Beaussier (aka Bidouille) 


 Friulian (fur) 




 Galician (gl) 




 Gaelic (Irish) (ga) 




 Gaelic (Scottish) (gd) 




 Georgian (ka) 




 German (de) 
 Alexander Behrens - GUI l10n volunteer, Raphael Bircher, Mechtilde Stehmann and others 



 Greek (el) 
 Panayiotis Kiriakopoulos, Giannis Louizos, Konstantinos Tsimouris, Vangelis Pelekis, Irene Koukia, Giorgos Kazamias 



 Gujarati (gu) 




 Haitian Creole (ht) 




 Hebrew (he) 
 Amit Herling, Ron Oz, Tal Daniel 
 Tal Daniel 


 Hindi (hi) 
 Nityanand Sharma 
 Nityanand Sharma 


 Hungarian (hu) 
 Zoltán Reizinger (r4zoli) - Help and UI at Pootle 
 Zoltán Reizinger (r4zoli) 


 Icelandic (is) 




 Indonesian (id) 
 dirgita - Help and UI at Pootle, Ditra Masyitah, Joshua Kenny (indojo24),Denni Agung Pambudi 



 Italian (it) 
 Several volunteers, coordinated by Paolo Pozzan (paolopoz) 
 Andrea Pescetti (pescetti), with contributions from Pedro Giffuni (pfg) 


 Japanese (ja) 
 Kazunari Hirano, Nobuho Matayoshi 
 Kazunari Hirano, Nobuho Matayoshi 


 Khmer (km) 




 Korean (ko) 
 Jeongkyu Kim, Jihui Choi 



 Kurdish (ku) 
 Karwan Fendi 



 Lao (lo) 




 Latvian (lv) 




 Lithuanian (lt) 
 Aivaras Stepukonis 


 Macedonian (mk) 




 Malayalam (ml) 
 Ravi Panamana (ravipanamana) 
 Ravi Panamana (ravipanamana) 


 Marathi (mr) 




 Malagasy (mg) 




 Malaysian (ms) 




 Miskito (miq) 




 Mongolian (mn) 




 Nepali (ne) 




 Norwegian (no) 
 Jan Høydahl - GUI translation 
 Håkon Vågsether 


 Oromoo (om) 




 Papmiento (pap) 




 Pashto (ps) 




 Persian (fa) 
 Ameneh Sarbaziazad 



 Polish (pl) 
 Kamil Wasik, Piotr Czapla, Bartosz Kozanecki (bartoo), Krzysztof Danisz, Paweł Szczepański, Timo Markowicz, Magdalena Mozgawa, Marcin Sawicz, Pawel Michalczak, Przemysław Łęgowski, Katarzyna Kruszka 
 Magdalena Mozgawa, Katarzyna Kruszka 


 Portuguese (pt) 
 Urbano José Ferreira Marques, Paulo Alexandre Romualdo, Rui C Correia, Ademar José Aguiar, João Frade, Rafael G Machado 
 Joana Tornada, Rui C Correia, Ademar José Aguiar, João Frade, Rafael G Machado 


 Portuguese (Brazil) (pt-br) 
 Antonio C C Marques, Rui Ogawa, Claudio Filho, Albino B Neto, Kleberth Santos , Jimie Almeida, Lindalva Santos (lisantoss) 
 Claudio Filho, Albino B Neto, Kleberth Santos, Lindalva Santos (lisantoss) 


 Punjabi (pa) 




 Romanian (ro) 




 Russian (ru) 
 Serg Bormant 



 Sängö (sg) 




 Serbian (sr) 
 Danilo, Grole 
 Grole 


 Shuswap (shs) 




 Sidama (dm) 




 Sinhala (si) 




 Slovenian (sl) 




 Slovakian (sk) 
 Michal Hriň (hrin) 
 Michal Hriň (hrin) 


 Somali (so) 




 Spanish (es) 
 Ricardo Berlasso (rgb-es): UI and Help files on Pootle, JZA 
 Ricardo Berlasso (rgb-es) 


 Swedish (sv) 
 Kent Åberg 



 Tajik (tg) 




 Tamil (ta) 
 Kadal Amutham 



 Tatar (tt) 




 Telugu (te) 




 Thai (th) 
 I Intaso 



 Tibetan (bo) 




 Tigrinya (ti) 




 Turkish (tr) 
 Mehmet Demir, Gökşin Akdeniz, Bahtiyar Samet Çovan, Ozan Ayten, Sehzade Karababa 


 Uyghur (ug) 
 Gheyret T kenji (coordinator), Sahran (translator) 
 Gheyret T kenji (coordinator), Sahran (translator) 


 Ukrainian (uk) 




 Urdu (urd) 




 Uzbek (uz) 




 Vietnamese (vi) 
Trần 

[CONF] Apache OpenOffice Community Marketing Campaign Material

2013-09-20 Thread Drew Jensen (Confluence)







Marketing Campaign Material
File attached by  Drew Jensen




oRBS.png
(443 kB image/png)
-
Looking at the AOO4 mktg material motif proposal in grayscale



   
Stop watching space
|
Change email notification preferences

   View Attachments









[CONF] Apache OpenOffice Community Marketing Campaign Material

2013-09-20 Thread Drew Jensen (Confluence)







Marketing Campaign Material
File attached by  Drew Jensen




AOO-4_0_1-explore.gif
(47 kB image/gif)
-
Full color version of the AOO 4.0.1 web graphic



   
Stop watching space
|
Change email notification preferences

   View Attachments









[CONF] Apache OpenOffice Community Marketing Campaign Material

2013-09-20 Thread Drew Jensen (Confluence)







Marketing Campaign Material
File attached by  Drew Jensen




AOO-4_0_1-explore_blog.gif
(44 kB image/gif)
-
Propsed web graphic for social media 4.0.1 release announcement



   
Stop watching space
|
Change email notification preferences

   View Attachments









[CONF] Apache OpenOffice Community Localization Volunteers

2013-09-20 Thread Oliver Mucafir (Confluence)







Localization Volunteers
Page edited by Oliver Mucafir


 Changes (1)
 




...
| 正體中文 Chinese (traditional) (tw) | imacat, Chia-Yu Lee | imacat, Chia-Yu Lee | | Czech (cs) | | | 
| Croatian (hr) |Oliver Mucafir - App UI translation and maybe documentation | | | 
| Danish (da) | | | | Dutch (nl) | DiGro - Help and UI at Pootle, DiGro - User Guide translation | | 
...


Full Content

Volunteers

Please follow first these steps: https://cwiki.apache.org/confluence/x/XBT8AQ and then add your name here.




 Language 
 Help with Product Translation 
 Help with Website Translation 


 Afar (aa) 




 Albanian (sq) 




 Afrikaans (af) 




 Amharic (am) 




 Arabic (ar) 
 Karwan Fendi 



 Armenian (hy) 




 Asturian (ast) 
 Xuacu Saturio 



 Azeri (az) 




 Balochi (bal) 




 Basque (eu) 




 Bengali (bn) 




 Bosnian (bs) 




 Breton (bre) 




 Bulgarian (bg) 
 Anton Sarov, Nikolay Ninkov 
 Nikolay Ninkov 


 Burmese (my) 




 Catalan (ca) 
 Maria Bosch 



 ChiNyanja (NY) 




 简体中文 Chinese (simplified) (cn) 
 Sun Simon 



 正體中文 Chinese (traditional) (tw) 
 imacat, Chia-Yu Lee 
 imacat, Chia-Yu Lee 


 Czech (cs) 




 Croatian (hr) 
Oliver Mucafir - App UI translation and maybe documentation 



 Danish (da) 




 Dutch (nl) 
 DiGro - Help and UI at Pootle, DiGro - User Guide translation 



 Dzongkha (dz) 




 English (British) (en-GB) 
 Stuart Swales - Help and UI at Pootle, Kez Gibbons 



 Esperanto (eo) 




 Estonian (et) 




 Finnish (fi) 




 French (fr) 
 Several volunteers coordinated by Cyril Beaussier (aka Bidouille) 
 Cyril Beaussier (aka Bidouille) 


 Friulian (fur) 




 Galician (gl) 




 Gaelic (Irish) (ga) 




 Gaelic (Scottish) (gd) 




 Georgian (ka) 




 German (de) 
 Alexander Behrens - GUI l10n volunteer, Raphael Bircher, Mechtilde Stehmann and others 



 Greek (el) 
 Panayiotis Kiriakopoulos, Giannis Louizos, Konstantinos Tsimouris, Vangelis Pelekis, Irene Koukia, Giorgos Kazamias 



 Gujarati (gu) 




 Haitian Creole (ht) 




 Hebrew (he) 
 Amit Herling, Ron Oz, Tal Daniel 
 Tal Daniel 


 Hindi (hi) 
 Nityanand Sharma 
 Nityanand Sharma 


 Hungarian (hu) 
 Zoltán Reizinger (r4zoli) - Help and UI at Pootle 
 Zoltán Reizinger (r4zoli) 


 Icelandic (is) 




 Indonesian (id) 
 dirgita - Help and UI at Pootle, Ditra Masyitah, Joshua Kenny (indojo24),Denni Agung Pambudi 



 Italian (it) 
 Several volunteers, coordinated by Paolo Pozzan (paolopoz) 
 Andrea Pescetti (pescetti), with contributions from Pedro Giffuni (pfg) 


 Japanese (ja) 
 Kazunari Hirano, Nobuho Matayoshi 
 Kazunari Hirano, Nobuho Matayoshi 


 Khmer (km) 




 Korean (ko) 
 Jeongkyu Kim, Jihui Choi 



 Kurdish (ku) 
 Karwan Fendi 



 Lao (lo) 




 Latvian (lv) 




 Lithuanian (lt) 
 Aivaras Stepukonis 


 Macedonian (mk) 




 Malayalam (ml) 
 Ravi Panamana (ravipanamana) 
 Ravi Panamana (ravipanamana) 


 Marathi (mr) 




 Malagasy (mg) 




 Malaysian (ms) 




 Miskito (miq) 




 Mongolian (mn) 




 Nepali (ne) 




 Norwegian (no) 
 Jan Høydahl - GUI translation 
 Håkon Vågsether 


 Oromoo (om) 




 Papmiento (pap) 




 Pashto (ps) 




 Persian (fa) 
 Ameneh Sarbaziazad 



 Polish (pl) 
 Kamil Wasik, Piotr Czapla, Bartosz Kozanecki (bartoo), Krzysztof Danisz, Paweł Szczepański, Timo Markowicz, Magdalena Mozgawa, Marcin Sawicz, Pawel Michalczak, Przemysław Łęgowski, Katarzyna Kruszka 
 Magdalena Mozgawa, Katarzyna Kruszka 


 Portuguese (pt) 
 Urbano José Ferreira Marques, Paulo Alexandre Romualdo, Rui C Correia, Ademar José Aguiar, João Frade, Rafael G Machado 
 Joana Tornada, Rui C Correia, Ademar José Aguiar, João Frade, Rafael G Machado 


 Portuguese (Brazil) (pt-br) 
 Antonio C C Marques, Rui Ogawa, Claudio Filho, Albino B Neto, Kleberth Santos , Jimie Almeida, Lindalva Santos (lisantoss) 
 Claudio Filho, Albino B Neto, Kleberth Santos, Lindalva Santos (lisantoss) 


 Punjabi (pa) 




 Romanian (ro) 




 Russian (ru) 
 Serg Bormant 



 Sängö (sg) 




 Serbian (sr) 
 Danilo, Grole 
 Grole 


 Shuswap (shs) 




 Sidama (dm) 




 Sinhala (si) 




 Slovenian (sl) 




 Slovakian (sk) 
 Michal Hriň (hrin) 
 Michal Hriň (hrin) 


 Somali (so) 




 Spanish (es) 
 Ricardo Berlasso (rgb-es): UI and Help files on Pootle, JZA 
 Ricardo Berlasso (rgb-es) 


 Swedish (sv) 
 Kent Åberg 



 Tajik (tg) 




 Tamil (ta) 
 Kadal Amutham 



 Tatar (tt) 




 Telugu (te) 




 Thai (th) 
 I Intaso 



 Tibetan (bo) 




 Tigrinya (ti) 




 Turkish (tr) 
 Mehmet Demir, Gökşin Akdeniz, Bahtiyar Samet Çovan, Ozan Ayten, Sehzade Karababa 


 Uyghur (ug) 
 Gheyret T kenji (coordinator), Sahran (translator) 
 Gheyret T kenji (coordinator), Sahran (translator) 


 Ukrainian (uk) 




 Urdu (urd) 




 Uzbek (uz) 




 Vietnamese (vi) 

buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2013-09-20 Thread buildbot
Hi! , The openoffice-fbsd-nightly builder has just completed a run

STATUS: Failure

 Build revision 1525064 on branch None

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-fbsd2_64bit

 Build results at: 
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/18

 Build reason was: forced: by IRC user arist on channel #asftest: here goes 
nuttin' - again..


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot






[CONF] Apache OpenOffice Community Marketing Campaign Material

2013-09-20 Thread Drew Jensen (Confluence)







Marketing Campaign Material
File attached by  Drew Jensen




ThreeUp_GI_rays2.pdf
(3.16 MB application/pdf)
-
Updated background graphics in center column



   
Stop watching space
|
Change email notification preferences

   View Attachments









[CONF] Apache OpenOffice Community Marketing Campaign Material

2013-09-20 Thread Drew Jensen (Confluence)







Marketing Campaign Material
File attached by  Drew Jensen




oRBS.pdf
(1.43 MB application/pdf)
-
New graphic layout for AOO4 Marketing material - proposal



   
Stop watching space
|
Change email notification preferences

   View Attachments









buildbot success in ASF Buildbot on aoo-w7ia2

2013-09-20 Thread buildbot
Hi! , The aoo-w7ia2 builder has just completed a run

STATUS: Success

 Build revision 1519381 on branch openoffice/branches/ia2

 Snapshot results at: http://ci.apache.org/projects/openoffice/

 Build using the ASF buildslave: bb-win7

 Build results at: http://ci.apache.org/builders/aoo-w7ia2/builds/242

 Build reason was: The Nightly scheduler named 'aoo-win7-ia2' triggered this 
build


 Yours Sincerely - The ASF Buildbot (http://ci.apache.org/)
--

 Join the bui...@apache.org mailing list for help with Buildbot