| c029db4c | 07-Oct-2017 |
Matthias Seidel |
#i127141# Corrected wrong translation in Windows installer (same as in Pootle) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1811435 13f79535-47bb-0310-9956-ffa450edef68 |
| 7be19ae7 | 07-Oct-2017 |
Matthias Seidel |
Cleaning up the database names for Windows installer git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1811425 13f79535-47bb-0310-9956-ffa450edef68 |
| 0e7411db | 03-Oct-2017 |
Matthias Seidel |
#i127538# Corrected wrong translation for "Basic" (same as in Pootle) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1811013 13f79535-47bb-0310-9956-ffa450edef68 |
| a1090ed2 | 02-Oct-2017 |
Matthias Seidel |
Fixed typo (existant -> existent) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810324 13f79535-47bb-0310-9956-ffa450edef68 |
| 2e259a7f | 01-Oct-2017 |
Matthias Seidel |
Minor change to dialog for Writer git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810279 13f79535-47bb-0310-9956-ffa450edef68 |
| 969b7f0a | 01-Oct-2017 |
Pedro Giffuni |
freebsd-powerpc: obvious fix. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810250 13f79535-47bb-0310-9956-ffa450edef68 |
| 9772ab10 | 01-Oct-2017 |
Pedro Giffuni |
freebsd-arm: obvious fix. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810249 13f79535-47bb-0310-9956-ffa450edef68 |
| 7f4c26e8 | 29-Sep-2017 |
Matthias Seidel |
Minor changes to Windows installer (SetupType) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810153 13f79535-47bb-0310-9956-ffa450edef68 |
| 14f5e98e | 29-Sep-2017 |
Don Lewis |
Pass SYSTEM_APACHE_COMMONS all the way down so that we don't try to package the non-existant commons-lang3-3.3.jar file if --with-system-apache-commons=yes was passed to configure.
Pass SYSTEM_APACHE_COMMONS all the way down so that we don't try to package the non-existant commons-lang3-3.3.jar file if --with-system-apache-commons=yes was passed to configure. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810071 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 9c6e9b7d | 29-Sep-2017 |
Don Lewis |
We don't need to build the apache-commons module if --with-system-apache-commons=yes was passed to configure. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810067 1
We don't need to build the apache-commons module if --with-system-apache-commons=yes was passed to configure. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810067 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| f8ac4166 | 28-Sep-2017 |
Don Lewis |
Fix build with modern boost which has dropped the old tr1 headers. Support for the native <complex> include file has been around on Linux since at least CentOS 5. git-svn-id: ht
Fix build with modern boost which has dropped the old tr1 headers. Support for the native <complex> include file has been around on Linux since at least CentOS 5. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1809957 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| b09dd3e7 | 27-Sep-2017 |
Matthias Seidel |
Minor change to dialog for Writer git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1809886 13f79535-47bb-0310-9956-ffa450edef68 |
| 3477e5ce | 26-Sep-2017 |
Matthias Seidel |
Minor changes to Windows SDK installer (MaintenanceType) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1809777 13f79535-47bb-0310-9956-ffa450edef68 |
| f750960c | 23-Sep-2017 |
Peter Kovacs |
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1809373 13f79535-47bb-0310-9956-ffa450edef68 |
| 1f8a0be0 | 20-Sep-2017 |
Damjan Jovanovic |
Revert r1808599; apparently we really do need Any.VOID instead of Java's null. Also fix one more place where this is the problem. (I wonder why. Seems like something that could be improved.)
Revert r1808599; apparently we really do need Any.VOID instead of Java's null. Also fix one more place where this is the problem. (I wonder why. Seems like something that could be improved.) Fix "Refresh Tables", which was making all tables disappear. Apparently we needed to actually re-read our tables, and deal with the fact that the OCatalog is disposed after the return. Further development is ongoing. Also make other null strings into empty strings like UNO requires. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808968 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| a91eb973 | 19-Sep-2017 |
Damjan Jovanovic |
When an unknown column is passed to ColumnContainer, which it will be when a new column is created, re-read it from the database. Strings in UNO can't be null. Ensure this is the case in
When an unknown column is passed to ColumnContainer, which it will be when a new column is created, re-read it from the database. Strings in UNO can't be null. Ensure this is the case in Column and SdbcxColumnDescriptor. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808960 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 10751405 | 19-Sep-2017 |
Damjan Jovanovic |
Add support for adding and deleting columns in Java's SDBCX tables, currently used by the PostgreSQL driver. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/
Add support for adding and deleting columns in Java's SDBCX tables, currently used by the PostgreSQL driver. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808824 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| c34b9ec6 | 19-Sep-2017 |
Damjan Jovanovic |
Implement XServiceInfo in all the Java SDBCX classes and standardize it to a common form. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@18
Implement XServiceInfo in all the Java SDBCX classes and standardize it to a common form. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808811 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| ac472dbc | 19-Sep-2017 |
Damjan Jovanovic |
More naming errors. There are no "Descriptions" in the SDBCX module, there are only "Descriptors". Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trun
More naming errors. There are no "Descriptions" in the SDBCX module, there are only "Descriptors". Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808810 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 5f867bfd | 19-Sep-2017 |
Damjan Jovanovic |
Fix a typo in the XServiceInfo implementation for main/connectivity/source/sdbcx/VIndexColumn.cxx. It's implementation/service names are com.sun.star.sdbcx.VIndexColumn and com.sun.s
Fix a typo in the XServiceInfo implementation for main/connectivity/source/sdbcx/VIndexColumn.cxx. It's implementation/service names are com.sun.star.sdbcx.VIndexColumn and com.sun.star.sdbcx.IndexColumn, not com.sun.star.sdbcx.VIndex and com.sun.star.sdbcx.Index. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808809 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| f9f0c9e8 | 18-Sep-2017 |
Damjan Jovanovic |
In buildName(), schema should be the empty string, instead of null. Add some JavaDoc for it, and use getClass().getName() for getImplementationName(), which is most accurate for Java.
In buildName(), schema should be the empty string, instead of null. Add some JavaDoc for it, and use getClass().getName() for getImplementationName(), which is most accurate for Java. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808736 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| a0758c89 | 17-Sep-2017 |
Matthias Seidel |
Corrected German translation git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808637 13f79535-47bb-0310-9956-ffa450edef68 |
| ff734828 | 17-Sep-2017 |
Matthias Seidel |
Minor changes to Windows installer (AdminChangeFolder) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808636 13f79535-47bb-0310-9956-ffa450edef68 |
| 0529ab72 | 17-Sep-2017 |
Damjan Jovanovic |
There is no need to use Any.VOID when Java's null gets translated to it automatically. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@18085
There is no need to use Any.VOID when Java's null gets translated to it automatically. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808599 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 68b6fe01 | 16-Sep-2017 |
Damjan Jovanovic |
Now that locking has been simplified, we can also delete the special factory create() methods on objects, and use constructors instead to simplify creation further. Patch by: me
Now that locking has been simplified, we can also delete the special factory create() methods on objects, and use constructors instead to simplify creation further. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1808526 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|