b39910bc | 15-Oct-2018 |
Matthias Seidel |
i125994 - Merge r1840936 from trunk Updated icons for macOS via BUGZ 125994 git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843951 13f79535-47bb-0310-9956-f
i125994 - Merge r1840936 from trunk Updated icons for macOS via BUGZ 125994 git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843951 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
464d3782 | 12-Oct-2018 |
Matthias Seidel |
Update graphics for macOS with new ASF logo git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843672 13f79535-47bb-0310-9956-ffa450edef68 |
4c90b644 | 12-Oct-2018 |
Peter Kovacs |
strimp.patch applied git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843629 13f79535-47bb-0310-9956-ffa450edef68 |
7b20d707 | 11-Oct-2018 |
Matthias Seidel |
i127875 - Merge r1837212 from trunk Fix SwCntntFrm::CalcLowers() so that it visits all on-page objects. SwCntntFrm::CalcLowers() walks the object tree walk and it assumes that the o
i127875 - Merge r1837212 from trunk Fix SwCntntFrm::CalcLowers() so that it visits all on-page objects. SwCntntFrm::CalcLowers() walks the object tree walk and it assumes that the objects visited will be at a monotonically increasing distance from the top of the page, so it terminates the walk once it encounters the first object below the bottom of the page. Even though the objects are vertically sorted in each branch of the tree, there is no guarantee that the order of the objects visited in the depth-first walk will be perfectly sorted vertically, so the walk may terminate before visiting all of the objects on the page. Fix this problem by pruning branches when they cross the lower page boundary and only terminating the walk once there are no longer any paths forward. Submitted by: truckman git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843573 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
17200258 | 11-Oct-2018 |
Matthias Seidel |
i127874 - Merge r1837765 from trunk nActiveCharPos can be less than mnMinCharPos if the ScriptItemize() call in UniscribeLayout::LayoutText() finds a mult-character script item that
i127874 - Merge r1837765 from trunk nActiveCharPos can be less than mnMinCharPos if the ScriptItemize() call in UniscribeLayout::LayoutText() finds a mult-character script item that starts in the leading context and overlaps into the start of the run. UniscribeLayout::LayoutText() drops the glyphs for the context characters, but does not (yet?) adjust the starting character position of the item. Since the text layout direction can't change in the middle of the offending script item, we can safely use the direction at the start of the run. Submitted by: truckman git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843572 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
7a3beb32 | 11-Oct-2018 |
Matthias Seidel |
Rollback to Rev. 1843088 due to build errors. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843571 13f79535-47bb-0310-9956-ffa450edef68 |
47721aa3 | 08-Oct-2018 |
Peter Kovacs |
Issue 127874 - fix bad potential invalid subscript bug when using Microsoft Uniscribe text layout API git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843111 13f79535
Issue 127874 - fix bad potential invalid subscript bug when using Microsoft Uniscribe text layout API git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843111 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
e3296b13 | 08-Oct-2018 |
Peter Kovacs |
Issue 127875 - fix a loop that visits all objects on a page so that all objects get visited git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843110 13f79535-47bb-0310
Issue 127875 - fix a loop that visits all objects on a page so that all objects get visited git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843110 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
670c6ce3 | 08-Oct-2018 |
Peter Kovacs |
Issue 127876 - unbreak ODK build with Java 8 git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843109 13f79535-47bb-0310-9956-ffa450edef68 |
64f932e6 | 08-Oct-2018 |
Peter Kovacs |
merged in: Issue 127887 - update bundled redland/raptor/rasqal git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843108 13f79535-47bb-0310-9956-ffa450edef68 |
996f785a | 07-Oct-2018 |
Peter Kovacs |
Issue 127886 - Upgraded bundled curl from 7.19.7 to 7.61.1 git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843088 13f79535-47bb-0310-9956-ffa450edef68 |
ba6c1353 | 07-Oct-2018 |
Matthias Seidel |
i127873 - Merge r1838291 from trunk Ignore the SP_FGROUP flag on shape records. Instead assume that the first shape in a shape group is the group shape. Add a new flag parameter to
i127873 - Merge r1838291 from trunk Ignore the SP_FGROUP flag on shape records. Instead assume that the first shape in a shape group is the group shape. Add a new flag parameter to SvxMSDffManager::ImportShape() to indicate the whether or not this is a group shape based on the calling context. Call SvxMSDffManager::ImportShape() directly from SvxMSDffManager::ImportGroup() instead of indirectly via SvxMSDffManager::ImportObj() to facilitate passing the context information. Don't call SvxMSDffManager::ProcessObj() from SvxMSDffManager::ImportShape() when processing a group shape. SvxMSDffManager::ImportObj() expects SvxMSDffManager::ImportShape() to return a pointer to an SdrObjGroup object in this case, and SvxMSDffManager::ProcessObj() may replace the SdrObjGroup object with some other type of shape object. Change some C-style SdrObjGroup* casts to dynamic_cast so that incorrect casts will create a NULL pointer and fail quickly rather than executing methods on an object of the wrong type and doing something possibly undefined. Submitted by: truckman git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843062 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
3fd51d8f | 07-Oct-2018 |
Matthias Seidel |
i127872 - Merge r1838292 from trunk When importing a Microsoft Office Drawing Binary File Format data stream, ignore properties with the bComplex flag set indicating they have data e
i127872 - Merge r1838292 from trunk When importing a Microsoft Office Drawing Binary File Format data stream, ignore properties with the bComplex flag set indicating they have data external to the property record if the indicated size of the data is larger than will fit in the containing property table record. DffPropSet::GetPropertyString() should return an empty string if the bComplex flag is not set since there is no data to return. Bail out of the loop that processes the array of properties early if we hit the end of the property table record. Limit the length of the property table record to the remaining size of the stream. Submitted by: truckman git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843061 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
50b0a8f7 | 06-Oct-2018 |
Matthias Seidel |
i116363 - Reverted Banner.bmp to old size git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1843011 13f79535-47bb-0310-9956-ffa450edef68 |
fa644f2a | 05-Oct-2018 |
Matthias Seidel |
i116363 - Don't stretch logo in Installation Wizard Additionally we now have the new ASF logo throughout the Windows installation. git-svn-id: https://svn.apache.org/repos/asf/openo
i116363 - Don't stretch logo in Installation Wizard Additionally we now have the new ASF logo throughout the Windows installation. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1842939 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
f62f38a5 | 18-Sep-2018 |
Matthias Seidel |
i118025 - Add locale data for Kabyle (kab-DZ) Added strings for building language packs on Windows. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1841202 1
i118025 - Add locale data for Kabyle (kab-DZ) Added strings for building language packs on Windows. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1841202 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
5db3c157 | 16-Sep-2018 |
Matthias Seidel |
i74793 - Removed Ukrainian (uk) from "noMSLocaleLangs" Including workarounds (NSIS) for Ukrainian and Arabic. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416
i74793 - Removed Ukrainian (uk) from "noMSLocaleLangs" Including workarounds (NSIS) for Ukrainian and Arabic. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1841035 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
06612678 | 16-Sep-2018 |
Matthias Seidel |
i126736 - fixed typos in systemactions.pm git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1841032 13f79535-47bb-0310-9956-ffa450edef68 |
85b44647 | 10-Sep-2018 |
Matthias Seidel |
Updated app icons for Windows, see: https://svn.apache.org/repos/asf/openoffice/ooo-site/trunk/content/ui/VisualDesign/gifs/Icons/OOo30_final_mimetype/icos/ git-svn-id: https://svn.apach
Updated app icons for Windows, see: https://svn.apache.org/repos/asf/openoffice/ooo-site/trunk/content/ui/VisualDesign/gifs/Icons/OOo30_final_mimetype/icos/ git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1840498 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
04395ea2 | 01-Sep-2018 |
Matthias Seidel |
i127770 - Include "XSLT Sample Filter" in default installation on Windows git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1839814 13f79535-47bb-0310-9956-ffa450edef68 |
a1f64329 | 31-Aug-2018 |
Jim Jagielski |
Assume that GCC 4.2.x and above are OK... git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1839777 13f79535-47bb-0310-9956-ffa450edef68 |
c53e9f27 | 31-Aug-2018 |
Jim Jagielski |
The gcc on CentOS5 (4.1.2) does not support Wno-array-bounds so disable it for all LINUX at present... TODO: Just disable for this compiler and not for all Linux git-svn-id
The gcc on CentOS5 (4.1.2) does not support Wno-array-bounds so disable it for all LINUX at present... TODO: Just disable for this compiler and not for all Linux git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1839776 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
6db05c5c | 29-Aug-2018 |
Jim Jagielski |
carbon copy of aoo trunk git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1839591 13f79535-47bb-0310-9956-ffa450edef68 |
c0695bd1 | 28-Aug-2018 |
Jim Jagielski |
update paths git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1839424 13f79535-47bb-0310-9956-ffa450edef68 |
b75e7cb3 | 28-Aug-2018 |
Matthias Seidel |
Fix for openssl 0.9.8.zh git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO416@1839422 13f79535-47bb-0310-9956-ffa450edef68 |