summaryrefslogtreecommitdiff
path: root/configmgr
AgeCommit message (Collapse)AuthorFilesLines
2012-11-07fdo#55138: Do not double-expand bootstrap variablesStephan Bergmann2-13/+7
For some reason that escapes me now, the old code double-expanded URLs in CONFIGURATION_LAYERS and in extension layer's configmgr.ini SCHEMA/DATA. That produced wrong results when the pathnames represented by those URLs contain any "$" characters, as apparently routinely happens on Windows with roaming profiles. Change-Id: Iff149e7d8736cbcda579376cdc89e24cf99ccc97 (cherry picked from commit 8246bdb500a6d83ea9b61f58fb74e051432e32d7) Reviewed-on: https://gerrit.libreoffice.org/994 Reviewed-by: Michael Meeks <michael.meeks@suse.com> Tested-by: Michael Meeks <michael.meeks@suse.com>
2012-06-01nuke unused namespaceTakeshi Abe1-6/+0
Change-Id: Ic00cdfce4172af0a2f0aa1aa33ef5e386d407976
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-1/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-08gbuild: "use" vs. "add":Michael Stahl2-3/+3
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi3-14/+8
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi4-9/+9
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *) *{$/\1\2 ( \3 == \4 ) {/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2-4/+4
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-03-23.sce files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.component files don't need executable bitsMichael Stahl1-0/+0
2012-03-21chmod -xTor Lillqvist1-0/+0
2012-03-20Unused includesStephan Bergmann1-1/+0
2012-03-15fdo#42961 Don't let env vars interfere with internal bootstrap varsStephan Bergmann1-9/+31
2012-03-09Line breaks in registrymodifications.xcuStephan Bergmann1-4/+4
2012-03-06more idle code documentation improvementMichael Meeks1-0/+5
2012-02-24Resolves fdo#46074: Fix Partial::contains for paths that go past a leaf nodeStephan Bergmann1-1/+14
Paths that already "failed" at the root node were not reported as CONTAINS_NOT, so that they were erroneously migrated, but with broken content (values of set member properties were nil).
2012-02-23Adapted WriteThread to safer-to-use salhelper::ThreadStephan Bergmann1-18/+7
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann1-1/+1
2012-02-19add configmgr, ucb1, ucpfile1, xcr to libmergedMatúš Kukan2-2/+2
2012-02-14Moved configmgr/source/README into configmgr/READMEStephan Bergmann2-156/+131
2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich1-0/+1
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-01-30Fixed cppheader.xsl nillable treatment.Stephan Bergmann1-0/+4
* 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.
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2-3/+6
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
2012-01-12Check for xcu <node> that should rather be <prop>.Stephan Bergmann1-0/+10
2011-12-17Fix for fdo43460 Part VIII getLength() to isEmpty()Olivier Hallot10-41/+41
Part VIII Module comfigmgr
2011-12-16Revert "Move configmgr to tail_build."Stephan Bergmann1-0/+2
...it is not yet ready for that. This reverts commit f3acd83c1c406f6527d05b0a52a2bef03557e2e1. Conflicts: tail_build/prj/build.lst
2011-12-16Code modules no longer depend on stlport.Stephan Bergmann1-1/+1
2011-12-16Move configmgr to tail_build.Stephan Bergmann1-2/+0
2011-12-14Missing configmgr/prj/build.lst adaption.Stephan Bergmann1-2/+1
2011-12-14Replaced remaining OSL_ASSERT in configmgr.Stephan Bergmann4-12/+16
2011-12-14Ported configmgr to gbuild.Stephan Bergmann6-133/+86
2011-12-13Unified configmgr::Node::getMember{s,Map} again.Stephan Bergmann18-112/+97
(With the insight that Data::components is RootNode::members.)
2011-12-13Fix problem when compiling against a wrong colour version of the GNU STLTor Lillqvist1-1/+1
2011-12-13Simplified, type-safe C++ configuration access.Stephan Bergmann28-929/+1590
* New offapi com.sun.star.configuration entities to access the complete configuration read-only or read/write... * ...configmgr adapted to support those new services/singletons... * ...new unotools/configuration.hxx is the type-safe C++ plumbing on top of that... * ...officecfg now generates C++ headers to access all the properties and sets given in the .xcs files... * ...and svl's asiancfg.cxx exemplarily makes use of the new officecfg/Office/Common.hxx to access the configuration. * There is still TODOs: For one, see those listed in officecfg/registry/cppheader.xsl. For another, at least a notification mechanism for the new read-only configuration access and the C++ wrapper is missing.
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-29Adapted to new assertion/logging mechanisms.Stephan Bergmann20-290/+282
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-65/+0
2011-11-27remove include of pch header in configmgrNorbert Thiebaud31-31/+0
2011-11-27remove PCH support in dmake-moduleNorbert Thiebaud1-3/+0
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-1/+1
2011-11-21cleanup .uno:HelpSupportAndras Timar1-5/+0
2011-11-17Enforce a "lib" prefix for UNO components for AndroidTor Lillqvist2-4/+4
This commit for the old build system. (Don't bother for components not relevant for Android.) The Android package installer (as invoked through "adb install", from "ant debug install") silently ignores native libraries in app packages (.apk files) whose names don't start with "lib" and end with ".so". The package builder (as invoked through "ant debug") in the SDK gladly includes also thusly named native libraries in the .apk, though. Yay for consistency.
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud1-4/+4
This allow to run make in a module wihtout the need to source Env.Host.sh.
2011-11-14Simplified some uses of css.configuration.theDefaultProvider.Stephan Bergmann1-7/+2
* Retro-added new-style UNOIDL singleton specification for it, for easy instantiation. * Plus new comphelper::getComponentContext to map from XMultiServiceFactory to XComponentContext.
2011-10-31Cleaned up configmgr initialization.Stephan Bergmann2-101/+119
Added CONFIGURATION_LAYERS bootstrap variable. Removed OOO_CONFIG_REGISTRY[_EXTRA]_DIR bootstrap variables.
2011-10-27Fixed previous configmgr layer numbering fix.Stephan Bergmann1-1/+2
2011-10-26Fixed configmgr layer numbering.Stephan Bergmann1-1/+1
2011-10-26more tweaks to unittests, also move registrymodifications.xcuNoel Power1-1/+11
registrymodifications.xcu has been moved to the solver ( unittest/user/data ) new OOO_CONFIG_REGISTRY_EXTRA_DIR env var will be used to specify the directory 'data' will be contained in so we can override various config items.
2011-10-26Handle removal of non-mandatory set members.Stephan Bergmann1-1/+1