summaryrefslogtreecommitdiff
path: root/officecfg/registry/schema/org/openoffice/Setup.xcs
AgeCommit message (Collapse)AuthorFilesLines
2012-11-30Remove deprecated and unused entries from /org.openoffice.SetupStephan Bergmann1-94/+0
...but ooSetupInstCompleted is apparently not (yet) deprecated. Change-Id: I21237f804266e1f119bcf51f957ff4f22a64e3b2
2012-11-30Clean up indentationStephan Bergmann1-403/+529
Change-Id: I2a26c044103e6051a0790100087f42c41b12465a
2012-11-19re-base on ALv2 code. Includes:Michael Meeks1-23/+14
Patch contributed by: Jurgen Schmidt remove onlineregistration with dependencies http://svn.apache.org/viewvc?view=revision&revision=1240245 imported patch package_eventlistener.patch http://svn.apache.org/viewvc?view=revision&revision=1172103 Patch contributed by Pedro Giffuni Accept Google Chrome OS fonts as equivalent to MS fonts. http://svn.apache.org/viewvc?view=revision&revision=1233155 http://svn.apache.org/viewvc?view=revision&revision=1233408 Patch contributed by Andre Fischer Do not add targets for junit tests when junit is disabled. http://svn.apache.org/viewvc?view=revision&revision=1241508 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i114600#: remove forbidden characters from list of unencoded characters http://svn.apache.org/viewvc?view=revision&revision=1172370 Patches contributed by Oliver Rainer-Wittman some clean up in JPEGReader due to memory constraints http://svn.apache.org/viewvc?view=revision&revision=1299729 119114 - method <UpdateDialog::addSpecificError(..)> - create entry with correct type http://svn.apache.org/viewvc?view=revision&revision=1305265 Patches contributed by Ariel Constenla-Haile i118707 - make toolbar control's popup window grab focus http://svn.apache.org/viewvc?view=revision&revision=1225846 Patches contributed by Herbert Duerr #i118662# remove usage of BerkeleyDB in desktop module http://svn.apache.org/viewvc?view=revision&revision=1213171 minor cleanups in dp_persmap.* http://svn.apache.org/viewvc?view=revision&revision=1215064 flush early to prevent problem with extension manager not cleaning up its objects http://svn.apache.org/viewvc?view=revision&revision=1228147 i118726 do not flush *pmap file while reading it http://svn.apache.org/viewvc?view=revision&revision=1230614 #i119048# migrate BDB extension entries using a simple heuristic http://svn.apache.org/viewvc?view=revision&revision=1300972 #i119048# handle edge cases when importing BDB hash files http://svn.apache.org/viewvc?view=revision&revision=1301428 #i119113# fix of-by-one when importing BDB files http://svn.apache.org/viewvc?view=revision&revision=1305420 restore our encryption settings, icon themes, and dictionaries. removed wrapper hacks, kill obsolete bundled extension blob / pre-registration handling, remove duplicated quickstart code. remove OS/2 conditionals.
2012-11-12fdo#36324 fdo#42929 - option to ingore system input language changesJeremy Brown1-0/+8
Created a new checkbox on the Langauges options page: [] Ignore system input language This is unchecked by default so that the current behavior remains the default, i.e. newly entered text will be flagged as whatever the current system input language is. When checked however, this instructs LibreOffice to ignore the system language (on Windows for example, the language from the Language Bar) when determining the language for newly entered text. This is handled in the lcl_isNonDefaultLanguage method of sw/source/ui/docvw/edtwin.cxx. The option is also saved in registrymodifications.xcu There are two main use cases: 1. This allows someone to use a single "international" keyboard on Windows to type in multiple languages, (e.g. English, French, Spanish) without changing the system keyboard. The person is then responsible for setting the language for each word or run of text themselves in LibreOffice. This seems to be the preferred workflow for some translators and some educators developing language materials. 2. This allows someone writing in a minority language that is not represented in one of Windows' locale options to still be able to type in LibreOffice in their language using a keyboard tagged for another language. Once they set the language in LibreOffice (e.g. to Teke-Eboo [ebo_CG]), they can type with a keyboard as being for "Swahili" but still succeed in entering new text in their language. This allows spell-checking to work properly without them having to select each new word they enter and reset the language of that word to Teke-Eboo (as is currently the case). Change-Id: I86248f5865b69048eb1f3e427a8c03b093138796 Reviewed-on: https://gerrit.libreoffice.org/1029 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2012-08-29resolved fdo#52240 fdo#52137 fdo#52288 user editable date patternsEike Rathke1-0/+8
Implemented user editable date acceptance patterns. The introduction of strict date parsing using locale dependent date acceptance patterns in 3.6.0 wasn't always welcomed. Besides that not every locale had patterns for incomplete (only day and month) date input, users also complained about not being able to key in dates on numeric keypads if the locale's date separator wasn't '/' or '-' This commit implements a "Date acceptance patterns" edit field under Tools->Options->LanguageSettings->Languages that follows the selected locale and enables the user to add patterns. Example de-DE locale: * default patterns: D.M.Y;D.M. * to enable additional input on numeric keypad: D.M.Y;D.M.;D-M-Y;D-M * if 3-4 shall not result in a date, D-M- could be used instead of D-M * note that to enter an ISO 8601 Y-M-D date with a D-M-Y pattern active one needs to enter a year >31 or with at least 3 digits, e.g. 011 Change-Id: I9e20fcb168578b02d0f0248a0e209942e0f27113
2012-03-02Clean upStephan Bergmann1-3/+5
2012-01-30Fixed cppheader.xsl nillable treatment.Stephan Bergmann1-23/+23
* cppheader.xsl had initially been written under the false assumption that a missing oor:nillable attribute defaults to "false" instead of "true". That has been fixed. * As a result, many places that use the new simplified officecfg/*.hxx headers broke as they did not expect value types to be wrapped boost::optional. To keep the code simple, I decided to change all occurrences in officecfg/registry/schema/ of properties that specify a default <value> and do not explicitly specify oor:nillable="true" to oor:nillable="false". Strictly speaking, this is an incompatible change, but in many cases it should be what was intended, anyway. * Some places that use the new simplified officecfg/*.hxx headers still had to be adapted to boost::optional wrapping. * This showed that unotools/configuration.hxx did not yet work for those wrapped properties and needed fixing, too.
2011-12-16add version suffix (beta1) to about dialogPetr Mladek1-0/+7
configurable at build time via ABOUTBOXPRODUCTVERSIONSUFFIX in instsetoo_native/util/openoffice.lst configurable at runtime via registry/data/org/openoffice/Setup.xcu and ooSetupVersionAboutBoxSuffix property
2010-08-05fwk152: #i112452# let restart functionality restart quickstarter as wellMikhail Voytenko1-1/+8
2010-06-15CWS-TOOLING: integrate CWS fwk139obo1-0/+6
2010-05-26l10ntooling18: mergeIvo Hinkelmann1-71/+82
2010-05-26fwk139: #i40233# integrate the patchMikhail Voytenko1-0/+6
2010-04-12sb121: merged in DEV300_m76sb1-5/+0
2010-03-26sb121: #i110203# added configmgr::update::insertModificationXcuFile and ↵sb1-6/+0
adapted old configuration data migration to it; some cleanup
2010-03-25cws l10ntooling18: #i110394# Introduce the variable %OOOVENDORIvo Hinkelmann1-1/+9
2010-03-26#161436# New migration service to migrate from SO 9.x/OOo 3.x to o5oo - ↵Vladimir Glazunov1-71/+87
transplanted from 8417a68af8e1@native0
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien1-4/+1
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2009-08-06CWS-TOOLING: integrate CWS extmgr01Release Engineers1-0/+7
2009-07-28 15:37:52 +0200 dv r274410 : #i103856# Create dialog before using it 2009-07-27 15:24:42 +0200 dv r274368 : #i103831# Made selectEntry virtual so the correct function will be used from the listbox with buttons 2009-07-27 14:17:08 +0200 dv r274366 : #i103831# Made selectEntry virtual so the correct function will be used from the listbox with buttons 2009-07-07 08:23:17 +0200 dv r273765 : #i102666# Extension check on startup after office update -> fixed repaint problem 2009-07-06 11:28:28 +0200 dv r273729 : #i102666# Extension check on startup after office update -> fixed Mac OS X issues 2009-07-02 15:01:35 +0200 dv r273654 : #i102666# Extension check on startup after office update -> set last checked to never when aborting 2009-07-01 12:18:52 +0200 dv r273564 : Removed unused variable 2009-07-01 07:25:01 +0200 dv r273542 : #i102666# Extension check on startup after office update -> better layout 2009-06-30 14:56:16 +0200 dv r273506 : #i102666# Extension check on startup after office update -> mark incompatible extensions in extension manager 2009-06-30 12:43:55 +0200 dv r273502 : CWS-TOOLING: rebase CWS extmgr01 to trunk@273468 (milestone: DEV300:m51) 2009-06-29 13:26:54 +0200 dv r273469 : Now with newline at the end 2009-06-29 11:54:07 +0200 dv r273462 : #i102666# Extension check on startup after office update -> exit button of dialog disables extensions, too 2009-06-26 16:26:02 +0200 dv r273428 : #i102666# Extension check on startup after office update -> better progress handling 2009-06-26 14:50:34 +0200 dv r273417 : fixed crash when shutting down while initial waiting 2009-06-26 14:46:40 +0200 dv r273416 : #i102666# Extension check on startup after office update 2009-06-24 07:30:57 +0200 dv r273306 : #i102666# Extension check on startup after update 2009-06-11 12:03:10 +0200 dv r272863 : #i102666# Extension check on startup after update 2009-06-11 11:59:29 +0200 dv r272862 : #i102666# Extension check on startup after update 2009-06-09 15:50:05 +0200 dv r272773 : CWS-TOOLING: rebase CWS extmgr01 to trunk@272291 (milestone: DEV300:m49)
2008-04-11INTEGRATION: CWS changefileheader (1.52.266); FILE MERGEDRüdiger Timm1-24/+19
2008/03/31 12:48:12 rt 1.52.266.1: #i87441# Change license header to LPGL v3.
2007-04-16INTEGRATION: CWS fwkdbdesign01 (1.51.50); FILE MERGEDIvo Hinkelmann1-2/+15
2007/03/12 08:28:26 pb 1.51.50.2: fix: #i4854# ooSetupFactoryStyleFilter added 2007/03/05 13:32:12 as 1.51.50.1: #i45663# differ between module and service names
2006-12-19INTEGRATION: CWS native72 (1.50.98); FILE MERGEDIvo Hinkelmann1-3/+10
2006/12/05 08:42:56 pb 1.50.98.1: fix: #i70859# ooSetupVersionAboutBox added
2006-07-13INTEGRATION: CWS pathoptions01 (1.49.108); FILE MERGEDOliver Bolte1-2/+8
2006/06/26 07:11:10 as 1.49.108.1: #i66157# new property to handle the most actual document template filter for an OOo module
2006-01-27INTEGRATION: CWS lo11 (1.47.24); FILE MERGEDJens-Heiner Rechtien1-3/+12
2006/01/19 13:26:27 lo 1.47.24.2: RESYNC: (1.47-1.48); FILE MERGED 2006/01/11 14:40:32 lo 1.47.24.1: #i59599# added property to store migration state: MigrationCompleted
2006-01-05INTEGRATION: CWS iconswitching1 (1.47.16); FILE MERGEDKurt Zenker1-2/+8
2005/12/16 14:48:00 ka 1.47.16.1: #i36518#: added OPENSOURCECONTEXT property
2005-11-11INTEGRATION: CWS perform06 (1.46.40); FILE MERGEDRüdiger Timm1-2/+9
2005/10/24 09:30:54 as 1.46.40.1: #i56527# register the (own default / most actual) filter for every office module
2005-09-08INTEGRATION: CWS ooo19126 (1.45.62); FILE MERGEDRüdiger Timm1-48/+21
2005/09/05 12:01:52 rt 1.45.62.1: #i54170# Change license header: remove SISSL
2005-05-24INTEGRATION: CWS c01v008 (1.44.26); FILE MERGEDRüdiger Timm1-3/+3
2005/05/23 12:50:16 cd 1.44.26.1: #123059 make option to 'not register' configurable
2005-04-01INTEGRATION: CWS fwkfinal6 (1.42.6); FILE MERGEDRüdiger Timm1-3/+7
2005/03/24 08:08:57 as 1.42.6.1: #i45855# disable HelpOnOpen feature by default by using NIL value explicitly
2005-03-23INTEGRATION: CWS fwkfinal2 (1.41.106); FILE MERGEDVladimir Glazounov1-3/+10
2005/03/17 09:22:28 as 1.41.106.1: #120339# provide new property FileFormatName
2005-03-15INTEGRATION: CWS c01v005 (1.41.94); FILE MERGEDOliver Bolte1-2/+15
2005/03/02 13:52:18 as 1.41.94.1: #119880# reactivate HelpOnStartup job
2005-01-07INTEGRATION: CWS cfgimpex (1.40.28); FILE MERGEDRüdiger Timm1-6/+5
2004/12/08 15:48:19 jb 1.40.28.1: #i37937#,#i37938# Deprecate TransferUserSettingsOnce; Replace DG as <author>
2004-11-24#i10000# remove xml attributes for nonlocalizes descOliver Bolte1-4/+4
2004-11-16INTEGRATION: CWS docking4 (1.35.128); FILE MERGEDOliver Bolte1-2/+9
2004/10/11 09:07:44 cd 1.35.128.2: RESYNC: (1.35-1.36); FILE MERGED 2004/09/27 14:51:50 cd 1.35.128.1: #i33338# Added new property to make command categories available
2004-11-15INTEGRATION: CWS migration1 (1.35.118); FILE MERGEDOliver Bolte1-5/+73
2004/11/03 09:53:07 lo 1.35.118.4: RESYNC: (1.35-1.36); FILE MERGED 2004/10/29 16:27:12 lo 1.35.118.3: #i33255# supported versions 2004/10/25 09:06:35 lo 1.35.118.2: #i33255 Migration Schema 2004/10/21 12:39:41 lo 1.35.118.1: #i33255# migration schema
2004-11-15INTEGRATION: CWS cfglooseends (1.36.66); FILE MERGEDOliver Bolte1-4/+3
2004/11/02 16:02:25 jb 1.36.66.1: #i18588# Removed undesired xml:lang tags from schema files - informational items are currently not localized
2004-09-20INTEGRATION: CWS keyconfig01 (1.35.40); FILE MERGEDRüdiger Timm1-4/+10
2004/07/22 09:58:45 as 1.35.40.1: #i20125# add new module UIName property
2004-07-06INTEGRATION: CWS docking1 (1.30.2); FILE MERGEDOliver Bolte1-2/+9
2004/05/30 10:38:56 cd 1.30.2.2: RESYNC: (1.30-1.31); FILE MERGED 2004/05/03 15:10:11 cd 1.30.2.1: #i25236# Added reference to window state configuration
2004-07-05INTEGRATION: CWS scp2officecfg (1.31.4); FILE MERGEDOliver Bolte1-843/+65
2004/06/17 12:36:25 jb 1.31.4.3: RESYNC: (1.31-1.32); FILE MERGED 2004/06/17 09:35:40 jb 1.31.4.2: #i18588# Remove localized descriptions and drop xml:lang tag from english <desc> and <label> elements 2004/05/18 15:58:56 jb 1.31.4.1: #i25937# New InstalledLocales handling to replace ooSetupLocales
2004-07-05INTEGRATION: CWS indephome (1.31.36); FILE MERGEDRüdiger Timm1-4/+3
2004/05/26 14:40:57 kso 1.31.36.1: #i29518# - Office/ooSetupInstCompleted no longer deprecated.
2004-06-10INTEGRATION: CWS fwk02ea (1.31.8); FILE MERGEDKurt Zenker1-92/+79
2004/06/01 15:34:18 lo 1.31.8.1: #i29643# #i26375# licens dialog behavior + helpids
2004-04-29INTEGRATION: CWS os12 (1.27.44); FILE MERGEDOliver Bolte1-2/+9
2004/04/07 17:40:51 os 1.27.44.2: RESYNC: (1.27-1.29); FILE MERGED 2004/03/04 12:31:40 as 1.27.44.1: #114059# add new property to factory template: DefaultFilter
2004-04-27INTEGRATION: CWS cso001 (1.28.26); FILE MERGEDOliver Bolte1-2/+3
2004/03/23 12:47:15 hjs 1.28.26.1: #116006# merge
2004-03-17INTEGRATION: CWS vcl18 (1.27.36); FILE MERGEDOliver Bolte1-3/+12
2004/02/11 15:12:25 os 1.27.36.1: #i1820# settings decimal separator depending on the locale
2004-02-25INTEGRATION: CWS layoutmanager (1.26.46); FILE MERGEDKurt Zenker1-3/+12
2004/01/30 13:09:20 cd 1.26.46.3: #111899# Removed obsolete property 2004/01/29 10:38:33 cd 1.26.46.2: RESYNC: (1.26-1.27); FILE MERGED 2004/01/26 09:13:51 as 1.26.46.1: #i19488# new props for module ui configuration
2003-12-17INTEGRATION: CWS geordi2q11 (1.26.90); FILE MERGEDVladimir Glazounov1-2/+62
2003/12/16 13:24:33 hr 1.26.90.1: #111934#: join CWS ooo111fix1
2003-07-24#100000#: Last minutes Geordi RC3 mergesJens-Heiner Rechtien1-2/+3
2003-07-22INTEGRATION: CWS mergem13s2 (1.24.4); FILE MERGEDVladimir Glazounov1-12/+11
2003/07/22 12:48:42 ihi 1.24.4.1: rc3 merge
2003-07-17INTEGRATION: CWS mergerc3 (1.23.6); FILE MERGEDJens-Heiner Rechtien1-2/+85
2003/07/16 16:53:23 ihi 1.23.6.1: rc-3 merge all languages
2003-07-03INTEGRATION: CWS rc2merge (1.22.12); FILE MERGEDJens-Heiner Rechtien1-55/+56
2003/07/03 14:26:39 ihi 1.22.12.1: rc-2 merge all languages
2003-06-13INTEGRATION: CWS rcmerge (1.21.24); FILE MERGEDJens-Heiner Rechtien1-2/+3
2003/06/12 10:58:42 gh 1.21.24.1: final Merge RC