download.lst | 4 readlicense_oo/license/CREDITS.fodt | 3590 +++++----- sd/qa/unit/data/odp/tdf168109.fodp | 65 sd/qa/unit/import-tests2.cxx | 31 sw/inc/formatcontentcontrol.hxx | 4 sw/qa/extras/ooxmlexport/data/tdf168988_grabbagDatePicker.docx |binary sw/qa/extras/ooxmlexport/data/tdf169101_datePicker.docx |binary sw/qa/extras/ooxmlexport/ooxmlexport25.cxx | 27 sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx | 6 sw/qa/extras/tiledrendering/tiledrendering.cxx | 56 sw/source/core/crsr/datecontentcontrolbutton.cxx | 6 sw/source/core/doc/notxtfrm.cxx | 2 sw/source/core/txtnode/attrcontentcontrol.cxx | 41 sw/source/core/undo/undobj1.cxx | 4 sw/source/filter/ww8/docxattributeoutput.cxx | 33 sw/source/filter/ww8/wrtw8nds.cxx | 16 sw/source/writerfilter/dmapper/DomainMapper_Impl.cxx | 3 tools/source/fsys/urlobj.cxx | 14 xmloff/source/draw/ximpbody.cxx | 5 xmloff/source/draw/ximpnote.cxx | 17 xmloff/source/draw/ximpnote.hxx | 11 xmloff/source/draw/ximpshap.cxx | 2 xmloff/source/draw/ximpshap.hxx | 5 23 files changed, 2115 insertions(+), 1827 deletions(-)
New commits: commit 8a2fe048ed03a1f90b98f3e9f98e3fb583a0d9dc Author: Mike Kaganski <[email protected]> AuthorDate: Thu Feb 12 19:11:29 2026 +0500 Commit: Andras Timar <[email protected]> CommitDate: Fri Feb 13 15:41:23 2026 +0100 tdf#168109: Ignore draw:page-number attribute for notes' thumbnails ODF 1.4 Part 3 sect. 19.203 draw:page-number tells: > For thumbnails on notes pages, the value of this attribute is fixed > to the drawing page of a notes page. As further clarified in OASIS ODF TC call from 2025-11-24 for issue OFFICE-4178, that wording shall be improved to unambiguously point to exactly the drawing page of the respective notes page. This means, that for thumbnail of DrawingPage's notes page, the actual value of the attribute is unimportant. As the bugdoc shows, the attribute may be missing. It may also possibly have wrong number. In any case, we should not break the default correct reference established between the thumbnail object and respective DrawingPage, when thumbnail was created. This change implements just that. For SdXMLPageShapeContext, it adds a new method ignorePageNumber, which sets mnPageNumber to -1. Given that this value corresponds to draw:page-number, having XML type positiveInteger, this special value is safe and cannot coincide with any valid value there. Its meaning is "do not set the shape's page number", which will keep the mentioned original reference. ignorePageNumber is only called in the context of DrawingPage/notes page: the "ignore" flag is passed through SdXMLNotesContext from SdXMLDrawPageContext::createFastChildContext. For notes of master page, handled in SdXMLMasterPageContext::createFastChildContext, no change is done. Change-Id: I39ef16d4e0ceda89b38ee994c908157e93c119a2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199283 Reviewed-by: Mike Kaganski <[email protected]> Tested-by: Jenkins (cherry picked from commit 5a0d14eb62dcccfd8f6185b9f493d6e1ff3f4bf1) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199303 Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/sd/qa/unit/data/odp/tdf168109.fodp b/sd/qa/unit/data/odp/tdf168109.fodp new file mode 100644 index 000000000000..9a38821214a3 --- /dev/null +++ b/sd/qa/unit/data/odp/tdf168109.fodp @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.presentation"> + <office:styles> + <style:style style:name="standard" style:family="graphic"> + <style:graphic-properties draw:fill="none"/> + </style:style> + </office:styles> + <office:body> + <office:presentation> + <draw:page> + <draw:frame svg:width="20cm" svg:height="3cm" svg:x="5mm" svg:y="5mm" presentation:class="title"> + <draw:text-box> + <text:p>Slide One</text:p> + </draw:text-box> + </draw:frame> + <draw:frame svg:width="20cm" svg:height="9cm" svg:x="5mm" svg:y="4cm" presentation:class="outline"> + <draw:text-box> + <text:list> + <text:list-item> + <text:p>One</text:p> + </text:list-item> + <text:list-item> + <text:p>Two</text:p> + </text:list-item> + </text:list> + </draw:text-box> + </draw:frame> + <presentation:notes> + <!-- First case: the 'draw:page-number' attribute is missing --> + <draw:page-thumbnail svg:width="20cm" svg:height="11cm" svg:x="5mm" svg:y="5mm" presentation:class="page"/> + <draw:frame svg:width="20cm" svg:height="13cm" svg:x="5mm" svg:y="12cm"> + <draw:text-box/> + </draw:frame> + </presentation:notes> + </draw:page> + <draw:page> + <draw:frame svg:width="20cm" svg:height="3cm" svg:x="5mm" svg:y="5mm" presentation:class="title"> + <draw:text-box> + <text:p>Slide Two</text:p> + </draw:text-box> + </draw:frame> + <draw:frame svg:width="20cm" svg:height="9cm" svg:x="5mm" svg:y="4cm" presentation:class="outline"> + <draw:text-box> + <text:list> + <text:list-item> + <text:p>Foo</text:p> + </text:list-item> + <text:list-item> + <text:p>Bar</text:p> + </text:list-item> + </text:list> + </draw:text-box> + </draw:frame> + <presentation:notes> + <!-- Second case: the 'draw:page-number' attribute is wrong --> + <draw:page-thumbnail svg:width="20cm" svg:height="11cm" svg:x="5mm" svg:y="5mm" draw:page-number="1" presentation:class="page"/> + <draw:frame svg:width="20cm" svg:height="13cm" svg:x="5mm" svg:y="12cm"> + <draw:text-box/> + </draw:frame> + </presentation:notes> + </draw:page> + </office:presentation> + </office:body> +</office:document> \ No newline at end of file diff --git a/sd/qa/unit/import-tests2.cxx b/sd/qa/unit/import-tests2.cxx index cdae01a52184..5d534dc490a6 100644 --- a/sd/qa/unit/import-tests2.cxx +++ b/sd/qa/unit/import-tests2.cxx @@ -2298,6 +2298,37 @@ CPPUNIT_TEST_FIXTURE(SdImportTest2, testTdf169524) CPPUNIT_ASSERT_EQUAL(sal_Int32(0), nLeftMargin); } +CPPUNIT_TEST_FIXTURE(SdImportTest2, testTdf168109) +{ + createSdImpressDoc("odp/tdf168109.fodp"); + + // Slide 1 + { + auto xPage = getPage(0).queryThrow<presentation::XPresentationPage>(); + auto xNotesPage = xPage->getNotesPage(); + auto xThumbnail = getShape(0, xNotesPage); + auto xDescriptor = xThumbnail.queryThrow<drawing::XShapeDescriptor>(); + + CPPUNIT_ASSERT_EQUAL(u"com.sun.star.presentation.PageShape"_ustr, + xDescriptor->getShapeType()); + CPPUNIT_ASSERT_EQUAL(uno::Any(sal_Int32(1)), + xThumbnail->getPropertyValue(u"PageNumber"_ustr)); + } + + // Slide 2 + { + auto xPage = getPage(1).queryThrow<presentation::XPresentationPage>(); + auto xNotesPage = xPage->getNotesPage(); + auto xThumbnail = getShape(0, xNotesPage); + auto xDescriptor = xThumbnail.queryThrow<drawing::XShapeDescriptor>(); + + CPPUNIT_ASSERT_EQUAL(u"com.sun.star.presentation.PageShape"_ustr, + xDescriptor->getShapeType()); + CPPUNIT_ASSERT_EQUAL(uno::Any(sal_Int32(2)), + xThumbnail->getPropertyValue(u"PageNumber"_ustr)); + } +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/draw/ximpbody.cxx b/xmloff/source/draw/ximpbody.cxx index f1f19a156ffa..591832735414 100644 --- a/xmloff/source/draw/ximpbody.cxx +++ b/xmloff/source/draw/ximpbody.cxx @@ -247,8 +247,9 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > SdXMLDrawPageContext: uno::Reference< drawing::XDrawPage > xNotesDrawPage = xPresPage->getNotesPage(); if(xNotesDrawPage.is()) { - // presentation:notes inside draw:page context - return new SdXMLNotesContext( GetSdImport(), xAttrList, xNotesDrawPage); + // presentation:notes inside draw:page context. Inside notes, thumbnails + // are fixed to this page, and actual page number attribute must be ignored + return new SdXMLNotesContext(GetSdImport(), xAttrList, xNotesDrawPage, true); } } } diff --git a/xmloff/source/draw/ximpnote.cxx b/xmloff/source/draw/ximpnote.cxx index d855e85bf4ad..9035648cb9ed 100644 --- a/xmloff/source/draw/ximpnote.cxx +++ b/xmloff/source/draw/ximpnote.cxx @@ -18,6 +18,7 @@ */ #include "ximpnote.hxx" +#include "ximpshap.hxx" #include <xmloff/xmlnamespace.hxx> using namespace ::com::sun::star; @@ -25,8 +26,9 @@ using namespace ::xmloff::token; SdXMLNotesContext::SdXMLNotesContext( SdXMLImport& rImport, const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttrList, - uno::Reference<drawing::XShapes> const& rShapes) + uno::Reference<drawing::XShapes> const& rShapes, bool ignorePageNumberInThumbnail) : SdXMLGenericPageContext(rImport, xAttrList, rShapes) + , mbIgnorePageNumberInThumbnail(ignorePageNumberInThumbnail) { OUString sStyleName, sPageMasterName; @@ -89,4 +91,17 @@ SdXMLNotesContext::SdXMLNotesContext( SdXMLNotesContext::~SdXMLNotesContext() {} +uno::Reference<xml::sax::XFastContextHandler> SdXMLNotesContext::createFastChildContext( + sal_Int32 nElement, const uno::Reference<xml::sax::XFastAttributeList>& xAttrList) +{ + auto pContext = SdXMLGenericPageContext::createFastChildContext(nElement, xAttrList); + if (nElement == XML_ELEMENT(DRAW, XML_PAGE_THUMBNAIL) && mbIgnorePageNumberInThumbnail) + { + assert(dynamic_cast<SdXMLPageShapeContext*>(pContext.get())); + auto pPageShapeContext = static_cast<SdXMLPageShapeContext*>(pContext.get()); + pPageShapeContext->ignorePageNumber(); + } + return pContext; +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/draw/ximpnote.hxx b/xmloff/source/draw/ximpnote.hxx index d7fe276b84eb..2048fc36ea62 100644 --- a/xmloff/source/draw/ximpnote.hxx +++ b/xmloff/source/draw/ximpnote.hxx @@ -29,8 +29,17 @@ class SdXMLNotesContext : public SdXMLGenericPageContext public: SdXMLNotesContext( SdXMLImport& rImport, const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList, - css::uno::Reference< css::drawing::XShapes > const & rShapes); + css::uno::Reference< css::drawing::XShapes > const & rShapes, + bool ignorePageNumberInThumbnail = false); virtual ~SdXMLNotesContext() override; + + // XFastContextHandler + virtual css::uno::Reference<css::xml::sax::XFastContextHandler> SAL_CALL createFastChildContext( + sal_Int32 nElement, + const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttrList) override; + +private: + bool mbIgnorePageNumberInThumbnail; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx index 0ff3382049b1..4f952649b860 100644 --- a/xmloff/source/draw/ximpshap.cxx +++ b/xmloff/source/draw/ximpshap.cxx @@ -2247,7 +2247,7 @@ void SdXMLPageShapeContext::startFastElement (sal_Int32 nElement, SetTransformation(); uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY); - if(xPropSet.is()) + if (xPropSet.is() && mnPageNumber >= 0) // mnPageNumber < 0 means "ignore" { uno::Reference< beans::XPropertySetInfo > xPropSetInfo( xPropSet->getPropertySetInfo() ); static constexpr OUString aPageNumberStr(u"PageNumber"_ustr); diff --git a/xmloff/source/draw/ximpshap.hxx b/xmloff/source/draw/ximpshap.hxx index 6a00cb252e5f..640cf26fdb5b 100644 --- a/xmloff/source/draw/ximpshap.hxx +++ b/xmloff/source/draw/ximpshap.hxx @@ -340,7 +340,7 @@ public: virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override; }; -// draw:page context +// draw:thumbnail context class SdXMLPageShapeContext : public SdXMLShapeContext { @@ -359,6 +359,9 @@ public: // this is called from the parent group for each unparsed attribute in the attribute list virtual bool processAttribute( const sax_fastparser::FastAttributeList::FastAttributeIter & ) override; + + // Do not try to set page number to the thumbnail (keep the default association) + void ignorePageNumber() { mnPageNumber = -1; } }; // draw:caption context commit af29678cc75c52cec4394ad2bc8a0e1d01e836c5 Author: Christian Lohmaier <[email protected]> AuthorDate: Thu Feb 12 23:13:28 2026 +0100 Commit: Andras Timar <[email protected]> CommitDate: Fri Feb 13 15:41:23 2026 +0100 update credits Change-Id: Ibb6000f99276ce4622e58d5144ffef1969694517 (cherry picked from commit 71a936ab275c44e56db2dd9e9a9916b10ea70900) diff --git a/readlicense_oo/license/CREDITS.fodt b/readlicense_oo/license/CREDITS.fodt index 637e79a74f67..72fdb8a300ee 100644 --- a/readlicense_oo/license/CREDITS.fodt +++ b/readlicense_oo/license/CREDITS.fodt @@ -1,30 +1,31 @@ <?xml version="1.0" encoding="UTF-8"?> <office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:c alcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns: meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.text"> - <office:meta><dc:title>Credits » LibreOffice</dc:title><meta:keyword>Credits</meta:keyword><meta:keyword>contributors</meta:keyword><meta:keyword>coders</meta:keyword><meta:keyword>developers</meta:keyword><dc:description>Credits for the LibreOffice development/coding.</dc:description><meta:generator>LibreOffice/25.8.4.2$Linux_X86_64 LibreOffice_project/290daaa01b999472f0c7a3890eb6a550fd74c6df</meta:generator><dc:date>2012-02-20T22:17:18.060000000</dc:date><meta:editing-duration>PT14M12S</meta:editing-duration><meta:editing-cycles>3</meta:editing-cycles><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="2" meta:paragraph-count="5232" meta:word-count="19822" meta:character-count="143726" meta:non-whitespace-character-count="126148"/><meta:user-defined meta:name="google-site-verification">JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA</meta:user-defined></office:meta> + <office:meta><dc:title>Credits » LibreOffice</dc:title><meta:keyword>Credits</meta:keyword><meta:keyword>contributors</meta:keyword><meta:keyword>coders</meta:keyword><meta:keyword>developers</meta:keyword><dc:description>Credits for the LibreOffice development/coding.</dc:description><meta:generator>LibreOffice/26.2.0.3$Linux_X86_64 LibreOffice_project/afbbd0df0edb6d40b450b0337ac646b0913a760c</meta:generator><dc:date>2012-02-20T22:17:18.060000000</dc:date><meta:editing-duration>PT14M12S</meta:editing-duration><meta:editing-cycles>3</meta:editing-cycles><meta:document-statistic meta:table-count="5" meta:image-count="1" meta:object-count="0" meta:page-count="2" meta:paragraph-count="5242" meta:word-count="19858" meta:character-count="143975" meta:non-whitespace-character-count="126365"/><meta:user-defined meta:name="google-site-verification">JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA</meta:user-defined></office:meta> <office:settings> <config:config-item-set config:name="ooo:view-settings"> - <config:config-item config:name="ViewAreaTop" config:type="long">3036</config:config-item> + <config:config-item config:name="ViewAreaTop" config:type="long">1969572</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">501</config:config-item> - <config:config-item config:name="ViewAreaWidth" config:type="long">27236</config:config-item> - <config:config-item config:name="ViewAreaHeight" config:type="long">25261</config:config-item> + <config:config-item config:name="ViewAreaWidth" config:type="long">27271</config:config-item> + <config:config-item config:name="ViewAreaHeight" config:type="long">25296</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">true</config:config-item> <config:config-item-map-indexed config:name="Views"> <config:config-item-map-entry> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item> - <config:config-item config:name="ViewLeft" config:type="long">3323</config:config-item> - <config:config-item config:name="ViewTop" config:type="long">3434</config:config-item> + <config:config-item config:name="ViewLeft" config:type="long">24216</config:config-item> + <config:config-item config:name="ViewTop" config:type="long">1994179</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">501</config:config-item> - <config:config-item config:name="VisibleTop" config:type="long">3036</config:config-item> - <config:config-item config:name="VisibleRight" config:type="long">27735</config:config-item> - <config:config-item config:name="VisibleBottom" config:type="long">28295</config:config-item> + <config:config-item config:name="VisibleTop" config:type="long">1969572</config:config-item> + <config:config-item config:name="VisibleRight" config:type="long">27771</config:config-item> + <config:config-item config:name="VisibleBottom" config:type="long">1994867</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item> + <config:config-item config:name="WindowState" config:type="string">0,0,2055,1879;1;,,,;</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="LegacySingleLineFontwork" config:type="boolean">false</config:config-item> <config:config-item config:name="ConnectorUseSnapRect" config:type="boolean">false</config:config-item> @@ -42,6 +43,7 @@ <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintEmptyPages" config:type="boolean">false</config:config-item> + <config:config-item config:name="AdjustTableLineHeightsToGridHeight" config:type="boolean">true</config:config-item> <config:config-item config:name="BalanceSpacesAndIdeographicSpaces" config:type="boolean">false</config:config-item> <config:config-item config:name="MsWordCompGridMetrics" config:type="boolean">false</config:config-item> <config:config-item config:name="PaintHellOverHeaderFooter" config:type="boolean">false</config:config-item> @@ -147,6 +149,7 @@ <config:config-item config:name="NoGapAfterNoteNumber" config:type="boolean">false</config:config-item> <config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item> <config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item> + <config:config-item config:name="HiddenParagraphMarkPerLineProperties" config:type="boolean">false</config:config-item> <config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item> <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item> <config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item> @@ -157,7 +160,7 @@ <config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item> <config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/> <config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item> - <config:config-item config:name="Rsid" config:type="int">15048688</config:config-item> + <config:config-item config:name="Rsid" config:type="int">15112712</config:config-item> <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item> <config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">false</config:config-item> @@ -380,24 +383,24 @@ </office:styles> <office:automatic-styles> <style:style style:name="Tabelle1" style:family="table"> - <style:table-properties style:width="26.042cm" table:align="left"/> + <style:table-properties style:width="26.636cm" table:align="left"/> </style:style> <style:style style:name="Tabelle1.A" style:family="table-column"> - <style:table-column-properties style:column-width="6.212cm"/> + <style:table-column-properties style:column-width="6.899cm"/> </style:style> <style:style style:name="Tabelle1.B" style:family="table-column"> - <style:table-column-properties style:column-width="6.735cm"/> + <style:table-column-properties style:column-width="6.193cm"/> </style:style> <style:style style:name="Tabelle1.C" style:family="table-column"> - <style:table-column-properties style:column-width="6.144cm"/> + <style:table-column-properties style:column-width="6.735cm"/> </style:style> <style:style style:name="Tabelle1.D" style:family="table-column"> - <style:table-column-properties style:column-width="6.951cm"/> + <style:table-column-properties style:column-width="6.81cm"/> </style:style> <style:style style:name="Tabelle1.A1" style:family="table-cell"> <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/> </style:style> - <style:style style:name="Tabelle1.D508" style:family="table-cell"> + <style:style style:name="Tabelle1.D509" style:family="table-cell"> <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/> </style:style> <style:style style:name="Tabelle2" style:family="table"> @@ -461,23 +464,26 @@ <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/> </style:style> <style:style style:name="Tabelle5" style:family="table"> - <style:table-properties style:width="26.954cm" table:align="left"/> + <style:table-properties style:width="26.989cm" table:align="left"/> </style:style> <style:style style:name="Tabelle5.A" style:family="table-column"> - <style:table-column-properties style:column-width="8.216cm"/> + <style:table-column-properties style:column-width="6.316cm"/> </style:style> <style:style style:name="Tabelle5.B" style:family="table-column"> - <style:table-column-properties style:column-width="5.336cm"/> + <style:table-column-properties style:column-width="7.594cm"/> </style:style> <style:style style:name="Tabelle5.C" style:family="table-column"> - <style:table-column-properties style:column-width="5.819cm"/> + <style:table-column-properties style:column-width="5.546cm"/> </style:style> <style:style style:name="Tabelle5.D" style:family="table-column"> - <style:table-column-properties style:column-width="7.583cm"/> + <style:table-column-properties style:column-width="7.534cm"/> </style:style> <style:style style:name="Tabelle5.A1" style:family="table-cell"> <style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none"/> </style:style> + <style:style style:name="Tabelle5.C755" style:family="table-cell"> + <style:table-cell-properties fo:padding="0.049cm" fo:border="none"/> + </style:style> <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="HTML"> <style:paragraph-properties style:page-number="auto"/> <style:text-properties officeooo:paragraph-rsid="00af6e70"/> @@ -860,7 +866,7 @@ </draw:frame> <text:section text:style-name="Sect1" text:name="BgContainer"> <text:p text:style-name="P1"><text:span text:style-name="T1">Credits</text:span></text:p> - <text:p text:style-name="Text_20_body">2161 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2026-01-27 16:02:47.</text:p> + <text:p text:style-name="Text_20_body">2165 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2026-02-12 17:42:21.</text:p> <text:p text:style-name="Text_20_body"><text:span text:style-name="T2">*</text:span> marks developers whose first contributions happened after 2010-09-28.</text:p> <text:h text:style-name="P2" text:outline-level="2">Developers committing code since 2010-09-28</text:h> <table:table table:name="Tabelle1" table:style-name="Tabelle1"> @@ -873,7 +879,7 @@ <text:p text:style-name="Table_20_Contents">Ruediger Timm<text:line-break/>Commits: 82464<text:line-break/>Joined: 2000-10-10</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Caolán McNamara<text:line-break/>Commits: 37393<text:line-break/>Joined: 2000-10-10</text:p> + <text:p text:style-name="Table_20_Contents">Caolán McNamara<text:line-break/>Commits: 37409<text:line-break/>Joined: 2000-10-10</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Kurt Zenker<text:line-break/>Commits: 31752<text:line-break/>Joined: 2000-09-25</text:p> @@ -893,18 +899,18 @@ <text:p text:style-name="Table_20_Contents">Stephan Bergmann<text:line-break/>Commits: 21530<text:line-break/>Joined: 2000-10-04</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Noel Grandin<text:line-break/>Commits: 20685<text:line-break/>Joined: <text:span text:style-name="T3">2011-12-12</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Noel Grandin<text:line-break/>Commits: 20731<text:line-break/>Joined: <text:span text:style-name="T3">2011-12-12</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Miklos Vajna<text:line-break/>Commits: 10426<text:line-break/>Joined: 2010-07-29</text:p> + <text:p text:style-name="Table_20_Contents">Miklos Vajna<text:line-break/>Commits: 10446<text:line-break/>Joined: 2010-07-29</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Ivo Hinkelmann<text:line-break/>Commits: 9480<text:line-break/>Joined: 2002-09-09</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Tor Lillqvist<text:line-break/>Commits: 9231<text:line-break/>Joined: 2010-03-23</text:p> + <text:p text:style-name="Table_20_Contents">Tor Lillqvist<text:line-break/>Commits: 9232<text:line-break/>Joined: 2010-03-23</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Michael Stahl<text:line-break/>Commits: 8681<text:line-break/>Joined: 2008-06-16</text:p> @@ -918,7 +924,7 @@ <text:p text:style-name="Table_20_Contents">Eike Rathke<text:line-break/>Commits: 5398<text:line-break/>Joined: 2000-10-11</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Markus Mohrhard<text:line-break/>Commits: 5221<text:line-break/>Joined: <text:span text:style-name="T3">2011-03-17</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Markus Mohrhard<text:line-break/>Commits: 5230<text:line-break/>Joined: <text:span text:style-name="T3">2011-03-17</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Frank Schoenheit [fs]<text:line-break/>Commits: 5008<text:line-break/>Joined: 2000-09-19</text:p> @@ -926,21 +932,21 @@ </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mike Kaganski<text:line-break/>Commits: 4745<text:line-break/>Joined: <text:span text:style-name="T3">2015-04-26</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mike Kaganski<text:line-break/>Commits: 4787<text:line-break/>Joined: <text:span text:style-name="T3">2015-04-26</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Andrea Gelmini<text:line-break/>Commits: 4526<text:line-break/>Joined: <text:span text:style-name="T3">2014-10-30</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Andrea Gelmini<text:line-break/>Commits: 4555<text:line-break/>Joined: <text:span text:style-name="T3">2014-10-30</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Michael Weghorn<text:line-break/>Commits: 4398<text:line-break/>Joined: <text:span text:style-name="T3">2014-09-10</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Michael Weghorn<text:line-break/>Commits: 4529<text:line-break/>Joined: <text:span text:style-name="T3">2014-09-10</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Xisco Fauli<text:line-break/>Commits: 4045<text:line-break/>Joined: <text:span text:style-name="T3">2011-02-06</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Xisco Fauli<text:line-break/>Commits: 4105<text:line-break/>Joined: <text:span text:style-name="T3">2011-02-06</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Julien Nabet<text:line-break/>Commits: 4026<text:line-break/>Joined: <text:span text:style-name="T3">2010-11-04</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Julien Nabet<text:line-break/>Commits: 4029<text:line-break/>Joined: <text:span text:style-name="T3">2010-11-04</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tomaž Vajngerl<text:line-break/>Commits: 3795<text:line-break/>Joined: <text:span text:style-name="T3">2012-06-02</text:span></text:p> @@ -971,10 +977,10 @@ <text:p text:style-name="Table_20_Contents">Mathias Bauer<text:line-break/>Commits: 2580<text:line-break/>Joined: 2000-09-20</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Michael Meeks<text:line-break/>Commits: 2543<text:line-break/>Joined: 2004-08-05</text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Olivier Hallot<text:line-break/>Commits: 2546<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-25</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Olivier Hallot<text:line-break/>Commits: 2540<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-25</text:span></text:p> + <text:p text:style-name="Table_20_Contents">Michael Meeks<text:line-break/>Commits: 2543<text:line-break/>Joined: 2004-08-05</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Bjoern Michaelsen<text:line-break/>Commits: 2510<text:line-break/>Joined: 2009-10-14</text:p> @@ -988,7 +994,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Thomas Arnhold<text:line-break/>Commits: 2176<text:line-break/>Joined: <text:span text:style-name="T3">2011-01-16</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Andras Timar<text:line-break/>Commits: 2095<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-02</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Andras Timar<text:line-break/>Commits: 2098<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-02</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Philipp Lohmann [pl]<text:line-break/>Commits: 2089<text:line-break/>Joined: 2000-09-21</text:p> @@ -1010,10 +1016,10 @@ </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Takeshi Abe<text:line-break/>Commits: 1486<text:line-break/>Joined: <text:span text:style-name="T3">2010-11-08</text:span></text:p> + <text:p text:style-name="Table_20_Contents">Christian Lohmaier<text:line-break/>Commits: 1489<text:line-break/>Joined: 2008-06-01</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Christian Lohmaier<text:line-break/>Commits: 1483<text:line-break/>Joined: 2008-06-01</text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Takeshi Abe<text:line-break/>Commits: 1486<text:line-break/>Joined: <text:span text:style-name="T3">2010-11-08</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Matteo Casalin<text:line-break/>Commits: 1476<text:line-break/>Joined: <text:span text:style-name="T3">2011-11-13</text:span></text:p> @@ -1024,7 +1030,7 @@ </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Szymon Kłos<text:line-break/>Commits: 1356<text:line-break/>Joined: <text:span text:style-name="T3">2014-03-22</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Szymon Kłos<text:line-break/>Commits: 1357<text:line-break/>Joined: <text:span text:style-name="T3">2014-03-22</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Samuel Mehrbrodt<text:line-break/>Commits: 1350<text:line-break/>Joined: <text:span text:style-name="T3">2011-06-08</text:span></text:p> @@ -1044,10 +1050,10 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jan-Marek Glogowski<text:line-break/>Commits: 1232<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-14</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>andreas kainz<text:line-break/>Commits: 1228<text:line-break/>Joined: <text:span text:style-name="T3">2015-03-18</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tamás Zolnai<text:line-break/>Commits: 1229<text:line-break/>Joined: <text:span text:style-name="T3">2012-08-06</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tamás Zolnai<text:line-break/>Commits: 1227<text:line-break/>Joined: <text:span text:style-name="T3">2012-08-06</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>andreas kainz<text:line-break/>Commits: 1228<text:line-break/>Joined: <text:span text:style-name="T3">2015-03-18</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> @@ -1111,10 +1117,10 @@ <text:p text:style-name="Table_20_Contents">Mikhail Voytenko<text:line-break/>Commits: 793<text:line-break/>Joined: 2001-01-16</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Carsten Driesner<text:line-break/>Commits: 748<text:line-break/>Joined: 2000-10-06</text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 767<text:line-break/>Joined: <text:span text:style-name="T3">2018-04-21</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Justin Luth<text:line-break/>Commits: 747<text:line-break/>Joined: <text:span text:style-name="T3">2018-04-21</text:span></text:p> + <text:p text:style-name="Table_20_Contents">Carsten Driesner<text:line-break/>Commits: 748<text:line-break/>Joined: 2000-10-06</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Joachim Lingner<text:line-break/>Commits: 745<text:line-break/>Joined: 2000-10-05</text:p> @@ -1136,16 +1142,16 @@ </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Zdeněk Crhonek<text:line-break/>Commits: 714<text:line-break/>Joined: <text:span text:style-name="T3">2016-05-19</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 717<text:line-break/>Joined: <text:span text:style-name="T3">2017-04-16</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 714<text:line-break/>Joined: <text:span text:style-name="T3">2017-04-16</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Zdeněk Crhonek<text:line-break/>Commits: 714<text:line-break/>Joined: <text:span text:style-name="T3">2016-05-19</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Joerg Skottke [jsk]<text:line-break/>Commits: 678<text:line-break/>Joined: 2008-06-17</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 672<text:line-break/>Joined: <text:span text:style-name="T3">2016-10-06</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 675<text:line-break/>Joined: <text:span text:style-name="T3">2016-10-06</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> @@ -1209,7 +1215,7 @@ <text:p text:style-name="Table_20_Contents">Andreas Bregas<text:line-break/>Commits: 470<text:line-break/>Joined: 2000-09-25</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 466<text:line-break/>Joined: <text:span text:style-name="T3">2013-10-12</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jean-Pierre Ledure<text:line-break/>Commits: 468<text:line-break/>Joined: <text:span text:style-name="T3">2013-10-12</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Henry Castro<text:line-break/>Commits: 417<text:line-break/>Joined: <text:span text:style-name="T3">2015-01-09</text:span></text:p> @@ -1229,7 +1235,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Rafael Lima<text:line-break/>Commits: 399<text:line-break/>Joined: <text:span text:style-name="T3">2020-11-13</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Bogdan Buzea<text:line-break/>Commits: 393<text:line-break/>Joined: <text:span text:style-name="T3">2022-11-01</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Bogdan Buzea<text:line-break/>Commits: 394<text:line-break/>Joined: <text:span text:style-name="T3">2022-11-01</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> @@ -1237,10 +1243,10 @@ <text:p text:style-name="Table_20_Contents">Dirk Voelzke<text:line-break/>Commits: 392<text:line-break/>Joined: 2000-11-27</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Laurent BP<text:line-break/>Commits: 389<text:line-break/>Joined: <text:span text:style-name="T3">2011-08-31</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Arnaud VERSINI<text:line-break/>Commits: 389<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-05</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Arnaud Versini<text:line-break/>Commits: 386<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-05</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Laurent BP<text:line-break/>Commits: 389<text:line-break/>Joined: <text:span text:style-name="T3">2011-08-31</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ivan Timofeev<text:line-break/>Commits: 380<text:line-break/>Joined: <text:span text:style-name="T3">2011-09-16</text:span></text:p> @@ -1265,10 +1271,10 @@ <text:p text:style-name="Table_20_Contents">Matthias Huetsch [mhu]<text:line-break/>Commits: 360<text:line-break/>Joined: 2000-09-28</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Andreas Heinisch<text:line-break/>Commits: 343<text:line-break/>Joined: <text:span text:style-name="T3">2019-05-13</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Andreas Heinisch<text:line-break/>Commits: 348<text:line-break/>Joined: <text:span text:style-name="T3">2019-05-13</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Stanislav Horacek<text:line-break/>Commits: 338<text:line-break/>Joined: <text:span text:style-name="T3">2012-12-09</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Stanislav Horacek<text:line-break/>Commits: 341<text:line-break/>Joined: <text:span text:style-name="T3">2012-12-09</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Patrick Luby<text:line-break/>Commits: 335<text:line-break/>Joined: 2000-09-21</text:p> @@ -1279,7 +1285,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>David Ostrovsky<text:line-break/>Commits: 334<text:line-break/>Joined: <text:span text:style-name="T3">2012-04-01</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Regina Henschel<text:line-break/>Commits: 316<text:line-break/>Joined: <text:span text:style-name="T3">2010-11-04</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Regina Henschel<text:line-break/>Commits: 318<text:line-break/>Joined: <text:span text:style-name="T3">2010-11-04</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Radek Doulik<text:line-break/>Commits: 305<text:line-break/>Joined: 2010-05-03</text:p> @@ -1335,7 +1341,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Winfried Donkers<text:line-break/>Commits: 217<text:line-break/>Joined: <text:span text:style-name="T3">2011-11-11</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Dennis Francis<text:line-break/>Commits: 213<text:line-break/>Joined: <text:span text:style-name="T3">2018-11-15</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Dennis Francis<text:line-break/>Commits: 217<text:line-break/>Joined: <text:span text:style-name="T3">2018-11-15</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tamas Bunth<text:line-break/>Commits: 203<text:line-break/>Joined: <text:span text:style-name="T3">2016-03-08</text:span></text:p> @@ -1349,7 +1355,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Arkadiy Illarionov<text:line-break/>Commits: 201<text:line-break/>Joined: <text:span text:style-name="T3">2017-01-15</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Gülşah Köse<text:line-break/>Commits: 194<text:line-break/>Joined: <text:span text:style-name="T3">2015-03-14</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Gülşah Köse<text:line-break/>Commits: 195<text:line-break/>Joined: <text:span text:style-name="T3">2015-03-14</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jacobo Aragunde Pérez<text:line-break/>Commits: 192<text:line-break/>Joined: <text:span text:style-name="T3">2013-09-25</text:span></text:p> @@ -1369,29 +1375,29 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Pranam Lashkari<text:line-break/>Commits: 185<text:line-break/>Joined: <text:span text:style-name="T3">2020-04-03</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Hossein<text:line-break/>Commits: 182<text:line-break/>Joined: <text:span text:style-name="T3">2021-06-29</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Stephan Bergmann<text:line-break/>Commits: 183<text:line-break/>Joined: <text:span text:style-name="T3">2025-06-18</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tünde Tóth<text:line-break/>Commits: 178<text:line-break/>Joined: <text:span text:style-name="T3">2019-03-14</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Hossein<text:line-break/>Commits: 182<text:line-break/>Joined: <text:span text:style-name="T3">2021-06-29</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>François Tigeot<text:line-break/>Commits: 176<text:line-break/>Joined: <text:span text:style-name="T3">2011-01-31</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Aron Budea<text:line-break/>Commits: 180<text:line-break/>Joined: <text:span text:style-name="T3">2014-12-22</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Aron Budea<text:line-break/>Commits: 175<text:line-break/>Joined: <text:span text:style-name="T3">2014-12-22</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tünde Tóth<text:line-break/>Commits: 178<text:line-break/>Joined: <text:span text:style-name="T3">2019-03-14</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tibor Nagy<text:line-break/>Commits: 172<text:line-break/>Joined: <text:span text:style-name="T3">2020-04-01</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>François Tigeot<text:line-break/>Commits: 176<text:line-break/>Joined: <text:span text:style-name="T3">2011-01-31</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Philipp Riemer<text:line-break/>Commits: 171<text:line-break/>Joined: <text:span text:style-name="T3">2012-05-25</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tibor Nagy<text:line-break/>Commits: 172<text:line-break/>Joined: <text:span text:style-name="T3">2020-04-01</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Stephan Bergmann<text:line-break/>Commits: 166<text:line-break/>Joined: <text:span text:style-name="T3">2025-06-18</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Philipp Riemer<text:line-break/>Commits: 171<text:line-break/>Joined: <text:span text:style-name="T3">2012-05-25</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 165<text:line-break/>Joined: <text:span text:style-name="T3">2018-07-05</text:span></text:p> @@ -1416,10 +1422,10 @@ </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Sarper Akdemir<text:line-break/>Commits: 150<text:line-break/>Joined: <text:span text:style-name="T3">2020-01-26</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jonathan Clark<text:line-break/>Commits: 151<text:line-break/>Joined: <text:span text:style-name="T3">2024-04-12</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jonathan Clark<text:line-break/>Commits: 146<text:line-break/>Joined: <text:span text:style-name="T3">2024-04-12</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Sarper Akdemir<text:line-break/>Commits: 150<text:line-break/>Joined: <text:span text:style-name="T3">2020-01-26</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Gregor Hartmann<gh<text:line-break/>Commits: 141<text:line-break/>Joined: 2000-10-12</text:p> @@ -1433,7 +1439,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tomáš Chvátal<text:line-break/>Commits: 140<text:line-break/>Joined: <text:span text:style-name="T3">2011-07-27</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Alain Romedenne<text:line-break/>Commits: 139<text:line-break/>Joined: <text:span text:style-name="T3">2021-02-17</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Alain Romedenne<text:line-break/>Commits: 140<text:line-break/>Joined: <text:span text:style-name="T3">2021-02-17</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Artur Dryomov<text:line-break/>Commits: 137<text:line-break/>Joined: <text:span text:style-name="T3">2013-03-14</text:span></text:p> @@ -1443,6 +1449,9 @@ </table:table-cell> </table:table-row> <table:table-row> + <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 134<text:line-break/>Joined: <text:span text:style-name="T3">2025-06-27</text:span></text:p> + </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Serge Krot<text:line-break/>Commits: 132<text:line-break/>Joined: <text:span text:style-name="T3">2015-10-25</text:span></text:p> </table:table-cell> @@ -1452,11 +1461,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Dante DM<text:line-break/>Commits: 132<text:line-break/>Joined: <text:span text:style-name="T3">2020-06-22</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>panoskorovesis<text:line-break/>Commits: 131<text:line-break/>Joined: <text:span text:style-name="T3">2021-06-09</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jesús Corrius<text:line-break/>Commits: 130<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-07</text:span></text:p> </table:table-cell> @@ -1466,11 +1475,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Philipp Weissenbacher<text:line-break/>Commits: 129<text:line-break/>Joined: <text:span text:style-name="T3">2011-10-28</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Helge Delfs [hde]<text:line-break/>Commits: 126<text:line-break/>Joined: 2009-07-28</text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ariel Constenla-Haile<text:line-break/>Commits: 126<text:line-break/>Joined: <text:span text:style-name="T3">2012-01-16</text:span></text:p> </table:table-cell> @@ -1480,11 +1489,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Takashi Ono<text:line-break/>Commits: 122<text:line-break/>Joined: 2009-12-10</text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Laurent Balland<text:line-break/>Commits: 120<text:line-break/>Joined: <text:span text:style-name="T3">2022-06-19</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Sebastian Spaeth<text:line-break/>Commits: 119<text:line-break/>Joined: <text:span text:style-name="T3">2010-09-28</text:span></text:p> </table:table-cell> @@ -1494,16 +1503,13 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Dr. David Alan Gilbert<text:line-break/>Commits: 119<text:line-break/>Joined: <text:span text:style-name="T3">2020-09-12</text:span></text:p> </table:table-cell> - <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Alain Romedenne<text:line-break/>Commits: 117<text:line-break/>Joined: <text:span text:style-name="T3">2019-02-25</text:span></text:p> - </table:table-cell> </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents">Kalman Szalai - KAMI<text:line-break/>Commits: 116<text:line-break/>Joined: 2010-09-14</text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Alain Romedenne<text:line-break/>Commits: 117<text:line-break/>Joined: <text:span text:style-name="T3">2019-02-25</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Gabor Kelemen<text:line-break/>Commits: 116<text:line-break/>Joined: <text:span text:style-name="T3">2025-06-27</text:span></text:p> + <text:p text:style-name="Table_20_Contents">Kalman Szalai - KAMI<text:line-break/>Commits: 116<text:line-break/>Joined: 2010-09-14</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Joren De Cuyper<text:line-break/>Commits: 114<text:line-break/>Joined: <text:span text:style-name="T3">2013-01-07</text:span></text:p> @@ -1523,7 +1529,7 @@ <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Akshay Deep<text:line-break/>Commits: 110<text:line-break/>Joined: <text:span text:style-name="T3">2016-01-23</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Simon Chenery<text:line-break/>Commits: 103<text:line-break/>Joined: <text:span text:style-name="T3">2024-11-22</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Simon Chenery<text:line-break/>Commits: 108<text:line-break/>Joined: <text:span text:style-name="T3">2024-11-22</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> @@ -1667,34 +1673,37 @@ </table:table-cell> </table:table-row> <table:table-row> + <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 63<text:line-break/>Joined: <text:span text:style-name="T3">2019-09-08</text:span></text:p> + </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Rosemary Sebastian<text:line-break/>Commits: 62<text:line-break/>Joined: <text:span text:style-name="T3">2015-06-23</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jaume Pujantell<text:line-break/>Commits: 62<text:line-break/>Joined: <text:span text:style-name="T3">2023-03-03</text:span></text:p> </table:table-cell> + <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Balazs Varga<text:line-break/>Commits: 62<text:line-break/>Joined: <text:span text:style-name="T3">2025-07-04</text:span></text:p> + </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Wolfram Garten [wg]<text:line-break/>Commits: 61<text:line-break/>Joined: 2009-10-23</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Martin Hosken<text:line-break/>Commits: 61<text:line-break/>Joined: <text:span text:style-name="T3">2011-02-25</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Pierre-Eric Pelloux-Prayer<text:line-break/>Commits: 61<text:line-break/>Joined: <text:span text:style-name="T3">2012-06-20</text:span></text:p> </table:table-cell> - <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Heiko Tietze<text:line-break/>Commits: 61<text:line-break/>Joined: <text:span text:style-name="T3">2019-09-08</text:span></text:p> - </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Oliver Craemer [oc]<text:line-break/>Commits: 60<text:line-break/>Joined: 2009-10-23</text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jaskaran Singh<text:line-break/>Commits: 60<text:line-break/>Joined: <text:span text:style-name="T3">2016-02-18</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Marc Neumann [msc]<text:line-break/>Commits: 59<text:line-break/>Joined: 2008-06-20</text:p> </table:table-cell> @@ -1704,207 +1713,207 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Simon Steinbeiss<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T3">2015-06-01</text:span></text:p> </table:table-cell> - <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ahmed ElShreif<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T3">2019-06-10</text:span></text:p> - </table:table-cell> </table:table-row> <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Neil Roberts<text:line-break/>Commits: 58<text:line-break/>Joined: <text:span text:style-name="T3">2025-08-18</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ahmed ElShreif<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T3">2019-06-10</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>yiming ju<text:line-break/>Commits: 57<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-01</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Neil Roberts<text:line-break/>Commits: 59<text:line-break/>Joined: <text:span text:style-name="T3">2025-08-18</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>matteocam<text:line-break/>Commits: 56<text:line-break/>Joined: <text:span text:style-name="T3">2014-02-25</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>yiming ju<text:line-break/>Commits: 57<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-01</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Michael Stahl<text:line-break/>Commits: 56<text:line-break/>Joined: <text:span text:style-name="T3">2025-06-25</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Weblate<text:line-break/>Commits: 57<text:line-break/>Joined: <text:span text:style-name="T3">2023-12-13</text:span></text:p> </table:table-cell> </table:table-row> <table:table-row> + <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Michael Stahl<text:line-break/>Commits: 57<text:line-break/>Joined: <text:span text:style-name="T3">2025-06-25</text:span></text:p> + </table:table-cell> + <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>matteocam<text:line-break/>Commits: 56<text:line-break/>Joined: <text:span text:style-name="T3">2014-02-25</text:span></text:p> + </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Niklas Johansson<text:line-break/>Commits: 55<text:line-break/>Joined: <text:span text:style-name="T3">2011-11-07</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Matthew J. Francis<text:line-break/>Commits: 55<text:line-break/>Joined: <text:span text:style-name="T3">2014-08-25</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Paris Oplopoios<text:line-break/>Commits: 55<text:line-break/>Joined: <text:span text:style-name="T3">2022-10-17</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Sahil Gautam<text:line-break/>Commits: 55<text:line-break/>Joined: <text:span text:style-name="T3">2024-11-20</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Nikolai Pretzell<text:line-break/>Commits: 54<text:line-break/>Joined: 2001-03-09</text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mihály Palenik<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T3">2013-07-11</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>yangzhang<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-04</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Jim Raykowski<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T3">2019-05-11</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> - <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Weblate<text:line-break/>Commits: 54<text:line-break/>Joined: <text:span text:style-name="T3">2023-12-13</text:span></text:p> - </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Rob Snelders<text:line-break/>Commits: 53<text:line-break/>Joined: <text:span text:style-name="T3">2011-02-08</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Martin Kepplinger<text:line-break/>Commits: 53<text:line-break/>Joined: <text:span text:style-name="T3">2011-02-18</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Pierre F<text:line-break/>Commits: 53<text:line-break/>Joined: <text:span text:style-name="T3">2024-03-05</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> + <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Karthik Godha<text:line-break/>Commits: 53<text:line-break/>Joined: <text:span text:style-name="T3">2025-10-09</text:span></text:p> + </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Lior Kaplan<text:line-break/>Commits: 52<text:line-break/>Joined: <text:span text:style-name="T3">2010-10-05</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Efe Gürkan YALAMAN<text:line-break/>Commits: 52<text:line-break/>Joined: <text:span text:style-name="T3">2012-08-01</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Will Thompson<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T3">2012-03-21</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Faisal M. Al-Otaibi<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T3">2012-06-25</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Cao Cuong Ngo<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T3">2013-03-04</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Rachit Gupta<text:line-break/>Commits: 51<text:line-break/>Joined: <text:span text:style-name="T3">2014-01-18</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Martin Srebotnjak<text:line-break/>Commits: 50<text:line-break/>Joined: <text:span text:style-name="T3">2010-12-19</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ptyl Dragon<text:line-break/>Commits: 50<text:line-break/>Joined: <text:span text:style-name="T3">2013-05-09</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Samuel Thibault<text:line-break/>Commits: 49<text:line-break/>Joined: <text:span text:style-name="T3">2018-02-15</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mohit Marathe<text:line-break/>Commits: 50<text:line-break/>Joined: <text:span text:style-name="T3">2025-07-15</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mohit Marathe<text:line-break/>Commits: 49<text:line-break/>Joined: <text:span text:style-name="T3">2025-07-15</text:span></text:p> + <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Samuel Thibault<text:line-break/>Commits: 49<text:line-break/>Joined: <text:span text:style-name="T3">2018-02-15</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Marcel Metz<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T3">2011-12-05</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Urs Fässler<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T3">2013-02-14</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>mingli ju<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-05</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Emmanuel Gil Peyrot<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T3">2015-11-19</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Marco A.G.Pinto<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T3">2018-07-16</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>anfanite396<text:line-break/>Commits: 48<text:line-break/>Joined: <text:span text:style-name="T3">2023-02-01</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>J. Graeme Lingard<text:line-break/>Commits: 47<text:line-break/>Joined: <text:span text:style-name="T3">2010-09-29</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Gökay Şatır<text:line-break/>Commits: 47<text:line-break/>Joined: <text:span text:style-name="T3">2020-08-08</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Dione Maddern<text:line-break/>Commits: 47<text:line-break/>Joined: <text:span text:style-name="T3">2023-12-15</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Luke Deller<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T3">2012-11-26</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>hongyu zhong<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-04</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Alexandre Vicenzi<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T3">2014-01-15</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mihai Varga<text:line-break/>Commits: 46<text:line-break/>Joined: <text:span text:style-name="T3">2014-02-27</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">mb93783<text:line-break/>Commits: 45<text:line-break/>Joined: 2009-07-15</text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Eilidh McAdam<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T3">2011-03-10</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Christophe JAILLET<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T3">2012-06-14</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Susobhan Ghosh<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T3">2016-01-03</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Aditya Sahu<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T3">2019-01-04</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Szabolcs Toth<text:line-break/>Commits: 45<text:line-break/>Joined: <text:span text:style-name="T3">2019-08-07</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents">Volker Ahrendt [va]<text:line-break/>Commits: 44<text:line-break/>Joined: 2002-04-15</text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Daniel Robertson<text:line-break/>Commits: 44<text:line-break/>Joined: <text:span text:style-name="T3">2015-06-27</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Luc Castermans<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T3">2011-11-13</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Philippe Jung<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T3">2015-05-01</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Damjan Jovanovic<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T3">2015-08-26</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Daniel Arato (NISZ)<text:line-break/>Commits: 43<text:line-break/>Joined: <text:span text:style-name="T3">2020-08-24</text:span></text:p> </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Peter Jentsch<text:line-break/>Commits: 42<text:line-break/>Joined: <text:span text:style-name="T3">2011-01-07</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Mark Wielaard<text:line-break/>Commits: 42<text:line-break/>Joined: <text:span text:style-name="T3">2013-05-13</text:span></text:p> </table:table-cell> - <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> - <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Karthik Godha<text:line-break/>Commits: 42<text:line-break/>Joined: <text:span text:style-name="T3">2025-10-09</text:span></text:p> - </table:table-cell> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Sébastien Le Ray<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T3">2011-02-10</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Christian M. Heller<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T3">2013-02-24</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Tsutomu Uchino<text:line-break/>Commits: 41<text:line-break/>Joined: <text:span text:style-name="T3">2014-01-08</text:span></text:p> </table:table-cell> @@ -1914,11 +1923,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Grzegorz Araminowicz<text:line-break/>Commits: 40<text:line-break/>Joined: <text:span text:style-name="T3">2019-03-08</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Skyler Grey<text:line-break/>Commits: 40<text:line-break/>Joined: <text:span text:style-name="T3">2022-08-19</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Adam Seskunas<text:line-break/>Commits: 40<text:line-break/>Joined: <text:span text:style-name="T3">2023-08-29</text:span></text:p> </table:table-cell> @@ -1928,11 +1937,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Marc-André Laverdière<text:line-break/>Commits: 39<text:line-break/>Joined: <text:span text:style-name="T3">2011-06-21</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>minwang<text:line-break/>Commits: 39<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-04</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Valentin Kettner<text:line-break/>Commits: 38<text:line-break/>Joined: <text:span text:style-name="T3">2014-03-17</text:span></text:p> </table:table-cell> @@ -1942,11 +1951,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Stéphane Guillou<text:line-break/>Commits: 38<text:line-break/>Joined: <text:span text:style-name="T3">2023-01-03</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Iain Billett<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T3">2012-04-11</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>abdulmajeed ahmed<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T3">2012-07-07</text:span></text:p> </table:table-cell> @@ -1956,11 +1965,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ayhan Yalçınsoy<text:line-break/>Commits: 37<text:line-break/>Joined: <text:span text:style-name="T3">2019-12-20</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Guillaume Poussel<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T3">2010-12-22</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Radu Ioan<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T3">2012-08-17</text:span></text:p> </table:table-cell> @@ -1970,11 +1979,11 @@ <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Csikós Tamás<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T3">2013-07-01</text:span></text:p> </table:table-cell> + </table:table-row> + <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Priyanka Gaikwad<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T3">2013-11-12</text:span></text:p> </table:table-cell> - </table:table-row> - <table:table-row> <table:table-cell table:style-name="Tabelle1.A1" office:value-type="string"> <text:p text:style-name="Table_20_Contents"><text:span text:style-name="T2">*</text:span>Ilhan Yesil<text:line-break/>Commits: 36<text:line-break/>Joined: <text:span text:style-name="T3">2018-04-11</text:span></text:p> </table:table-cell> @@ -1984,11 +1993,11 @@ -e ... etc. - the rest is truncated
