2004-02-05 11:10:37 -06:00
/*************************************************************************
*
2008-04-10 03:45:46 -05:00
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
2005-09-08 19:41:05 -05:00
*
2008-04-10 03:45:46 -05:00
* OpenOffice.org - a multi-platform office productivity suite
2005-09-08 19:41:05 -05:00
*
2008-04-10 03:45:46 -05:00
* $RCSfile: profileitem_ooo.scp,v $
2008-05-28 05:58:39 -05:00
* $Revision: 1.63 $
2005-09-08 19:41:05 -05:00
*
2008-04-10 03:45:46 -05:00
* This file is part of OpenOffice.org.
2005-09-08 19:41:05 -05:00
*
2008-04-10 03:45:46 -05:00
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2005-09-08 19:41:05 -05:00
*
2008-04-10 03:45:46 -05:00
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2005-09-08 19:41:05 -05:00
*
2008-04-10 03:45:46 -05:00
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2005-09-08 19:41:05 -05:00
*
2004-02-05 11:10:37 -06:00
************************************************************************/
#include "macros.inc"
2004-03-30 07:51:24 -06:00
// for the configmgr
ProfileItem gid_Profileitem_Configmgr_Cfg_Servertype
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2004-03-30 07:51:24 -06:00
Order = 1;
Key = "CFG_ServerType";
Value = "uno";
2004-02-05 11:10:37 -06:00
End
2004-03-30 07:51:24 -06:00
2004-02-05 11:10:37 -06:00
ProfileItem gid_Profileitem_Configmgr_Bootstrap_Ini
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 2;
Key = "BootstrapFile";
2008-03-18 07:33:06 -05:00
Value = "$BRAND_BASE_DIR/program/" PROFILENAME(bootstrap);
2004-02-05 11:10:37 -06:00
End
2005-09-28 07:25:29 -05:00
ProfileItem gid_Profileitem_Configmgr_Version_Ini
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 2;
Key = "VersionFile";
2008-03-18 07:33:06 -05:00
Value = "$BRAND_BASE_DIR/program/" PROFILENAME(version);
2005-09-28 07:25:29 -05:00
End
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Uno_Ini
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2004-03-30 07:51:24 -06:00
Order = 3;
Key = "UnoFile";
#ifdef UNX
Value = "$ORIGIN/unorc";
#else
Value = "$ORIGIN/uno.ini";
#endif
2004-02-05 11:10:37 -06:00
End
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Baseinstallation
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2004-03-30 07:51:24 -06:00
Order = 4;
Key = "BaseInstallation";
2008-03-18 07:33:06 -05:00
Value = "${OOO_BASE_DIR}";
2004-02-05 11:10:37 -06:00
End
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Userinstallation
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2004-03-30 07:51:24 -06:00
Order = 5;
Key = "UserInstallation";
Value = "${$BootstrapFile:UserInstallation}";
2004-02-05 11:10:37 -06:00
End
2005-05-20 09:47:42 -05:00
ProfileItem gid_Profileitem_Configmgr_Schemaversion
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 6;
2005-05-20 09:47:42 -05:00
Key = "CFG_SchemaVersion";
2005-09-28 07:25:29 -05:00
Value = "${$VersionFile:buildid}";
2005-05-20 09:47:42 -05:00
End
ProfileItem gid_Profileitem_Configmgr_Localcfg_Schemadataurl
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 7;
2004-02-05 11:10:37 -06:00
Key = "CFG_SchemaDataUrl";
2005-11-11 05:27:37 -06:00
Value = "$BaseInstallation/share/registry/schema ?$CFG_UnoUserPackages/schema ?$CFG_UnoSharedPackages/schema ?$CFG_CustomLayerUrl/schema";
2004-02-05 11:10:37 -06:00
End
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Defaultdataurl
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-05-20 09:47:42 -05:00
Order = 8;
2004-03-30 07:51:24 -06:00
Key = "CFG_DefaultLayerUrls";
2004-04-14 08:58:56 -05:00
Value = "$BaseInstallation/share/registry $CFG_UnoSharedPackages $CFG_UnoUserPackages";
2004-03-30 07:51:24 -06:00
End
2004-04-14 06:17:15 -05:00
ProfileItem gid_Profileitem_Configmgr_Cachedisposal
2004-03-30 07:51:24 -06:00
ProfileID =gid_Profile_Configmgr_Ini ;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-05-20 09:47:42 -05:00
Order = 9;
2004-03-30 07:51:24 -06:00
Key = "CFG_CacheDisposeDelay";
Value = "900";
2004-02-05 11:10:37 -06:00
End
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Cacheinterval
ProfileID = gid_Profile_Configmgr_Ini ;
2004-02-05 11:10:37 -06:00
ModuleID = gid_Module_Root;
2004-03-30 07:51:24 -06:00
Section = "Bootstrap";
2005-05-20 09:47:42 -05:00
Order = 10;
2004-03-30 07:51:24 -06:00
Key = "CFG_CacheDisposeInterval";
Value = "60";
2004-02-05 11:10:37 -06:00
End
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Cachewrite
ProfileID = gid_Profile_Configmgr_Ini ;
2004-02-05 11:10:37 -06:00
ModuleID = gid_Module_Root;
2004-03-30 07:51:24 -06:00
Section = "Bootstrap";
2005-05-20 09:47:42 -05:00
Order = 11;
2004-03-30 07:51:24 -06:00
Key = "CFG_CacheWriteInterval";
Value = "2";
2004-02-05 11:10:37 -06:00
End
2004-08-03 08:59:01 -05:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Userdataurl
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
2004-03-30 07:51:24 -06:00
Section = "Bootstrap";
2005-05-20 09:47:42 -05:00
Order = 12;
2004-03-30 07:51:24 -06:00
Key = "CFG_UserLayerUrl";
Value = "$UserInstallation/user/registry";
2004-02-05 11:10:37 -06:00
End
2004-08-03 08:59:01 -05:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Cacheurl
2004-02-05 11:10:37 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
2004-03-30 07:51:24 -06:00
Section = "Bootstrap";
2005-05-20 09:47:42 -05:00
Order = 13;
2004-03-30 07:51:24 -06:00
Key = "CFG_CacheUrl";
Value = "$UserInstallation/user/registry/cache";
2004-02-05 11:10:37 -06:00
End
2005-03-30 01:42:35 -06:00
2004-03-30 07:51:24 -06:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Defaultlayerurl
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2004-07-05 07:18:08 -05:00
Order = 14;
2004-03-30 07:51:24 -06:00
Key = "CFG_DefaultLayerUrl";
Value = "$BaseInstallation/share/registry";
2004-02-05 11:10:37 -06:00
End
2004-07-05 07:18:08 -05:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Modulelayerurl
2004-03-30 07:51:24 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-01-07 03:18:52 -06:00
Order = 15;
2004-07-05 07:18:08 -05:00
Key = "CFG_ModuleLayerUrl";
Value = "$CFG_DefaultLayerUrl/modules";
End
ProfileItem gid_Profileitem_Configmgr_Localcfg_Unosharedpackages
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-01-07 03:18:52 -06:00
Order = 16;
2004-03-30 07:51:24 -06:00
Key = "CFG_UnoSharedPackages";
2004-04-14 08:58:56 -05:00
Value = "${$UnoFile:UNO_SHARED_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/registry";
2004-03-30 07:51:24 -06:00
End
ProfileItem gid_Profileitem_Configmgr_Localcfg_Unouserpackages
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-01-07 03:18:52 -06:00
Order = 17;
2004-03-30 07:51:24 -06:00
Key = "CFG_UnoUserPackages";
2004-04-14 08:58:56 -05:00
Value = "${$UnoFile:UNO_USER_PACKAGES_CACHE}/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/registry";
2004-03-30 07:51:24 -06:00
End
2005-11-11 05:27:37 -06:00
ProfileItem gid_Profileitem_Configmgr_Unocfg_CustomLayerUrl
2004-03-30 07:51:24 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-01-07 03:18:52 -06:00
Order = 18;
2005-11-11 05:27:37 -06:00
Key = "CFG_CustomLayerUrl";
Value = "$CustomDataUrl/share/registry";
End
2008-05-13 07:10:43 -05:00
2005-11-11 05:27:37 -06:00
ProfileItem gid_Profileitem_Configmgr_Unocfg_CustomLayerModulesUrl
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 19;
Key = "CFG_CustomLayerModulesUrl";
Value = "$CFG_CustomLayerUrl/modules";
End
2008-05-13 07:10:43 -05:00
2005-11-11 05:27:37 -06:00
ProfileItem gid_Profileitem_Configmgr_Unocfg_Backendservice
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 20;
2004-03-30 07:51:24 -06:00
Key = "CFG_BackendService";
Value = "com.sun.star.comp.configuration.backend.MultiStratumBackend";
End
ProfileItem gid_Profileitem_Configmgr_Localcfg_Schemasupplier
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-11-11 05:27:37 -06:00
Order = 21;
2004-03-30 07:51:24 -06:00
Key = "CFG_SchemaSupplier";
Value = "com.sun.star.comp.configuration.backend.LocalSchemaSupplier";
End
2004-07-05 07:18:08 -05:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Datasvc
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-11-11 05:27:37 -06:00
Order = 22;
2004-07-05 07:18:08 -05:00
Key = "CFG_LocalDataSvc";
Value = "com.sun.star.comp.configuration.backend.LocalStratum";
End
2004-03-30 07:51:24 -06:00
2005-01-07 03:18:52 -06:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Moduledatasvc
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-11-11 05:27:37 -06:00
Order = 23;
2005-01-07 03:18:52 -06:00
Key = "CFG_LocalModuleDataSvc";
Value = "com.sun.star.comp.configuration.backend.LocalMultiStratum";
End
2004-07-05 07:18:08 -05:00
ProfileItem gid_Profileitem_Configmgr_Localcfg_Resdatasvc
2004-03-30 07:51:24 -06:00
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-11-11 05:27:37 -06:00
Order = 24;
2004-07-05 07:18:08 -05:00
Key = "CFG_LocalResDataSvc";
Value = "com.sun.star.comp.configuration.backend.LocalResourceStratum";
End
ProfileItem gid_Profileitem_Configmgr_Strata
ProfileID = gid_Profile_Configmgr_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-11-11 05:27:37 -06:00
Order = 25;
2004-03-30 07:51:24 -06:00
Key = "CFG_Strata";
2005-11-11 05:27:37 -06:00
Value = "${CFG_LocalDataSvc}:$CFG_DefaultLayerUrl;${CFG_LocalModuleDataSvc}:$CFG_ModuleLayerUrl;${CFG_LocalResDataSvc}:$CFG_DefaultLayerUrl;${CFG_LocalDataSvc}:$CFG_UnoSharedPackages;?com.sun.star.comp.configuration.backend.SystemIntegration:;?com.sun.star.comp.configuration.backend.PolicyLayerBackend:;?${CFG_LocalDataSvc}:$CFG_CustomLayerUrl;?${CFG_LocalModuleDataSvc}:$CFG_CustomLayerModulesUrl;${CFG_LocalDataSvc}:$CFG_UnoUserPackages;${CFG_LocalDataSvc}:$CFG_UserLayerUrl;";
2004-03-30 07:51:24 -06:00
End
2004-08-03 08:59:01 -05:00
ProfileItem gid_Profileitem_Configmgr_Ldapmappingurl
ProfileID = gid_Profile_Configmgr_Ini ;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
2005-11-11 05:27:37 -06:00
Order = 26;
2004-08-03 08:59:01 -05:00
Key = "CFG_LdapMappingUrl";
Value = "$BaseInstallation/share/registry/ldap";
2005-03-30 01:42:35 -06:00
End
2004-08-03 08:59:01 -05:00
2004-03-30 07:51:24 -06:00
//end configmgr
2004-02-05 11:10:37 -06:00
ProfileItem gid_Profileitem_Uno_Uno_Shared_Packages
ProfileID = gid_Profile_Uno_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 1;
Key = "UNO_SHARED_PACKAGES";
2008-03-18 07:33:06 -05:00
Value = "$BRAND_BASE_DIR/share/uno_packages";
2004-02-05 11:10:37 -06:00
End
ProfileItem gid_Profileitem_Uno_Uno_Shared_Packages_Cache
ProfileID = gid_Profile_Uno_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 2;
Key = "UNO_SHARED_PACKAGES_CACHE";
Value = "$UNO_SHARED_PACKAGES/cache";
End
ProfileItem gid_Profileitem_Uno_Uno_User_Packages
ProfileID = gid_Profile_Uno_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 3;
Key = "UNO_USER_PACKAGES";
2008-03-18 07:33:06 -05:00
Value = "${$BRAND_BASE_DIR/program/" PROFILENAME(bootstrap) ":UserInstallation}/user/uno_packages";
2004-02-05 11:10:37 -06:00
End
ProfileItem gid_Profileitem_Uno_Uno_User_Packages_Cache
ProfileID = gid_Profile_Uno_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 4;
Key = "UNO_USER_PACKAGES_CACHE";
Value = "$UNO_USER_PACKAGES/cache";
End
2004-04-14 06:17:15 -05:00
ProfileItem gid_Profileitem_Uno_Pkg_SharedUnoFile
ProfileID = gid_Profile_Uno_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 5;
Key = "PKG_SharedUnoFile";
Value = "$UNO_SHARED_PACKAGES_CACHE/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/unorc";
End
ProfileItem gid_Profileitem_Uno_Pkg_UserUnoFile
ProfileID = gid_Profile_Uno_Ini;
ModuleID = gid_Module_Root;
Section = "Bootstrap";
Order = 6;
Key = "PKG_UserUnoFile";
Value = "$UNO_USER_PACKAGES_CACHE/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/unorc";
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Uno_Shared_Packages_Cache
2004-04-14 06:17:15 -05:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-04-14 06:17:15 -05:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "UNO_SHARED_PACKAGES_CACHE";
Value = "${$ORIGIN/" PROFILENAME(uno) ":UNO_SHARED_PACKAGES_CACHE}";
2007-10-15 06:56:42 -05:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Uno_User_Packages_Cache
2008-01-07 02:54:38 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2008-01-07 02:54:38 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "UNO_USER_PACKAGES_CACHE";
Value = "${$ORIGIN/" PROFILENAME(uno) ":UNO_USER_PACKAGES_CACHE}";
2008-01-07 02:54:38 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_More_Types
2004-11-09 07:03:08 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-11-09 07:03:08 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "URE_MORE_TYPES";
Value = "$ORIGIN/offapi.rdb ${${$ORIGIN/" PROFILENAME(uno) ":PKG_SharedUnoFile}:UNO_TYPES} ${${$ORIGIN/" PROFILENAME(uno) ":PKG_UserUnoFile}:UNO_TYPES}";
2004-11-09 07:03:08 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_More_Services
2004-11-09 07:03:08 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-11-09 07:03:08 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "URE_MORE_SERVICES";
Value = "${${$ORIGIN/" PROFILENAME(uno) ":PKG_UserUnoFile}:UNO_SERVICES} ${${$ORIGIN/" PROFILENAME(uno) ":PKG_SharedUnoFile}:UNO_SERVICES} $ORIGIN/services.rdb";
2004-11-09 07:03:08 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_More_Java_Types
2004-11-09 07:03:08 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-11-09 07:03:08 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "URE_MORE_JAVA_TYPES";
Value = "$ORIGIN/classes/unoil.jar ${${$ORIGIN/" PROFILENAME(uno) ":PKG_UserUnoFile}:UNO_JAVA_CLASSPATH} ${${$ORIGIN/" PROFILENAME(uno) ":PKG_SharedUnoFile}:UNO_JAVA_CLASSPATH}";
2004-11-09 07:03:08 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_Java_Jfw_Shared_Data
2004-11-09 07:03:08 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-11-09 07:03:08 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "URE_OVERRIDE_JAVA_JFW_SHARED_DATA";
Value = "${BRAND_BASE_DIR}/share/config/javasettings_${_OS}_${_ARCH}.xml";
2004-11-09 07:03:08 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_Java_Jfw_User_Data
2004-11-09 07:03:08 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-11-09 07:03:08 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "URE_OVERRIDE_JAVA_JFW_USER_DATA";
Value = "${${BRAND_BASE_DIR}/program/" PROFILENAME(bootstrap) ":UserInstallation}/user/config/javasettings_${_OS}_${_ARCH}.xml";
2004-11-09 07:03:08 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_Java_Classpath_Urls
2004-11-26 09:18:21 -06:00
ModuleID = gid_Module_Root;
2008-03-18 07:33:06 -05:00
ProfileID = gid_Profile_Fundamentalbasis_Ini;
2004-11-26 09:18:21 -06:00
Section = "Bootstrap";
2008-03-18 07:33:06 -05:00
Key = "URE_MORE_JAVA_CLASSPATH_URLS";
2007-03-12 05:01:44 -05:00
Value = "";
2006-04-19 09:15:13 -05:00
#ifdef SYSTEM_BSH
2007-03-12 05:01:44 -05:00
ValueList1 = BSH_JAR;
2006-04-19 09:15:13 -05:00
#endif
2008-03-18 07:33:06 -05:00
#ifdef SYSTEM_HSQLDB
ValueList2 = HSQLDB_JAR;
#endif
2006-04-19 09:15:13 -05:00
#ifdef SYSTEM_XML_APIS
2008-03-18 07:33:06 -05:00
ValueList3 = XML_APIS_JAR;
2006-04-19 09:15:13 -05:00
#endif
#ifdef SYSTEM_XERCES
2008-03-18 07:33:06 -05:00
ValueList4 = XERCES_JAR;
2006-04-19 09:15:13 -05:00
#endif
#ifdef SYSTEM_XALAN
2008-03-18 07:33:06 -05:00
ValueList5 = XALAN_JAR;
2006-10-11 03:29:58 -05:00
#endif
2007-03-12 05:01:44 -05:00
#ifdef SYSTEM_SERIALIZER
2008-03-18 07:33:06 -05:00
ValueList6 = SERIALIZER_JAR;
2006-04-19 09:15:13 -05:00
#endif
2004-11-09 07:03:08 -06:00
End
2008-03-18 07:33:06 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_Bin_Dir
ModuleID = gid_Module_Root;
ProfileID = gid_Profile_Fundamentalbasis_Ini;
Section = "Bootstrap";
Key = "URE_BIN_DIR";
#if defined WNT
Value = "${.link:$ORIGIN/../ure-link}/bin";
#else
Value = "$ORIGIN/../ure-link/bin";
2007-03-12 05:01:44 -05:00
#endif
2008-03-18 07:33:06 -05:00
End
2008-04-24 12:36:57 -05:00
ProfileItem gid_Profileitem_Fundamentalbasis_Ure_Lib_Dir
ModuleID = gid_Module_Root;
ProfileID = gid_Profile_Fundamentalbasis_Ini;
Section = "Bootstrap";
Key = "URE_LIB_DIR";
#if defined WNT
Value = "${.link:$ORIGIN/../ure-link}/bin";
#else
Value = "$ORIGIN/../ure-link/lib";
#endif
End
2008-05-14 07:19:46 -05:00
// Basis layer: gid_Profile_Version_Ini_Basis
ProfileItem gid_Basis_Profileitem_Version_Buildid
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "buildid";
Value = "<buildid>";
End
ProfileItem gid_Basis_Profileitem_Version_Productpatch
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "ProductPatch";
Value = "<productupdate>";
End
ProfileItem gid_Basis_Profileitem_Version_Productsource
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "ProductSource";
Value = "<sourceid>";
End
ProfileItem gid_Basis_Profileitem_Version_Productmajor
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "ProductMajor";
Value = "<productmajor>";
End
ProfileItem gid_Basis_Profileitem_Version_Productminor
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "ProductMinor";
Value = "<productminor>";
End
ProfileItem gid_Basis_Profileitem_Version_Productbuildid
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "ProductBuildid";
Value = "<productbuildid>";
End
ProfileItem gid_Basis_Profileitem_Version_Ooobaseversion
ProfileID = gid_Profile_Version_Ini_Basis;
ModuleID = gid_Module_Root;
Section = "Version";
Key = "OOOBaseVersion";
Value = "${OOOBASEVERSION}";
End