content/development/releases/3.0.0beta2.html (4,976 lines of code) (raw):

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>3.0 Beta 2 - Release Notes</title> <style> <!-- @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in; text-align: justify } P.western { font-family: "Albany", sans-serif; font-size: 10pt } TD P { margin-bottom: 0.08in; text-align: left } TD P.western { font-family: "Albany", sans-serif; font-size: 10pt } --> </style> <meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8"> <meta name="GENERATOR" content="StarOffice 8 (Linux)"> <meta name="CREATED" content="20041215;16393200"> <meta name="CHANGEDBY" content="Eike Rathke"> <meta name="CHANGED" content="20050906;11430300"> <style> <!-- @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in; text-align: justify } P.western { font-family: "Albany", sans-serif; font-size: 10pt } TD P { margin-bottom: 0.08in; text-align: left } TD P.western { font-family: "Albany", sans-serif; font-size: 10pt } --> </style> </head> <body> <h2>3.0 Beta 2 - Release Notes</h2> <br> These notes contains changes between SRC680_m242 and SRC680_m248 as well as between DEV300_m1 and DEV300_m21 and BEB300_m1 and BEB300_m3.<br> This release will install as OOo-Dev3.0.<br> Sources can be received from cvs by tag BEB300_m3.<br> <br> <h2>What's new ?</h2> <table bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead><tr bgcolor="#eeeeee"> <th>Feature title </th> <th>TaskId </th> <th>Spec. title </th> <th>Spec. abstract </th> <th>Dev. owner </th> <th>Spec. link </th> <th>Component </th> </tr> </thead> <tbody> <tr> <td>default connection string for UnoAPI-Tests has changed </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=86692">i86692 </a> </td> <td> <font color="red"> </font> </td> <td> <font color="red"> </font> </td> <td> <a href="mailto:christoph.neumann@sun.com">christoph.neumann@sun.com</a> </td> <td> <a href="http://wiki.services.openoffice.org/wiki/UnoAPITest">speclink </a> </td> <td>tools</td> </tr> </tbody> </table> <table bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead><tr bgcolor="#eeeeee"> <th>Feature title </th> <th>TaskId </th> <th>Spec. title </th> <th>Spec. abstract </th> <th>Dev. owner </th> <th>Spec. link </th> <th>Component </th> </tr> </thead> <tbody> <tr> <td>Change to table view when a new database was created by the db wizard </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=84173">i84173 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> When a new database will be created by the wizard and the database should be opened, the view will change to the "tables view". Former it changes to the "forms view". </td> <td> <a href="mailto:ocke.janssen@sun.com">ocke.janssen@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>dba </td> </tr> <tr> <td>INDEX() function supports return of an entire vector of a 2D array </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=66930">i66930 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> The INDEX() spreadsheet function now supports the return of an entire vector of a 2D array if the corresponding row respectively column parameter is given a 0 argument. This aligns with the behavior of other spreadsheet applications and the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>sc </td> </tr> <tr> <td>GCD() and LCM() convert arguments to integer </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=71158">i71158 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> The GCD() and LCM() spreadsheet functions now convert their arguments to integer before processing. Negative arguments are not allowed and by definition GCD(0;a)=&gt;a, including GCD(0;0)=&gt;0. This aligns with the behavior of other spreadsheet applications and the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>sc </td> </tr> <tr> <td>LOOKUP in columns of a row if range is wider than tall </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=74245">i74245 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> The LOOKUP() spreadsheet function's lookup direction now depends on the width of the search array (first parameter, Searched) given. There are two major uses for this function; the 3-parameter version (vector) and the 2-parameter version (non-vector array). When given two parameters, Searched is first examined: - If Searched is square or is taller than it is wide (more rows than columns), LOOKUP searches in the first column (similar to VLOOKUP), and returns the corresponding value in the last column. - If Searched covers an area that is wider than it is tall (more columns than rows), LOOKUP searches in the first row (similar to HLOOKUP), and returns the corresponding value in the last row. When given 3 parameters, Results must be a vector (either a row or a column) or an error is raised. The function determines the index of the match in the first column respectively row of Searched, and returns the value in Results with the same index. Searched is first examined: - If Searched is square or is taller than it is wide (more rows than columns), LOOKUP searches in the first column (similar to VLOOKUP). - If Searched covers an area that is wider than it is tall (more columns than rows), LOOKUP searches in the first row (similar to HLOOKUP). The lengths of the search vector and the result vector do not need to be identical. When the match position falls outside the length of the result vector, an error is returned if the result vector is given as an array object. If it is a cell range, it gets automatically extended to the length of the searched vector, but in the direction of the result vector. If just a single cell reference was passed, a column vector is generated. If the cell range cannot be extended due to the sheet's size limit, then a NA() error is returned. This aligns with the behavior of other spreadsheet applications and the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>sc </td> </tr> <tr> <td>INDEX of vector needs just one offset parameter </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=78781">i78781 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> The INDEX() spreadsheet function now returns an element of a vector regardless of its orientation if just two parameters were given. The general syntax for INDEX is: INDEX( ReferenceList|Array DataSource ; [ Integer Row ] [ ; [ Integer Column ] ] [ ; Integer AreaNumber = 1 ] ) If called as INDEX( vector; offset) the offset value now is taken as an offset into vector, regardless of orientation. Vector can be a row vector as well, so it looks as if the column offset was passed as a row argument. This aligns with the behavior of other spreadsheet applications and the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>sc </td> </tr> <tr> <td>COUNT ignores error results </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=86643">i86643 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> The COUNT() spreadsheet function now ignores error results of expressions and formula cells. Previously =COUNT(A1:A2) propagated an error if, for example, A1 contained the formula =1/0 the result was #DIV/0! This aligns with the behavior of other spreadsheet applications and the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>sc </td> </tr> <tr> <td>Adding MS Access databases in Writer now possible </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=83536">i83536 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> Adding a data source in Writer is possible at different locations. For example in the mail merge dialog, the field dialog and under edit/exchange database. The list of data source types now includes MS Access files (*.mdb). This is only supported on Windows. </td> <td> <a href="mailto:oliver.specht@sun.com">oliver.specht@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>word processing</td> </tr> </tbody> </table> <table bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead><tr bgcolor="#eeeeee"> <th>Feature title </th> <th>TaskId </th> <th>Spec. title </th> <th>Spec. abstract </th> <th>Dev. owner </th> <th>Spec. link </th> <th>Component </th> </tr> </thead> <tbody> <tr> <td>New Excel import VBA macro option </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=88690">i88690 </a> </td> <td>Option Dialog </td> <td>This specification documents all changes made to the implementation of Options dialog. </td> <td> <a href="mailto:frank.loehmann@sun.com">Frank Loehmann (FL) </a> </td> <td> <a href="http://specs.openoffice.org/appwide/options_settings/Option_Dialog.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>COMMAN_WHEEL_DATAZOOM changed </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=85450">i85450 </a> </td> <td> <font color="red"> </font> </td> <td> <font color="red"> </font> </td> <td> <a href="mailto:philipp.lohmann@sun.com">philipp.lohmann@sun.com</a> </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=85450">speclink </a> </td> <td>gsl </td> </tr> <tr> <td>testtool: new methods to access ExtensionListBox in extensions manager </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=86913">i86913 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> Access to the ExtensionListBox has been implemented with the following methods: int GetItemCount String GetItemText Nr1, Nr2 returns the text of Item Nr1 where Nr2 selects the text given: case 1: ItemName case 2: ItemVersion case 3: ItemDescription Select String selects the entry that has the item name given in string. if not found leave selection unchanges and return error Select Nr selects the Nr-th Item int GetSelCount always 0 or 1 int GetSelIndex returns 0 if no selection </td> <td> <a href="mailto:gregor.hartmann@sun.com">gregor.hartmann@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>qa </td> </tr> <tr> <td>UI of Extension Manager changed </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=83902">i83902 </a> </td> <td>Extension Manager UI Change </td> <td>The user interface of the current Extension Manager will be changed to ease the usability with the aim, that each user can work easily with this UI. Especially the need to differentiate between user extensions and shared extensions will be eased by an appropriate interface design. </td> <td> <a href="mailto:bh@openoffice.org">Bettina Haberer, BH </a> </td> <td> <a href="http://specs.openoffice.org/appwide/packagemanager/Extension_Manager_UI_Change.odt">speclink </a> </td> <td>util </td> </tr> <tr> <td>The office now supports .oxt files on the cmd line </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=85856">i85856 </a> </td> <td>Extension System Integration </td> <td>Extensions shall be recognized on desktops by using particular icons. It also shall be possible to install an extension by double clicking on the respective file. </td> <td> <a href="mailto:jl@openoffice.org">Joachim Lingner (JL) </a> </td> <td> <a href="http://specs.openoffice.org/appwide/packagemanager/extension_system_integration.odt">speclink </a> </td> <td>util</td> </tr> </tbody> </table> <table bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead><tr bgcolor="#eeeeee"> <th>Feature title </th> <th>TaskId </th> <th>Spec. title </th> <th>Spec. abstract </th> <th>Dev. owner </th> <th>Spec. link </th> <th>Component </th> </tr> </thead> <tbody> <tr> <td>Behavior of cut/paste/fill/drag on filtered rows. </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=33851">i33851 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Implemented a strategy to not let the user accidentally overwrite content of filtered rows by treating a filtered selection similar to a multi-selection of unfiltered rows, which disables operations not possible on a multi-selection, like cut, fill, merge. Exceptions respectively special treatment are: - Deletion. It was already implemented to not delete filtered rows or cells. No change. - Copy filtered to clipboard. Same behavior as before, range is copied to the clipboard including filtered rows, that when pasted or transfered to other applications are excluded and only unfiltered rows are pasted. - Paste from clipboard to filtered. Clipboard content is sliced and distributed over unfiltered rows. If formulas are pasted, the references are updated individually for each slice. The behavior otherwise is the same as for pasting on a non-filtered range, including cases of a possibly marked selection being larger or smaller than the clipboard content. Overview of menu entries and operations: Working with multi-selection, taking filtered into account if area selected: - Edit - delete contents - delete cells - Format - cells - borders applies borders only to first contiguous area - delete rows (also columns, but that deletes all rows of the column of course) Not working with multi-selection, but taking filtered into account if area selected: - Edit - copy - paste - paste special - input auto sum via icon, creates a SUBTOTAL() function formula - cell input confirmed with Alt-Enter only inputs value to unfiltered - drag & drop - Without control key moves data, similar to cut to clipboard this is disabled if the source range is filtered. - Drop on filtered area is disabled. - With control key copies unfiltered as in copy & paste via clipboard. - Drop on filtered area is disabled. - primary X selection - Filtered source range will be pasted using only unfiltered rows. - Pasting on filtered area is disabled. The operations not working with multi-selections and hence being disabled if a filtered range is selected: - Edit - cut - fill - all - Insert - cells - rows - columns - names - create - Format - merge cells - auto format - Data - sort - subtotals - multiple operations - group and outline - all - data pilot - all - auto fill by dragging the cell corner Not working with multi-selection but taking the encompassing range in the case of a filtered selection: - Insert - names - define - labels - Data - define range Not working with multi-selection but taking the current cell in that case: - Insert - names - insert - note - show note Special case of course, always available when filtered: - Data - filter - auto filter - standard filter - advanced filter - remove filter - hide filter </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc</td> </tr> </tbody> </table> <table style="width: 1159px; height: 314px;" bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead> </thead> <tbody> <tr> <td>Language selection through Windows language bar extended to Western languages </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=1035">i1035 </a> </td> <td>&nbsp; </td> <td>feature-info:<br> Since OOo2.0 we support language selection via Windows language bar, but only for Asian and CTL languages. Due to hight demand to support at least also Greek and Russian (they are considered to be "Western" languages) this feature was enhanced to now support all types of languages. As this will create a problem for all users that don't use the Windows language bar and want to write english texts with a "latin" type keyboard (German, French, Italian etc.) the enhancement got a small restriction: in this case the language reported by the system will be ignored until the user explicitly switches it at least once. But after the first usage of the language tool bar every change in it also switches the language inside OOo. For all other language combinations the language bar will always override the OOo text language attribute. BTW: in case you don't know this feature from using Asian or CTL languages: the language status bar control will not immediately show the overridden language, this will happen when something ins entered via keyboard. But this is not causes by the enhancement, that was so all the time before. </td> <td> <a href="mailto:mathias.bauer@sun.com">mathias.bauer@sun.com</a> </td> <td> <font color="red"><br> </font> </td> <td>word processing</td> </tr> </tbody> </table> <table bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead> </thead> <tbody> <tr> <td>Support of digit grouping as used in India </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=53498">i53498 </a></td> <td>&nbsp; </td> <td>feature-info:<br> In India, the concept of lakh (100,000) and crore (10,000,000) is the most used for numbering (and not one million). They group the number differently for representation, not in thousands but following the schema #,##,##,### instead. The first grouping separator from the right groups 3 digits, all others group by 2 digits. The number formatter now supports this schema if an Indian [*-IN] or Bhutan [*-BT] locale is selected. You'll notice if the number to be formatted has 6 or more digits or increase the count of leading zeros in the number formatter dialog, and a grouping separator is used in the format. Currently the following Indian locales have locale data available and thus are supported: Bengali English Hindi Gujarati Kannada Malayalam Marathi Oriya Punjabi Tamil Telugu plus Dzongkha in Bhutan. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>L10N </td> </tr> <tr> <td>Tetun (Indonesia) [tet-ID] and Tetun (Timor-Leste) [tet-TL] language listbox entries. </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=64095">i64095 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Added to the language listbox: Tetun (Indonesia) [tet-ID] Tetun (Timor-Leste) [tet-TL] The languages are selectable for character attribution and spell-checking. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>L10N </td> </tr> <tr> <td>Sami, Kildin (Russia) [sjd-RU] in language listbox </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=83565">i83565 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Added "Sami, Kildin (Russia)" [sjd-RU] to the language listbox. The language is selectable for character attribution and spell-checking. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>L10N </td> </tr> <tr> <td>Locale data for Paraguayan Guaran&iacute; (gug-PY) </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=84582">i84582 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Added locale data for Paraguayan Guaran&iacute; (gug-PY). The language is selectable for character attribution and spell-checking, as default locale, default document language and available for number formats. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>L10N </td> </tr> <tr> <td>Language listbox entries for Bodo, Dogri, Maithili, Santali </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=84912">i84912 </a></td> <td>&nbsp; </td> <td>feature-info:<br> The following languages are available for character attribution and spell-checking: Bodo [brx-IN] Dogri [dgo-IN] Maithili [mai-IN] Santali [sat-IN] </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>L10N </td> </tr> <tr> <td>Locale data for Turkmen_Turkmenistan (tk-TM) </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=86322">i86322 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Locale data for Turkmen in Turkmenistan (tk-TM) is available. The language is selectable for character attribution, as default locale, default document language and available for number formats. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>L10N </td> </tr> <tr> <td>Error Bars can be selected from cell ranges </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=366">i366 </a></td> <td> </td> <td>For some chart types it is possible to add y error bars to data series. An error bar shows a region of values around the measured one to indicate the inaccuracy of the measurement. </td> <td> <a href="mailto:bjoern.milcke@sun.com">bjoern.milcke@sun.com</a> </td> <td> <a href="http://specs.openoffice.org/chart/ErrorBars.odt">speclink </a> </td> <td>chart </td> </tr> <tr> <td>Additional Error Bar Style "Standard Error" </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=85796">i85796 </a></td> <td> </td> <td>For some chart types it is possible to add y error bars to data series. An error bar shows a region of values around the measured one to indicate the inaccuracy of the measurement. </td> <td> <a href="mailto:bjoern.milcke@sun.com">bjoern.milcke@sun.com</a> </td> <td> <a href="http://specs.openoffice.org/chart/ErrorBars.odt">speclink </a> </td> <td>chart </td> </tr> <tr> <td>Database / Insert Menu, new menu item </td> <td></td> <td>&nbsp; </td> <td>feature-info:<br> The table data view of a table now has a menu entry Insert-&gt;Record. This command inserts a new row at the end of the data set. </td> <td> <a href="mailto:ocke.janssen@sun.com">ocke.janssen@sun.com</a> </td> <td> <font color="red"><br> <br> </font></td> <td>dba </td> </tr> <tr> <td>Database / Edit Menu / Delete Record </td> <td></td> <td>&nbsp; </td> <td>feature-info:<br> The table data view of a table now has a menu entry Edit-&gt;Delete Record. This command deletes the current selected row (this excludes the row when inserting a new one). </td> <td> <a href="mailto:ocke.janssen@sun.com">ocke.janssen@sun.com</a> </td> <td> <font color="red"><br> <br> </font></td> <td>dba </td> </tr> <tr> <td>"Address Book Data Source Wizard" uses a roadmap </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=67987">i67987 </a></td> <td>&nbsp; </td> <td>feature-info:<br> With the integration of CWS odbmacros2, the "Address Book Data Source Wizard" (the one which helps you created a database document for your address data) will use a roadmap (a left-hand-side control displaying all steps of the wizard). (this is only a cheap side effect of some other change which happened in this CWS.) </td> <td> <a href="mailto:frank.schoenheit@sun.com">frank.schoenheit@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>dba </td> </tr> <tr> <td>support of native tables in impress and draw </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=68103">i68103 </a></td> <td> <span xmlns="http://www.w3.org/1999/xhtml" class="mw-headline">Tables in Impress</span> </td> <td> </td> <td> <a href="mailto:%20christian.lippka@sun.com">Christian Lippka </a></td> <td> <a href="http://wiki.services.openoffice.org/wiki/Draw_Tables">speclink </a> </td> <td>drawing </td> </tr> <tr> <td>Extensible help: Adding content to the Contents tree </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=83624">i83624 </a></td> <td>Extensible Help </td> <td>Target of the extensible help project is to support help content inside OpenOffice.org extensions. The extensions' help content is provided together with the OpenOffice.org installed help content. The help index can be extended by extensions. The implementation supports extended tool tips and accessing extension help content by pressing F1 in UNO dialogs and menus. </td> <td> <a href="mailto:Andreas.bregas@sun.com">Andreas Bregas (ab) </a></td> <td> <a href="http://specs.openoffice.org/appwide/help/ExtensibleHelp.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>remove pkgchk </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=84309">i84309 </a></td> <td>&nbsp; </td> <td>feature-info:<br> The pkgchk tool has been deprecated in favor of the unopkg tool a long time ago, and for quite some time pkgchk has been nonfunctional (only giving an error message that unopkg should be used instead): finally remove it completely. </td> <td> <a href="mailto:stephan.bergmann@sun.com">stephan.bergmann@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>framework </td> </tr> <tr> <td>new start center dialog </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=85963">i85963 </a></td> <td>Start Center </td> <td>OpenOffice.org is separated into single applications like Writer, Calc, Draw and Impress, which could be started directly from the operating system start panel. If the OpenOffice.org executable is started directly OOo shows the start module, always shown if no document is loaded. The start module has no value for the user on start-up, but keeps OOo loaded if the last document has been closed and a new one is generated. </td> <td> <a href="mailto:frank.loehmann@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/appwide/start_center/start_center.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>Tools - Options - Load/Save - General: ODF default version </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=86209">i86209 </a></td> <td>ODF 1.2 Migration </td> <td>With the next major version after OpenOffice.org 2.x, OOo will support ODF 1.2 in addition to ODF 1.0/1.1. This specification describes the migration from ODF 1.1 to ODF 1.2. </td> <td> <a href="mailto:Michael.brauer@sun.com">Michael Brauer </a></td> <td> <a href="http://specs.openoffice.org/appwide/odf/odf_1-2_migration.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>Printer Settings dialog gets an "Options" button </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=86352">i86352 </a></td> <td>OpenOffice.org Calc </td> <td>The Print dialog in Calc gets extended by a new possibility to define what part of the spreadsheet has to be printed. In the current version the print setting "print only selected sheets" is located in the Options dialog of the Print dialog and got defaulted for OOo 2.3. This raised several new issues around print output is empty when the corresponding table was not selected in the spreadsheet and the setting itself was overseen/unknown in the Options dialog. </td> <td> <a href="mailto:frank.loehmann@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/appwide/printing/Print_Dialog.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>Tools - Options - Load/Save - General: ODF default version </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=86649">i86649 </a></td> <td>ODF 1.2 Migration </td> <td>With the next major version after OpenOffice.org 2.x, OOo will support ODF 1.2 in addition to ODF 1.0/1.1. This specification describes the migration from ODF 1.1 to ODF 1.2. </td> <td> <a href="mailto:Michael.brauer@sun.com">Michael Brauer </a></td> <td> <a href="http://specs.openoffice.org/appwide/odf/odf_1-2_migration.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>Now the registration page (First StartUp Wizard) has different text for OOo and SO </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=86683">i86683 </a></td> <td>Product Registration </td> <td>Product registration is important to be able to get reliable numbers of the installed product base. OOo and SO users have different motivations to register themselves, therefore the registration dialogs are different for these two products. Furthermore a registration reminder is introduced using the online update </td> <td> <a href="mailto:frank.loehmannn@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/appwide/registration/product_registration.odt">speclink </a> </td> <td>framework </td> </tr> <tr> <td>SPAdmin: added UI option for external dialogs </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=83676">i83676 </a></td> <td>Printer administration for OpenOffice.org on Unix </td> <td>Printer administration for OpenOffice.org is done with normal system tools. The problem here is that on traditional Unix flavors the printer administration is far too primitive for OOo's purposes. Therefore an own printer administration program has been devised that allows to use advanced printer features like duplex, paper formats, font substitution and the like. </td> <td> <a href="mailto:philipp.lohmann@sun.com">philipp.lohmann@sun.com</a> </td> <td> <a href="http://gsl.openoffice.org/files/documents/16/1718/padmin_spec.sxw">speclink </a> </td> <td>gsl </td> </tr> <tr> <td>new commandline tool cwsattach </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=85505">i85505 </a></td> <td>&nbsp; </td> <td>feature-info:<br> New commandline tool cwsattach to attach files to a childworkspace. Usage: cwsattach [-h] [-m master] [-c child] [-t mimetype] filename Attach files to CWS in EIS database Options: -h help -m master override MWS specified in environment -c child override CWS specified in environment -t mimetype explicitly set mime type Examples: cwsattach barfoo.html cwsattach -t text bar.cxx cwsattach -t text/rtf foo.rtf If no -t mimetype option is given the tool tries to map the extension to a mimetype via a configuration file. Standard Mimetypes for OpenDocument files as well as for txt and html and some graphics file formats are known to this config file. </td> <td> <a href="mailto:bernd.eilers@sun.com">bernd.eilers@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>inhouse-tools </td> </tr> <tr> <td>Three-Layer Installations </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=84200">i84200 </a></td> <td> </td> <td> </td> <td> <a href="mailto:stephan.bergmann@sun.com">stephan.bergmann@sun.com</a> </td> <td> <a href="http://wiki.services.openoffice.org/wiki/ODF_Toolkit/Efforts/Three-Layer_OOo">speclink </a> </td> <td>installation </td> </tr> <tr> <td>Reference to empty cell not forced to type </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=32340">i32340 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Previously, empty cells were forced to numeric 0 in some contexts and to empty string in others, except in direct comparison where =A1=0 and =A1="" both resulted in TRUE if A1 was empty. Emptiness now is inherited until used, so both =VLOOKUP(...)=0 and =VLOOKUP(...)="" give TRUE if the lookup resulted in an empty cell being returned. A simple reference to an empty cell is still displayed as numeric 0 but is not necessarily of type numeric anymore, so also comparisons with the referencing cell work as expected. For example: A1: 1 B1: <empty> C1: =B1 (displays 0) =B1=0 =&gt; TRUE =B1="" =&gt; TRUE =C1=0 =&gt; TRUE =C1="" =&gt; TRUE (previously was FALSE) =ISNUMBER(B1) =&gt; FALSE =ISNUMBER(C1) =&gt; FALSE (previously was TRUE) =ISNUMBER(VLOOKUP(1;A1:C1;2)) =&gt; FALSE (B1) =ISNUMBER(VLOOKUP(1;A1:C1;3)) =&gt; FALSE (C1, previously was TRUE) =ISTEXT(B1) =&gt; FALSE =ISTEXT(C1) =&gt; FALSE =ISTEXT(VLOOKUP(1;A1:C1;2)) =&gt; FALSE (B1, previously was TRUE) =ISTEXT(VLOOKUP(1;A1:C1;3)) =&gt; FALSE (C1) =ISBLANK(B1) =&gt; TRUE =ISBLANK(C1) =&gt; FALSE =ISBLANK(VLOOKUP(1;A1:C1;2)) =&gt; TRUE (B1, previously was FALSE) =ISBLANK(VLOOKUP(1;A1:C1;3)) =&gt; FALSE (C1) Note that MS-Excel has a difference in inherited emptiness and treats the result of a reference to an empty cell or a formula cell with the result of an empty cell, such as VLOOKUP(...) returning an empty cell, always as number. For example, Calc vs. Excel: A1: <empty> B1: =A1 =&gt; displays 0, but is just a reference to empty =ISNUMBER(A1) =&gt; FALSE =ISTEXT(A1) =&gt; FALSE =A1=0 =&gt; TRUE =A1="" =&gt; TRUE =ISNUMBER(B1) =&gt; FALSE (MS-Excel: TRUE) =ISTEXT(B1) =&gt; FALSE =B1=0 =&gt; TRUE =B1="" =&gt; TRUE (MS-Excel: FALSE) C1: =VLOOKUP(...) with empty cell result =&gt; displays empty (MS-Excel: displays 0) =ISNUMBER(VLOOKUP(...)) =&gt; FALSE =ISTEXT(VLOOKUP(...)) =&gt; FALSE =ISNUMBER(C1) =&gt; FALSE (MS-Excel: TRUE) =ISTEXT(C1) =&gt; FALSE </empty></empty></td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>Infix Operator Reference Concatenation ("~") (aka Union) </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=32341">i32341 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Summary: Concatenate two references Syntax: Reference Left ~ Reference Right Returns: ReferenceList Semantics: Takes two references and computes the "cell union", which is simply a concatenation of the reference Left followed by the reference Right. This is not the same as a union in set theory; duplicate references to cells are not removed. The resulting reference will have the number of areas, as reported by AREAS, as AREAS(Left)+AREAS(Right). If Left or Right are not references, an error is returned. A reference concatenation results in a list of references. A reference list can be passed as an argument to functions expecting a reference parameter where passing one reference results in an identical computation as an arbitrary sequence of single references occupying the identical cell range. For example, SUM(A1:B2) is identical to SUM(A1~B2~A2~B1), but COLUMNS(A1:B2), resulting in 2 columns, is not identical to COLUMNS(A1~B2~A2~B1), where iterating over the reference list would result in 4 columns. Also many statistical functions depend on the order of values and will not accept a reference list as argument. A reference list can not be converted to an array, thus in array context {ABS(A1~B2~A2~B1)} is an invalid expression, whereas {ABS(A1:B2)} is not. Passing a reference list in all these cases generates an error A list of functions accepting this argument is given below. Older versions of OpenOffice.org do not understand this operator and will generate an error when encountered. The UI syntax known from MS-Excel is also accepted, where two references are separated by the parameter separator and the entire expression has to be put in parentheses: (Left;Right). As this form is easily confusable with normal parameters, e.g. SUM((A1:B2;C3:D4)) indeed is only one argument to the SUM function, and adding respectively removing parentheses may significantly change the meaning of the expression, the form using the '~' tilde character was chosen, which follows the ODFF specification draft. A user input of (Left;Right) is automatically converted to (Left~Right). Functions accepting a reference list instead of a range reference as parameter: AREAS INDEX SUM AND OR ISREF MIN MINA MAX MAXA COUNT COUNTA STDEV STDEVA COUNTBLANK COUNTIF SUMIF Note: only in first parameter (criteria) and only if third parameter (sum range) not given. NPV ZTEST KURT HARMEAN GEOMEAN SKEW RANK AVEDEV GCD LCM FREQUENCY MEDIAN PERCENTILE LARGE SMALL PERCENTRANK TRIMMEAN Parts of the description extracted from the ODFF specification draft available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>MIN/MAX/MINA/MAXA return 0 if no value at all </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=38759">i38759 </a></td> <td>&nbsp; </td> <td>feature-info:<br> For MS-Excel interoperability the functions MIN() and MAX() now return 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s), note that text cells are ignored by MIN/MAX. The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. The functions previously returned an error in these cases. Passing a literal string argument to MIN() or MAX(), e.g. MIN("string"), still results in an error. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>Infix Operator Reference Range (":") </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=4904">i4904 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Summary: Computes an inclusive range given two references Syntax: Reference Left : Reference Right Returns: Reference Semantics: Takes two references and computes the range, that is, a reference to the smallest 3-dimensional cube of cells that include both Left and Right. Note that Left and Right need not be a single cell. For an expression such as B4:B5:C5 the resulting range is B4:C5. In case Left and/or Right involve a reference list (result of operator reference union), the range is computed and extended for each element of the list(s). For example, (a,b,c,d denoting one reference each) (a~b):(c~d) computes a:b:c:d determining the outermost front-upper-left and rear-lower-right corners. Note that Left and Right may also be defined names or the result of a function returning a reference, such as INDIRECT. Description taken from the ODFF specification draft available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>ISERROR(undefinedname) results in TRUE </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=77280">i77280 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Earlier versions set an unconditional error at the formula cell if the formula contained an error and the formula was not interpreted in this case. This changed now for undefined names and operators and the formula is still interpreted, an expression like =ISERROR(undefinedname) gives the result TRUE. 'undefinedname' may also be a function or macro name, so =ISERROR(undefinedname(A1)) results in TRUE as well. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>SUMIF geometry of 3rd parameter adapts to 1st parameter </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=85000">i85000 </a></td> <td>&nbsp; </td> <td>feature-info:<br> For interoperability with other spreadsheet applications the handling of the 3rd parameter to the SUMIF() function changed. Previously, Calc expected the geometry of that cell range to match that of the 1st parameter. Now the 3rd parameter's range geometry does not have to match the 1st parameter's; the upper left cell address is taken and the geometry of the 1st parameter is used to turn that into a cell range. For example, =SUMIF(A1:C3;1;X1) will result in the range X1:Z3 to be summed. If a range is passed, the geometry of the range is ignored. If the resulting range would extend over the lower/right sheet boundaries, those cells are silently ignored. For example, with a lower right boundary of IV65536 the formula =SUMIF(A1:C3;1;IU65535) would result in only 4 cells IU65535:IV65536 to be summed. </td> <td> <a href="mailto:eike.rathke@sun.com">eike.rathke@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>Calc Collaboration </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=8811">i8811 </a></td> <td>Collaboration </td> <td>In a global world, collaboration becomes even more important. The collaboration feature for OOo allows to share and work simultaneously on a single spreadsheet. Furthermore it allows to share documents in any system environment and prevents documents from being overwritten by others (i.e. if the used file system does not support a reliable file locking). </td> <td> <a href="mailto:frank.loehmann@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/calc/features/Collaboration.odt">speclink </a> </td> <td>sc </td> </tr> <tr> <td>Multiple Pages per View and Zoom Control in Statusbar </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=1598">i1598 </a></td> <td>Multiple Pages per View and Zoom Control </td> <td>With the current trend in larger monitors and the advent of computers using dual monitors, end users expect to use the extra space on the screen to view additional pages of the document. At the same time, professional users expect to view facing pages adjacent to each other so that they are able to adjust complementary elements on the two . </td> <td> <a href="mailto:discoleo@openoffice.org">Leonard Mada </a></td> <td> <a href="http://specs.openoffice.org/writer/statusbar/Multiple_Pages_View_and_Zoom_Control.odt">speclink </a> </td> <td>word processing </td> </tr> <tr> <td>Direct cross-references to headings and numbered paragraphs in text documents </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=25072">i25072 </a></td> <td>Direct Cross-references to Headings and Numbered Paragraphs </td> <td>A cross-reference to a heading or a numbered paragraph will be inserted directly into the current text document by choosing the heading respectively numbered paragraph. A list of all headings respectively all numbered paragraphs will be provided to the user to perform such a selection. </td> <td> <a href="mailto:Frank.Loehmann@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/writer/numbering/Direct_Cross_References_to_Headings_and_Numberings.odt">speclink </a> </td> <td>word processing </td> </tr> <tr> <td>Enhance Chapter Number Capability on Writer Indexes </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=53420">i53420 </a></td> <td>&nbsp; </td> <td>feature-info:<br> Introduces the implementation of the new outline chapter number feature in text indexes (Writer) as described in ODF specification 1.2, draft 6, chapter &ldquo;7.12.1.1 Display Chapter Format&rdquo;. The six index types available in OpenOffice.org will gain the ability to insert the outline chapter number level in the index entry structure together with the maximum index level to be examined to show the chapter number. Detailed specification at: http://specs.openoffice.org/writer/index/index_and_tables_dialog_enhancement.odt </td> <td> <a href="mailto:beppec56@openoffice.org">beppec56@openoffice.org</a> </td> <td> <font color="red"><br> </font></td> <td>word processing</td> </tr> </tbody> </table> <pre></pre> <table bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0"> <thead></thead> <tbody> <tr> <td>title for secondary axes </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=1163">i1163 </a></td> <td> </td> <td>With the &ldquo;Insert Title&rdquo; dialog for charts, a user can decide which title objects in a chart are shown, and what content they have. There is a main title, a sub title and axis-titles for the axes. </td> <td> <a href="mailto:ingrid.halama@sun.com">ingrid.halama@sun.com</a> </td> <td> <a href="http://specs.openoffice.org/chart/ChartInsertTitleDialog.odt">speclink </a> </td> <td>chart </td> </tr> <tr> <td>customizeable starting angle for pie charts </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=16776">i16776 </a></td> <td>Options for Pie chart </td> <td> new options are available for and donut charts: and </td> <td> <a href="mailto:ingrid.halama@sun.com">ingrid.halama@sun.com</a> </td> <td> <a href="http://specs.openoffice.org/chart/PieChartOptions.odt">speclink </a> </td> <td>chart </td> </tr> <tr> <td>clockwise direction for pie charts </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=37823">i37823 </a></td> <td>Options for Pie chart </td> <td> new options are available for and donut charts: and </td> <td> <a href="mailto:ingrid.halama@sun.com">ingrid.halama@sun.com</a> </td> <td> <a href="http://specs.openoffice.org/chart/PieChartOptions.odt">speclink </a> </td> <td>chart </td> </tr> <tr> <td>Ease handling of Trendlines in Charts </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=44768">i44768 </a></td> <td> </td> <td>For some chart types it is possible to add trend lines to data series. A trend line shows an approximation of the values by a mathematical curve like a linear function. In addition to the actual curve a graph can also contain graphical objects for the equation of a trend line and the accuracy of the calculation, denoted by R&sup2;. </td> <td> <a href="mailto:bjoern.milcke@sun.com">bjoern.milcke@sun.com</a> </td> <td> <a href="http://specs.openoffice.org/chart/Trendlines.odt">speclink </a> </td> <td>chart </td> </tr> <tr> <td>XSelectionSupplier now being supported by the database application controller </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=69740">i69740 </a></td> <td>&nbsp; </td> <td>feature-info:<br> The controller of the database application window now supports the com.sun.star.view.XSelectionSupplier interface. The method getSelection return an Any which contains a Sequence of NamedValue. 1st NamedValue: Name = "Type" Value is an integer with values from com.sun.star.sdb.application.DatabaseObject which indicates which kind of object is currently selected. 2nd NamedValue: Name = "Selection" Value is a sequence of strings which are currently selected in the view. Value = Sequence &lt; Strings &gt; === selected names </td> <td> <a href="mailto:ocke.janssen@sun.com">ocke.janssen@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>dba </td> </tr> <tr> <td>delays for quick help change </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=77170">i77170 </a></td> <td> </td> <td> </td> <td> <a href="mailto:philipp.lohmann@sun.com">philipp.lohmann@sun.com</a> </td> <td> <a href="http://www.openoffice.org/issues/show_bug.cgi?id=77170">speclink </a> </td> <td>gsl </td> </tr> <tr> <td>1024 columns per sheet instead of 256 </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=31612">i31612 </a></td> <td>&nbsp; </td> <td>feature-info:<br> In OOo 3.0 there will be 1024 columns per sheet instead of 256. The "used area" logic for automatic print ranges, HTML/RTF export, and the Ctrl-End keyboard shortcut has changed: If there are at least 30 equal-formatted columns somewhere behind the last column that has cell contents, the attributes in these and the following columns are ignored in determining the used area. This ensures proper handling of old files with cell attributes in 256 columns. In the file format specification, more columns were always possible. If OOo 2.4 loads a file with cell content beyond the 256th column, a warning is shown (after the integration of fwk83, with the fix for issue 85334). </td> <td> <a href="mailto:niklas.nebel@sun.com">niklas.nebel@sun.com</a> </td> <td> <font color="red"><br> </font></td> <td>sc </td> </tr> <tr> <td>Adjustable margins and column widths in page preview </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=51656">i51656 </a></td> <td> </td> <td> </td> <td> <a href="mailto:niklas.nebel@sun.com">niklas.nebel@sun.com</a> </td> <td> <a href="http://wiki.services.openoffice.org/mwiki/images/f/f3/Page_Margins_Specification.odt">speclink </a> </td> <td>sc </td> </tr> <tr> <td>Transparent cell selection and changed column/row headers </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=86069">i86069 </a></td> <td>New Selection Visualization </td> <td>The selection visualization in spreadsheets is changed to be transparent. Furthermore the column headers get a glass effect in selection color to improve visibility. </td> <td> <a href="mailto:frank.loehmann@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/calc/features/Selection_Visualization.odt">speclink </a> </td> <td>sc </td> </tr> <tr> <td>Optimization Solver in Calc </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=8808">i8808 </a></td> <td>Solver Implementation </td> <td>OpenOffice.org lacks of a solver implementation. A solver allows to solve equations with multiple unknown variables. The following specification defines the user interface and interaction to implement a solver for OOo Calc. The UI design is capable to cover more than one solver engine. Solver engines could be installed as an extension provided by any OOo vendor using the newly introduced solver interface. </td> <td> <a href="mailto:frank.loehmann@sun.com">Frank Loehmann (FL) </a></td> <td> <a href="http://specs.openoffice.org/calc/features/Solver.odt">speclink </a> </td> <td>sc </td> </tr> <tr> <td>notes in the margin </td> <td><a href="http://www.openoffice.org/issues/show_bug.cgi?id=6193">i6193 </a></td> <td> <span xmlns="http://www.w3.org/1999/xhtml" class="mw-headline">Improved notes</span> </td> <td> </td> <td> <a href="mailto:%20%3Cmod@openoffice.org%3E">Max Odendahl </a></td> <td> <a href="http://wiki.services.openoffice.org/wiki/Notes2_Specification">speclink </a> </td> <td>word processing</td> </tr> </tbody> </table> <pre></pre> <h2>Integrated Child Workspaces</h2> <br> List of integrated child workspaces:<br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7041&Path=BEB300%2Fbeb300m3masterfix">beb300m3masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7065&Path=BEB300%2Fextensionupdate02_BEB300">extensionupdate02_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Minor updates and bugfixes regarding CWS extensionupdate01</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7057&Path=BEB300%2Fextmgrui04c">extmgrui04c</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Last minute fix for extension manager</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7053&Path=BEB300%2Fnative160_BEB300">native160_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">System wide integration of msvc* libraries (using msm modules during packaging process) </p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7043&Path=BEB300%2Faquavcl08_BEB300">aquavcl08_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Mac/Aqua specific tasks</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7039&Path=BEB300%2Fextensionl10nfix01_BEB300">extensionl10nfix01_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Fix various extensions l10n related issues<br><br>RE: Please also build helpcontent2 again</pre> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7045&Path=BEB300%2Fextensionupdate01_BEB300">extensionupdate01_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7038&Path=BEB300%2Ficondialog_BEB300">icondialog_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">CWS to fix crash in icon dialog. Showstopper for Beta refresh.</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m3</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7022&Path=BEB300%2Fbeb300m2masterfix">beb300m2masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7024&Path=BEB300%2Fimpressmuc_BEB300">impressmuc_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Showstopper fix for beta2 refresh concerning the unmovable shapes in impress</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7025&Path=BEB300%2Fnative156_BEB300">native156_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">New process for spellchecker selection in OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7023&Path=BEB300%2Fnotes6_BEB300">notes6_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bugfixes for new notes implementation for 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6999&Path=BEB300%2Fbeb300m1masterfix">beb300m1masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7012&Path=BEB300%2Fextmgrui04_BEB300">extmgrui04_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">More bugfixes for the new extension manager</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7009&Path=BEB300%2Fi91009_BEB300">i91009_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">i91009</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7013&Path=BEB300%2Fimpress144_BEB300">impress144_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 bug fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=7011&Path=BEB300%2Frptfix01_BEB300">rptfix01_BEB300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix for the SRB to work with OOo 2.4 and OOo 3.0 and filter issue.</p> </font></td> <td class="SmallText1"><font class="SmallText1">BEB300m1</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6988&Path=DEV300%2Fdev300m21masterfix">dev300m21masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6960&Path=DEV300%2Faquabmpfix03">aquabmpfix03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Critical fixes for graphics issues on the Aqua port</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6906&Path=DEV300%2Fextensionl10n01">extensionl10n01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 UI/HELP Beta refresh l10n<br><br>The localizations of the extensions have been moved into cws extnsionl10n02<br>Please integrate this cws together with extensionl10n02!!!!!</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6942&Path=DEV300%2Fextensionl10n02">extensionl10n02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Localization of OOo extensions<br><br>Please integrate this cws together with cws extensionl10n01!!!!!</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6701&Path=DEV300%2Ffwk88">fwk88</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Framework fixes for OpenOffice.org 3.0.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6615&Path=DEV300%2Fooxtablefilter">ooxtablefilter</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Import of OfficeOpen XML tables</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6938&Path=DEV300%2Fjl103">jl103</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">3.0 issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6974&Path=DEV300%2Fobo32">obo32</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix for i90866</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m21</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6955&Path=DEV300%2Fdev300m20masterfix">dev300m20masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6619&Path=DEV300%2Fextmgrui02">extmgrui02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixes for new extension manager ui</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6715&Path=DEV300%2Fhr51">hr51</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Changes for a Solaris (Sparc) 64 OOo version bit.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6778&Path=DEV300%2Fnotes5">notes5</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">change tracking, spellchecking and other issues in combination with new implementation of notes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6593&Path=DEV300%2Frptchart02">rptchart02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ongoing charts in reports</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6693&Path=DEV300%2Fsb88">sb88</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">various OOo 3.0 bugfixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6917&Path=DEV300%2Faquabmpfix02">aquabmpfix02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">a second batch of fixes for Aqua port graphics problems</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6945&Path=DEV300%2Fchart28_DEV300">chart28_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">issue 90071 display of charts with clipped data crashes office</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5861&Path=DEV300%2Fhunspellexternal">hunspellexternal</a></font></td> <td class="SmallText1"><font class="SmallText1"> </font> <p style="padding: 2px; font-family: Courier,monospace;"><font class="SmallText1">make hunspell be built/used as an external library, because that's what it actually is / other hunspell-related fixes</font></p> <font class="SmallText1"> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6893&Path=DEV300%2Fobr09">obr09</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 packaging fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6321&Path=DEV300%2Fqadev32">qadev32</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implementaion of checkcws (UnoAPI-Test)</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6931&Path=DEV300%2Fsmoketest20">smoketest20</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">remove statjars</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6472&Path=DEV300%2Fswlists01">swlists01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Changes and enhancements in Writer due to the accepted ODF proposal to <br>enhance and clarify list for ODF version 1.2 - see <br>http://www.oasis-open.org/committees/download.php/23418/07-04-05-proposal-lists.odt</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m20</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6948&Path=DEV300%2Fdev300m19masterfix">dev300m19masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m19</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6667&Path=DEV300%2Fimpress141">impress141</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">impress & draw bugfixes for OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m19</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6420&Path=DEV300%2Fodff03">odff03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">More changes for ODFF compliance, follow-up on CWS 'odff02'.<br>Implementation details of spreadsheet functions.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m19</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6921&Path=DEV300%2Fopenjdk6b">openjdk6b</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">provide openjdk6, fixes, testbuild</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m19</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6652&Path=DEV300%2Fsb87">sb87</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m19</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6940&Path=DEV300%2Fdev300m18masterfix">dev300m18masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6632&Path=DEV300%2Fause093">ause093</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">building and related...</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6791&Path=DEV300%2Fause094">ause094</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">create common targets for extension packing</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6602&Path=DEV300%2Fchart25">chart25</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bug fixes for chart</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6920&Path=DEV300%2Fdateinput">dateinput</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Accept x/y as a valid month/year date also in MDY order (e.g. en-US).</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6620&Path=DEV300%2Fdba30c">dba30c</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ongoing DBA bugfixing towards OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6896&Path=DEV300%2Fextmgrui03">extmgrui03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Add provider link inside new extension manager ui</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6817&Path=DEV300%2Ffmebugs04">fmebugs04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Some more 3.0 fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6544&Path=DEV300%2Ffmepatches02">fmepatches02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">cws that applies some community patches</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6601&Path=DEV300%2Fimpressodf12">impressodf12</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixing odf related tasks for OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6834&Path=DEV300%2Fjl101">jl101</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">3.0 Fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6889&Path=DEV300%2Fl10nfix27">l10nfix27</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">This cws fixes some en-US typos . The strings changed but FMA will fix the status in the database<br><br>-&gt; No new strings introduced</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6769&Path=DEV300%2Fmingwport13">mingwport13</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">MinGW port catch up fixes for DEV300</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6798&Path=DEV300%2Fnative151">native151</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Binfilter into an own package.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6699&Path=DEV300%2Fos113">os113</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixing OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6170&Path=DEV300%2Fshutup2">shutup2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Make build process less verbose:<br>- configure switch to control verbosity<br>- silently unpack tarballls of external moduls</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6832&Path=DEV300%2Fsw30bf05">sw30bf05</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fixes of defects in Writer for OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6842&Path=DEV300%2Fsw30rng01">sw30rng01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Issues regarding odf specification</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5467&Path=DEV300%2Fxmlfix2">xmlfix2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">- upgrade libxml2 to latest version<br>- fix various infelicities in unoxml<br>- remove some code duplications</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m18</font></td> </tr> </tbody> </table> <br> <br> <table style="width: 1082px; height: 356px;"> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6928&Path=DEV300%2Fdev300m17masterfix">dev300m17masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m17</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6880&Path=DEV300%2Fl10nfix26">l10nfix26</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m17</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6779&Path=DEV300%2Fodfversionedexport">odfversionedexport</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Omit export of OFD 1.2 chart features when 1.1 is set</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m17</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6706&Path=DEV300%2Fsw30bf04">sw30bf04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Patches and bug fixes for OOo3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m17</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6450&Path=DEV300%2Ftkr10">tkr10</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">UCB Issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m17</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6892&Path=DEV300%2Ftouchpoints01">touchpoints01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Install touchpoints to new dictionaries and templates online.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m17</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6918&Path=DEV300%2Fdev300m16masterfix">dev300m16masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m16</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6569&Path=DEV300%2Fhcshared18">hcshared18</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Application Help following the OOo 3.0 Beta deadline</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m16</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6890&Path=DEV300%2Frt28">rt28</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Some small build fixes for OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m16</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6904&Path=DEV300%2Fstctplbtn">stctplbtn</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">implement issue 90035</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m16</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6885&Path=DEV300%2Fdev300m15masterfix">dev300m15masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6603&Path=DEV300%2Faquabmpfix01">aquabmpfix01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Aqua port: Fixes and improvements for bitmap handling</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6671&Path=DEV300%2Faquavcl07">aquavcl07</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Mostly Mac/Aqua specific fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6915&Path=DEV300%2Fhro35_DEV300">hro35_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Fixes for Vista Common File Dialogs.<br><br>Needs to be tested on Vista with AND without SP1 platform.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6651&Path=DEV300%2Fnotes4">notes4</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 bugfixes for new notes implementation in Writer</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6869&Path=DEV300%2Fooo3readme2">ooo3readme2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Readme Changes for OOo3 Final Release</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6846&Path=DEV300%2Fsjfixes05">sjfixes05</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6756&Path=DEV300%2Fuaa06">uaa06</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Accessibility API enhancements and bug fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6902&Path=DEV300%2Fxformsmodify">xformsmodify</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">add a new string, in preparation of an upcoming minor enhancement<br>to the XML Form Document's model data behavior.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6665&Path=DEV300%2Fcalcodfversion">calcodfversion</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implement differentiation between file formats ODF 1.1 and ODF 1.2 with ODFF.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6872&Path=DEV300%2Fcalcshare4">calcshare4</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">String changes for Calc collaboration</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6809&Path=DEV300%2Fcmcfixes45">cmcfixes45</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6655&Path=DEV300%2Fextrasso9">extrasso9</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6884&Path=DEV300%2Fnative155">native155</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 installation tasks</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6881&Path=DEV300%2Fodfversion241_DEV300">odfversion241_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Issues of ODF warning message</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6822&Path=DEV300%2Fpdfi03">pdfi03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implementation of pdf restrictions. </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6656&Path=DEV300%2Fpj90">pj90</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Minor fixes (goodies WaE free on Windows, Mac OS X is now complete warning free, add Gaelic language etc). </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m15</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6833&Path=DEV300%2Fdev300m14masterfix">dev300m14masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6053&Path=DEV300%2Fextmgrui01">extmgrui01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Rewrite the UI used for the extensions manager</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6850&Path=DEV300%2Fjl98_DEV300">jl98_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">showstopper issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6864&Path=DEV300%2Flate241bf01_DEV300">late241bf01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">late fixes for OOo 2.4.1</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6858&Path=DEV300%2Fnative150_DEV300">native150_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 2.4.1 installation tasks.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6799&Path=DEV300%2Fnative152">native152</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 packaging and installation tasks.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6782&Path=DEV300%2Fab51">ab51</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">New option on Options / Load/Save / VBA Properties page to<br>choose between importing Basic uncommented or executable<br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6848&Path=DEV300%2Fc17v003_DEV300">c17v003_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6856&Path=DEV300%2Fdba241c_DEV300">dba241c_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bug fix for i88091</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6847&Path=DEV300%2Ffwk89_DEV300">fwk89_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Framework fixes for OOo2.4.1</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6855&Path=DEV300%2Fi18n43_DEV300">i18n43_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bug fix for issue i88411.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6800&Path=DEV300%2Fimpress142">impress142</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Beta refresh bug fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6861&Path=DEV300%2Fjl100_DEV300">jl100_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Show stopper issues for 2.4.1</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6008&Path=DEV300%2Fkoheidatapilot01">koheidatapilot01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">This CWS adds 'drill-down' feature to Calc's DataPilot feature, where <br>the user can double-click on a cell within the data field area and have <br>a new sheet that shows all data rows that constitute that cell. The CWS<br>also introduces cache table to cache DataPilot's raw data in order to <br>eliminate redundant access to the data source and somewhat simplify <br>the data access code.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6844&Path=DEV300%2Fl10nfix24">l10nfix24</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix a P1 l10n issue</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6608&Path=DEV300%2Fmba30patches01">mba30patches01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6863&Path=DEV300%2Fmhu18_DEV300">mhu18_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6860&Path=DEV300%2Fnofsnames_DEV300">nofsnames_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6744&Path=DEV300%2Fobo27">obo27</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Build fixes for unxmacxi</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6849&Path=DEV300%2Fpyunosystempaths_DEV300">pyunosystempaths_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix <a href="http://www.openoffice.org/issues/show_bug.cgi?id=86251" title="Python systemPathToFileUrl does not like national characters">Issue 86251</a></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6839&Path=DEV300%2Fsrb104">srb104</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Next version of the SRB (1.0.4)</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6853&Path=DEV300%2Fsw241bf02_DEV300">sw241bf02_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer bug fixes for OOo2.4.1</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6857&Path=DEV300%2Fsw241bf03_DEV300">sw241bf03_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix for issue i89000</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6862&Path=DEV300%2Ftbe33_DEV300">tbe33_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 2.4.1 bug fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6851&Path=DEV300%2Ftkr13_DEV300">tkr13_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">UCB fix for OOo 2.4.1</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6854&Path=DEV300%2Fwizards241fix01_DEV300">wizards241fix01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes in wizards project.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m14</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6816&Path=DEV300%2Fdev300m13masterfix">dev300m13masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6828&Path=DEV300%2Fchart26_DEV300">chart26_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 2.4.1 issues for chart and calc</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6680&Path=DEV300%2Foxtsysint01">oxtsysint01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">soffice.bin should be able to handle oxt files</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5459&Path=DEV300%2Fxsltfilter09">xsltfilter09</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">- Mayor improvements of XSLT XHTML export<br>- Fixed missing OXT functionality for XSLT filter</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6827&Path=DEV300%2Fc07v018_DEV300">c07v018_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6823&Path=DEV300%2Fdba241b_DEV300">dba241b_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6571&Path=DEV300%2Fhsqldb16">hsqldb16</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">HSQLDB should be buildable with jdk 1.6</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6546&Path=DEV300%2Fjl93">jl93</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Adapt digital signatures to ODF 1.2</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6604&Path=DEV300%2Fkoheiformula01">koheiformula01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Change the implementation of Calc's formula code to allow certain tokens to <br>be switched if needed. Currently the separator tokens are hard-coded. This <br>CWS will make those separator tokens replaceable. Note, however, that this <br>change will not alter the run-time behavior of the formula syntax handling; it's<br>implementation details only.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6723&Path=DEV300%2Fnative149">native149</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Windows: Dynamic link creation between layers in 3-layer office.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6792&Path=DEV300%2Fobo29">obo29</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">CWS-Tools: Remove dependency to Logging.pm</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6810&Path=DEV300%2Fpdfirename">pdfirename</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">rename pdfi extension</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6794&Path=DEV300%2Fstliterators">stliterators</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">::comphelper::StlUnoSequence is a wrapper-class that provides stl-container-like access to an existing ::com::sun::star::uno::Sequence<br>see http://www.sgi.com/tech/stl/Container.html<br>see http://www.sgi.com/tech/stl/Sequence.html<br>see http://www.sgi.com/tech/stl/RandomAccessIterator.html<br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6824&Path=DEV300%2Fsw241bf01_DEV300">sw241bf01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer bug fixes for OOo 2.4.1</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6784&Path=DEV300%2Fucpgio1">ucpgio1</a></font></td> <td class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"><font class="SmallText1">Add a ucp "gio" content broker. gio is the gnome-vfs2 replacement in the glib/gnome stack</font></p> </td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6626&Path=DEV300%2Fvcl88">vcl88</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">More 3.0 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6726&Path=DEV300%2Fcmcfixes44">cmcfixes44</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Tidy up some small issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6424&Path=DEV300%2Ffwk86">fwk86</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Framework fixes for OpenOffice.org 3.0.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6553&Path=DEV300%2Fpresenterscreen">presenterscreen</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">With the base line implementation and a large part of the presenter<br>screen implementation done in the CWS presenterview, this CWS is<br> about the finishing touch on the presenter screen extension.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6803&Path=DEV300%2Frtl4vista_DEV300">rtl4vista_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">i77976 justification for RTL on different windows versions</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m13</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6773&Path=DEV300%2Fdev300m12masterfix">dev300m12masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6137&Path=DEV300%2Fhyphenexternal">hyphenexternal</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">use hyphen library (hunspell.sf.net). Get hyph_en_US.dic from there, too</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6532&Path=DEV300%2Flcwarnings2">lcwarnings2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Warning free code for wntmsci11.<br>Projects:<br>- lingucomponent<br>- svx<br>- sw</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6704&Path=DEV300%2Fnative147">native147</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 installation tasks affecting the installation wizards.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6507&Path=DEV300%2Fos112">os112</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixing OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5573&Path=DEV300%2Fuoffilter">uoffilter</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">UOF(Uniform Office Format) is Chinese national standard of office file format.<br>This project is to create a plugin filter to implement the convertion between UOF and ODF.<br>The filters use XSLT.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6785&Path=DEV300%2Fwikiext03">wikiext03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix for Wiki Publisher to allow export to Wikipedia.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6703&Path=DEV300%2Fcellstylefixes">cellstylefixes</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Remove duplicate styles from odf export in calc</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6746&Path=DEV300%2Fclbetafix01">clbetafix01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 beta fix for impress</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6650&Path=DEV300%2Fcontrolperformance">controlperformance</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">fix the performance problem which occurs when scrolling text<br>documents which contain a lot of form controls</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6508&Path=DEV300%2Fdba30b">dba30b</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ongoing DBA bug fixing towards OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6719&Path=DEV300%2Fdba30beta">dba30beta</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 Beta showstopper</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6755&Path=DEV300%2Fdba30beta1">dba30beta1</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfix for i87325</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6728&Path=DEV300%2Fjl97">jl97</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">New Java and some test code which has no effect on OOo</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6795&Path=DEV300%2Fjl99_DEV300">jl99_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixing extension identifier and platform.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6729&Path=DEV300%2Fl10nfixooo3b">l10nfixooo3b</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes some l10n errors in OOo 3.0 Beta / Readme update</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6194&Path=DEV300%2Fnpower9">npower9</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">some refactoring to consoladate some dialog related code that was duplicated in both the basic and scripting projects. </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6766&Path=DEV300%2Fobo28_DEV300">obo28_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes for i88518 </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6714&Path=DEV300%2Fsw30beta01">sw30beta01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer 3.0 beta show stopper</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6767&Path=DEV300%2Fsw30beta02_DEV300">sw30beta02_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer OOo3.0 beta showstopper</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6742&Path=DEV300%2Ftkr12">tkr12</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo Beta 3.0 Bugfix</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6721&Path=DEV300%2Fwordcountfix">wordcountfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">cws for fix of i88484</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m12</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6737&Path=DEV300%2Fdev300m11masterfix">dev300m11masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6751&Path=DEV300%2Fs390sdk">s390sdk</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix SDK on s390 (see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477153)</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6738&Path=DEV300%2Fwikiant">wikiant</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix issue 87919</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6663&Path=DEV300%2Fab49">ab49</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">3.0 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6419&Path=DEV300%2Faw055">aw055</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">BugFixing CWS for 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6492&Path=DEV300%2Fcmcfixes43">cmcfixes43</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">uncontroversial outstanding fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6713&Path=DEV300%2Fmav32">mav32</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Betta stopper fixes related to new file locking and calc document sharing.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6200&Path=DEV300%2Fmib07">mib07</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Integration of community patches</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6720&Path=DEV300%2Fnative148">native148</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">P1 task for Windows language packs</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6696&Path=DEV300%2Fpdfimportfix">pdfimportfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix and feature adding for pdfimport oxt</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6712&Path=DEV300%2Fregistrationurl">registrationurl</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">New registration urls for OOo 3.0 Beta. Issue 86962.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6453&Path=DEV300%2Fsb85">sb85</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Solaris SPARC 64bit C++ UNO bridge</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6051&Path=DEV300%2Ftl50">tl50</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Misc bug fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6534&Path=DEV300%2Fhr50">hr50</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Compiler port to gcc-4.2.3. Changes needed for building 64 bit Linux in Hamburg RE environment.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m11</font></td> </tr> </tbody> </table> <br> <br> <table style="width: 1058px; height: 310px;"> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6711&Path=DEV300%2Fdev300m10masterfix">dev300m10masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m10</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6598&Path=DEV300%2Ffilteredrows">filteredrows</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Implement strategy to not overwrite / delete filtered-out rows during<br>cut/copy/paste/fill operations.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m10</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5551&Path=DEV300%2Ficonupdate04">iconupdate04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">New Iconset for SO9/OOo3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m10</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6695&Path=DEV300%2Fnative145">native145</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 Beta installation tasks</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m10</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6483&Path=DEV300%2Fxmlfilter04">xmlfilter04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">development of ooxml filters</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m10</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6709&Path=DEV300%2Fdev300m9masterfix">dev300m9masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m9</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6628&Path=DEV300%2Fjl94">jl94</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Platform specifier in extensions </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m9</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6666&Path=DEV300%2Flocalisation28">localisation28</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 localization</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m9</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6679&Path=DEV300%2Fooo3readme1">ooo3readme1</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Readme Changes for OOo3 Beta</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m9</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6694&Path=DEV300%2Fstartcenterfix02">startcenterfix02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix some startcenter issues for (hopefully) 3.0 beta</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m9</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5933&Path=DEV300%2Faqua11y01">aqua11y01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">NSAccessibility Protocol implementation.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6164&Path=DEV300%2Fbuildtool02">buildtool02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Some fixes in build tool...<br>Changes without bugs:<br>reworked custom job handling<br>fixed hang on windows when started not in a module dir<br>added new switch "--stoponerror" for breaking build right after first error<br>enabled "build --prepare" for windows<br>added second chance for a job in Cygwin environment<br>fixed HTML page refresh rate setting<br>fixed HTML page errors display (when klicking on "Total progress")</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6541&Path=DEV300%2Fcalcshare2">calcshare2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">File locking for Calc collaboration and bug fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6705&Path=DEV300%2Fdev300m8masterfix">dev300m8masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6685&Path=DEV300%2Ffwk87">fwk87</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">CWS to solve extension runtime library problem</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6641&Path=DEV300%2Fjl95">jl95</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">replace bundled JRE with the new JRE 6u5 with OOo/SO</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6686&Path=DEV300%2Fmav31">mav31</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">The fix for crash/hang on reload.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6658&Path=DEV300%2Fnative140">native140</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Removing all PATCH flags</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6660&Path=DEV300%2Fnative141">native141</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes for OOo 3.0 Beta and SO 9 Beta</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6429&Path=DEV300%2Fobr08">obr08</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Desktop Integration enhancements</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6687&Path=DEV300%2Fodfversion">odfversion</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">changing the office:version attribute to "1.2" for OOo 3.0 generated odf xml streams</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6684&Path=DEV300%2Freglater3_DEV300">reglater3_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6634&Path=DEV300%2Fsb86">sb86</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 bugfixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6681&Path=DEV300%2Fsw30bf03">sw30bf03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix for issue 88035 and 88036 in Writer</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6692&Path=DEV300%2Fwikiext02">wikiext02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Minor changes to the Wiki Publisher.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m8</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6653&Path=DEV300%2Fchangefileheader">changefileheader</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Change licence from LGPL v2 to v3<br>Remove external header guards</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m7</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6689&Path=DEV300%2Fchangefileheaderm6">changefileheaderm6</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Change licence headers from LGPL v2 to v3 for files introduced with DEV300 m6</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m7</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6691&Path=DEV300%2Fdev300m7masterfix">dev300m7masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m7</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6320&Path=DEV300%2Fnotes3">notes3</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bug fixes for new notes implementation in writer</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m7</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6542&Path=DEV300%2Faquavcl06">aquavcl06</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">More Mac/Aqua specialties</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=4972&Path=DEV300%2Fcairoquartz01">cairoquartz01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">OOo Canvas port to multi-platform Cairo =&gt; Linux (existing) + Mac OS X/Quartz (new) + Windows (new)<br><br>New cairo backends are not enabled by default, so there should be no changes to the default build.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6485&Path=DEV300%2Fchart23">chart23</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bug fixes for regressions in chart</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5004&Path=DEV300%2Fdbodf11">dbodf11</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ODF export 1.2 of the database</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6659&Path=DEV300%2Fdev300m6masterfix">dev300m6masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6547&Path=DEV300%2Fdv03">dv03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixes check for updates / throbber</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6670&Path=DEV300%2Fgroupsep">groupsep</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix Beta stopper, leading group separator displayed for numbers &lt;1000.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6605&Path=DEV300%2Fi18n40">i18n40</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">I18n bug fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6521&Path=DEV300%2Fimpress139">impress139</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bugfixes for impress and draw in OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6657&Path=DEV300%2Fimpress140">impress140</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 beta p2 fixes for impress application</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6548&Path=DEV300%2Fnative135">native135</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 installation tasks</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6614&Path=DEV300%2Fnative137">native137</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Enable installation of "OOo 3 Beta" next to "OOo 2.x".<br>(Windows only, because of Java GUI Installer with installation<br>without root privileges for Unixes).</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6596&Path=DEV300%2Fobo24">obo24</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Support additional build for 64 bit shell extension (Windows Vista)</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6022&Path=DEV300%2Fpdffix02">pdffix02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">PDF fixes with an emphasis on Aqua integration</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6347&Path=DEV300%2Fpdfimport">pdfimport</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">pdfimport</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5076&Path=DEV300%2Fpresenterview">presenterview</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6644&Path=DEV300%2Fs390xport01">s390xport01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Ports OOo to 64bit z/Series s390x mainframe linux</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6501&Path=DEV300%2Fsw30bf02">sw30bf02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer bug fixes for OOo3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5922&Path=DEV300%2Ftitles02">titles02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">refactor title feature of OOo</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6451&Path=DEV300%2Fvcl87">vcl87</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">More 3.0 issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6631&Path=DEV300%2Fvq41">vq41</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Make OOo buildable with .NET2005/.NET2008 and the Windows SDK.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6672&Path=DEV300%2Fwikiext01_DEV300">wikiext01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Wiki addon implementation.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m6</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6381&Path=DEV300%2Fwinordinals">winordinals</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">This CWS changes windows linking from ordinals to symbol export.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6334&Path=DEV300%2Fucbfixes06">ucbfixes06</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">- Fix UCB multithreading issue.<br>- Cleanup xmlhelp CVS module.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6640&Path=DEV300%2Ftl51_DEV300">tl51_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Various fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6638&Path=DEV300%2Ftl41_DEV300">tl41_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Prepare Dictionary path and linguistic.xcu for use with extensions in order <br>to distribute dictionaries for the linguistic as extensions in the future.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6625&Path=DEV300%2Fobo25">obo25</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes .Net 2008 </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6643&Path=DEV300%2Fmav30_DEV300">mav30_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Showstopper cws for OOo2.4.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6637&Path=DEV300%2Fcairotext01_DEV300">cairotext01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Support text drawing with Cairo</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m5</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6199&Path=DEV300%2Funoapi3">unoapi3</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">add issue numbers into knownissue.xcl of $MODULE/qa/unoapi folder</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6622&Path=DEV300%2Ftkr11_DEV300">tkr11_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6127&Path=DEV300%2Fswnotescolor">swnotescolor</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">remove notes indicator color selection from Tools - Options - Appearance, as color of notes for Writer depends now on author color and is not user defined anymore</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6222&Path=DEV300%2Fsw8u10bf05">sw8u10bf05</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bug fixes in Writer for OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6238&Path=DEV300%2Fsw30bf01">sw30bf01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6049&Path=DEV300%2Fsb83">sb83</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Split basis/brand for the new three-layer (URE, basis, brand) office products.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6543&Path=DEV300%2Fs390port01">s390port01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">make s390 port work again</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6576&Path=DEV300%2Fobo23">obo23</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes for unxmacxi</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6586&Path=DEV300%2Fmingwport12">mingwport12</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">catch-up fix for MinGW port</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6623&Path=DEV300%2Fimpress138_DEV300">impress138_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6555&Path=DEV300%2Fdr60">dr60</a></font></td> <td class="SmallText1"><font class="SmallText1"> </font> <p style="padding: 2px; font-family: Courier,monospace;"></p> <font class="SmallText1"> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6549&Path=DEV300%2Fcwsattach2">cwsattach2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">add cwsattach batch file for windows<br>and fix minor problem in cwsquery batch file<br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6406&Path=DEV300%2Fchartmappingfix">chartmappingfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix for 85913 row-mapping and column-mapping for charts using their own data is not imported correctly</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6594&Path=DEV300%2Fause092">ause092</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">small build fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m4</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6595&Path=DEV300%2Ftl52_DEV300">tl52_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Addresses a crash in Calc during hyphenation.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m3</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6591&Path=DEV300%2Fstartcenterfix">startcenterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix issue 86881</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6597&Path=DEV300%2Fodfversion12_DEV300">odfversion12_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ODF 1.2 Migration</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m3</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6538&Path=DEV300%2Fnewregdlg">newregdlg</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Different registration pages for SO and OOo.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=4998&Path=DEV300%2Fimpresstables2">impresstables2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implementing native table support for impress and draw</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m3</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6513&Path=DEV300%2Fhro34">hro34</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Integration of Vista File Dialog and Shell Preview. New Windows SDK needed...depends on usage of VC8 compiler.<br><br>Successor of CWS vistashellui</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m3</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6566&Path=DEV300%2Fxmlfilter03_DEV300">xmlfilter03_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6565&Path=DEV300%2Fvcl86_DEV300">vcl86_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Tasks for 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6587&Path=DEV300%2Funifysound01_DEV300">unifysound01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Move the remaining code that uses sound onto the avmedia api and not the vcl api<br>i.e.<br>a) the file picker for selecting sounds in impress<br>b) the SoundHandler in framework which supports hyperlink buttons that have a .wav target</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6556&Path=DEV300%2Ftextconnectionsettings">textconnectionsettings</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">implement a stand-alone dialog which allows the user to specify<br>the settings for a text/csv connection</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5200&Path=DEV300%2Ft602import01">t602import01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Adding import filter for T602 (CZ & SK MSDOS wordprocessor),<br>that is fairly widely used file-format in CZ and SK still now.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6564&Path=DEV300%2Fswnewlistlevelattrs_DEV300">swnewlistlevelattrs_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Introduction of new position and space attributes to the list levels of a list style</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6037&Path=DEV300%2Fsmoketest18">smoketest18</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">smoketest for macosx</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6539&Path=DEV300%2Frptwizres2b">rptwizres2b</a></font></td> <td class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"><font class="SmallText1">New strings for wizards report</font></p> </td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6563&Path=DEV300%2Frptchart01_DEV300">rptchart01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Enable Chart handling in the Sun Report Builder.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6585&Path=DEV300%2Fplaceholders_DEV300">placeholders_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Adding placeholder for graphics</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6584&Path=DEV300%2Fpages01_DEV300">pages01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implementation of the "Multiple Page View" feature</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6537&Path=DEV300%2Foowintool01">oowintool01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Adding VC2005 express support to oowintool</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6169&Path=DEV300%2Fodff02">odff02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">More changes for ODFF compliance, follow-up on CWS 'odff'.<br>Function wizard UI changes for parameters. Strings for error constants.<br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5737&Path=DEV300%2Fodff">odff</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implementation of ODFF (OpenDocument Format Formula specification, aka OpenFormula).</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6136&Path=DEV300%2Fodbmacros2">odbmacros2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6254&Path=DEV300%2Fnowrapcmd2">nowrapcmd2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Clean-up CWS to remove the unused WRAPCMD macro</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6562&Path=DEV300%2Fnativeprintdlg01_DEV300">nativeprintdlg01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">add support for native print dialog</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6497&Path=DEV300%2Fnative133">native133</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Make OOo 3.0 and SO 9</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6167&Path=DEV300%2Flocales30">locales30</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">New locales and locale data changes for OOo3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6570&Path=DEV300%2Flayout_DEV300">layout_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6578&Path=DEV300%2Fjl91_DEV300">jl91_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">UI fixes in Extension Manager</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6579&Path=DEV300%2Fjl89_DEV300">jl89_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6554&Path=DEV300%2Fimpresshandouts01">impresshandouts01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">enhancing the handout printing in impress</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6573&Path=DEV300%2Ficonunify_DEV300">iconunify_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">KA: installsets for SO as well as for OOo have been tested by me<br>on Linux and Windows; all icons are visible as before, so that<br>this CWS is ready to be nominated as a<br>'developer CWS' with internal build changes<br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6583&Path=DEV300%2Fhcshared17_DEV300">hcshared17_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Remaining issues and features for first release of OOo 3.0 / SO9</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6568&Path=DEV300%2Fdmake412_DEV300">dmake412_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Release dmake 4.12</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6557&Path=DEV300%2Fdlgedresizing_DEV300">dlgedresizing_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">fix the problem that in the Dialog Editor, it is impossible to give<br>a dialog the desired with/height, as changing one of the two also<br>changes the other in an unpredictable way.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6558&Path=DEV300%2Fdirectsbasemacros_DEV300">directsbasemacros_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">fix the problem that database documents opened from within<br>the "New Database" wizard (i.e. when starting OOo with sbase)<br>silently disable macro execution</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6255&Path=DEV300%2Fdba30a">dba30a</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ongoing DBA bug fixing towards OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6588&Path=DEV300%2Fcjksp1_DEV300">cjksp1_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">CJK features enhancement such as text grid, Chinese measure unit and CJK font. etc.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6574&Path=DEV300%2Fchart20_DEV300">chart20_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Error Bars from cell ranges</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6581&Path=DEV300%2Fcalcshare_DEV300">calcshare_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Collaboration for Calc with Shared Spreadsheets</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6514&Path=DEV300%2Fc06v5_DEV300">c06v5_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6582&Path=DEV300%2Fbeppec56index01_DEV300">beppec56index01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Implementation for feature corresponding to ODF 1.2 proposal, <br>found at http://lists.oasis-open.org/archives/office/200702/msg00173.html</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6561&Path=DEV300%2Fause090_DEV300">ause090_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">revisit patching external sources</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6567&Path=DEV300%2Fause084_DEV300">ause084_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">build fixes and cleanup</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6560&Path=DEV300%2Faquavcl05_DEV300">aquavcl05_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">more Mac/Aqua goodness</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6559&Path=DEV300%2Faquafilepicker02_DEV300">aquafilepicker02_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">This cws is for the migration of the native file pickers on MacOSX from Carbon to Cocoa.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m2</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6520&Path=DEV300%2Fvclshowstop15_DEV300">vclshowstop15_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix issue 86327</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6503&Path=DEV300%2Fsysui14">sysui14</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Misc sysui strings added / removed</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6510&Path=DEV300%2Fswcrossref01_DEV300">swcrossref01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Implementation for the feature specified in the specification <br>"Direct cross references for headings and numbered paragraphs",<br>found at http://specs.openoffice.org/writer/numbering/Direct_Cross_References_to_Headings_and_Numberings.odt</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6337&Path=DEV300%2Fsupdremove02">supdremove02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Take UPD out of library and resource names</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6490&Path=DEV300%2Fsdk24fix_DEV300">sdk24fix_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">hotfix for OO.org 2.4 SDK</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6457&Path=DEV300%2Frt26">rt26</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Clean up path defines in appdef.hxx</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6500&Path=DEV300%2Frptwizres">rptwizres</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Report wizard strings</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6519&Path=DEV300%2Freglater2_DEV300">reglater2_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix of i85445</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6478&Path=DEV300%2Fobo22">obo22</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">wntmsci11/12: Rename stlport_vc845.dll to stlport_vc7145.dll</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6491&Path=DEV300%2Fmav28_DEV300">mav28_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">The new database report related showstopper fix.</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6516&Path=DEV300%2Fjl92_DEV300">jl92_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Showstopper</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6515&Path=DEV300%2Fjl90_DEV300">jl90_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Showstopper cws for extension manager</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6526&Path=DEV300%2Fia64port01_DEV300">ia64port01_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">port OOo to ia64 architecture</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6511&Path=DEV300%2Fgcframework_DEV300">gcframework_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Grammar checking framework.<br><br>The current change do not modify any existing functionality in the office.<br>It is just the implementation of some new API and namely the full implementation <br>of the XTextMarkup API in Writer.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6525&Path=DEV300%2Ffwk81_DEV300">fwk81_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Framework fixes for OOo3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6522&Path=DEV300%2Fformpdfexportfix_DEV300">formpdfexportfix_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">fix issue 86396 "OOH680_m7 (2.4rc1): PDF Export does not<br>export controls in Writer"</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6512&Path=DEV300%2Feoladabas_DEV300">eoladabas_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6505&Path=DEV300%2Fcwsattach_DEV300">cwsattach_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">add cwsattach build environment tool</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5917&Path=DEV300%2Fcustommeta">custommeta</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">- implement the service com.sun.star.document.DocumentProperties<br>(at this time, just for ODF files)<br>- refactor xml import/export and all applications to use DocumentProperties<br>- remove obsolete stuff like SfxDocumentInfo</pre> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6506&Path=DEV300%2Fcropmaster2000_DEV300">cropmaster2000_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">implementing interactive cropping feature for graphics in impress and draw</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6517&Path=DEV300%2Fab47_DEV300">ab47_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix 2.4 showstopper i86265 </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6518&Path=DEV300%2Fab46_DEV300">ab46_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">cws to fix showstopper i84550 </p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6504&Path=DEV300%2Fab45_DEV300">ab45_DEV300</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Extensible help: Adding content to the Contents tree</p> </font></td> <td class="SmallText1"><font class="SmallText1">DEV300m1</font></td> </tr> </tbody> </table> <b class="SmallText1">88 records with 330 tasks.</b><br> <a href="http://tools.services.openoffice.org/EIS2/SpreadsheetViewer?table=%2FEIS2%2Fcws.SearchCWS&path=%2FEIS2%2Fcws.SearchCWS&query=INT_NULL_MilestoneIAfter%3D1%26DATE_NULL_Integrated_After%3D%26INT_NULL_MilestoneCAfter%3D%26DATE_NULL_DueDateBefore%3D%26Name%3D%26SRC_Step%3DSearch%26INT_NULL_MilestoneCBefore%3D%26ReleaseId%3D34%26INT_NULL_IsHelpRelevant%3D%26RSV_NoWait%3Dtrue%26DATE_NULL_DueDateAfter%3D%26QueryName%3D%26MWS%3D19%26TaskId%3D%26DATE_NULL_Integrated_Before%3D%26INT_NULL_MilestoneIBefore%3D5%26INT_NULL_IsUIRelevant%3D">View as OpenDocument(Calc)</a><br> <br> <br> <input name="ids" value="6381,6334,6640,6638,6625,6643,6637,6199,6622,6127,6222,6238,6049,6543,6576,6586,6623,6555,6549,6406,6594,6595,6591,6597,6538,4998,6513,6566,6565,6587,6556,5200,6564,6037,6539,6563,6585,6584,6537,6169,5737,6136,6254,6562,6497,6167,6570,6578,6579,6554,6573,6583,6568,6557,6558,6255,6588,6574,6581,6514,6582,6561,6567,6560,6559,6520,6503,6510,6337,6490,6457,6500,6519,6478,6491,6516,6515,6526,6511,6525,6522,6512,6505,5917,6506,6517,6518,6504" type="hidden"> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6469&Path=SRC680%2Frt27">rt27</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix for cross master resync</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5326&Path=SRC680%2Fnotes2">notes2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">New implementation of notes in the margin</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6479&Path=SRC680%2Fnative131_SRC680">native131_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">File soffice.bin.manifest also for OOo</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5540&Path=SRC680%2Fmacosxdnd">macosxdnd</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Implement native Drag&Drop for Aqua OOo on Mac OS X</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6447&Path=SRC680%2Fl10ntooling11">l10ntooling11</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes some l10n related issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6275&Path=SRC680%2Fhcshared16">hcshared16</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Some late issues for OOo3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6461&Path=SRC680%2Fcmcfixes42">cmcfixes42</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Minor fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6096&Path=SRC680%2Fchart19">chart19</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Chart features for OOo 3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6160&Path=SRC680%2Fcalcselection">calcselection</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Selection in Calc</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m248</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6426&Path=SRC680%2Fxmlencl10n_SRC680">xmlencl10n_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">transform xml unicode chars to java properties .... & # x1234; -&gt; \u1234</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6434&Path=SRC680%2Fvclshowstop13_SRC680">vclshowstop13_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix broken AltGr handling on windows</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6439&Path=SRC680%2Fsw8u10stopper_SRC680">sw8u10stopper_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Showstopper for OOo2.4<br>Loop in i18n find&replace with reg.expressions and issue with multi-rows header Writer tables</pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6442&Path=SRC680%2Fsw24bf04_SRC680">sw24bf04_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix for regression #i85624#</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6427&Path=SRC680%2Fsw24bf03_SRC680">sw24bf03_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix for issues 85717 and 82258</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6376&Path=SRC680%2Fsheetdrag">sheetdrag</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Avoid long delays when accidentally starting drag&drop on sheet tabs</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6405&Path=SRC680%2Fpagemargins">pagemargins</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Page margins in Calc page preview</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6433&Path=SRC680%2Fodfversionfix_SRC680">odfversionfix_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">bug fix for odf version detection</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6344&Path=SRC680%2Fobr07">obr07</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Remove a few MacOS X specialties. </p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6443&Path=SRC680%2Fmingwport11">mingwport11</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">The cws contains catch-up fixes for MinGW port</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6436&Path=SRC680%2Fmav27_SRC680">mav27_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix for OOo2.4 showstopper regarding document title.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6440&Path=SRC680%2Fjl87_SRC680">jl87_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Showstopper</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6441&Path=SRC680%2Fhro29_SRC680">hro29_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 Fix for locale problems (Office not starting)</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6435&Path=SRC680%2Ffwk85_SRC680">fwk85_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Framework showstoppers for OOo2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6438&Path=SRC680%2Ffwk84_SRC680">fwk84_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">solve problems around stclient on different platforms</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6432&Path=SRC680%2Fdba24h_SRC680">dba24h_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">fix issue 85822<br>http://www.openoffice.org/issues/show_bug.cgi?id=85822</pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6428&Path=SRC680%2Fdba24g_SRC680">dba24g_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 bug bug fixing</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6159&Path=SRC680%2Fcalccolumns">calccolumns</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Calc column count</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5904&Path=SRC680%2Faw054">aw054</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">CWS for BugFixes and Overlay adaptions</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m247</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6394&Path=SRC680%2Fvclshowstop12_SRC680">vclshowstop12_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix some showstoppers for 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6404&Path=SRC680%2Fregisterlater_SRC680">registerlater_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix of i85445</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6396&Path=SRC680%2Fos110_SRC680">os110_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6393&Path=SRC680%2Fnofc4sols_SRC680">nofc4sols_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">On some platforms the default for fontconfig based substitutions needs to be changed.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6390&Path=SRC680%2Fnative128_SRC680">native128_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 2.4 installation tasks</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6345&Path=SRC680%2Fnative127">native127</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 3.0 installation tasks</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6246&Path=SRC680%2Fmingwport10">mingwport10</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Catch up fixes for MinGW port</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6397&Path=SRC680%2Floc27pl_SRC680">loc27pl_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">update for polish localisation for OOo 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6183&Path=SRC680%2Fl10ntooling10">l10ntooling10</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix multi process issues in helpex</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6152&Path=SRC680%2Fl10ntooling09">l10ntooling09</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6387&Path=SRC680%2Ficuregexpatch_SRC680">icuregexpatch_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6392&Path=SRC680%2Fgfb4win_SRC680">gfb4win_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fix problem with generic glyph fallback after gfbfcfg integration.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6372&Path=SRC680%2Fgcc430two">gcc430two</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">more gcc 4.3.0 buildfixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6399&Path=SRC680%2Fgcc430icc">gcc430icc</a></font></td> <td class="SmallText1"><font class="SmallText1"> </font> <p style="padding: 2px; font-family: Courier,monospace;"><font class="SmallText1">gcc 4.3.0 buildfix for new icc module</font></p> <font class="SmallText1"> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6395&Path=SRC680%2Ffwk83_SRC680">fwk83_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5982&Path=SRC680%2Fcalcsolver">calcsolver</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Calc solver dialog and implementation</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6389&Path=SRC680%2Fautoextension01_SRC680">autoextension01_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">roll back changes regarding AutoExtension of Save(As) Dialog</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m246</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6354&Path=SRC680%2Fvcl85_SRC680">vcl85_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Still more 2.4 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6288&Path=SRC680%2Fucbfixes05_SRC680">ucbfixes05_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">UCB multithreading issues.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6121&Path=SRC680%2Ftransogl02">transogl02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Going further with the Impress OpenGL slideshow transitions</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6217&Path=SRC680%2Ftkr09">tkr09</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6140&Path=SRC680%2Ftkr07">tkr07</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 fixes for NSS (certificate validation) and NoLabel-Property fix [toolkit] </p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6192&Path=SRC680%2Fthbpp10">thbpp10</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 2.4 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5986&Path=SRC680%2Ftbe32">tbe32</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">OOo 2.4 accessibility bug fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6108&Path=SRC680%2Ftagged01">tagged01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes some tagged PDF related issues.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6166&Path=SRC680%2Fsw8u10bf04">sw8u10bf04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer bug fixes for OOo2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6362&Path=SRC680%2Fsw24bf02_SRC680">sw24bf02_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fix for issue i85216</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6303&Path=SRC680%2Fsjfixes03_SRC680">sjfixes03_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6256&Path=SRC680%2Fserbianisntsrcs">serbianisntsrcs</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">s/sr-CS/sr/, s/sh-YU/sh/</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6142&Path=SRC680%2Frt24">rt24</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Minor environment cleanup.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5971&Path=SRC680%2Freportdesign02">reportdesign02</a></font></td> <td class="SmallText1"><font class="SmallText1"> </font> <p style="padding: 2px; font-family: Courier,monospace;"><font class="SmallText1">Further bugfixing of SRB and dba</font></p> <font class="SmallText1"> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6196&Path=SRC680%2Fpj89">pj89</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Finishing WaE fixes for Mac OS X.<br><br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6359&Path=SRC680%2Fpentaho2_SRC680">pentaho2_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">External fixes for the report engine.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6131&Path=SRC680%2Fos109">os109</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixing OOo 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6180&Path=SRC680%2Fopenssl02">openssl02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 openssl build Issues</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6165&Path=SRC680%2Fonlineupdate6b">onlineupdate6b</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixes for Online Update Module</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6235&Path=SRC680%2Foj30">oj30</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">remove using namespace ::std from comphelper/stl_types.hxx</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6184&Path=SRC680%2Fnewportstl">newportstl</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Make x86_64 linux port (and other "unofficial" new ones like arm-oabi/arm-eabi/mipsel/mipseb/ia64...) default to using gcc stl and not stlport</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6358&Path=SRC680%2Fnetworkrepair_SRC680">networkrepair_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes to handle invalid file handles due to lost network connections.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6190&Path=SRC680%2Flocdat24">locdat24</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Locale data fixes for OOo2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6182&Path=SRC680%2Fkohei01">kohei01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">General Calc fixes:<br><br>* performance enhancement on built-in SEARCH function.<br>* support named ranges in built-in INDIRECT function.<br>* support Excel A1 style address in hyperlink.<br>* build fixes for gcc 3.3.5.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6198&Path=SRC680%2Fjsc20">jsc20</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">SDK relevant OO.org 2.4 bugfixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6289&Path=SRC680%2Fjl86_SRC680">jl86_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">new JRE for OOo</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6351&Path=SRC680%2Fjl85_SRC680">jl85_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6326&Path=SRC680%2Fjl84_SRC680">jl84_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6306&Path=SRC680%2Fimpress136_SRC680">impress136_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 fixes for impress/draw</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5866&Path=SRC680%2Fimpress132">impress132</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bug fixes for OOo 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5555&Path=SRC680%2Fimpress124">impress124</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bug fixes 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6050&Path=SRC680%2Fi18n39">i18n39</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">i18n bug fixes.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6176&Path=SRC680%2Fhro27">hro27</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Fixes for Windows system layer</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6323&Path=SRC680%2Fhro26_SRC680">hro26_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Update installation problems on Win9x, plus additional fixes from hro10</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5719&Path=SRC680%2Fhro24">hro24</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5950&Path=SRC680%2Fhr49">hr49</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Small fixes to stlport and build tools.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6039&Path=SRC680%2Fhcshared14">hcshared14</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Changes to the application help, Nov 07 and later</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6382&Path=SRC680%2Fgrepcheck">grepcheck</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">check for $EGREP</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6361&Path=SRC680%2Ffwk82_SRC680">fwk82_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 bug fixes ...</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6360&Path=SRC680%2Ffwk80_SRC680">fwk80_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Framework bugfixes for OpenOffice.org 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6122&Path=SRC680%2Fextras240">extras240</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bug-Fix-CWS for Extras.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6305&Path=SRC680%2Fdr58_SRC680">dr58_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Calc issues with target OOo 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6158&Path=SRC680%2Fdbawizards">dbawizards</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">cws to fix remaining bugs in database wizards</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6350&Path=SRC680%2Fdba24f_SRC680">dba24f_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fixing DBA show stoppers for 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6322&Path=SRC680%2Fdba24e_SRC680">dba24e_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6007&Path=SRC680%2Fdba24d">dba24d</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">ongoing DBA bug fixing towards 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6188&Path=SRC680%2Fcmcfixes40">cmcfixes40</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">misc minor fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6363&Path=SRC680%2Fchart21_SRC680">chart21_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">stopper bugs in chart</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6330&Path=SRC680%2Fc17v002_SRC680">c17v002_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6319&Path=SRC680%2Fc16v002_SRC680">c16v002_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6168&Path=SRC680%2Fbeppec56pdffix02">beppec56pdffix02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Add module icc to OpenOffice.org. This module will be used to generate ICC color profile.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6307&Path=SRC680%2Fab43_SRC680">ab43_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Extensible Help SDK sample </p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6077&Path=SRC680%2Fab42">ab42</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 fixes </p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m245</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6338&Path=SRC680%2Fxf02bigcleanup">xf02bigcleanup</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m244</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6116&Path=SRC680%2Fhcshared15">hcshared15</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Help content December 07 and later</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m244</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=3570&Path=SRC680%2Fxmlfilter02">xmlfilter02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5852&Path=SRC680%2Fwae4extensions">wae4extensions</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">This cws is an effort to fix warnings at buildtime in extensions</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6093&Path=SRC680%2Funoapi2">unoapi2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">add issue numbers into knownissue.xcl of $MODULE/qa/unoapi filder</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6157&Path=SRC680%2Ftkr08">tkr08</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 fixes / patches</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6266&Path=SRC680%2Fthiscomponent_SRC680">thiscomponent_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">fix the issue that ThisComponent in global Basic scripts is<br>invalid when the Basic IDE has the focus - i.e. when running<br>such global scripts from within the IDE.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6088&Path=SRC680%2Fsymex">symex</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6138&Path=SRC680%2Fsw8u10bf03">sw8u10bf03</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">2.4 bugfixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6129&Path=SRC680%2Fstl4leopardppc">stl4leopardppc</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">The purpose of the cws is to allow OpenOffice.org to be built on Mac OS X10.5 (PowerPC) <br>using system stl (i.e. using --without-stlport4 configure option )</pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6161&Path=SRC680%2Fsocs09">socs09</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6251&Path=SRC680%2Fso8s10u5_SRC680">so8s10u5_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6276&Path=SRC680%2Frt25_SRC680">rt25_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Small fixes for pack tooling, relevant for SO only.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5638&Path=SRC680%2Fqadev31">qadev31</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">test environment for API tests and Convwatch</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5915&Path=SRC680%2Fpentaho1">pentaho1</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Newest version of the Pentaho sources of the report engine.</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6147&Path=SRC680%2Fobo21">obo21</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Port for .Net 2008 Express</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6249&Path=SRC680%2Fnative125">native125</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Small fix for problems with userland scripts on Linux</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6092&Path=SRC680%2Flocalisation27">localisation27</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Localisation CWS for OOo 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6106&Path=SRC680%2Ffwk79">fwk79</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">More framework fixes for OOo 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6269&Path=SRC680%2Fdmgunarchive_SRC680">dmgunarchive_SRC680</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Make dmg a valid PKGFORMAT value</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6239&Path=SRC680%2Fcmcfixes41">cmcfixes41</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Workspace to remove unused modules of XmlSearch, xt and rvpapi</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5806&Path=SRC680%2Fchart15">chart15</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixes for chart2</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5539&Path=SRC680%2Fawtfixes1">awtfixes1</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Improve awt and vcl, adding hooks for layout</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6181&Path=SRC680%2Fause089">ause089</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">get windows buildbot patches into cvs</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5846&Path=SRC680%2Fause085">ause085</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">rework dependency generation</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="http://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5918&Path=SRC680%2Faquavcl04">aquavcl04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Several misc fixes for Aqua version, including, Testtool issues, <br>misc scrollbar issues, clipping, timers, mousewheel, more Cocoa ..etc </pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m243</font></td> </tr> </tbody> </table> <br> <br> <table> <tbody> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5985&Path=SRC680%2Frsclangvar">rsclangvar</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">implement language variant fallback in rsc</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5874&Path=SRC680%2Fnative114">native114</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=4870&Path=SRC680%2Fhunspell2">hunspell2</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">Hunspell spell checker 1.1.12 (http://hunspell.sf.net):<br>- rule and dictionary based phonetic suggestions (new en_US dictionary uses this feature)<br>- better Arabic, Catalan, Dutch, French, German, Hebrew, Italian etc. support<br>- several bug fixes, eg. Issue 76067 (crash-like deceleration for hexadecimal numbers with long ff sequence)<br>- optimized memory handling (- 3/4 MB with en_US dictionary)<br></pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6030&Path=SRC680%2Fsb80">sb80</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">fixes for problems introduced by CWS sb71</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6061&Path=SRC680%2Fsupdremove">supdremove</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">cleanup: remove obsolete SUPD macro use</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6109&Path=SRC680%2Fadc21">adc21</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Allow absolute URLs for links to the developer manual. </p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5752&Path=SRC680%2Fnative110">native110</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Package restructuring, part 3</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6110&Path=SRC680%2Fobo19">obo19</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Build and environment fixes for MacOSX 10.5. (Leopard) </p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6155&Path=SRC680%2Fause088">ause088</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">small build fixes</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6154&Path=SRC680%2Fbeppec56pdffix01">beppec56pdffix01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bug fix for pdf export filter (PDF/A-1), on the way to 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5916&Path=SRC680%2Ffwk77">fwk77</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Bugfixes for 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6153&Path=SRC680%2Fmingwport09">mingwport09</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Catch-up fixes for MinGW port</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6099&Path=SRC680%2Fsw8u10bf02">sw8u10bf02</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Writer core bug fixes for OOo2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6151&Path=SRC680%2Fucbfixes04">ucbfixes04</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">Misc UCB bug fixes for 2.4</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6174&Path=SRC680%2Fgcc430">gcc430</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">clean up the warnings that are now errors in gcc 4.3.0</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6179&Path=SRC680%2Fkendy19">kendy19</a></font></td> <td class="SmallText1"><font class="SmallText1"> <pre style="padding: 2px; font-family: Courier,monospace;">OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER() <br>is defined as empty, causes warning gcc 4.2.1. This CWS fixes that.</pre> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=5912&Path=SRC680%2Fmba24issues01">mba24issues01</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow2"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6134&Path=SRC680%2Frhino15r5">rhino15r5</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;">update rhino to the most recent 1.5 version</p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> <tr class="TableRow1"> <td class="SmallText1"><font class="SmallText1"><a href="https://tools.services.openoffice.org/EIS2/cws.ShowCWS?logon=false&Id=6219&Path=SRC680%2Fsrc680m242masterfix">src680m242masterfix</a></font></td> <td class="SmallText1"><font class="SmallText1"> <p style="padding: 2px; font-family: Courier,monospace;"></p> </font></td> <td class="SmallText1"><font class="SmallText1">SRC680m242</font></td> </tr> </tbody> </table> <br> <br> <br> <br> <input name="ids" value="6135,5284,5902,5996,6084,6097,6128,5780,5875,6115,6118,6107,6103,6112,6141,6145,6094,6146,6101,5798,5870,5936,5900,5550,5756,5958,5640,5777,5320,5600,5974,6041,5626,5661,5643,6031,5868,4831,6036,5786,6025,6023,5836,5892,5845,6038,5616,6059,6063,6014,6057,6085,6079,5913,6021,6042,6083,6035,5078,5880,5906,5254,6111,6087,6114,6095,6091,6065,6054,6068,6075,6067,6069,6070,6066,5804,5760,5914,5934,5921,5248,6009,5984,5869,5975,5641,5327,5976,6048,6040,6072,5907,5887,5964,6055,5999,6032,6015,6011,6017,6016,6002,6027,6004,6003,6001,6012,6000,6005,6019,6018,6006,5795,5654,5547,5929,5863,5790,5821,5926,5966,5905,6024" type="hidden"> <br> <br> </body> </html>