OpenOffice.org 3.0 - Release Notes
These notes contain changes between CVS branches SRC680_m242 and SRC680_m248 as well as between DEV300_m1 and DEV300_m27 as well as between OOO300_m1 and OOO300_m9.This release will install as OpenOffice.org 3.0.
Sources can be received from cvs by tag OOO300_m9.
What's new ?
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
Sheet names can contain almost any character | i6087 | feature-info: Sheet names now can contain almost any character, previously they were restricted to letters, digits, underscore and space. For MS-Excel interoperability the following characters are not allowed when renaming sheets or entering new sheet names: colon : back slash \ forward slash / question mark ? asterisk * left square bracket [ right square bracket ] single quote ' if that is the very first or last character of the name (leading or trailing single quote) When used in cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes), e.g. a reference to cell A1 on a sheet named This year's sheet would had to be given as 'This year''s sheet'.A1 |
eike.rathke@sun.com | |
sc | |
ADDRESS and INDIRECT support additional parameter for A1/R1C1 notation | i91020 | feature-info: For interoperability the ADDRESS and INDIRECT spreadsheet functions now support an additional optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used. Though the R1C1 notation otherwise is not supported by the application yet, this enables imported spreadsheet documents to calculate formulas using it. In ADDRESS, the parameter is _inserted_ as the 4th parameter, shifting the optional sheet name parameter to the 5th position. In INDIRECT, the parameter is appended as the 2nd parameter. In both functions, if the argument is given and 0 the R1C1 notation is used, if the argument is not given or has a value other than 0, the A1 notation is used. In case of R1C1 notation, ADDRESS produces address strings using the exclamation mark '!' as the sheet name separator and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation. When opening documents stored in ODF 1.0 or 1.1 format, an ADDRESS function appearing in a formula expression gets a 4th parameter of value 1 inserted if a sheet name was given as 4th parameter, shifting the sheet name to the 5th parameter. When storing a document in ODF 1.0/1.1 format, if in an ADDRESS function a 4th parameter is present that parameter's expression will be stripped and not written. NOTE! This causes incompatibilities if the argument's expression calculated to 0, the function when loaded again will calculate a different result! A document should not be stored in the old ODF 1.0/1.1 format if the ADDRESS function's new 4th parameter was used with a value of 0. The INDIRECT function is written as is to ODF 1.0/1.1 format; if the 2nd parameter was present, an older version of Calc will return an error for that function. This is on purpose, as ADDRESS usually is used in conjunction with INDIRECT, and when stored to ODF 1.0/1.1 format this combination will more likely return an error result upon recalculation if the R1C1 notation was used. 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 | |
ODFF: automatic intersection !! operator | i91259 | feature-info: ODFF in section "5.10.5 Automatic Intersection" defines the '!!' operator for a range intersection of labels. To comply with the specification this needs to be written to and read from ODF 1.2 files. The UI representation does not change and still displays a space, as does the ODF 1.1 file format. |
eike.rathke@sun.com | |
sc | |
ODFF: store ERRORTYPE as ORG.OPENOFFICE.ERRORTYPE | i91294 | feature-info: The ERRORTYPE function is specific to OOoCalc, returning the internal error number. The ODF formula specification specifies an ERROR.TYPE function for interoperability with other spreadsheet applications. The ERRORTYPE function specific to Calc will be stored as ORG.OPENOFFICE.ERRORTYPE in ODF 1.2 documents, and as ERRORTYPE in ODF 1.1 documents. |
eike.rathke@sun.com | |
sc |
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
new: XML Document's XForm models support "internal" vs. "external" data | i90243 | XForms Graphical User Interface (GUI) Specification - Part 1 | XForms is an international standard for web forms. OO.org is able to create and edit XForms compatible forms. Part 1 of the specification describes the graphical user interface (GUI) for Toolbars, modes and the Data navigator for this new XForms functionality. | frank.schoenheit@sun.com | speclink | word processing |
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
default connection string for UnoAPI-Tests has changed | i86692 | christoph.neumann@sun.com | speclink | tools |
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
Change to table view when a new database was created by the db wizard | i84173 | feature-info: 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". |
ocke.janssen@sun.com | |
dba | |
INDEX() function supports return of an entire vector of a 2D array | i66930 | feature-info: 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 |
eike.rathke@sun.com | |
sc | |
GCD() and LCM() convert arguments to integer | i71158 | feature-info: 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)=>a, including GCD(0;0)=>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 |
eike.rathke@sun.com | |
sc | |
LOOKUP in columns of a row if range is wider than tall | i74245 | feature-info: 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 |
eike.rathke@sun.com | |
sc | |
INDEX of vector needs just one offset parameter | i78781 | feature-info: 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 |
eike.rathke@sun.com | |
sc | |
COUNT ignores error results | i86643 | feature-info: 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 |
eike.rathke@sun.com | |
sc | |
Adding MS Access databases in Writer now possible | i83536 | feature-info: 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. |
oliver.specht@sun.com | |
word processing |
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
New Excel import VBA macro option | i88690 | Option Dialog | This specification documents all changes made to the implementation of Options dialog. | Frank Loehmann (FL) | speclink | framework |
COMMAN_WHEEL_DATAZOOM changed | i85450 | philipp.lohmann@sun.com | speclink | gsl | ||
testtool: new methods to access ExtensionListBox in extensions manager | i86913 | feature-info: 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 |
gregor.hartmann@sun.com | |
qa | |
UI of Extension Manager changed | i83902 | Extension Manager UI Change | 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. | Bettina Haberer, BH | speclink | util |
The office now supports .oxt files on the cmd line | i85856 | Extension System Integration | 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. | Joachim Lingner (JL) | speclink | util |
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
Behavior of cut/paste/fill/drag on filtered rows. | i33851 | feature-info: 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 |
eike.rathke@sun.com | |
sc |
Language selection through Windows language bar extended to Western languages | i1035 | feature-info: 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. |
mathias.bauer@sun.com | |
word processing |
Support of digit grouping as used in India | i53498 | feature-info: 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. |
eike.rathke@sun.com | |
L10N | |
Tetun (Indonesia) [tet-ID] and Tetun (Timor-Leste) [tet-TL] language listbox entries. | i64095 | feature-info: Added to the language listbox: Tetun (Indonesia) [tet-ID] Tetun (Timor-Leste) [tet-TL] The languages are selectable for character attribution and spell-checking. |
eike.rathke@sun.com | |
L10N | |
Sami, Kildin (Russia) [sjd-RU] in language listbox | i83565 | feature-info: Added "Sami, Kildin (Russia)" [sjd-RU] to the language listbox. The language is selectable for character attribution and spell-checking. |
eike.rathke@sun.com | |
L10N | |
Locale data for Paraguayan Guaraní (gug-PY) | i84582 | feature-info: Added locale data for Paraguayan Guaraní (gug-PY). The language is selectable for character attribution and spell-checking, as default locale, default document language and available for number formats. |
eike.rathke@sun.com | |
L10N | |
Language listbox entries for Bodo, Dogri, Maithili, Santali | i84912 | feature-info: The following languages are available for character attribution and spell-checking: Bodo [brx-IN] Dogri [dgo-IN] Maithili [mai-IN] Santali [sat-IN] |
eike.rathke@sun.com | |
L10N | |
Locale data for Turkmen_Turkmenistan (tk-TM) | i86322 | feature-info: 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. |
eike.rathke@sun.com | |
L10N | |
Error Bars can be selected from cell ranges | i366 | 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. | bjoern.milcke@sun.com | speclink | chart | |
Additional Error Bar Style "Standard Error" | i85796 | 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. | bjoern.milcke@sun.com | speclink | chart | |
Database / Insert Menu, new menu item | feature-info: The table data view of a table now has a menu entry Insert->Record. This command inserts a new row at the end of the data set. |
ocke.janssen@sun.com | |
dba | ||
Database / Edit Menu / Delete Record | feature-info: The table data view of a table now has a menu entry Edit->Delete Record. This command deletes the current selected row (this excludes the row when inserting a new one). |
ocke.janssen@sun.com | |
dba | ||
"Address Book Data Source Wizard" uses a roadmap | i67987 | feature-info: 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.) |
frank.schoenheit@sun.com | |
dba | |
support of native tables in impress and draw | i68103 | Tables in Impress | Christian Lippka | speclink | drawing | |
Extensible help: Adding content to the Contents tree | i83624 | 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 |
remove pkgchk | i84309 | feature-info: 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. |
stephan.bergmann@sun.com | |
framework | |
new start center dialog | i85963 | Start Center | 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. | Frank Loehmann (FL) | speclink | framework |
Tools - Options - Load/Save - General: ODF default version | i86209 | ODF 1.2 Migration | 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. | Michael Brauer | speclink | framework |
Printer Settings dialog gets an "Options" button | i86352 | OpenOffice.org Calc | 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. | Frank Loehmann (FL) | speclink | framework |
Tools - Options - Load/Save - General: ODF default version | i86649 | ODF 1.2 Migration | 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. | Michael Brauer | speclink | framework |
Now the registration page (First StartUp Wizard) has different text for OOo and SO | i86683 | Product Registration | 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 | Frank Loehmann (FL) | speclink | framework |
SPAdmin: added UI option for external dialogs | i83676 | Printer administration for OpenOffice.org on Unix | 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. | philipp.lohmann@sun.com | speclink | gsl |
new commandline tool cwsattach | i85505 | feature-info: 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. |
bernd.eilers@sun.com | |
inhouse-tools | |
Three-Layer Installations | i84200 | stephan.bergmann@sun.com | speclink | installation | ||
Reference to empty cell not forced to type | i32340 | feature-info: 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: |
eike.rathke@sun.com | |
sc | |
Infix Operator Reference Concatenation ("~") (aka Union) | i32341 | feature-info: 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 |
eike.rathke@sun.com | |
sc | |
MIN/MAX/MINA/MAXA return 0 if no value at all | i38759 | feature-info: 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. |
eike.rathke@sun.com | |
sc | |
Infix Operator Reference Range (":") | i4904 | feature-info: 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 |
eike.rathke@sun.com | |
sc | |
ISERROR(undefinedname) results in TRUE | i77280 | feature-info: 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. |
eike.rathke@sun.com | |
sc | |
SUMIF geometry of 3rd parameter adapts to 1st parameter | i85000 | feature-info: 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. |
eike.rathke@sun.com | |
sc | |
Calc Collaboration | i8811 | Collaboration | 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). | Frank Loehmann (FL) | speclink | sc |
Multiple Pages per View and Zoom Control in Statusbar | i1598 | Multiple Pages per View and Zoom Control | 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 . | Leonard Mada | speclink | word processing |
Direct cross-references to headings and numbered paragraphs in text documents | i25072 | Direct Cross-references to Headings and Numbered Paragraphs | 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. | Frank Loehmann (FL) | speclink | word processing |
Enhance Chapter Number Capability on Writer Indexes | i53420 | feature-info: Introduces the implementation of the new outline chapter number feature in text indexes (Writer) as described in ODF specification 1.2, draft 6, chapter “7.12.1.1 Display Chapter Format”. 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 |
beppec56@openoffice.org | |
word processing |
title for secondary axes | i1163 | With the “Insert Title” 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. | ingrid.halama@sun.com | speclink | chart | |
customizeable starting angle for pie charts | i16776 | Options for Pie chart | new options are available for and donut charts: and | ingrid.halama@sun.com | speclink | chart |
clockwise direction for pie charts | i37823 | Options for Pie chart | new options are available for and donut charts: and | ingrid.halama@sun.com | speclink | chart |
Ease handling of Trendlines in Charts | i44768 | 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². | bjoern.milcke@sun.com | speclink | chart | |
XSelectionSupplier now being supported by the database application controller | i69740 | feature-info: 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 < Strings > === selected names |
ocke.janssen@sun.com | |
dba | |
delays for quick help change | i77170 | philipp.lohmann@sun.com | speclink | gsl | ||
1024 columns per sheet instead of 256 | i31612 | feature-info: 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). |
niklas.nebel@sun.com | |
sc | |
Adjustable margins and column widths in page preview | i51656 | niklas.nebel@sun.com | speclink | sc | ||
Transparent cell selection and changed column/row headers | i86069 | New Selection Visualization | The selection visualization in spreadsheets is changed to be transparent. Furthermore the column headers get a glass effect in selection color to improve visibility. | Frank Loehmann (FL) | speclink | sc |
Optimization Solver in Calc | i8808 | Solver Implementation | 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. | Frank Loehmann (FL) | speclink | sc |
notes in the margin | i6193 | Improved notes | Max Odendahl | speclink | word processing |
Integrated Child Workspaces
List of integrated child workspaces:
dba30y |
fixing issue 94433 |
OOO300m9 |
ooo300m9masterfix | OOO300m9 |
docmacroassignments |
fix the problem that in various places, browsing for a macro/script |
OO300m8 |
jl112 |
showstopper |
OOO300m8 |
localization33 |
Missing Spanish hc2 index files |
OOO300m8 |
localization34 |
fix one greek string in officecfg |
OOO300m8 |
mav40 |
Showstopper fix for autosave problem. |
OOO300m8 |
ooo300m8masterfix | OOO300m8 | |
sb98 |
libxml2.dll from Windows system dir vs. OOo URE layer (Windows only) |
OOO300m8 |
sjfixes09 | OOO300m8 | |
tl62 |
Fix for a grammar checker related crash. |
OOO300m8 |
addentitlement | OOO300m7 | |
hro38 |
Preset filename in Vista File Dialog |
OOO300m7 |
impress158 |
OOo 3.0 bugfix workspace |
OOO300m7 |
impress159 |
possible showstopper for impress |
OOO300m7 |
impress160 |
showstopper fix for impress |
OOO300m7 |
indentfix |
cws for i93873 |
OOO300m7 |
localization32 |
L10N showstoppers |
OOO300m7 |
native199 |
Mac fix for English system language. |
OOO300m7 |
ooo300m7masterfix | OOO300m7 | |
sb96 |
msvcr71.dll missing under Windows MSVC 2003 |
OOO300m7 |
sjfixes06 | OOO300m7 | |
sysui32 |
sysui OOo build fix for solaris |
OOO300m7 |
ab63 |
Fix shopstopper issue i92940 |
OOO300m6 |
dba30z |
fix issue 93737 |
OOO300m6 |
i93386 |
Improve the behaviour on systems with older libfontconfig (older means <2.4) |
OOO300m6 |
i93512 |
Prevent a deadlock on the OSX Aqua port |
OOO300m6 |
i93555 |
Fix issue 93555 to display some "Arabic" instead of "Unknown" for an 'ar' Arabic language pack. |
OOO300m6 |
impress157 |
fix in the pdfimport extension to enable it to load hybrid pdf in OOO300m4 and newer. This cws only changes the pdf extension and not the office. The fixed extension will also work in prior versions. |
OOO300m6 |
mav39 |
3.0 show stopper fix for activated embedded objects in writer. |
OOO300m6 |
native195 |
userland rpm into subdir in Linux installation sets with Java GUI Installer. |
OOO300m6 |
native196 |
OOo 3.0 installation tasks |
OOO300m6 |
ooo300m6masterfix | OOO300m6 | |
qaerrorlogfixes1 |
[Automation] |
OOO300m6 |
rt31 |
Hamburg RE process related only: |
OOO300m6 |
sw30bf14 |
fix for issue i93392 |
OOO300m6 |
sw30bf15 |
fix for issue i93725 in Writer and for issue i90961 in desktop |
OOO300m6 |
sysui31 |
sysui cleanup |
OOO300m6 |
sysui30 |
Linux / Solaris system integration issues |
OOO300m5 |
impress155 |
Bug fixes for OOo 3.0 |
OOO300m5 |
hotmac |
rtl_memory_fini gets called to early, before the d'tors of C++ objects .. |
OOO300m5 |
native190 |
Additional Windows Patch preparations |
OOO300m5 |
sb95 |
fix CWS macrestart |
OOO300m5 |
greenstate30ver3 |
Issues for Greenstate of automated testing for OOo 3.0 |
OOO300m5 |
mav38 |
Showstopper fix for the database documents opening problem. |
OOO300m5 |
dba30j |
3.0 show stoppers in DBA an elsewhere ... |
OOO300m5 |
native191 |
OOo 3.0 installation tasks |
OOO300m5 |
ooo300m5masterfix | OOO300m5 | |
native193 |
OOo 3.0 installation tasks. |
OOO300m5 |
mav37 |
Showstopper cws for OOo3.0 |
OOO300m4 |
reportbuilderext |
CWS to set up an extension only module for the reportbuilder extension |
OOO300m4 |
ab58 |
cws to fix showstopper i92555 |
OOO300m4 |
native184 |
OO0 3.0 installation tasks |
OOO300m4 |
native185 |
Enable installation with Java GUI Installer and user privileges again. |
OOO300m4 |
vcl30stop5 |
fix issue 92674 |
OOO300m4 |
localisation31 |
Fixed broken hungarian translation , fixed several hc2 issue in various languages |
OOO300m4 |
macrestart |
Force soffice process to automatically restart after a crash occured. |
OOO300m4 |
mh30f |
last minutes todos |
OOO300m4 |
sw30bf13 |
late fixes in Writer for OOo 3.0 |
OOO300m4 |
jl110 |
3.0 issues |
OOO300m4 |
ab60 |
cws to fix showstopper i92867 |
OOO300m4 |
chart31 |
chart&calc 3.0 showstopper |
OOO300m4 |
impress153 |
Show stopper bug fixes for OOo 3.0 |
OOO300m4 |
extrasooo30_OOO300 |
unification CWS for SO/OOo extras |
OOO300m4 |
ooo300m4masterfix | OOO300m4 | |
jsktestfixes1 |
A number of fixes for automated test cases. |
OOO300m4 |
greenstate30ver2 |
[Automation] - showstopperfixes for the Greenstate of 3.0 |
OOO300m4 |
native186 |
OOo 3.0 installation tasks |
OOO300m4 |
fwk96 |
Framework fixes for OOo3.0 showstoppers. |
OOO300m4 |
native188 |
OOo 3.0 update tasks. |
OOO300m4 |
impress154 |
Show stopper bug fixes for OOo 3.0 |
OOO300m4 |
dba30i |
Fix in report designer |
OOO300m4 |
fwk97 |
framework ooo 3.0 bugfix cws |
OOO300m4 |
native189 |
OOo
3.0 installation tasks. This issue is about the parallel installation
of StarOffice and StarSuite. |
OOO300m4 |
ab62 |
cws to fix showstopper i93163 |
OOO300m4 |
oobeanfix | OOO300m4 | |
tl61_OOO300 |
OOo 3.0 fixes. |
OOO300m4 |
vcl93_OOO300 |
GSL related stuff important enough for OOo3.0 |
OOO300m4 |
c17v004_OOO300 | OOO300m4 | |
obo34_OOO300 |
Fix for i93167 |
OOO300m4 |
dba30h |
fix issue 92668 |
OOO300m3 |
greenstate30 |
Autotestfixes to get green state for OOo3.0 |
OOO300m3 |
native182 |
OOo 3.0 / SO 9 installation tasks |
OOO300m3 |
sw30bf12 |
Galician spell checker added and Ichitaro filters removed |
OOO300m3 |
vcl30stop4 |
GSL related showstoppers for OOo 3.0 |
OOO300m3 |
localisation30 |
L10N showstopers |
OOO300m3 |
cwscheckapi3 |
bugfix for cwscheckapi: since on Linux tgz are default for cws cwscheckapi could not install the office nymore |
OOO300m3 |
impress152 |
showstopper fixes for impress in OOo 3.0 |
OOO300m3 |
i18n44_OOO300 |
i18n bug fixes |
OOO300m3 |
pdf25_OOO300 | OOO300m3 | |
tl58_OOO300 | OOO300m3 | |
pflin11_OOO300 |
basic fix |
OOO300m3 |
ooo300m3masterfix | OOO300m3 | |
xsltfilter10_OOO300 |
Exchanging the binary JARS of Xerces/Xalan couple (xalan.jar/xercesImpl.jar/xml-apis.jar/serializer.jar) with a source module providing the XSLT2 capable saxon9. |
OOO300m2 |
maccrashrep_OOO300 |
Enable crash reporting for MacOSX builds |
OOO300m2 |
hrovista2_OOO300 |
Critical OOo 3.0 fixes for Windows Vista and Windows XP |
OOO300m2 |
autotestfixfha1_OOO300 | OOO300m2 | |
dictionaryupdate_OOO300 |
update of some dictionaries to latest versions |
OOO300m2 |
sw30bf10_OOO300 |
late fixes in Writer for OOo 3.0 |
OOO300m2 |
vcl30stop2_OOO300 |
last minute fixes for 3.0 |
OOO300m2 |
mhu19_OOO300 |
sal/rtl/source/alloc_global.c is not 64bit clean. |
OOO300m2 |
sw30bf11_OOO300 |
fixes for OOo 3.0 in Writer |
OOO300m2 |
mav35_OOO300 |
OOo3.0 showstopper cws. |
OOO300m2 |
aquaupdateicon_OOO300 |
Implement update icon in native menubar on Mac |
OOO300m2 |
native179_OOO300 |
OOo 3.0 installation tasks |
OOO300m2 |
vcl30stop3_OOO300 |
Some more 3.0 showstoppers |
OOO300m2 |
ooo300m2masterfix | OOO300m2 | |
native180_OOO300 |
Preparing OOo 3 for Windows patches using msp technique. |
OOO300m2 |
languageswitchfix_OOO300 |
Prevent superfluous language changes caused by the system keyboard |
OOO300m2 |
ooo300m1masterfix | OOO300m1 | |
sb92_OOO300 |
HelpLinker crash on Solaris |
OOO300m1 |
ause091_OOO300 |
build cleaner - cleaner build |
OOO300m1 |
vcl91_OOO300 |
3.0 showstoppers in gsl |
OOO300m1 |
pba11y02_OOO300 |
Fixes for A11y issues. |
OOO300m1 |
impress150_OOO300 |
Impress showstopper fixes for OOo 3.0 release |
OOO300m1 |
pb20_OOO300 |
Truncated strings issues |
OOO300m1 |
vcl30stop1_OOO300 |
gsl showstopper |
OOO300m1 |
mh30b_OOO300 |
various issue towards 3.0 |
OOO300m1 |
ab56_OOO300 |
Split library container config files script.xlc, dialog.xlc |
OOO300m1 |
native178_OOO300 |
OOo 3.0 installation tasks |
OOO300m1 |
register30_OOO300 |
Update the way of registering OOo |
OOO300m1 |
ocautotestfixes01_OOO300 |
Autotestfixes for the spreadsheet module |
OOO300m1 |
native177_OOO300 |
Removing ICE check errors in msi database. |
OOO300m1 |
dr65_OOO300 |
Latest OOo 3.0 fixes |
OOO300m1 |
os119_OOO300 |
Fix of issue i91896 |
OOO300m1 |
tbo02_OOO300 |
Fix typos in include files of testautomation/framework |
OOO300m1 |
userdatamigration_OOO300 | OOO300m1 | |
helpsearch_OOO300 |
hotfix for Japanese help index search i91750 |
OOO300m1 |
rmfreetype_OOO300 |
Remove the private copy of libfreetype.so.6 |
OOO300m1 |
impress151_OOO300 |
impress showstopper fixes for OOo 3.0 |
OOO300m1 |
dev300m27masterfix | DEV300m27 | |
chart2testfixes |
The structure of testautomation is different to qatesttool and has to be adopdet to the optional tests in chart2 modul. |
DEV300m27 |
dellauncher |
Remove Launcher library from OpenOffice.org installation set. |
DEV300m27 |
inifix |
Rename version.ini to versionrc to avoid virtualization on Windows Vista |
DEV300m27 |
native172 |
OOo 3.0 installation tasks. |
DEV300m27 |
native174 |
OOo 3.0 installation tasks |
DEV300m27 |
notes30stopper |
showstopper for 3.0 |
DEV300m27 |
os2port03 |
2.4 based rcws for OS/2 release. |
DEV300m27 |
pba11y01 |
A11y issues for 3.0. |
DEV300m27 |
sdkfix |
for sdk fix i91796 |
DEV300m27 |
xmlfilter06 |
development of ooxml filters |
DEV300m27 |
chart29 |
3.0 Chart Data Range Bugfixes + donut import showstopper |
DEV300m27 |
mscautotests |
fix issues in the testautomation/dbaccess module and a showstopper in the report builder |
DEV300m27 |
sw30bf09 |
fixes in Writer for OOo 3.0 |
DEV300m27 |
dev300m26masterfix | DEV300m26 | |
aquavcl09 |
MacOSX/Aqua specific changes for 3.0 |
DEV300m26 |
ause095 |
build fixes |
DEV300m26 |
dv04 |
Extension Manager bugfixes |
DEV300m26 |
extensionupdate03 |
Extension Bugfix Workspace |
DEV300m26 |
jl106 |
Extension Manager, and cli-ure related issues |
DEV300m26 |
logger2 |
The
OpenOffice.org Improvement Program is an extension that collects data |
DEV300m26 |
mav34 |
Framework showstopper fixes for OOo3.0 |
DEV300m26 |
native168 |
OOo 3.0 Installation tasks |
DEV300m26 |
cmcfixes47 |
misc fixes, mainly fix for mis-importing .doc section protection |
DEV300m26 |
sysui26 |
Desktop integration tasks for OOo 3.0 |
DEV300m26 |
tl55 | DEV300m26 |
dev300m25masterfix | DEV300m25 | |
ause096 |
workaround windows building issues |
DEV300m25 |
autotestfixes01 |
- Adding XML directory to modul 'testautomation' |
DEV300m25 |
calccrashes |
Crash bugfixes for Calc |
DEV300m25 |
jl107 |
new JRE |
DEV300m25 |
jsc21 |
used for OO.org 3.0 bugfixes |
DEV300m25 |
mst01 |
upgrade libxslt |
DEV300m25 |
native170 |
OOo 3.0 installation tasks |
DEV300m25 |
presenterfixes |
Bug fixes related to the presenter console extension. |
DEV300m25 |
qadev31b |
Move source files from testshl2 to the new external cppunit module. |
DEV300m25 |
startcenterfix03 |
Adjust StartCenter to latest spec |
DEV300m25 |
sw30bf08 |
fixes in Writer for OOo 3.0 |
DEV300m25 |
thb30fixes |
Misc fixes for 3.0 |
DEV300m25 |
tkr14 |
Misc. UCB Bugfixes and Scripting |
DEV300m25 |
firsttime |
first time experience for tbo's testautomation |
DEV300m25 |
rptfix02 |
Bugfix for the sun report builder and the hidden flag for text controls. |
DEV300m25 |
rt30_DEV300 |
Fix issue for creating StarOffice / StarSuite 'download' install sets. |
DEV300m25 |
sclistposlinks |
fix the regression that list boxes, bound to spreadsheet cells and |
DEV300m25 |
dev300m24masterfix | DEV300m24 | |
fwk90 |
Framework fixes for OOo3.0 ( please do *not* integrate in Beta2 ). |
DEV300m24 |
fwk91 |
Framework issues for 3.0. |
DEV300m24 |
odff04 |
More changes to spreadsheet functions for ODFF compliance. |
DEV300m24 |
sw30bf06 |
fixes in Writer for OOo 3.0 |
DEV300m24 |
ab53 |
3.0 fixes in Basic, Scripting |
DEV300m24 |
ab55 |
Fix lucene related build problems |
DEV300m24 |
calcfixes30 |
Highly desirable Calc last minute fixes for OOo3.0 |
DEV300m24 |
cwscheckapi1 |
update knownissue lists for UnoAPI-Test |
DEV300m24 |
extensionl10nfix01 |
Fix various extensions l10n related issues |
DEV300m24 |
extensionupdate01 | DEV300m24 | |
extensionupdate02 |
Minor updates and bugfixes regarding CWS extensionupdate01 |
DEV300m24 |
extmgrui05 |
Last minute bugfixes for the new extension manager |
DEV300m24 |
hb09 |
Bugfixes in sw for 3.0 |
DEV300m24 |
impress146 | DEV300m24 | |
impressa11y |
Accessibility bug fixes. |
DEV300m24 |
mib08 |
A few ODF (1.2) bug fixes |
DEV300m24 |
native161 |
OOo 3.0 installation tasks. |
DEV300m24 |
os116 |
Bug fixing OOo 3.0 |
DEV300m24 |
tbe34 |
OOo 3.0 accessibility bug fixes |
DEV300m24 |
tl53 | DEV300m24 | |
icondialog |
CWS to fix crash in icon dialog. Showstopper for Beta refresh. |
DEV300m24 |
iconupdate300u1 |
Further Improvements of the new Galaxy Icon Set. |
DEV300m24 |
nomacmozab |
remove Mozilla-based address books for the MacOS X Aqua builds. |
DEV300m24 |
dev300m23masterfix | DEV300m23 | ||
adifacedoc |
fix issue 85692 (better arrangement of sections in autodoc-generated |
OOo 3.0 | DEV300m23 |
aquavcl08 |
Mac/Aqua specific tasks |
OOo 3.0 | DEV300m23 |
calcshare3 |
Bug fixes for Calc collaboration |
OOo 3.0 | DEV300m23 |
chart27 |
chart bugfixes for OOo 3.0 |
OOo 3.0 | DEV300m23 |
dr61 |
OOo 3.0 Calc fixes |
OOo 3.0 | DEV300m23 |
i18n41 |
i18n bug fix. |
OOo 3.0 | DEV300m23 |
impress143 |
Bug fixes for OpenOffice.org 3.0 |
OOo 3.0 | DEV300m23 |
impress145 |
OOo 3.0 bug fixes. |
OOo 3.0 | DEV300m23 |
locdat30 |
Locale data fixes for OOo3.0 |
OOo 3.0 | DEV300m23 |
mingwport14 |
MinGW port catchup fix |
OOo 3.0 | DEV300m23 |
npower10 | OOo 3.0 | DEV300m23 | |
odfpfixes01 | OOo 3.0 | DEV300m23 | |
ooo3helpchanges1 |
Non-translation relevant changes to help files, |
OOo 3.0 | DEV300m23 |
ooo3readme3 | OOo 3.0 | DEV300m23 | |
sb90 |
edition support |
OOo 3.0 | DEV300m23 |
sw30bf07 |
fixes in Writer for OOo 3.0 |
OOo 3.0 | DEV300m23 |
vcl90 |
Still more 3.0 bugfixes |
OOo 3.0 | DEV300m23 |
dr62 |
OOo Calc 3.0 issues |
OOo 3.0 | DEV300m23 |
impress144 |
OOo 3.0 bug fixes. |
OOo 3.0 | DEV300m23 |
mav33 |
Fix for automation test problem by new document opening. |
OOo 3.0 | DEV300m23 |
native156 |
New process for spellchecker selection in OOo 3.0 |
OOo 3.0 | DEV300m23 |
newkeyid1 |
this CWS contains an important fix to gsicheck |
OOo 3.0 | DEV300m23 |
notes6 |
bugfixes for new notes implementation for 3.0 |
OOo 3.0 | DEV300m23 |
odfmetadata |
Implementation of ODF 1.2 metadata support: |
OOo 3.0 | DEV300m23 |
rptfix01 |
Fix for the SRB to work with OOo 2.4 and OOo 3.0 and filter issue. |
OOo 3.0 | DEV300m23 |
sw30a11y01 |
accessibility issues in Writer |
OOo 3.0 | DEV300m23 |
ubuntusoclient | OOo 3.0 | DEV300m23 | |
xmlfilter05 |
development of ooxml filters |
OOo 3.0 | DEV300m23 |
dba30e |
Source code fixes for mysql native. |
OOo 3.0 | DEV300m23 |
extmgrui04 |
More bugfixes for the new extension manager |
OOo 3.0 | DEV300m23 |
hub01 |
Some bug fixes in impress |
OOo 3.0 | DEV300m23 |
i91009 |
i91009 |
OOo 3.0 | DEV300m23 |
m68kport01 |
m68k uno port |
OOo 3.0 | DEV300m23 |
native160 |
System wide integration of msvc* libraries (using msm modules during packaging process) |
OOo 3.0 | DEV300m23 |
dev300m22masterfix | DEV300m22 | |
dba30d |
DBA bugfixing towards OOo 3.0 |
DEV300m22 |
impressmuc |
Showstopper fix for beta2 refresh concerning the unmovable shapes in impress |
DEV300m22 |
jl102 |
3.0 issues |
DEV300m22 |
jl104 |
cli-uno fixes mainly |
DEV300m22 |
native164 |
Support of "Unicode NSIS" |
DEV300m22 |
rptwizard01 | DEV300m22 | |
vcl89 |
More 3.0 tasks |
DEV300m22 |
xformsdocmodify |
implement a per-XForm-model property for XML form documents, |
DEV300m22 |
ab48 |
VBA related fixes |
DEV300m22 |
ab52 |
Migrate Help Indexing to Lucene |
DEV300m22 |
canvas05 |
Extracting useful stuff out of CWS picom |
DEV300m22 |
native163 |
Java GUI Installer has to install and uninstall without using --nodeps. |
DEV300m22 |
dev300m21masterfix | DEV300m21 | |
aquabmpfix03 |
Critical fixes for graphics issues on the Aqua port |
DEV300m21 |
extensionl10n01 |
OOo 3.0 UI/HELP Beta refresh l10n |
DEV300m21 |
extensionl10n02 |
Localization of OOo extensions |
DEV300m21 |
fwk88 |
Framework fixes for OpenOffice.org 3.0. |
DEV300m21 |
ooxtablefilter |
Import of OfficeOpen XML tables |
DEV300m21 |
jl103 |
3.0 issues |
DEV300m21 |
obo32 |
Fix for i90866 |
DEV300m21 |
dev300m20masterfix | DEV300m20 | |
extmgrui02 |
Bugfixes for new extension manager ui |
DEV300m20 |
hr51 |
Changes for a Solaris (Sparc) 64 OOo version bit. |
DEV300m20 |
notes5 |
change tracking, spellchecking and other issues in combination with new implementation of notes |
DEV300m20 |
rptchart02 |
ongoing charts in reports |
DEV300m20 |
sb88 |
various OOo 3.0 bugfixes |
DEV300m20 |
aquabmpfix02 |
a second batch of fixes for Aqua port graphics problems |
DEV300m20 |
chart28_DEV300 |
issue 90071 display of charts with clipped data crashes office |
DEV300m20 |
hunspellexternal |
make hunspell be built/used as an external library, because that's what it actually is / other hunspell-related fixes |
DEV300m20 |
obr09 |
OOo 3.0 packaging fixes. |
DEV300m20 |
qadev32 |
Implementaion of checkcws (UnoAPI-Test) |
DEV300m20 |
smoketest20 |
remove statjars |
DEV300m20 |
swlists01 |
Changes and enhancements in Writer due to the accepted ODF proposal to |
DEV300m20 |
dev300m19masterfix | DEV300m19 | |
impress141 |
impress & draw bugfixes for OOo 3.0 |
DEV300m19 |
odff03 |
More changes for ODFF compliance, follow-up on CWS 'odff02'. |
DEV300m19 |
openjdk6b |
provide openjdk6, fixes, testbuild |
DEV300m19 |
sb87 |
OOo 3.0 fixes |
DEV300m19 |
dev300m18masterfix | DEV300m18 | |
ause093 |
building and related... |
DEV300m18 |
ause094 |
create common targets for extension packing |
DEV300m18 |
chart25 |
bug fixes for chart |
DEV300m18 |
dateinput |
Accept x/y as a valid month/year date also in MDY order (e.g. en-US). |
DEV300m18 |
dba30c |
ongoing DBA bugfixing towards OOo 3.0 |
DEV300m18 |
extmgrui03 |
Add provider link inside new extension manager ui |
DEV300m18 |
fmebugs04 |
Some more 3.0 fixes. |
DEV300m18 |
fmepatches02 |
cws that applies some community patches |
DEV300m18 |
impressodf12 |
Fixing odf related tasks for OOo 3.0 |
DEV300m18 |
jl101 |
3.0 Fixes |
DEV300m18 |
l10nfix27 |
This cws fixes some en-US typos . The strings changed but FMA will fix the status in the database |
DEV300m18 |
mingwport13 |
MinGW port catch up fixes for DEV300 |
DEV300m18 |
native151 |
Binfilter into an own package. |
DEV300m18 |
os113 |
Bugfixing OOo 3.0 |
DEV300m18 |
shutup2 |
Make build process less verbose: |
DEV300m18 |
sw30bf05 |
fixes of defects in Writer for OOo 3.0 |
DEV300m18 |
sw30rng01 |
Issues regarding odf specification |
DEV300m18 |
xmlfix2 |
- upgrade libxml2 to latest version |
DEV300m18 |
dev300m17masterfix | DEV300m17 | |
l10nfix26 | DEV300m17 | |
odfversionedexport |
Omit export of OFD 1.2 chart features when 1.1 is set |
DEV300m17 |
sw30bf04 |
Patches and bug fixes for OOo3.0 |
DEV300m17 |
tkr10 |
UCB Issues |
DEV300m17 |
touchpoints01 |
Install touchpoints to new dictionaries and templates online. |
DEV300m17 |
dev300m16masterfix | DEV300m16 | |
hcshared18 |
Application Help following the OOo 3.0 Beta deadline |
DEV300m16 |
rt28 |
Some small build fixes for OOo 3.0 |
DEV300m16 |
stctplbtn |
implement issue 90035 |
DEV300m16 |
dev300m15masterfix | DEV300m15 | |
aquabmpfix01 |
Aqua port: Fixes and improvements for bitmap handling |
DEV300m15 |
aquavcl07 |
Mostly Mac/Aqua specific fixes. |
DEV300m15 |
hro35_DEV300 |
Fixes for Vista Common File Dialogs. |
DEV300m15 |
notes4 |
OOo 3.0 bugfixes for new notes implementation in Writer |
DEV300m15 |
ooo3readme2 |
Readme Changes for OOo3 Final Release |
DEV300m15 |
sjfixes05 | DEV300m15 | |
uaa06 |
Accessibility API enhancements and bug fixes. |
DEV300m15 |
xformsmodify |
add a new string, in preparation of an upcoming minor enhancement |
DEV300m15 |
calcodfversion |
Implement differentiation between file formats ODF 1.1 and ODF 1.2 with ODFF. |
DEV300m15 |
calcshare4 |
String changes for Calc collaboration |
DEV300m15 |
cmcfixes45 | DEV300m15 | |
extrasso9 | DEV300m15 | |
native155 |
OOo 3.0 installation tasks |
DEV300m15 |
odfversion241_DEV300 |
Issues of ODF warning message |
DEV300m15 |
pdfi03 |
Implementation of pdf restrictions. |
DEV300m15 |
pj90 |
Minor fixes (goodies WaE free on Windows, Mac OS X is now complete warning free, add Gaelic language etc). |
DEV300m15 |
dev300m14masterfix | DEV300m14 | |
extmgrui01 |
Rewrite the UI used for the extensions manager |
DEV300m14 |
jl98_DEV300 |
showstopper issues |
DEV300m14 |
late241bf01_DEV300 |
late fixes for OOo 2.4.1 |
DEV300m14 |
native150_DEV300 |
OOo 2.4.1 installation tasks. |
DEV300m14 |
native152 |
OOo 3.0 packaging and installation tasks. |
DEV300m14 |
ab51 |
New option on Options / Load/Save / VBA Properties page to |
DEV300m14 |
c17v003_DEV300 | DEV300m14 | |
dba241c_DEV300 |
Bug fix for i88091 |
DEV300m14 |
fwk89_DEV300 |
Framework fixes for OOo2.4.1 |
DEV300m14 |
i18n43_DEV300 |
bug fix for issue i88411. |
DEV300m14 |
impress142 |
Beta refresh bug fixes |
DEV300m14 |
jl100_DEV300 |
Show stopper issues for 2.4.1 |
DEV300m14 |
koheidatapilot01 |
This CWS adds 'drill-down' feature to Calc's DataPilot feature, where |
DEV300m14 |
l10nfix24 |
Fix a P1 l10n issue |
DEV300m14 |
mba30patches01 | DEV300m14 | |
mhu18_DEV300 | DEV300m14 | |
nofsnames_DEV300 | DEV300m14 | |
obo27 |
Build fixes for unxmacxi |
DEV300m14 |
pyunosystempaths_DEV300 |
fix Issue 86251 |
DEV300m14 |
srb104 |
Next version of the SRB (1.0.4) |
DEV300m14 |
sw241bf02_DEV300 |
Writer bug fixes for OOo2.4.1 |
DEV300m14 |
sw241bf03_DEV300 |
fix for issue i89000 |
DEV300m14 |
tbe33_DEV300 |
OOo 2.4.1 bug fixes |
DEV300m14 |
tkr13_DEV300 |
UCB fix for OOo 2.4.1 |
DEV300m14 |
wizards241fix01_DEV300 |
Fixes in wizards project. |
DEV300m14 |
dev300m13masterfix | DEV300m13 | |
chart26_DEV300 |
OOo 2.4.1 issues for chart and calc |
DEV300m13 |
oxtsysint01 |
soffice.bin should be able to handle oxt files |
DEV300m13 |
xsltfilter09 |
- Mayor improvements of XSLT XHTML export |
DEV300m13 |
c07v018_DEV300 | DEV300m13 | |
dba241b_DEV300 | DEV300m13 | |
hsqldb16 |
HSQLDB should be buildable with jdk 1.6 |
DEV300m13 |
jl93 |
Adapt digital signatures to ODF 1.2 |
DEV300m13 |
koheiformula01 |
Change the implementation of Calc's formula code to allow certain tokens to |
DEV300m13 |
native149 |
Windows: Dynamic link creation between layers in 3-layer office. |
DEV300m13 |
obo29 |
CWS-Tools: Remove dependency to Logging.pm |
DEV300m13 |
pdfirename |
rename pdfi extension |
DEV300m13 |
stliterators |
::comphelper::StlUnoSequence is a wrapper-class that provides stl-container-like access to an existing ::com::sun::star::uno::Sequence |
DEV300m13 |
sw241bf01_DEV300 |
Writer bug fixes for OOo 2.4.1 |
DEV300m13 |
ucpgio1 |
Add a ucp "gio" content broker. gio is the gnome-vfs2 replacement in the glib/gnome stack |
DEV300m13 |
vcl88 |
More 3.0 fixes |
DEV300m13 |
cmcfixes44 |
Tidy up some small issues |
DEV300m13 |
fwk86 |
Framework fixes for OpenOffice.org 3.0. |
DEV300m13 |
presenterscreen |
With the base line implementation and a large part of the presenter |
DEV300m13 |
rtl4vista_DEV300 |
i77976 justification for RTL on different windows versions |
DEV300m13 |
dev300m12masterfix | DEV300m12 | |
hyphenexternal |
use hyphen library (hunspell.sf.net). Get hyph_en_US.dic from there, too |
DEV300m12 |
lcwarnings2 |
Warning free code for wntmsci11. |
DEV300m12 |
native147 |
OOo 3.0 installation tasks affecting the installation wizards. |
DEV300m12 |
os112 |
Bugfixing OOo 3.0 |
DEV300m12 |
uoffilter |
UOF(Uniform Office Format) is Chinese national standard of office file format. |
DEV300m12 |
wikiext03 |
Fix for Wiki Publisher to allow export to Wikipedia. |
DEV300m12 |
cellstylefixes |
Remove duplicate styles from odf export in calc |
DEV300m12 |
clbetafix01 |
OOo 3.0 beta fix for impress |
DEV300m12 |
controlperformance |
fix the performance problem which occurs when scrolling text |
DEV300m12 |
dba30b |
ongoing DBA bug fixing towards OOo 3.0 |
DEV300m12 |
dba30beta |
OOo 3.0 Beta showstopper |
DEV300m12 |
dba30beta1 |
Bugfix for i87325 |
DEV300m12 |
jl97 |
New Java and some test code which has no effect on OOo |
DEV300m12 |
jl99_DEV300 |
Fixing extension identifier and platform. |
DEV300m12 |
l10nfixooo3b |
Fixes some l10n errors in OOo 3.0 Beta / Readme update |
DEV300m12 |
npower9 |
some refactoring to consoladate some dialog related code that was duplicated in both the basic and scripting projects. |
DEV300m12 |
obo28_DEV300 |
Fixes for i88518 |
DEV300m12 |
sw30beta01 |
Writer 3.0 beta show stopper |
DEV300m12 |
sw30beta02_DEV300 |
Writer OOo3.0 beta showstopper |
DEV300m12 |
tkr12 |
OOo Beta 3.0 Bugfix |
DEV300m12 |
wordcountfix |
cws for fix of i88484 |
DEV300m12 |
dev300m11masterfix | DEV300m11 | |
s390sdk |
fix SDK on s390 (see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477153) |
DEV300m11 |
wikiant |
fix issue 87919 |
DEV300m11 |
ab49 |
3.0 fixes |
DEV300m11 |
aw055 |
BugFixing CWS for 3.0 |
DEV300m11 |
cmcfixes43 |
uncontroversial outstanding fixes |
DEV300m11 |
mav32 |
Betta stopper fixes related to new file locking and calc document sharing. |
DEV300m11 |
mib07 |
Integration of community patches |
DEV300m11 |
native148 |
P1 task for Windows language packs |
DEV300m11 |
pdfimportfix |
fix and feature adding for pdfimport oxt |
DEV300m11 |
registrationurl |
New registration urls for OOo 3.0 Beta. Issue 86962. |
DEV300m11 |
sb85 |
Solaris SPARC 64bit C++ UNO bridge |
DEV300m11 |
tl50 |
Misc bug fixes. |
DEV300m11 |
hr50 |
Compiler port to gcc-4.2.3. Changes needed for building 64 bit Linux in Hamburg RE environment. |
DEV300m11 |
dev300m10masterfix | DEV300m10 | |
filteredrows |
Implement strategy to not overwrite / delete filtered-out rows during |
DEV300m10 |
iconupdate04 |
New Iconset for SO9/OOo3.0 |
DEV300m10 |
native145 |
OOo 3.0 Beta installation tasks |
DEV300m10 |
xmlfilter04 |
development of ooxml filters |
DEV300m10 |
dev300m9masterfix | DEV300m9 | |
jl94 |
Platform specifier in extensions |
DEV300m9 |
localisation28 |
OOo 3.0 localization |
DEV300m9 |
ooo3readme1 |
Readme Changes for OOo3 Beta |
DEV300m9 |
startcenterfix02 |
Fix some startcenter issues for (hopefully) 3.0 beta |
DEV300m9 |
aqua11y01 |
NSAccessibility Protocol implementation. |
DEV300m8 |
buildtool02 |
Some fixes in build tool... |
DEV300m8 |
calcshare2 |
File locking for Calc collaboration and bug fixes |
DEV300m8 |
dev300m8masterfix | DEV300m8 | |
fwk87 |
CWS to solve extension runtime library problem |
DEV300m8 |
jl95 |
replace bundled JRE with the new JRE 6u5 with OOo/SO |
DEV300m8 |
mav31 |
The fix for crash/hang on reload. |
DEV300m8 |
native140 |
Removing all PATCH flags |
DEV300m8 |
native141 |
Fixes for OOo 3.0 Beta and SO 9 Beta |
DEV300m8 |
obr08 |
Desktop Integration enhancements |
DEV300m8 |
odfversion |
changing the office:version attribute to "1.2" for OOo 3.0 generated odf xml streams |
DEV300m8 |
reglater3_DEV300 | DEV300m8 | |
sb86 |
OOo 3.0 bugfixes |
DEV300m8 |
sw30bf03 |
fix for issue 88035 and 88036 in Writer |
DEV300m8 |
wikiext02 |
Minor changes to the Wiki Publisher. |
DEV300m8 |
changefileheader |
Change licence from LGPL v2 to v3 |
DEV300m7 |
changefileheaderm6 |
Change licence headers from LGPL v2 to v3 for files introduced with DEV300 m6 |
DEV300m7 |
dev300m7masterfix | DEV300m7 | |
notes3 |
bug fixes for new notes implementation in writer |
DEV300m7 |
aquavcl06 |
More Mac/Aqua specialties |
DEV300m6 |
cairoquartz01 |
OOo Canvas port to multi-platform Cairo => Linux (existing) + Mac OS X/Quartz (new) + Windows (new) |
DEV300m6 |
chart23 |
Bug fixes for regressions in chart |
DEV300m6 |
dbodf11 |
ODF export 1.2 of the database |
DEV300m6 |
dev300m6masterfix | DEV300m6 | |
dv03 |
Bugfixes check for updates / throbber |
DEV300m6 |
groupsep |
Fix Beta stopper, leading group separator displayed for numbers <1000. |
DEV300m6 |
i18n40 |
I18n bug fixes |
DEV300m6 |
impress139 |
bugfixes for impress and draw in OOo 3.0 |
DEV300m6 |
impress140 |
OOo 3.0 beta p2 fixes for impress application |
DEV300m6 |
native135 |
OOo 3.0 installation tasks |
DEV300m6 |
native137 |
Enable installation of "OOo 3 Beta" next to "OOo 2.x". |
DEV300m6 |
obo24 |
Support additional build for 64 bit shell extension (Windows Vista) |
DEV300m6 |
pdffix02 |
PDF fixes with an emphasis on Aqua integration |
DEV300m6 |
pdfimport |
pdfimport |
DEV300m6 |
presenterview | DEV300m6 | |
s390xport01 |
Ports OOo to 64bit z/Series s390x mainframe linux |
DEV300m6 |
sw30bf02 |
Writer bug fixes for OOo3.0 |
DEV300m6 |
titles02 |
refactor title feature of OOo |
DEV300m6 |
vcl87 |
More 3.0 issues |
DEV300m6 |
vq41 |
Make OOo buildable with .NET2005/.NET2008 and the Windows SDK. |
DEV300m6 |
wikiext01_DEV300 |
Wiki addon implementation. |
DEV300m6 |
winordinals |
This CWS changes windows linking from ordinals to symbol export. |
DEV300m5 |
ucbfixes06 |
- Fix UCB multithreading issue. |
DEV300m5 |
tl51_DEV300 |
Various fixes. |
DEV300m5 |
tl41_DEV300 |
Prepare Dictionary path and linguistic.xcu for use with extensions in order |
DEV300m5 |
obo25 |
Fixes .Net 2008 |
DEV300m5 |
mav30_DEV300 |
Showstopper cws for OOo2.4. |
DEV300m5 |
cairotext01_DEV300 |
Support text drawing with Cairo |
DEV300m5 |
unoapi3 |
add issue numbers into knownissue.xcl of $MODULE/qa/unoapi folder |
DEV300m4 |
tkr11_DEV300 | DEV300m4 | |
swnotescolor |
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 |
DEV300m4 |
sw8u10bf05 |
bug fixes in Writer for OOo 3.0 |
DEV300m4 |
sw30bf01 | DEV300m4 | |
sb83 |
Split basis/brand for the new three-layer (URE, basis, brand) office products. |
DEV300m4 |
s390port01 |
make s390 port work again |
DEV300m4 |
obo23 |
Fixes for unxmacxi |
DEV300m4 |
mingwport12 |
catch-up fix for MinGW port |
DEV300m4 |
impress138_DEV300 | DEV300m4 | |
dr60 | DEV300m4 | |
cwsattach2 |
add cwsattach batch file for windows |
DEV300m4 |
chartmappingfix |
Fix for 85913 row-mapping and column-mapping for charts using their own data is not imported correctly |
DEV300m4 |
ause092 |
small build fixes |
DEV300m4 |
tl52_DEV300 |
Addresses a crash in Calc during hyphenation. |
DEV300m3 |
startcenterfix |
fix issue 86881 |
DEV300m3 |
odfversion12_DEV300 |
ODF 1.2 Migration |
DEV300m3 |
newregdlg |
Different registration pages for SO and OOo. |
DEV300m3 |
impresstables2 |
Implementing native table support for impress and draw |
DEV300m3 |
hro34 |
Integration of Vista File Dialog and Shell Preview. New Windows SDK needed...depends on usage of VC8 compiler. |
DEV300m3 |
xmlfilter03_DEV300 | DEV300m2 | |
vcl86_DEV300 |
Tasks for 3.0 |
DEV300m2 |
unifysound01_DEV300 |
Move the remaining code that uses sound onto the avmedia api and not the vcl api |
DEV300m2 |
textconnectionsettings |
implement a stand-alone dialog which allows the user to specify |
DEV300m2 |
t602import01 |
Adding import filter for T602 (CZ & SK MSDOS wordprocessor), |
DEV300m2 |
swnewlistlevelattrs_DEV300 |
Introduction of new position and space attributes to the list levels of a list style |
DEV300m2 |
smoketest18 |
smoketest for macosx |
DEV300m2 |
rptwizres2b |
New strings for wizards report |
DEV300m2 |
rptchart01_DEV300 |
Enable Chart handling in the Sun Report Builder. |
DEV300m2 |
placeholders_DEV300 |
Adding placeholder for graphics |
DEV300m2 |
pages01_DEV300 |
Implementation of the "Multiple Page View" feature |
DEV300m2 |
oowintool01 |
Adding VC2005 express support to oowintool |
DEV300m2 |
odff02 |
More changes for ODFF compliance, follow-up on CWS 'odff'. |
DEV300m2 |
odff |
Implementation of ODFF (OpenDocument Format Formula specification, aka OpenFormula). |
DEV300m2 |
odbmacros2 | DEV300m2 | |
nowrapcmd2 |
Clean-up CWS to remove the unused WRAPCMD macro |
DEV300m2 |
nativeprintdlg01_DEV300 |
add support for native print dialog |
DEV300m2 |
native133 |
Make OOo 3.0 and SO 9 |
DEV300m2 |
locales30 |
New locales and locale data changes for OOo3.0 |
DEV300m2 |
layout_DEV300 | DEV300m2 | |
jl91_DEV300 |
UI fixes in Extension Manager |
DEV300m2 |
jl89_DEV300 | DEV300m2 | |
impresshandouts01 |
enhancing the handout printing in impress |
DEV300m2 |
iconunify_DEV300 |
KA: installsets for SO as well as for OOo have been tested by me |
DEV300m2 |
hcshared17_DEV300 |
Remaining issues and features for first release of OOo 3.0 / SO9 |
DEV300m2 |
dmake412_DEV300 |
Release dmake 4.12 |
DEV300m2 |
dlgedresizing_DEV300 |
fix the problem that in the Dialog Editor, it is impossible to give |
DEV300m2 |
directsbasemacros_DEV300 |
fix the problem that database documents opened from within |
DEV300m2 |
dba30a |
ongoing DBA bug fixing towards OOo 3.0 |
DEV300m2 |
cjksp1_DEV300 |
CJK features enhancement such as text grid, Chinese measure unit and CJK font. etc. |
DEV300m2 |
chart20_DEV300 |
Error Bars from cell ranges |
DEV300m2 |
calcshare_DEV300 |
Collaboration for Calc with Shared Spreadsheets |
DEV300m2 |
c06v5_DEV300 | DEV300m2 | |
beppec56index01_DEV300 |
Implementation for feature corresponding to ODF 1.2 proposal, |
DEV300m2 |
ause090_DEV300 |
revisit patching external sources |
DEV300m2 |
ause084_DEV300 |
build fixes and cleanup |
DEV300m2 |
aquavcl05_DEV300 |
more Mac/Aqua goodness |
DEV300m2 |
aquafilepicker02_DEV300 |
This cws is for the migration of the native file pickers on MacOSX from Carbon to Cocoa. |
DEV300m2 |
vclshowstop15_DEV300 |
fix issue 86327 |
DEV300m1 |
sysui14 |
Misc sysui strings added / removed |
DEV300m1 |
swcrossref01_DEV300 |
Implementation for the feature specified in the specification |
DEV300m1 |
supdremove02 |
Take UPD out of library and resource names |
DEV300m1 |
sdk24fix_DEV300 |
hotfix for OO.org 2.4 SDK |
DEV300m1 |
rt26 |
Clean up path defines in appdef.hxx |
DEV300m1 |
rptwizres |
Report wizard strings |
DEV300m1 |
reglater2_DEV300 |
Fix of i85445 |
DEV300m1 |
obo22 |
wntmsci11/12: Rename stlport_vc845.dll to stlport_vc7145.dll |
DEV300m1 |
mav28_DEV300 |
The new database report related showstopper fix. |
DEV300m1 |
jl92_DEV300 |
Showstopper |
DEV300m1 |
jl90_DEV300 |
Showstopper cws for extension manager |
DEV300m1 |
ia64port01_DEV300 |
port OOo to ia64 architecture |
DEV300m1 |
gcframework_DEV300 |
Grammar checking framework. |
DEV300m1 |
fwk81_DEV300 |
Framework fixes for OOo3.0 |
DEV300m1 |
formpdfexportfix_DEV300 |
fix issue 86396 "OOH680_m7 (2.4rc1): PDF Export does not |
DEV300m1 |
eoladabas_DEV300 | DEV300m1 | |
cwsattach_DEV300 |
add cwsattach build environment tool |
DEV300m1 |
custommeta |
- implement the service com.sun.star.document.DocumentProperties |
DEV300m1 |
cropmaster2000_DEV300 |
implementing interactive cropping feature for graphics in impress and draw |
DEV300m1 |
ab47_DEV300 |
Fix 2.4 showstopper i86265 |
DEV300m1 |
ab46_DEV300 |
cws to fix showstopper i84550 |
DEV300m1 |
ab45_DEV300 |
Extensible help: Adding content to the Contents tree |
DEV300m1 |
View as OpenDocument(Calc)
rt27 |
Fix for cross master resync |
SRC680m248 |
notes2 |
New implementation of notes in the margin |
SRC680m248 |
native131_SRC680 |
File soffice.bin.manifest also for OOo |
SRC680m248 |
macosxdnd |
Implement native Drag&Drop for Aqua OOo on Mac OS X |
SRC680m248 |
l10ntooling11 |
Fixes some l10n related issues |
SRC680m248 |
hcshared16 |
Some late issues for OOo3.0 |
SRC680m248 |
cmcfixes42 |
Minor fixes |
SRC680m248 |
chart19 |
Chart features for OOo 3.0 |
SRC680m248 |
calcselection |
Selection in Calc |
SRC680m248 |
xmlencl10n_SRC680 |
transform xml unicode chars to java properties .... & # x1234; -> \u1234 |
SRC680m247 |
vclshowstop13_SRC680 |
Fix broken AltGr handling on windows |
SRC680m247 |
sw8u10stopper_SRC680 |
Showstopper for OOo2.4 |
SRC680m247 |
sw24bf04_SRC680 |
fix for regression #i85624# |
SRC680m247 |
sw24bf03_SRC680 |
fix for issues 85717 and 82258 |
SRC680m247 |
sheetdrag |
Avoid long delays when accidentally starting drag&drop on sheet tabs |
SRC680m247 |
pagemargins |
Page margins in Calc page preview |
SRC680m247 |
odfversionfix_SRC680 |
bug fix for odf version detection |
SRC680m247 |
obr07 |
Remove a few MacOS X specialties. |
SRC680m247 |
mingwport11 |
The cws contains catch-up fixes for MinGW port |
SRC680m247 |
mav27_SRC680 |
Fix for OOo2.4 showstopper regarding document title. |
SRC680m247 |
jl87_SRC680 |
Showstopper |
SRC680m247 |
hro29_SRC680 |
2.4 Fix for locale problems (Office not starting) |
SRC680m247 |
fwk85_SRC680 |
Framework showstoppers for OOo2.4 |
SRC680m247 |
fwk84_SRC680 |
solve problems around stclient on different platforms |
SRC680m247 |
dba24h_SRC680 |
fix issue 85822 |
SRC680m247 |
dba24g_SRC680 |
2.4 bug bug fixing |
SRC680m247 |
calccolumns |
Calc column count |
SRC680m247 |
aw054 |
CWS for BugFixes and Overlay adaptions |
SRC680m247 |
vclshowstop12_SRC680 |
Fix some showstoppers for 2.4 |
SRC680m246 |
registerlater_SRC680 |
Fix of i85445 |
SRC680m246 |
os110_SRC680 | SRC680m246 | |
nofc4sols_SRC680 |
On some platforms the default for fontconfig based substitutions needs to be changed. |
SRC680m246 |
native128_SRC680 |
OOo 2.4 installation tasks |
SRC680m246 |
native127 |
OOo 3.0 installation tasks |
SRC680m246 |
mingwport10 |
Catch up fixes for MinGW port |
SRC680m246 |
loc27pl_SRC680 |
update for polish localisation for OOo 2.4 |
SRC680m246 |
l10ntooling10 |
Fix multi process issues in helpex |
SRC680m246 |
l10ntooling09 | SRC680m246 | |
icuregexpatch_SRC680 | SRC680m246 | |
gfb4win_SRC680 |
Fix problem with generic glyph fallback after gfbfcfg integration. |
SRC680m246 |
gcc430two |
more gcc 4.3.0 buildfixes |
SRC680m246 |
gcc430icc |
gcc 4.3.0 buildfix for new icc module |
SRC680m246 |
fwk83_SRC680 |
2.4 fixes |
SRC680m246 |
calcsolver |
Calc solver dialog and implementation |
SRC680m246 |
autoextension01_SRC680 |
roll back changes regarding AutoExtension of Save(As) Dialog |
SRC680m246 |
vcl85_SRC680 |
Still more 2.4 fixes |
SRC680m245 |
ucbfixes05_SRC680 |
UCB multithreading issues. |
SRC680m245 |
transogl02 |
Going further with the Impress OpenGL slideshow transitions |
SRC680m245 |
tkr09 | SRC680m245 | |
tkr07 |
2.4 fixes for NSS (certificate validation) and NoLabel-Property fix [toolkit] |
SRC680m245 |
thbpp10 |
OOo 2.4 fixes |
SRC680m245 |
tbe32 |
OOo 2.4 accessibility bug fixes |
SRC680m245 |
tagged01 |
Fixes some tagged PDF related issues. |
SRC680m245 |
sw8u10bf04 |
Writer bug fixes for OOo2.4 |
SRC680m245 |
sw24bf02_SRC680 |
fix for issue i85216 |
SRC680m245 |
sjfixes03_SRC680 | SRC680m245 | |
serbianisntsrcs |
s/sr-CS/sr/, s/sh-YU/sh/ |
SRC680m245 |
rt24 |
Minor environment cleanup. |
SRC680m245 |
reportdesign02 |
Further bugfixing of SRB and dba |
SRC680m245 |
pj89 |
Finishing WaE fixes for Mac OS X. |
SRC680m245 |
pentaho2_SRC680 |
External fixes for the report engine. |
SRC680m245 |
os109 |
Bugfixing OOo 2.4 |
SRC680m245 |
openssl02 |
2.4 openssl build Issues |
SRC680m245 |
onlineupdate6b |
Bugfixes for Online Update Module |
SRC680m245 |
oj30 |
remove using namespace ::std from comphelper/stl_types.hxx |
SRC680m245 |
newportstl |
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 |
SRC680m245 |
networkrepair_SRC680 |
Fixes to handle invalid file handles due to lost network connections. |
SRC680m245 |
locdat24 |
Locale data fixes for OOo2.4 |
SRC680m245 |
kohei01 |
General Calc fixes: |
SRC680m245 |
jsc20 |
SDK relevant OO.org 2.4 bugfixes |
SRC680m245 |
jl86_SRC680 |
new JRE for OOo |
SRC680m245 |
jl85_SRC680 | SRC680m245 | |
jl84_SRC680 |
2.4 fixes |
SRC680m245 |
impress136_SRC680 |
2.4 fixes for impress/draw |
SRC680m245 |
impress132 |
Bug fixes for OOo 2.4 |
SRC680m245 |
impress124 |
Bug fixes 2.4 |
SRC680m245 |
i18n39 |
i18n bug fixes. |
SRC680m245 |
hro27 |
Fixes for Windows system layer |
SRC680m245 |
hro26_SRC680 |
Update installation problems on Win9x, plus additional fixes from hro10 |
SRC680m245 |
hro24 | SRC680m245 | |
hr49 |
Small fixes to stlport and build tools. |
SRC680m245 |
hcshared14 |
Changes to the application help, Nov 07 and later |
SRC680m245 |
grepcheck |
check for $EGREP |
SRC680m245 |
fwk82_SRC680 |
2.4 bug fixes ... |
SRC680m245 |
fwk80_SRC680 |
Framework bugfixes for OpenOffice.org 2.4 |
SRC680m245 |
extras240 |
Bug-Fix-CWS for Extras. |
SRC680m245 |
dr58_SRC680 |
Calc issues with target OOo 2.4 |
SRC680m245 |
dbawizards |
cws to fix remaining bugs in database wizards |
SRC680m245 |
dba24f_SRC680 |
fixing DBA show stoppers for 2.4 |
SRC680m245 |
dba24e_SRC680 | SRC680m245 | |
dba24d |
ongoing DBA bug fixing towards 2.4 |
SRC680m245 |
cmcfixes40 |
misc minor fixes |
SRC680m245 |
chart21_SRC680 |
stopper bugs in chart |
SRC680m245 |
c17v002_SRC680 | SRC680m245 | |
c16v002_SRC680 | SRC680m245 | |
beppec56pdffix02 |
Add module icc to OpenOffice.org. This module will be used to generate ICC color profile. |
SRC680m245 |
ab43_SRC680 |
Extensible Help SDK sample |
SRC680m245 |
ab42 |
2.4 fixes |
SRC680m245 |
xf02bigcleanup | SRC680m244 | |
hcshared15 |
Help content December 07 and later |
SRC680m244 |
xmlfilter02 | SRC680m243 | |
wae4extensions |
This cws is an effort to fix warnings at buildtime in extensions |
SRC680m243 |
unoapi2 |
add issue numbers into knownissue.xcl of $MODULE/qa/unoapi filder |
SRC680m243 |
tkr08 |
2.4 fixes / patches |
SRC680m243 |
thiscomponent_SRC680 |
fix the issue that ThisComponent in global Basic scripts is |
SRC680m243 |
symex | SRC680m243 | |
sw8u10bf03 |
2.4 bugfixes |
SRC680m243 |
stl4leopardppc |
The purpose of the cws is to allow OpenOffice.org to be built on Mac OS X10.5 (PowerPC) |
SRC680m243 |
socs09 | SRC680m243 | |
so8s10u5_SRC680 | SRC680m243 | |
rt25_SRC680 |
Small fixes for pack tooling, relevant for SO only. |
SRC680m243 |
qadev31 |
test environment for API tests and Convwatch |
SRC680m243 |
pentaho1 |
Newest version of the Pentaho sources of the report engine. |
SRC680m243 |
obo21 |
Port for .Net 2008 Express |
SRC680m243 |
native125 |
Small fix for problems with userland scripts on Linux |
SRC680m243 |
localisation27 |
Localisation CWS for OOo 2.4 |
SRC680m243 |
fwk79 |
More framework fixes for OOo 2.4 |
SRC680m243 |
dmgunarchive_SRC680 |
Make dmg a valid PKGFORMAT value |
SRC680m243 |
cmcfixes41 |
Workspace to remove unused modules of XmlSearch, xt and rvpapi |
SRC680m243 |
chart15 |
Bugfixes for chart2 |
SRC680m243 |
awtfixes1 |
Improve awt and vcl, adding hooks for layout |
SRC680m243 |
ause089 |
get windows buildbot patches into cvs |
SRC680m243 |
ause085 |
rework dependency generation |
SRC680m243 |
aquavcl04 |
Several misc fixes for Aqua version, including, Testtool issues, |
SRC680m243 |
rsclangvar |
implement language variant fallback in rsc |
SRC680m242 |
native114 | SRC680m242 | |
hunspell2 |
Hunspell spell checker 1.1.12 (http://hunspell.sf.net): |
SRC680m242 |
sb80 |
fixes for problems introduced by CWS sb71 |
SRC680m242 |
supdremove |
cleanup: remove obsolete SUPD macro use |
SRC680m242 |
adc21 |
Allow absolute URLs for links to the developer manual. |
SRC680m242 |
native110 |
Package restructuring, part 3 |
SRC680m242 |
obo19 |
Build and environment fixes for MacOSX 10.5. (Leopard) |
SRC680m242 |
ause088 |
small build fixes |
SRC680m242 |
beppec56pdffix01 |
Bug fix for pdf export filter (PDF/A-1), on the way to 2.4 |
SRC680m242 |
fwk77 |
Bugfixes for 2.4 |
SRC680m242 |
mingwport09 |
Catch-up fixes for MinGW port |
SRC680m242 |
sw8u10bf02 |
Writer core bug fixes for OOo2.4 |
SRC680m242 |
ucbfixes04 |
Misc UCB bug fixes for 2.4 |
SRC680m242 |
gcc430 |
clean up the warnings that are now errors in gcc 4.3.0 |
SRC680m242 |
kendy19 |
OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER() |
SRC680m242 |
mba24issues01 | SRC680m242 | |
rhino15r5 |
update rhino to the most recent 1.5 version |
SRC680m242 |
src680m242masterfix | SRC680m242 |