Language

The Free and Open Productivity Suite
Released: Apache OpenOffice 4.1.15

3.2 m52 Snapshot - Release Notes


These notes contain changes between DEV300_m41 and DEV300_m52. Please have a look for older Release Notes if you need to know former changes (example: http://development.openoffice.org/releases/3.0.m28_snapshot.html).
This release will install as OOo-Dev 3.2.
Sources can be received from SVN by tag DEV300_m52.

Important note:

DEV300_m40 was the last build towards OOo 3.1 from this codeline. The next 3.1[.1] build will be from the OOO310 codeline.
DEV300_m41 is the first build that goes on with the unstable trunk. It does not belong to OOo 3.1.
See also the blog article on GullFOSS.

What's new ?

Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Bubble Chart i64689 Chart Wizard This specification describes the Chart Wizard which is used to create charts. The list of possible chart types now also includes bubble charts and filled net charts. Matthias Müller-Prove (MMP) speclink chart
Configuration based database drivers i101587   feature-info:
Currently the db drivers are hard coded in OOo. The integration of new ones as extension isn't possible. Therefor all drivers have to bring their own configuration with them. Each driver has to define: - URLPattern : defines the URL which the driver supports - ParentURLPattern : allows to define a parent hierarchy - Driver : defines the UNO factory name used to create the db driver - DriverTypeDisplayName : defines the name which is shown to the user when creating a new db Additionally 3 sets can be filled, which are - Properties : describes properties which the driver understand - Features : describes which checkboxes should be shown in the special settings dialog - MetaData : describes additional settings which are handled by the db application itself As this 3 categories are set, it can not be defined what the sets will contain. But currently they support: // known JDBC settings JavaDriverClass // known settings for file-based drivers Extension CharSet HeaderLine FieldDelimiter StringDelimiter DecimalDelimiter ThousandDelimiter ShowDeleted // known ODBC settings SystemDriverSettings UseCatalog // settings related to auto increment handling AutoIncrementCreation AutoRetrievingStatement IsAutoRetrievingEnabled // known Adabas D driver setting ShutdownDatabase DataCacheSizeIncrement DataCacheSize ControlUser ControlPassword // known LDAP driver settings HostName PortNumber BaseDN MaxRowCount // misc known driver settings ParameterNameSubstitution AddIndexAppendix // known SDB level settings IgnoreDriverPrivileges NoNameLengthLimit AppendTableAliasName GenerateASBeforeCorrelationName ColumnAliasInOrderBy EnableSQL92Check BooleanComparisonMode TableTypeFilterMode RespectDriverResultSetType UseSchemaInSelect UseCatalogInSelect EnableOuterJoinEscape PreferDosLikeLineEnds FormsCheckRequiredFields EscapeDateTime IgnoreCurrency TypeInfoSettings LocalSocket Please have a look at the configuration schema org.openoffice.Office.DataAccess/Drivers.xcs for more information.
ocke.janssen@sun.com
dba
"First line as column names" support for Copy Table Wizard i80917   feature-info:
The Copy table Wizard now contains an additional check box which is enabled when RTF or HTML format is to copied into a database. The check box is label: Text [ en-US ] = "Use first ~line as column names" ; When checked the first row is used to identify column names, when not checked the first row will be handled as a normal data row.
ocke.janssen@sun.com
dba
new form control property: "Visible" i88878   feature-info:
The new boolean property "Visible" has been added to all form control types (except the "Hidden control", which has no visual representation in the document, anyway). This property controls whether or not the control shall be visible in alive mode. In design mode, the control is always painted as before, to not make designing an invisible control unnecessarily difficult. Note that if this property is set to "Yes" (the default, mimicking the behavior as known up to 3.1), this not necessarily means the control will really appear on the screen. Additional constraints are applied when calculating a control's effective visibility. For instance, a control placed in a hidden section in Writer will never be visible at all, until at least the section itself becomes visible. If the property is set to "No", then the control will always be hidden in alive mode, no matter what. OpenOffice.org versions up to OOo 3.1 will silently ignore this property when reading documents which make use of it. The property is also used when im/exporting documents to Microsoft Excel's binary file format.
frank.schoenheit@sun.com
dba
control property "Mouse wheel scroll" i99704   feature-info:
All form controls which are able to react on the mouse wheel, by scrolling or spinning their content, got a new property called "Mouse wheel scroll". This property is available in the control property browser, immediately below the "Tab order" property, and can take one out of three possible values: - Never: Completely ignore the mouse wheel - When focused: react on the mouse wheel only when the control currently has the focus - Always: always react on the mouse wheel, even when the control currently does not have the focus, but the mouse is over the control when the wheel is operated The defaults for this property is "When focused", which means newly created controls behave as before. When writing documents with controls making use of this new property, older versions will silently ignore the property. In the table data view for database documents, this property is used to prevent the user accidentally spinning the content of numeric grid columns: In this view, the mouse wheel is used to scroll the complete result set, not individual cell content (which formerly happened accidentally and too easily).
frank.schoenheit@sun.com
dba
Basic dialog controls: new property "Visible" i88878   feature-info:
The new boolean property "Visible" has been added to all UNO dialog control types. This property controls whether or not the control shall be visible in the living dialog. Note that if this property is set to "Yes" (the default, mimicking the behavior as known up to 3.1), this not necessarily means the control will really appear in the dialog. Additional constraints are applied when calculating a control's effective visibility. For instance, a control belonging to a non-current step of the dialog is still hidden. OpenOffice.org versions up to OOo 3.1 will silently ignore this property when reading UNO dialogs which make use of it.
frank.schoenheit@sun.com framework
Convert text to table dialog changed i101814   feature-info:
The AutoFormat button has been moved in the dialog to ease localization. The dialog is now similar to Insert/Table.
oliver.specht@sun.com
word processing
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Allow to turn off lock-file base document file locking. i100123   feature-info:
To work properly, the lock-file based document file locking in OOo needs the possibility to create a lock file in the way that it does not replace the existing one and to remove it. Although normally there are possibilities to do it, sometimes this is not the case. Usually, if the system file locking is on, the office can try to avoid creation of the lock file in this cases, since the file is locked by system file locking. And in case somebody would use the office without system file locking the collision would be detected by the new implementation anyway. This solution is taken to let the most probable scenarios work even in those cases. The problem happens when the lock file can be created but can not be removed for any reason. Although in all the known cases it is either a misconfigured network or a bug in system implementation, it looks to make sense to allow the system administrator to turn the OOo lock-file based file locking off. Thus it would allow to workaround the problem without changing the environment. For this reason there is a new configuration entry "/org.openoffice.office.Common/Misc/UseDocumentOOoLockFile" that is set to "true" by default. It should be set to "false" to deactivate the usage of the lock file. The deactivation will not prevent creation of the lock file. The office will just take the ownership over the lock file even if it already exists. It is of course strongly suggested not to turn off system file locking and lock-file based file locking together, since there will be no real locking at all in this case.
Mikhail.Voytenko@Sun.COM framework
Applying cell borders to multiple selection i50019   feature-info:
Previously it was only possible to apply cell borders to a single rectangular cell range. Now borders can be applied to any selection of cells. A list of rectangular ranges is determined from the selection, and inner/outer borders are applied to each of the ranges.
niklas.nebel@sun.com sc
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Rotate data labels i24203 Chart Data Labels The options for data labels have been extended. It is possible now to define a number format for the value and the percentage value and to display both values at the same time. Furthermore one can define a separator for the different parts of the data label. The placement of the labels can be manipulated via a given set of predefined positions. ingrid.halama@sun.com speclink chart
Asian typography page for chart elements i92128 Asian Typography tab page for Chart A new tab page “Asian Typography” is now available for Title, Legend, Axes and Data Series. It contains an option to enable or disable the spacing between the different types of text. ingrid.halama@sun.com speclink chart
button form controls: new "Default State" property, applicable to toggle buttons i100237   feature-info:
Button controls in documents now have an additional property "Default status". It is enabled if and only if the button's "Toggle" property is set to "Yes", and works like the "Default status" property for e.g. check box controls: It controls in which status the button will be when resetting the form to which the button belongs.
frank.schoenheit@sun.com dba
database formscan be zoomed i41930   feature-info:
Database forms can now be zoomed, much like all other documents: You'll find the usual View/Zoom menu item, and the zoom slider in the status bar. (Ctrl+Scroll wheel continues to work, as it already did before.)
frank.schoenheit@sun.com dba
form control property browser: added Position, Size, and Anchor i99056   feature-info:
In the property browser for form controls, you can now also change the position and size of the control, as well as its anchor (in document types where anchoring is supported, e.g. text docs and spreadsheets). This is especially useful when you want to modify the geometry of multiple controls at once, which previously required invocation of a modal dialog for every control, and now can be done by selecting all controls, and simply entering the new value(s) in the property browser.
frank.schoenheit@sun.com dba
font name/style/size displayed in form control property browser i99422   feature-info:
When displaying the properties of a form control in the property browser, the "Font" property will now display the name, the style (regular, bold, italic) and the size of the current control font. (previously the respective field was simply empty, and the font could only be seen when opening the Character Set dialog.)
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Display of hidden cells i91578 Plotting of missing or hidden Values When plotting values in a chart it can happen that some of the values are missing - for example when a cell was left empty or did not contain a valid value. The users now can decide what should be plotted in such cases:a) ingrid.halama@sun.com speclink chart
Math: "View / Selection" now "View / Formula Elements" i33387   feature-info:
The menu entry "View / Selection" in Math is now labeled "View / Formula Elements".
thomas.lange@sun.com

formula editor
SYLK export handling of embedded semicolons and double quotes; program ID field content changes to CALCOOO32 i100205   feature-info:
When writing SYLK files, in string data embedded double quotes are not escaped anymore by doubling them, semicolons are now escaped by doubling them. Previous releases had a bug that did it vice versa, doubling quotes but not semicolons. In formula expressions, if the formula contained embedded semicolons, the expression was written as a quoted string, again doubling embedded quotes, but not semicolons. Instead, expressions now are not written as a quoted string, but semicolons escaped by doubling them. In the previous implementation, Calc could not correctly read data exported by/for Excel if the data contained double quotes (data is truncated) or semicolons (read in duplicated), nor could it produce such files correctly. NOTE: The program ID written changes from SCALC3 (ID;PSCALC3) to CALCOOO32 (ID;PCALCOOO32) due to the incompatible file format. Older releases will treat such files as alien data, not reading the formula expressions. The result will be much the same as if a file produced by Excel was read in. The new code is able to read both variants, translating data from the corrupted file format.
eike.rathke@sun.com

sc
Sorting with toolbar buttons now includes formats i13829   feature-info:
When a cell range is sorted using the "Sort Ascending" or "Sort Descending" toolbar button, cell formats are now sorted with the cells.
niklas.nebel@sun.com

sc
More filter criteria in "Standard Filter" dialog i17995   feature-info:
The "Standard Filter" dialog now shows 4 instead of 3 conditions, and has a scroll bar which allows to access up to 8 conditions in total.
niklas.nebel@sun.com
 
sc
Change source range of a DataPilot table i23658   feature-info:
It's now possible to change the cell range from which a DataPilot table takes its data.
niklas.nebel@sun.com
 
sc
"New Style" buttons in "Conditional Formatting" dialog i27253   feature-info:
The "Conditional Formatting" dialog now has a button "New Style" next to each style list box. Pressing one of the buttons opens the "Cell Style" dialog for a new style, and if OK is pressed there, selects the new style in the list box. This allows to create a new style without closing the "Conditional Formatting" dialog.
niklas.nebel@sun.com
sc
Cell content is selected in validity selection list i27666   feature-info:
If a cell has validity of type "Cell range" or "List", when the validity selection list drop-down is opened, the existing cell content is now selected in the list.
niklas.nebel@sun.com

sc
Transporting newlines in spreadsheet formulas i35913   feature-info:
Newline characters (0x0A, decimal 10) created with Control+Enter in multiline text cells are now preserved in spreadsheet formulas. Previously the newline character was replaced by a space character. The newline character can be searched for using the SEARCH or [HV]LOOKUP or MATCH functions with the \n regular expression. A newline character can be inserted in a formula using the CHAR(10) function. If the result contains newline characters it is displayed as a multiline cell. The multiline result is exported to file formats capable handling newlines in cell data, such as CSV.
eike.rathke@sun.com

sc
AutoFill for cells with numbers at the start and end i5550   feature-info:
If the starting cell for AutoFill contains a number at the start and the end, and there's no space after the first number, the number at the end is now incremented. This allows easier creation of things like lists of IP addresses (10.0.0.1 is followed by 10.0.0.2).
niklas.nebel@sun.com

sc
Easier deselection of sheets if all sheets are selected i70320   feature-info:
If all sheets in a document are selected, each of the following actions deselects all except the current sheet: - Changing the active sheet - Clicking into the area right of the sheet tabs (if not all sheets are selected, this opens the "Insert Sheet" dialog as before) - The new entry "Deselect All Sheets" in the context menu for the sheet tabs
niklas.nebel@sun.com

sc
Copy & Paste of merged cells over other merged cells i7500   feature-info:
Merged cells can now be pasted from the clipboard onto other merged cells. Instead of an error message, the old cells are unmerged.
niklas.nebel@sun.com

sc
Easier deselection of sheets if all sheets are selected i7921   feature-info:
If all sheets in a document are selected, each of the following actions deselects all except the current sheet: - Changing the active sheet - Clicking into the area right of the sheet tabs (if not all sheets are selected, this opens the "Insert Sheet" dialog as before) - The new entry "Deselect All Sheets" in the context menu for the sheet tabs
niklas.nebel@sun.com

sc
Inserting/deleting in the middle of merged cells i8302   feature-info:
Inserting or deleting cells, columns or rows into/from the middle of merged cells, which previously caused an error message, is now possible. The merged cell range is enlarged/reduced.
niklas.nebel@sun.com sc
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Keyboard shortcut configuration dialog now supports "ALT" modifier i4756   feature-info:
Though the configuration itself was able to handle it all the time, the dialog for configuring keyboard shorcuts never allowed to use the ALT-key. Now ALT as well als SHIFT-ALT, CTRL-ALT, SHIFT-CTRL-ALT modifiers can be used in the dialog. The dialog does not check if a shortcut can be used or if the system already catches it. The easiest way to find out if the shortcut is usable is to use it to navigate to the corresponding entry in the listbox before trying to assign a command to it.
mathias.bauer@sun.com

framework
New text field "Page Count" in impress/draw i14832 Text fields in impress Christian Lippka speclink presentation
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
SRB FormWizard supports binary field types i76783   feature-info:
In FormWizard it is now possible to select also the BINARY, VARBINARY, LONGVARBINARY datatypes, which will insert as Pictures.
Lars.Langhans@sun.com
dba
Shrink Sections in Sun Report Builder i79423   feature-info:
There exist 3 new items in the toolbar to remove empty space between section ranges and the first or last control. * Top shrink removes the top empty space between section top range and the first top control. * Bottom shrink removes the bottom empty space between the section bottom range and the last bottom control. * Shrink removes free spaces from both directions from top and from bottom. This function could be very helpful if the report will be export as calc sheet.
Lars.Langhans@sun.com
dba
SRB Grouping Dialog has a new up/down/delete toolbar i83082   feature-info:
In Report Builder grouping dialog exist a new toolbar which handles the up and down of grouping entries and also a new delete button to remove grouping entries.
Lars.Langhans@sun.com
dba
multi-line text form controls preserving their selection i89821   feature-info:
Multi-line text controls in forms now preserve their selection when losing and re-gaining the focus, making text exchange (like multiple cut'n'pastes) somewhat easier this way.
frank.schoenheit@sun.com
dba
human-readable event bindings in the property browser i95963   feature-info:
The event bindings in the form/control property browser are now somewhat more human readable, in that a binding formerly displayed as vnd.sun.star.script:Standard.Module1.Main?language=Basic& location=application now is displayed as Standard.Module1.Main (application, Basic)
frank.schoenheit@sun.com
dba
event assignments in the property browser can be reset with DEL key i95977   feature-info:
In the form/control property browser, event assignments can be reset using the DEL key. That is, the read-only input field which is to display (but not modify) the event assignment now at least accepts DEL, completely revoking the assignment for the given event.
frank.schoenheit@sun.com
dba
property browser: mouse-selection-behavior in property combo boxes changed i96429   feature-info:
In the property browser, for properties displayed using a combo box (so you can enter free text, but select from a pre-defined list of possible options as well), the behavior for mouse selections changed: Formerly, when you selected an entry from the list, you needed to focus another cell somewhere else before the changed value was committed (even though it was already entered into the text field). Now, the property value is committed already when you select the entry from the list, which makes the work flow somewhat smoother in many cases.
frank.schoenheit@sun.com
dba
SRB controls bound to data source displays it data source name i96523   feature-info:
In Sun Report Builder all controls bound to a data source displays it's data source name the prefix is like Calc a '=' (equal).
Lars.Langhans@sun.com
dba
SRB toolbar items has now also menu items i96782   feature-info:
All current toolbar items for Report Builder are now also available in the menu structure. For clear work, all items which manipulate existing fields can found in the edit menu structure like section shrink or control resizings. New controls which have to insert are stored in the insert menu structure like picture or shapes.
Lars.Langhans@sun.com
dba
SRB Context menu contains also section shrink items i96793   feature-info:
The context menu in active section contains a shrink item, which has a sub menu for the new shrink feature.
Lars.Langhans@sun.com
dba
form control property browser: renamed "Print" to "Printable" i97355   feature-info:
The property "Print" in the property browser, when invoked for a form control, has been renamed to "Printable".
frank.schoenheit@sun.com
dba
button control properties: renamed the action-related events i97356   feature-info:
Form control buttons feature two events which are fired when the button is pressed, one to veto the actual firing, and one to do an actual action associated with the button. Formerly, they were called "Before commencing" and "When initiating", and as such a constant source of confusion, since it was non-obvious which event to use for which purpose. This situation hopefully improved a little bit with renaming the events (in the property browser) to "Approve action" and "Execute action".
frank.schoenheit@sun.com
dba
SRB ReportWizard supports binary field types i98557   feature-info:
It is possible to select BINARY, VARBINARY, LONGVARBINARY datatypes in the Report Wizard. This will insert ImageControls instead of formatted fields. The images will be set 4cm high. Pictures will scale down to this size.
Lars.Langhans@sun.com
dba
Multiplatform shortcuts support i99296 Abstract
rvojta@openoffice.org speclink framework
Menu items display changed i42227 Menus A style guide for menus in OpenOffice.org. philipp.lohmann@sun.com speclink gsl
Optionitem "Icons in menus" now listbox with three options i95318   feature-info:
The Tools/Options->OpenOffice.org/View page now has a listbox for the "Icons in menus" option. The enhancement is implemented in CWS gtkmenuimages. This was a checkbox before and is now a listbox offering three options: 1) Automatic 2) Hide 3) Show
Joerg.Skottke@Sun.COM
ui
The base line of Wiki Publisher is changed to OOo3.0 i81373   feature-info:
Unfortunately, it is not possible to install an xslt-transformation filter as a part of extension in OOo2.4. The problem is fixed in OOo3.0, thus the new base line for the new versions of the extension is moved to OOo3.0 As result the users of the OOo2.4 will not be able to install the new version of the extension.
Mikhail.Voitenko@sun.com
word processing
MediaWiki filter is no more installed as part of OOo installation i99462   feature-info:
The MediaWiki filter is not installed as part of OOo installation any more. Instead it will be installed as a part of Wiki Publisher extension, since the two implementations are used together and it allows to provide updates for the filter independently from OOo releases.
Mikhail.Voitenko@sun.com
word processing
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Ctrl+F11 puts the focus into the style ListBox i81468   feature-info:
The key combination Ctrl+F11 doesn't call the Style Catalog anymore. Now it puts the focus into the style ListBox in the toolbox of text, frames, OLE-objects and pictures. It makes it easier to apply a paragraph or frame style without using a mouse.
oliver.specht@sun.com

word processing
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Extended UNO AWT menu API i96390 Current state
carsten.driesner@sun.com speclink framework
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Locale data for Maltese (Malta) [mt-MT] i75365   feature-info:
Added locale data for Maltese (Malta) [mt-MT]. The locale is selectable for character attribution and spell-checking, as default locale, default document language and available for number formats and outline numbering.
eike.rathke@sun.com
L10N
Locale data for Myanmar (Myanmar) [my-MM] i83349   feature-info:
Added locale data for Myanmar (Myanmar) [my-MM]. The locale is selectable for character attribution and spell-checking, as default locale, default document language and available for number formats and outline numbering.
eike.rathke@sun.com
L10N
Locale data for Shuswap (Canada) [shs-CA]. i86084   feature-info:
Added locale data for Shuswap (Canada) [shs-CA]. The locale is selectable for character attribution and spell-checking, as default locale, default document language and available for number formats and outline numbering.
eike.rathke@sun.com
L10N
Arabic entries in language list box i90867   feature-info:
Added new Arabic locales to the language list box, selectable for character attribution and spell-checking. Arabic (Chad) [ar-TD] Arabic (Comoros) [ar-KM] Arabic (Djibouti) [ar-DJ] Arabic (Eritrea) [ar-ER] Arabic (Israel) [ar-IL] Arabic (Mauritania) [ar-MR] Arabic (Palestine) [ar-PS] Arabic (Somalia) [ar-SO] Arabic (Sudan) [ar-SD]
eike.rathke@sun.com
L10N
Arabic entry in language list i93694   feature-info:
The language table and list box now have an "Arabic" entry (without region/country) that does not correspond to a locale. It is not offered for language attribution et al, but is selectable if an Arabic language pack is installed, instead of the previous "Arabic (Egypt)".
eike.rathke@sun.com
L10N
Languages classified as RTL i95794   feature-info:
The following languages are now classified as Right-To-Left, as they are primarily written in Perso-Arabic script: Kashmiri Sindhi
eike.rathke@sun.com
L10N
Locale data for Tok Pisin (Papua New Guinea) [tpi-PG] i95852   feature-info:
Added locale data for Tok Pisin (Papua New Guinea) [tpi-PG]. The locale is selectable for character attribution and spell-checking, as default locale, default document language and available for number formats and outline numbering.
eike.rathke@sun.com
L10N
Classified some languages as CTL i96840   feature-info:
The following languages are now classified as CTL languages: Bodo Dogri Maithili Dhivehi
eike.rathke@sun.com
L10N
Positioning of axes and axis labels i85625 Axis Positioning This specification describes the positioning of axes including the positioning of axes labels and interval marks inside the chart. ingrid.halama@sun.com speclink chart
new: "Text direction" property for form controls i30631 R2L-enabled Control Forms In regions where people uses right-to-left directed text like Arabia or Israel (Hebrew) forms will look strange if they need to use left-to-right layout control forms.This specification will enhance OpenOffice.org 2.0 with control forms that can have both text directions/layout - left-to-right and right-to-left. frank.schoenheit@sun.com speclink dba
Function Autopilot from inside the SRB i94535   feature-info:
The Function Autopilot which is used in the spreadsheet can now be used inside the Sun Report Builder. The Autopilot can be started from: - the data field ( formatted field and image control) - the conditional print expression http://wiki.services.openoffice.org/wiki/SUN_Report_Builder/Documentation#Report_Navigator_-.3E_Report_-.3E_Functions_-.3E_Function_-.3E_Properties_of_General_Tab - the formula - the initial value The Autopilot shows all functions which are supported by the report engine. The documentation for the SRB can be found here http://wiki.services.openoffice.org/wiki/SUN_Report_Builder/Documentation The function description can be found here http://wiki.services.openoffice.org/wiki/Base/Reports/Functions
ocke.janssen@sun.com
dba
Automatic binding of first table when opening a new Report i96428   feature-info:
When creating a new report in a database, the report will be bound to the first table from the database. Additional the Add Field dialog will open with all available fields.
ocke.janssen@sun.com
dba
Report output format now also available in the property browser i96434   feature-info:
The property browser now shows the selected output format for a report on teh data page when it is selected in the SRB. Currently available formats are - Text document - Spreadsheet document
ocke.janssen@sun.com
dba
Add Field dialog supports sorting and insert toolbar i96520   feature-info:
The Add Field dialog now has a toolbar above the listbox for the fields. The toolbar allows to sort the fields ascending and descending as well to remove the sort order and restore origin order from the source (table,query). Additional the toolbar contains an "Insert" entry which allows to insert the selected fields into a report section. Multiselection of fields is also supported.
ocke.janssen@sun.com
dba
Allow anti-aliasing of drawing objects i28526

armin.le.grand@sun.com speclink drawing
Unify DrawObject modification with full attributes i95646 Solid Dragging: Adapt Tools/Options/View dialog settings concerning 3D, AntiAliasing and DrawObject Interactions This Specification describes three single tasks which are so closely related, that i will describe them in a single specification. The following definitions of the three tasks will be used throughout the document: armin.le.grand@sun.com speclink drawing
Support images in extension help i83627 Extensible Help 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. Andreas Bregas (ab) speclink framework
File locking implementation changes. i95809 File Locking File locking is needed to control access to a document. If a file/document is locked, nobody else could change/delete the document. A file locking mechanism is offered by the operating system, but in some cases this mechanism does not/could not work. Therefore OOo implements an own mechanism beside the one provided by the operating system. System and OOo file locking are combined. This allows OOo to have a reliable locking also when the locking from the operating systems fails in some cases. Furthermore it allows to OOo see who has already opened the document. Frank Loehmann (FL) speclink framework
Allow usage of default master password. i97092 Electronic Signatures and EncryptionGraphical User Interface (GUI)
Mikhail.Voitenko@sun.com speclink framework
Remove unused 3D options i95644 Solid Dragging: Adapt Tools/Options/View dialog settings concerning 3D, AntiAliasing and DrawObject Interactions This Specification describes three single tasks which are so closely related, that i will describe them in a single specification. The following definitions of the three tasks will be used throughout the document: armin.le.grand@sun.com speclink gsl
Make slideshow media controllable via effects i91250

christian.lippka@sun.com speclink presentation
Sorting improvements i20491   feature-info:
Sorting has been improved: - Sorting preserves the original order of entries with equal sort keys. - If there are no previous sort settings, the sort dialog defaults to the column of the cursor position. The toolbar buttons always use the cursor position. - The toolbar buttons use the same logic as the sort dialog to determine if a range has column headers.
niklas.nebel@sun.com
sc
Sorting improvements i22758   feature-info:
Sorting has been improved: - Sorting preserves the original order of entries with equal sort keys. - If there are no previous sort settings, the sort dialog defaults to the column of the cursor position. The toolbar buttons always use the cursor position. - The toolbar buttons use the same logic as the sort dialog to determine if a range has column headers.
niklas.nebel@sun.com
sc
INDIRECT now supports the '!' sheet separator i30172   feature-info:
For MS-Excel interoperability the INDIRECT function now supports the '!' exclamation mark as sheet name separator when interpreting cell address strings, additionally to the '.' dot separator Calc uses. This change 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
eike.rathke@sun.com
sc
Rename sheet with double-click i4517   feature-info:
Double click on a sheet tab now shows the rename dialog.
niklas.nebel@sun.com
sc
Repeat vectors if used in 2D array i46681   feature-info:
A column or row vector is now replicated if used in an array formula such that a 2D matrix is required by an operation but only a vector was given. For example, the formula ={1;2;3} entered as a matrix formula in a range selection of 3 columns by 2 rows results in two rows with values 1 2 3 each. This works also in not so trivial cases, http://qa.openoffice.org/issues/show_bug.cgi?id=46681 mentions a few use cases. This change 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
eike.rathke@sun.com
sc
Sorting improvements i7277   feature-info:
Sorting has been improved: - Sorting preserves the original order of entries with equal sort keys. - If there are no previous sort settings, the sort dialog defaults to the column of the cursor position. The toolbar buttons always use the cursor position. - The toolbar buttons use the same logic as the sort dialog to determine if a range has column headers.
niklas.nebel@sun.com
sc
Formula syntax in tip help i86856

niklas.nebel@sun.com speclink sc
Zoom slider in Calc status bar i88437   feature-info:
The Calc status bar now has a slider for the zoom factor, like Writer (since 3.0) and Draw/Impress (m35).
niklas.nebel@sun.com
sc
Scaling factor in toolbar for page preview i88521 Print Output Scaling Factor According to the request of the to-do list in O community, the feature is to add resizeable margin on page preview in Frank Loehmann (FL) speclink sc
Scroll wheel switches pages in page preview i89145   feature-info:
If an entire page is visible in the page preview, the mouse scroll wheel can now be used to switch to the previous/next page.
niklas.nebel@sun.com
sc
BETADIST with optional parameter for cumulative/density i91547   feature-info:
The BETADIST spreadsheet function now has an additional optional 'cumulative' parameter to specify whether to calculate the probability density function or the cumulative distribution function, defaulted to TRUE for compatibility. This change 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 A new implementation of BETADIST now yields results with a much better precision than in earlier releases.
eike.rathke@sun.com
sc
Storage of data pulled in by external references changed i92797   feature-info:
The implementation of how data pulled in by references to external documents in formulas is stored internally was changed. Previously, all data of a referred external sheet was stored in a hidden sheet. Now only the data referred is stored in a separate structure, hidden sheets are not created anymore. This has the advantages that - By not creating hidden sheets the amount of available 255 sheets is not decremented. - It should be possible to refer more than 254 external sheets, given enough memory for the amount of data of course. - Less data needs to be stored when saving the document to file. - No unintended data leakage may occur because data not referred is not saved to files. Note that the external sheets will not show up anymore in the Navigator. For ODF file storage the data is still saved as external sheets, previous versions will be able to read the document. Re-saving an already existing document with the new version may result in a significantly decreased size of the file's storage, depending on the previous amount of data in the entire sheet and the amount of data actually used in formulas.
eike.rathke@sun.com
sc
Added EUROCONVERT function i93789   feature-info:
The EUROCONVERT spreadsheet function to convert between former currencies of the Eurozone is implemented, including import from and export (binary) to Excel file formats. This change 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
eike.rathke@sun.com
sc
New GAMMA, CHISQDIST, CHISQINV, changed GAMMADIST. i94555   feature-info:
Several changes according to ODFF. (1) Introduce the GAMMA function. (2) Introduce CHISQDIST. In contrast to CHIDIST it gives the left tail probability, same as other distributions do. In addition it has an optional parameter to calculate the density function. (3) Introduce CHISQINV. (4) Adapt the "cumulative" parameter of the GAMMADIST function to be optional. If omitted, the default value 1 is stored in ODF documents and export to Excel for compatibility. (5) Adapt the domain of CHIDIST to allow negative x, see ODFF 6.17.10. (6) Remove the constraint "degrees of freedom < 1.0E5" from CHIDIST and CHIINV because they are no longer needed with the new implementation. Unfortunately the identifier GAMMAINV is already used for the inverse of the Gamma-distribution. It can likely be confused to be the inverse of the Gamma function. A comment in the application help is necessary. These changes align with the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula Note: for GAMMADIST and GAMMAINV, the third parameter 'beta' is used in the way that mean=alpha•beta, but ODFF draft spec uses the third parameter 'lambda' in the way that mean=alpha/lambda. This needs to be changed in ODFF spec. The application help must explain, which use of the parameter OOo has, because the common usage of the parameter differs between countries. Note: The domain of the GAMMA function contains negative values. The ODFF draft spec is not adapted yet.
eike.rathke@sun.com
sc
DATEVALUE and TIMEVALUE now return date or time only i94765   feature-info:
The DATEVALUE and TIMEVALUE spreadsheet functions now return the numeric value for date repectively time only. In the case of DATEVALUE only the integer part of the date serial is returned, in the case of TIMEVALUE only the fractional part is returned. Previously, both functions returned the combined integer and fractional value. This change 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
eike.rathke@sun.com
sc
Base parameter of LOG now optional i96835   feature-info:
The 'base' parameter of the LOG spreadsheet function is now optional, defaulted to base 10. The implementation already handled this, but it was not reflected in the UI of the formula wizard. This change 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
eike.rathke@sun.com
sc
Cumulative parameter of POISSON now optional i96837   feature-info:
The 'cumulative' parameter of the POISSON spreadsheet function is now optional. If omitted, storing the function in ODF files adds the default value for backwards compatibility. Also during export to Excel the parameter is added, as Excel expects all 4 parameters to be present. This change aligns with the definition given in the OASIS ODFF/OpenFormula specification available at http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula
eike.rathke@sun.com
sc
New "Context" mode for numerals setting i22396
Digits used in Arabic text (“Hindi digits”) are different from digits in Western text (“Arabic digits”). Since some of the IMEs (Input Method Editor) do not deliver the correct Hindi digits but the common Arabic digits, a configuration setting has been implemented for OpenOffice.org 1.2 that allows the user to switch the digits that are shown in the document. This setting used to have three different states: “all digits Hindi”, “all digits Arabic”, and “all digits depending on the system locale”. This feature was lacking a mode that chooses the correct digits based on the context of the digits: Hindi digits in an Arabic context, Arabic digits in any other context. Frank Meies (FME) speclink word processing
Introduction of an overline font effect i5991 Introduction of an overline font effect Introduce a new font effect that draws a line above a selected character or group of characters. The line style and colour may be selected by the user, with the same options available as for the underline font effect. frank.loehmann@sun.com speclink word processing
Accept/Reject Change in context menu i6191 Accept and Reject Changes Editing changes (aka redlines) is possible using the dialog “Accept or Reject Changes”. As this is cumbersome it makes sense to add entries to accept or reject to the context menu. Oliver Specht, os speclink word processing
changes to format menu i64127

mod@openoffice.org speclink word processing
Introduction of an outline level attribute for paragraphs and paragraph styles i70748 Introduction of an outline level attribute for paragraphs and paragraph styles Introduce a new paragraph and paragraph style attribute, named “outline level”, to transform a normal paragraph directly and independently from any certain list style or paragraph style into a heading. Oliver-Rainer.Wittmann@Sun.COM speclink word processing
More hyperlink related entries in the context menu i7311 Edit and Delete Hyperlink Hyperlinks in Writer documents can be modified with the hyperlink dialog and in the Format/character dialog. It should also be possible to easily remove a hyperlink and to copy the URL of the hyperlink to the clipboard. Oliver Specht, os speclink word processing
search inside notes i80135

mod@openoffice.org speclink word processing
Serbian Cyrillic Numbering Provider i86142   feature-info:
Added support for Serbian Cyrillic Numbering Provider in outline numbering.
eike.rathke@sun.com
word processing
Inconsistent terms: Autoformat - Autocorrect i87347

mod@openoffice.org speclink word processing
New look for selection: transparency i88893

armin.le.grand@sun.com speclink word processing
"Navigator" added to the view menu i89315

mod@openoffice.org speclink word processing
Grammar checking i90144 Spelling and Grammar Checking Grammar checking is now available in OpenOffice.org Writer. Therefore the former dialog gets extended to handle grammar checking too. The dialog is now also able to show a vendor logo as a bitmap and name in the dialog title. Frank Loehmann (FL) speclink word processing
reply to existing notes i93690

mod@openoffice.org speclink word processing
changes to Tools-AutoCorrect i94551

mod@openoffice.org speclink word processing
Footnotes... renamed to Footnotes/Endnotes... i94633

mod@openoffice.org speclink word processing
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
bi-directional writing for chart elements i14365 Bi-directional Writing in Charts For an Arabic version of OpenOffice.org it is necessary to allow control over the text direction for chart elements that do contain text. ingrid.halama@sun.com speclink chart
image controls: support for document-embedded images i38215   feature-info:
Image controls can now be bound to images which are embedded in the document where the control lives in. More precise, when you select an image to be displayed at an image control, the "Link" option in the file picker is not disabled anymore. When you uncheck the option (the default is "checked", to mimic the legacy behavior), then the image is displayed in the control, and upon saving the document, it's embedded in the document itself. This way, you can create documents with image controls which are exchangeable with other people/installations/platforms, which formerly was much more difficult due to the need to also copy the images, and place them in exactly the same location as on the originating machine (which often is simply impossible). Thanks for Noel Power for providing the patch for this.
frank.schoenheit@sun.com
dba
Relative path for file based databases i41897   feature-info:
At the moment, when you create a file-based database (such as dBase or Spreadsheet), the URL to the files (let's call it the "data URL") is stored in an absolute manner - that is, something like "file:///c:/foo/bar". As a result, when you move the database document (the .odb file), together with the underlying data, to another machine, you need to either duplicate the file structure on this target machine, or to adjust the settings for the database. Now it is possible that the path is stored relatively when the option "Save URLs relative to file system" setting in the "Tools->Options->Load/Save" dialog is checked.
ocke.janssen@sun.com
dba
SQL syntax highlighting i67961

mod@openoffice.org speclink dba
New short cuts for Sun Report Builder i80200   feature-info:
The Edit menu now contains a "Select All" entry which contains Select All -> Select All Select all Labels Select all Formatted Fields Select Report
ocke.janssen@sun.com
dba
views opened for editing are automatically put into "Run SQL Directly" mode i87192   feature-info:
When you open an table view for editing its constituting SQL command (which is a feature currently supported for embedded HSQLDB only), then the query editor is automatically put into the "Run SQL command directly" mode.
frank.schoenheit@sun.com
dba
"Empty string is NULL" behavior refined i90403   feature-info:
In the course of fixing issue 90403 and issue 92471, the behavior of form controls whose "Empty string is NULL" property is set to "Yes" has been refined. This change might make existing forms behave slightly different than before, but certainly more expectation-conformant now. First, the property is now also respected when you never touched the respective control before saving the record. That is, imagine a control which has this property set to "Yes", this way declaring that if the control contains an empty string, then this should be propagated to the database as (the dedicated) NULL value. Formerly, when you moved to the insertion row of the form, so the control was initially empty, entered some data into other controls of the current record, and saved the record without actually touching the first control, then it actually updated an empty string. Now, with the change, it updates NULL, as this is what "Empty String is NULL" = "Yes" requests. Second, when a control was bound to a database column which was declared as NOT NULL, then the control *always* updated an empty string instead of NULL, no matter what its "Empty string is NULL" property requested. Effectively, this killed server-side defaults of database fields, as such defaults are only applied when the field is NULL. Now, with the change, controls always update NULL in such a setup, this way enabling server-side defaults.
frank.schoenheit@sun.com
dba
image controls: can be bound to text database columns, interpreting their content as relative link to the image i91310   feature-info:
Image controls in database forms can now be bound to text columns. Formerly, you could only bind them to columns whose content could reasonably be interpreted as binary (BLOB etc.). Now, when you select a text database column as source for the image control, then it will interpret the content of the respective column's content as URL, and load and display the image pointed to by this URL. Also, the URL might be relative to the document which the image control is embedded into.
frank.schoenheit@sun.com
dba
form controls: new property "Input Required" i92322   feature-info:
All form controls which can be bound to a database column (i.e. have the "Data field" property) now have a new property called "Input required". Description ========= This property controls whether or not the input of this field is checked against being empty (NULL). It is evaluated for controls which are bound to a database field which is defined as required (i.e. which is not allowed to contain the special NULL value), immediately before the current record of the form is to be written into the database. If the property is set to "Yes", and the field contains no input when the current record is to be written to the database, then an error message will be shown to the user, and the respective control will be focused afterwards. Note that this is the known behaviour so far - the property defaults to "Yes" so that newly created controls behave as they would do in previous OOo versions. If the property is set to "No", and the field contains no input when the current record is to be written to the database, then this is ignored. It's up to the underlying database to either reject the update, or fill the respective column with a server-side default value. Functional Constraints ================= If the "Form data input checks for required fields" option in the advanced settings of the database document (Edit / Database / Advanced Settings ...) is *not* checked, then the "Input required" property for all controls in all forms in this database document does not have any effect, since the document-wide setting overrules the per-control settings. UI == In the property browser, the "Input required" is located immediately below the "Empty string is NULL" property, if it is present, otherwise immediately below the "Data field" property. If the "Data field" is not set (i.e. empty), then "Input required" is disabled, since it would be evaluated for bound controls only, anyway. If the "Empty string is NULL" is set to "No", then "Input required" is also disabled, since "Empty string is NULL" being "no" implies that when the user does not enter any value in the control, then an empty string, instead of the dedicated value NULL, is written, so there's always a non-NULL value no matter the user's action.
frank.schoenheit@sun.com
dba
image controls: scaling the image by keeping the ratio i93264   feature-info:
Image form controls in documents got an additional mode for scaling the image they display. Previously, you could control the scaling by setting the "Scale" property to "Yes" or "No" only, where "Yes" implied an anisotropic scaling, i.e. one which distorted the image's dimensions. Now, the "Scale" property allows the values "No" (same as before), "Keep Ratio" and "Fit to Size" (equivalent to the old "Yes"). When "Keep Ratio" is selected, the image is still scaled up or down to match the control dimensions, but it's ratio is aspect kept constant. This is especially useful for controls where the designer of the document does not know, at time of designing the document/control, the dimensions of the to-be-displayed images. In particular, this is useful for image controls in database forms, displaying images obtained from the database.
frank.schoenheit@sun.com
dba
check box grid columns have the "Tristate" property i93457   feature-info:
Check box columns in grid controls now have the "Tristate" property, which controls whether or not the "indetermined" state is allowed for the check box, as known from ordinary check box form controls.
frank.schoenheit@sun.com
dba
Feature title TaskId Spec. title Spec. abstract Dev. owner Spec. link Component
Let OOo use own file locking mechanics to lock alien formats as well. i95528   As practice has shown, it is a quite common case that OOo is used to edit documents of alien formats on network. Unfortunately it looks to be impossible to let the file be locked using file system locking, since it does not work in heterogeneous file systems as expected, and the mentioned scenario has been recognized as very important one. Thus the locking mechanics of OOo is not recognizable for third-party applications, except they implement support for OOo locking mechanics. The implementation in childworkspace fwk94 let the alien files be locked using the OOo file locking mechanics as well. That solves at least the cases when a file of alien format is edited only by OOo3.x in network. Mikhail.Voitenko@sun.com
framew

Integrated Child Workspaces


List of integrated child workspaces:

Name
Description

Milestone (integrated)
ause104

minor tweaks to makefiles and SO environment

DEV300m52
automation300m50cat0

DEV300m52
automationdev300m49cat3b

DEV300m52
automationdev300m51cat0

Changes to automation testscriptes for categorie 0 which have to be integrated in DEV300m52

DEV300m52
aw065

BugFixing CWS for 3.2

DEV300m52
bserver47

DEV300m52
bubblechart

Bubble Chart

DEV300m52
c17v006_DEV300

DEV300m52
c27v001_DEV300

DEV300m52
cms11_DEV300

DEV300m52
dba32c

DEV300m52
dba32d

DEV300m52
dbaperf2

Avoid the loading of all database drivers in first start up of the db wizard.

DEV300m52
dev300m52masterfix

DEV300m52
dr70

Calc performance issues

DEV300m52
fwk108

Performance improvements for OOo.

DEV300m52
hb18

DEV300m52
hb311fixes01_DEV300

DEV300m52
impress173_DEV300

Impress and Draw bug fixes for 3.1.1

DEV300m52
jl128_DEV300

bundle new Java

DEV300m52
koheiformula03
Bug fixes related to the variable formula syntax support, and other small-ish Calc fixes 
that are not necessarily related to the formula syntax support.
DEV300m52
native250_DEV300

Preparations for OOo 3.1.1

DEV300m52
native251

OOo 3.2 installation tasks. Replacement for native249.

DEV300m52
odfmetadata2
Implementation of ODF 1.2 metadata support, part 2:
- RDF/XML import/export
- RDFa import/export

for the writer:
- implementation of model part of RDF API for paragraphs
- extend UNO model: add XML ID handling for paragraphs
DEV300m52
ooo311gsl03_DEV300

3.1.1 issues

DEV300m52
ooo311gsl04_DEV300

Some more 3.1.1 tasks

DEV300m52
os130a

Clone of cws os130 which was killed by a rebase action

DEV300m52
perftest08

DEV300m52
scsheetprotection02
Refactor the sc and svx modules in preparation for the future implementation of

* Sheet protection options, such as allow clicking of protected cells etc.
* Password protection of sheet(s) imported from Excel.
* Exporting to an encrypted Excel file with password protection
(only in MS Office 97/2000 compatible encryption).
DEV300m52
sdk311_DEV300

OOo 3.1.1 bugfix

DEV300m52
tkr22_DEV300

DEV300m52
unoapi04

DEV300m52



Name

Description

Milestone (integrated)
ause102

remove solver from PATH

DEV300m51
automation006
[Automation]
Feature CWS to retrieve the OLE object names from API
DEV300m51
calc50

Miscellaneous Calc implementation and fixes for 3.2

DEV300m51
dev300m51masterfix

DEV300m51
fhawfixes1

DEV300m51
fwk103

Framework fixes for OpenOffice.org 3.2

DEV300m51
hcshared21

Application Help issues that are not part of a feature CWS

DEV300m51
impress171

Issues for Impress with target OOo 3.2

DEV300m51
jl126_DEV300

Assembly versions must be incremented for EVERY release.

DEV300m51
l10ncleanup04

Move translations into own module

DEV300m51
mav54_P1

DEV300m51
mingwport20

mingw port update

DEV300m51
ooo311gsl01_DEV300
GSL issues for target OOo311
(underline/overline colors in the new DrawingLayer)
DEV300m51
ooo311gsl02_DEV300

Fix 3.1.1 issues

DEV300m51
ooo31osol_DEV300

Release CWS

DEV300m51
pdfextfix02_DEV300

Improvement of pdf import extension

DEV300m51
svp02_DEV300

DEV300m51
unifypaper01
Add a "long bond" paper type in the UI (used in the Philippines) and merge
together the various places in Office that match paper sizes to known
paper sizes.

Merge together various territory to default paper size maps and align with
CLDR 1.7

Use paperconf/glibc extensions/locale fallbacks to determine best
"default from locale" paper size
DEV300m51


ause101

DEV300m50
automationdev300m48cat3

Fixes for module testautomation for category 3. To be integrated in next
Cat-3 Master (m51) (or earlier)

DEV300m50
bserver46

DEV300m50
c06v7_DEV300

DEV300m50
calclinkfixes

Fixes to links/external references in Calc

DEV300m50
calcperf04

Calc performance improvements.

DEV300m50
chart37

Chart: Rotate Data Labels, Asian Typography and bug fixes

DEV300m50
clnoundo

This cws fixes a crash while loading tables that was introduced with the new
primitives.

DEV300m50
cmcfixes59

misc small dev-level fixes

DEV300m50
dba32b

DEV300m50
dev300m50masterfix

DEV300m50
evoab2def
replace the stone-aged command-line-based SDBC driver for
Evolution address books (evoab1) with the somewhat fresher
API-based version (evoab2), which previously was disabled
in vanilla builds.
DEV300m50
extmgr02

fix Mac OS X / linux (archive) build problem

DEV300m50
macrofpicker01

Fix problem with Aqua filepicker when called from a macro.

DEV300m50
mav52

Fixes for Wiki Publisher.

DEV300m50
mla01
Bugfixing for OOo 3.x, mostly strings (mla test cws)

!!! Do NOT integrate before not discussed with MLA !!!
DEV300m50
native247

OOo 3.2 installation tasks

DEV300m50
os128

performance improvements in sw and xmloff

DEV300m50
sysui37

rpm packaging / smoketest / insetset fixes

DEV300m50
tkr20

OOo 3.2 Bug fixes and patches

DEV300m50
vcl101

More 3.2 fixes

DEV300m50
vcl102
gsl changes for OOo 3.2

CAUTION: this CWS is part of the mercurial pilot, the svn tag exists but is for CWS
tooling only; it should be devoid of commits
DEV300m50


ab68

xmlhelp related changes / fixes

DEV300m49
automation005

[Automation] m47 script fixes

DEV300m49
automation32m47

Fixes for testautomation scripts on the way to 3.2

DEV300m49
cairocanvastext01

When cairo canvas is used to render graphics, render also text with cairo canvas

DEV300m49
calc49

Ongoing Calc development for 3.2

DEV300m49
calcmultiline

Handle multiple lines (newlines) within formula results.

DEV300m49
datapilotrange

Allow to change the source range of a DataPilot table

DEV300m49
dev300m49masterfix

DEV300m49
dv11

DEV300m49
impress169

ongoing work for impress in OOo 3.2

DEV300m49
koheichart01
Display of hidden cells - Add support for showing/hiding data points in chart by simply 
showing/hiding their corresponding data cells in spreadsheet document.
DEV300m49
m48fixshorttrack

shorttrack CWS (aka master fix) for an annoying issue

DEV300m49
mav51

DEV300m49
native240

Making full packaging process "cygwin ready".

DEV300m49
smoketest22

smoketest fixes

DEV300m49
tl66

Misc fixes for OOo 3.2

DEV300m49


cmcfixes58

trivial fixes

DEV300m48
dev300m48masterfix

DEV300m48
fwk111_DEV300

Possible showstoppers for OOo 3.1.

DEV300m48
impress168

Impress 3.2 bugfix workspace

DEV300m48
impress170

Bug fixes

DEV300m48
mba32issues01
Small bug fixes, patches etc.
split of svx/source/dialog folder into 2
DEV300m48
mingwport19

mingw port update fix

DEV300m48
os127

Bugfixing in sw

DEV300m48
paw06

DEV300m48


ause100

small fixes and cleanups

DEV300m47
automation310g_DEV300
[Automation]
Last minute fixes for greenstate of 3.1
DEV300m47
automation310m9_DEV300

latest fixes for testautomation module

DEV300m47
automation310wg_DEV300
DEV300m47
aw069

BugFixing CWS for #i100710#

DEV300m47
aw070_DEV300

BugFixing CWS (mainly #i100851#)

DEV300m47
aw071_DEV300

BugFixing CWS (for #i101016#)

DEV300m47
aw072_DEV300

BugFixing CWS OOo 3.1 (#i101169#)

DEV300m47
bfshrink02

remove latest set of unused methods in binfilter (90+)

DEV300m47
calc31stopper5_DEV300

3.1 stopper issue #i101118#

DEV300m47
calcdelrows_DEV300

Fix a problem with deleted rows in Calc collaboration

DEV300m47
cli005

Cleanup some basic code and minor warning issues.

DEV300m47
cltexteditfix_DEV300
DEV300m47
cmcfixes57

misc build fixes

DEV300m47
cwstestresult02

submit test results now also for milestones

DEV300m47
dba31m_DEV300

Fix in SRB and some other "minor" issues

DEV300m47
dba32a

ongoing DBA bug fixing towards OOo 3.2

DEV300m47
dbaperf1

Performance improvements for accessing databases

DEV300m47
dev300m47masterfix
DEV300m47
dr67

Fixed and extensions for OOXML import

DEV300m47
fwk110_DEV300

Showstopper for OOo 3.1

DEV300m47
gtkmenuimages

By default follow the system theme as to whether to display menus images

DEV300m47
hr62
PCVSLib is no longer in use for OOo and is now hosted separately: 
http://kenai.com/projects/pcvslib

Remove PCVSLib and assorted tools from tree.
DEV300m47
layoutdialogs2

.

DEV300m47
macshortcuts01

Mac OS X shortcut issues.

DEV300m47
mav46

MediaWiki Publisher related cws.

DEV300m47
mav50_DEV300

OOo3.1 framework showstopper cws.

DEV300m47
mingwport18

MinGW port update and enhancement

DEV300m47
native236

OOo 3.2 tasks

DEV300m47
native241correct_DEV300
remove writer2latex from the installset in a correct way and not half-baked.
Superseeds native241.
DEV300m47
odfp31b_DEV300
DEV300m47
ooo31gsl10_DEV300

Fix some 3.1 showstoppers

DEV300m47
python26

upgrade python engine 2.3 -> 2.6

DEV300m47
rnwinr01_DEV300

fix issue i101156

DEV300m47
sb107

misc fixes

DEV300m47
sb109

misc fixes

DEV300m47
sdk31fix_DEV300

OO.org 3.1 SDK fixes

DEV300m47
sw31bf10_DEV300

CWS for OOo 3.1 show stopper fixes

DEV300m47
sw32bf01

fixes for serious issues in Writer for OOo 3.2

DEV300m47
swrefactormarks2
code refactoring in Writer to set all the various new features that rely on a reference to a range of text on
a more solid ground. These are or will be:

- "real" bookmarks
- text input fields as implemented by Florian
- "text meta" elements in ODF 1.2 metadata
- meta text fields in ODF 1.2 metadata
- the planned notes on ranges for issue #5487
DEV300m47
automation003
[Automation]
More testautomation refactoring.
DEV300m46
automation004

Fix regression in autotests, oversight from CWS dv10

DEV300m46
automation31gsl1_DEV300

Workaround some focus issues that happen in the testtool context

DEV300m46
aw066_DEV300

CWS for AAed 3D chart enhancements

DEV300m46
aw067_DEV300

BugFixing CWS for OOo3.1

DEV300m46
aw068_DEV300

CWS for 3.1 BugFixing (Showstopper)

DEV300m46
calc31stopper4_DEV300

Yet another Calc 3.1 blocker.

DEV300m46
calcsheetref_DEV300

Fix in sheet name references.

DEV300m46
cmcfixes56

Warnings and misc porting fixes

DEV300m46
dba31l_DEV300

fix issue 100541

DEV300m46
dev300m46masterfix
DEV300m46
dv10

misc bug fixes

DEV300m46
fwk106_DEV300

Fixes for performance problems on Mac.

DEV300m46
fwk107_DEV300

Fixes broken removeTab() method in tab control service.

DEV300m46
hb21_DEV300

Showstopper for 3.1

DEV300m46
jl119_DEV300

Showstopper for 3.1

DEV300m46
jl124
This cws is a replacement for cws jl122 which contained some difficult to 
repair svn problems.
DEV300m46
l10nfix310_DEV300

contains a mini officecfg l10n fix for zh-TW.

DEV300m46
mh31_last_DEV300

update of thirdpartylicensereadme

DEV300m46
minimizer01
DEV300m46
native239_DEV300

Including new JRE6u13.

DEV300m46
ooo31gsl6_DEV300

Complete fix for issue 99567

DEV300m46
ooo31gsl7_DEV300
Fixes for showstoppers in GSL:
- in PDF export
- a resource leak in the xrender code path
DEV300m46
ooo31gsl9_DEV300

Fix some mac problems

DEV300m46
sw31bf08_DEV300

showstoppers in framework for OOo 3.1

DEV300m46
tbo05

testautomation: Reduce entries in cons.txt for hid.lst generation

DEV300m46
tbo06_DEV300

Fix urgent integration problem of known isssue for MacOS X exeption.

DEV300m46
tkr21_DEV300

OpenSSL 0.9.8k update

DEV300m46
tl67
DEV300m46
vcl100

3.2 gsl fixes

DEV300m46
vistainstall_DEV300

Fix installation on Windows Vista

DEV300m46
automation310d_DEV300
DEV300m45
automation310e_DEV300
DEV300m45
automation_gapplication_unify
[Automation]
Unify gApplication names for all modules.
This is a closed CWS for just this single refactoring task.
DEV300m45
bserver45
DEV300m45
c26v001
DEV300m45
cygwin03

setsolar support on cygwin

DEV300m45
dba31j_DEV300

3.1 bug fixing for DBA

DEV300m45
dba31k_DEV300

Show stopper fixing for 3.1

DEV300m45
dev300m45masterfix
DEV300m45
gh16
push hid.lst to database for UserFeedback

Write VCLTestTool resultfiles to stdout
DEV300m45
native235_DEV300

Prepare Java GUI Installer for Solaris Update

DEV300m45
native238_DEV300

English license text into all Solaris packages.

DEV300m45
obo36

Misc. fixes

DEV300m45
ooo31gsl5_DEV300

Still more issues for 3.1

DEV300m45
rptfix06_DEV300

fix SRB build to a) handle --with-system-apache-commons correctly and b) fix --with-system-*t build to include commons-logging-1.1.1jar/$(COMMONS_LOGGING_JAR) in the MANIFEST.MF

DEV300m45
sw31bf09_DEV300

again late fix in Writer for OOo 3.1

DEV300m45


automation002
[Automation]
Cleanup and minor enhancements
DEV300m44
automation310b_DEV300
[Automation]
General last minute fixes to autotests for OOO310
DEV300m44
automation310c_DEV300
[Automation]
Misc script fixes for OOo 3.1 release
DEV300m44
aw064

BugFixing CWS; split from aw063 and migrated tasks which were too many for aw063

DEV300m44
calc31stopper2_DEV300

more show stoppers for OOo 3.1

DEV300m44
calc31stopper3_DEV300

Calc 3.1 blocker issues.

DEV300m44
calc31stopper_DEV300

show stoppers for OOo 3.1

DEV300m44
calcsoli2_DEV300

Calc sheet selection problem on Solaris/x86

DEV300m44
chartranges_DEV300

Fix a regression with chart data ranges in Calc

DEV300m44
cl12_DEV300
DEV300m44
cmcfixes53

remove some unused code

DEV300m44
cmcfixes55

Fix some warnings and low-hanging unused methods

DEV300m44
configure24_DEV300

configure fixes

DEV300m44
dev300m44masterfix
DEV300m44
fwk105_DEV300

more late fixes in Writer for OOo 3.1

DEV300m44
hb20_DEV300

showstoppers for 3.1

DEV300m44
hr60_DEV300

CWS-Tools: miscellaneous fixes.

DEV300m44
localization35

Localization for OOo 3.1

DEV300m44
mav47_DEV300

Showstopper fix for suggested name in SaveAs dialog.

DEV300m44
mav48_DEV300

Framework showstopper fixes for OOo3.1

DEV300m44
mhu17

Module 'store' bugfixes and performance optimizations

DEV300m44
mingwport17

mingw port fix and enhancement

DEV300m44
native231

Setting version OOo 3.2

DEV300m44
native234_DEV300

OOo 3.1 installation tasks.

DEV300m44
newbaselineunxlngi
DEV300m44
ooo31gsl4_DEV300

More 3.1 showstoppers

DEV300m44
oooimprovement3_DEV300

Important final fixes for Usage Tracking support

DEV300m44
smoketest21

smoketest fixes

DEV300m44
sw31bf05

late fixes for OOo 3.1 in Writer

DEV300m44
sw31bf07_DEV300

late Writer fixes for OOo 3.1

DEV300m44
xmergeclean

Add a final DOM->XML serialization fallback and clean up trivial warnings

DEV300m44
automation310a_DEV300

fix automation issue for the OOO 310 release

DEV300m43
aw063

BugFixing CWS

DEV300m43
calc48

Regression fixes around the Function Wizard

DEV300m43
calcperf03
Smash some performance bottle necks.
Plus latest fixes and patches.
DEV300m43
chart35

Bug fixes for Chart and Calc

DEV300m43
cmcfixes54

Warnings/Errors fixes

DEV300m43
cmis01
DEV300m43
dev300m43masterfix
DEV300m43
dr66

All known cell notes issues, including broken Undo/Redo handling in conjunction with notes

DEV300m43
fwk104_DEV300

Showstopper fix for new accelerator configuration.

DEV300m43
gfbcrash

Fixes an important stability problem

DEV300m43
hb19_DEV300

showstoppers for 3.1 (hb17 recreated on OOO310_m1)

DEV300m43
hde02_DEV300

Autotest fixes for 3.1

DEV300m43
hunspell4thesaurus
Add stemming and morphological generation capabilities to
OpenOffice.org Mythes thesaurus by the latest Hunspell spell checker
and morphological analyzer. Without any dictionary modification,
OpenOffice.org will be able to stem the selected words for synonym search.
With an annotated affix file, OpenOffice.org will generate the right word
forms of the synonyms based on the morphological category of affix of the selected word
(documentation: http://sourceforge.net/docman/display_doc.php?docid=29374&group_id=143754)
DEV300m43
impress162
Slideshow and canvas related bug fixes.

VCL was modified incompatibly by changes in regband.hxx and region.h
DEV300m43
jl117_DEV300

Showstopper CWS

DEV300m43
koheiformula02
Further refactoring of Calc code in preparation for variable formula syntax 
support. This work is a continuation of the refactoring done in koheiformula01.

This CWS also includes non-trivial rework of the chart2 callback code in order
to properly handle external references in chart's data ranges.
DEV300m43
movepsprint

Move psprint code into vcl

DEV300m43
native222
Creating new packaging process for signing Windows installation sets
and enable creation of download installation sets independently from
standard installation sets.
DEV300m43
native223

Package Pool for Unixes

DEV300m43
native224

Spellchecker into language packs.

DEV300m43
native226_DEV300

OOo 3.1 packaging issues.

DEV300m43
native227_DEV300
OOo 3.1 packaging and installation tasks
-> taking care of correct 3 layer usage in OOo 3.1.
DEV300m43
native228

OOo 3.2 packaging and installation tasks.

DEV300m43
native230

Enable rpm builds for Linux without LD_LIBRARY_PATH.

DEV300m43
odfp31
DEV300m43
ooo31gsl1

3.1 showstopper fixes

DEV300m43
ooo31gsl2_DEV300

More 3.1 showstoppers

DEV300m43
ooo31gsl3_DEV300

3.1 showstoppers in gsl

DEV300m43
os129_DEV300

OOo 3.1 show stopper

DEV300m43
os2port05
CWS for tracking the build of DEV300 under OS/2
and eComStation.
DEV300m43
rptfix04

Bugfixing for the SRB libformula and other Pentaho libraries

DEV300m43
sw31a11y01

bug fixes/changes for accessibility issues for OOo 3.1

DEV300m43
tkr18

OOo 3.1 (UCB) fixes

DEV300m43
tkr19_DEV300

3.1 showstopper fix

DEV300m43
ab61

3.1 fixes

DEV300m42
ab66

xmlhelp related fixes

DEV300m42
aquafilepicker03

To fix some minor glitches with the aqua native file picker

DEV300m42
ause099

build related fixes, not product relevant

DEV300m42
aw062

BugFixing CWS

DEV300m42
configure23

more configure fixes

DEV300m42
cwstestresult
Provide cwstestresult perl script 
plus startup wrapper scripts for Unix and Windows
to publish results of cws tests to EIS
DEV300m42
dba31g

ongoing DBA bug fixing towards OOo 3.1

DEV300m42
dba31h

ongoing DBA bugfixing towards 3.1

DEV300m42
dba31i

Last 3.1 bug fixes for dba

DEV300m42
dev300m42masterfix
DEV300m42
dv07

Misc. bug fixes

DEV300m42
extras310

Bugfixes regarding the Extras for OOo 3.1/SO9.1.

DEV300m42
fwk100

framework and toolkit fixes

DEV300m42
fwk101

Fixes for 3.1.

DEV300m42
fwk102

Framework fixes for OOo 3.1

DEV300m42
fwk99

Bugfixes for 3.1

DEV300m42
hb14

DOCX bugs

DEV300m42
hb16

.

DEV300m42
hde01
Bugfixes in testautomation
handover of chart2-scripts
DEV300m42
hr59_DEV300

Fix cross master workspace fetch and rebase problems.

DEV300m42
i18n49

.

DEV300m42
ichitaroext
DEV300m42
impress166

OOo 3.1 Draw/Impress Bugfix Workspace

DEV300m42
impress167

Bugfix workspace

DEV300m42
impresshtmlex01

some small changes for html export API in impress

DEV300m42
jl115

3.1 fixes

DEV300m42
jsc314

SDK 3.1 fixes.

DEV300m42
jsc315

Fix TabControl

DEV300m42
kashidafix02

More fun with complex text layout

DEV300m42
macmiscfixes

Misc mac OS X fixes

DEV300m42
macmozxmlsec31

3.1 version of CWS macmozxmlsec

DEV300m42
macwebdav

check for locking support in SAL when a webdav volume is mounted with Finder.

DEV300m42
mav44

Framework bugfixed for OOo3.1

DEV300m42
mba31issues01

.

DEV300m42
mysql1

Enable the generic sdbcx mysql driver to handle the native mysqlc driver.

DEV300m42
native218

OOo 3.1 installation tasks.

DEV300m42
native220

Changing from OOo 3.0 to OOo 3.1 once more.

DEV300m42
notes8

notes bugfixing for 3.1

DEV300m42
npower11

porting api implememtations from ooo-build, change of namespace of vba api

DEV300m42
oooimprovement2

adding regular Usage Tracking support into product

DEV300m42
pdfextfix

Fix some pdf import extension issues

DEV300m42
qascripts05
Misc fixes in test scripts.
New test case for OOo Improvement Program
Cleanup (Removal of unused files, global scope)
DEV300m42
sb103

misc fixes

DEV300m42
sb104

get rid of LD_LIBRARY_PATH in build environment

DEV300m42
sb105

late 3.1 fixes

DEV300m42
sb106

Broken NTLM authentication

DEV300m42
socs23
DEV300m42
soreadme91

last Minute Readme edits

DEV300m42
sw31bf02

Writer fixes for OOo3.1

DEV300m42
sw31bf04

bugfixes in Writer for OOo 3.1

DEV300m42
swftnnumbers02

fix for issue 98418 - hindi numerals for footnote numbering in arabic and farsi

DEV300m42
tbe35

OOo 3.1 Calc bug fixes

DEV300m42
tbe36

OOo 3.1 Calc data changes

DEV300m42
tbo04
- Evaluate source version information
- Several small fixes
DEV300m42
tkr16

UCB Issues

DEV300m42
transogl03redux

Integrate ogltrans opengl slide transitions contributions and make buildable and installable as optional component

DEV300m42
vcl98

Bugfixes for 3.1

DEV300m42
vcl99

Fix important 3.1 issues (e.g. RTL specific)

DEV300m42


cmcfixes52

Remove some trivial warnings

DEV300m41
cwscheckapi7

update knownissue lists for automated UnoAPI-Tests

DEV300m41
cygwin02
DEV300m41
dev300m41masterfix
DEV300m41
metropatch01_DEV300
DEV300m41
rt37

Build fixes for OOo 3.1

DEV300m41

Apache Software Foundation

Copyright & License | Privacy | Contact Us | Donate | Thanks

Apache, OpenOffice, OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. The Apache feather logo is a trademark of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners.