2013-05-16 21:56:04 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
2005-09-09 00:36:31 +00:00
|
|
|
*
|
2013-05-16 21:56:04 +01:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2005-09-09 00:36:31 +00:00
|
|
|
*
|
2013-05-16 21:56:04 +01:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2005-09-09 00:36:31 +00:00
|
|
|
*
|
2013-05-16 21:56:04 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2004-02-05 17:10:37 +00:00
|
|
|
|
|
|
|
#include "macros.inc"
|
|
|
|
|
2013-06-19 11:50:43 +02:00
|
|
|
#ifndef MACOSX
|
|
|
|
Directory gid_Dir_Brand_Root
|
|
|
|
ParentID = PREDEFINED_PROGDIR;
|
|
|
|
#ifdef WNT
|
|
|
|
HostName = "${WINDOWSBASISROOTNAME}";
|
|
|
|
#else
|
|
|
|
HostName = ".";
|
|
|
|
#endif
|
|
|
|
Styles = (OFFICEDIRECTORY,ISINSTALLLOCATION,CREATE);
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
2006-04-26 19:47:51 +00:00
|
|
|
#ifdef MACOSX
|
|
|
|
Directory gid_Dir_Bundle_Contents_Resources
|
|
|
|
ParentID = gid_Dir_Bundle_Contents;
|
|
|
|
HostName = "Resources";
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
2008-04-15 13:48:48 +00:00
|
|
|
#ifdef MACOSX
|
2013-08-08 23:10:16 +03:00
|
|
|
ITERATE_ALL_LANG_DIR_LPROJ(Bundle_Contents_Resources_Lang,Bundle_Contents_Resources)
|
2008-04-15 13:48:48 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-09 14:01:51 +00:00
|
|
|
#ifdef MACOSX
|
|
|
|
Directory gid_Dir_Bundle_Contents_Library
|
|
|
|
ParentID = gid_Dir_Bundle_Contents;
|
|
|
|
HostName = "Library";
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MACOSX
|
|
|
|
Directory gid_Dir_Bundle_Contents_Library_Spotlight
|
|
|
|
ParentID = gid_Dir_Bundle_Contents_Library;
|
|
|
|
HostName = "Spotlight";
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MACOSX
|
|
|
|
Directory gid_Dir_Bundle_Contents_Library_Spotlight_Bundle
|
|
|
|
ParentID = gid_Dir_Bundle_Contents_Library_Spotlight;
|
|
|
|
HostName = "OOoSpotlightImporter.mdimporter";
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MACOSX
|
|
|
|
Directory gid_Dir_Bundle_Contents_Library_Spotlight_Bundle_Contents
|
|
|
|
ParentID = gid_Dir_Bundle_Contents_Library_Spotlight_Bundle;
|
|
|
|
HostName = "Contents";
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
2013-05-08 17:14:34 +02:00
|
|
|
#if defined MACOSX
|
|
|
|
Unixlink gid_Unixlink_Applications
|
|
|
|
BIN_FILE_BODY;
|
|
|
|
Styles = ();
|
|
|
|
Dir = PD_PROGDIR;
|
|
|
|
Name = "Applications";
|
|
|
|
Target = "/Applications";
|
|
|
|
End
|
|
|
|
#endif
|
|
|
|
|
2011-09-22 13:25:38 +02:00
|
|
|
Directory gid_Dir_Wizards
|
|
|
|
Styles = (CREATE);
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-16 11:08:32 +03:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
#else
|
2011-12-05 13:04:05 +00:00
|
|
|
ParentID = gid_Brand_Dir_Program;
|
2013-08-16 11:08:32 +03:00
|
|
|
#endif
|
2011-09-22 13:25:38 +02:00
|
|
|
DosName = "wizards";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Wizards_Ui
|
|
|
|
Styles = (CREATE);
|
|
|
|
ParentID = gid_Dir_Wizards;
|
|
|
|
DosName = "ui";
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Resource
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-16 11:08:32 +03:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
#else
|
2011-10-19 12:22:31 +02:00
|
|
|
ParentID = gid_Brand_Dir_Program;
|
2013-08-16 11:08:32 +03:00
|
|
|
#endif
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "resource";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Classes
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-16 11:08:32 +03:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
DosName = "java";
|
|
|
|
#else
|
2011-10-18 12:50:02 +02:00
|
|
|
ParentID = gid_Brand_Dir_Program;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "classes";
|
2013-08-16 11:08:32 +03:00
|
|
|
#endif
|
2004-02-05 17:10:37 +00:00
|
|
|
End
|
|
|
|
|
|
|
|
#ifdef WNT
|
|
|
|
|
|
|
|
Directory gid_Dir_Shellnew
|
2012-09-08 21:13:10 +02:00
|
|
|
ParentID = gid_Dir_Template;
|
|
|
|
DosName = "shellnew";
|
2010-08-25 22:27:14 +02:00
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
Directory gid_Dir_User
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-18 18:45:45 +02:00
|
|
|
ParentID = gid_Dir_Bundle_Contents_Resources;
|
2006-04-26 19:47:51 +00:00
|
|
|
#else
|
2011-10-18 09:47:41 +02:00
|
|
|
ParentID = gid_Dir_Brand_Root;
|
2006-04-26 19:47:51 +00:00
|
|
|
#endif
|
2004-11-15 14:43:03 +00:00
|
|
|
DosName = "presets";
|
2004-02-05 17:10:37 +00:00
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_User_Basic
|
|
|
|
ParentID = gid_Dir_User;
|
|
|
|
DosName = "basic";
|
|
|
|
Styles = (WORKSTATION, CREATE);
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic_Standard
|
|
|
|
ParentID = gid_Dir_User_Basic;
|
|
|
|
DosName = "Standard";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_User_Config
|
|
|
|
ParentID = gid_Dir_User;
|
|
|
|
DosName = "config";
|
|
|
|
Styles = (WORKSTATION, CREATE);
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Fonts
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "fonts";
|
|
|
|
End
|
|
|
|
|
|
|
|
#ifdef WNT
|
|
|
|
|
|
|
|
Directory gid_Dir_Winfonts
|
|
|
|
ParentID = gid_Dir_Fonts;
|
|
|
|
DosName = "truetype";
|
|
|
|
End
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-05-14 15:53:23 +02:00
|
|
|
Directory gid_Dir_Share_Autotext
|
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
DosName = "autotext";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Autotext_Language
|
|
|
|
ParentID = gid_Dir_Share_Autotext;
|
|
|
|
DIR_ISOLANGUAGE_ALL_LANG_2;
|
|
|
|
Styles = (CREATE);
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Share_Xslt
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "xslt";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Xslt_Docbook
|
|
|
|
ParentID = gid_Dir_Share_Xslt;
|
|
|
|
DosName = "docbook";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Dtd
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "dtd";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Dtd_Ooo
|
|
|
|
ParentID = gid_Dir_Share_Dtd;
|
|
|
|
DosName = "officedocument";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Dtd_Ooo_1_0
|
|
|
|
ParentID = gid_Dir_Share_Dtd_Ooo;
|
|
|
|
DosName = "1_0";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Dtd_Math
|
|
|
|
ParentID = gid_Dir_Share_Dtd;
|
|
|
|
DosName = "math";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Dtd_Math_1_01
|
|
|
|
ParentID = gid_Dir_Share_Dtd_Math;
|
|
|
|
DosName = "1_01";
|
|
|
|
End
|
|
|
|
|
2007-06-27 14:51:10 +00:00
|
|
|
Directory gid_Dir_Share_Config_Wizard
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share_Config;
|
2007-06-27 14:51:10 +00:00
|
|
|
DosName = "wizard";
|
|
|
|
End
|
|
|
|
|
2004-02-25 16:27:33 +00:00
|
|
|
Directory gid_Dir_Share_Config_Sofficecfg
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share_Config;
|
2004-02-25 16:27:33 +00:00
|
|
|
DosName = "soffice.cfg";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Config_Sofficecfg_Simpress
|
|
|
|
ParentID = gid_Dir_Share_Config_Sofficecfg;
|
|
|
|
DosName = "simpress";
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Share_Registry_Res
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share_Registry;
|
2004-02-05 17:10:37 +00:00
|
|
|
HostName = "res";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Autotext
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "autotext";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "basic";
|
|
|
|
End
|
|
|
|
|
2013-10-12 10:56:41 +02:00
|
|
|
Directory gid_Dir_Basic_Access2Base
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Access2Base";
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Basic_Euro
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Euro";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic_Gimmicks
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Gimmicks";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic_Depot
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Depot";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic_Template
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Template";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic_Tools
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Tools";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Basic_Importwiz
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "ImportWizard";
|
|
|
|
End
|
|
|
|
|
2005-07-20 09:26:54 +00:00
|
|
|
Directory gid_Dir_Basic_Formwiz
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "FormWizard";
|
|
|
|
End
|
|
|
|
|
2004-05-19 12:46:19 +00:00
|
|
|
Directory gid_Dir_Basic_Tutorials
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "Tutorials";
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Basic_Scriptbindinglib
|
|
|
|
ParentID = gid_Dir_Basic;
|
|
|
|
DosName = "ScriptBindingLibrary";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Scripts
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "Scripts";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Gallery
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "gallery";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "template";
|
|
|
|
End
|
|
|
|
|
2005-05-13 08:46:06 +00:00
|
|
|
Directory gid_Dir_Share_Template_Wizard
|
|
|
|
ParentID = gid_Dir_Template;
|
|
|
|
DosName = "wizard";
|
|
|
|
End
|
|
|
|
|
2012-08-24 21:47:16 +02:00
|
|
|
Directory gid_Dir_Share_Template_Common_Wizard
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "wizard";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Template_Common_Wizard_Agenda
|
|
|
|
ParentID = gid_Dir_Share_Template_Common_Wizard;
|
|
|
|
DosName = "agenda";
|
|
|
|
End
|
|
|
|
|
2010-11-01 14:02:03 +01:00
|
|
|
Directory gid_Dir_Share_Template_Wizard_Bitmap
|
|
|
|
ParentID = gid_Dir_Share_Template_Wizard;
|
|
|
|
DosName = "bitmap";
|
|
|
|
End
|
|
|
|
|
2012-08-24 21:47:16 +02:00
|
|
|
Directory gid_Dir_Share_Template_Common_Wizard_Fax
|
|
|
|
ParentID = gid_Dir_Share_Template_Common_Wizard;
|
|
|
|
DosName = "fax";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Share_Template_Common_Wizard_Letter
|
|
|
|
ParentID = gid_Dir_Share_Template_Common_Wizard;
|
2005-05-13 08:46:06 +00:00
|
|
|
DosName = "letter";
|
|
|
|
End
|
|
|
|
|
2012-08-24 21:47:16 +02:00
|
|
|
Directory gid_Dir_Share_Template_Common_Wizard_Report
|
|
|
|
ParentID = gid_Dir_Share_Template_Common_Wizard;
|
|
|
|
DosName = "report";
|
|
|
|
End
|
|
|
|
|
2012-08-25 16:13:25 +02:00
|
|
|
Directory gid_Dir_Share_Template_Common_Wizard_Styles
|
|
|
|
ParentID = gid_Dir_Share_Template_Common_Wizard;
|
|
|
|
DosName = "styles";
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Template_Language
|
|
|
|
ParentID = gid_Dir_Template;
|
2005-01-13 18:22:24 +00:00
|
|
|
DIR_ISOLANGUAGE_ALL_LANG_2;
|
2004-02-05 17:10:37 +00:00
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Wordbook
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "wordbook";
|
|
|
|
End
|
|
|
|
|
2007-06-19 15:02:42 +00:00
|
|
|
Directory gid_Dir_Share_Fingerprint
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2007-06-19 15:02:42 +00:00
|
|
|
DosName = "fingerprint";
|
|
|
|
End
|
|
|
|
|
2004-02-05 17:10:37 +00:00
|
|
|
Directory gid_Dir_Help
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-18 18:45:45 +02:00
|
|
|
ParentID = gid_Dir_Bundle_Contents_Resources;
|
2006-04-26 19:47:51 +00:00
|
|
|
#else
|
2011-10-17 13:28:54 +02:00
|
|
|
ParentID = gid_Dir_Brand_Root;
|
2006-04-26 19:47:51 +00:00
|
|
|
#endif
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "help";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Help_Isolanguage
|
|
|
|
ParentID = gid_Dir_Help;
|
|
|
|
DIR_ISOLANGUAGE_ALL_LANG;
|
2010-12-17 12:28:41 +01:00
|
|
|
#ifdef WITH_HELPPACK_INTEGRATION
|
|
|
|
Styles = (FORCEHELPPACK);
|
|
|
|
#else
|
2010-12-16 09:15:54 +01:00
|
|
|
Styles = (HELPPACK);
|
2010-12-17 12:28:41 +01:00
|
|
|
#endif
|
2004-02-05 17:10:37 +00:00
|
|
|
End
|
|
|
|
|
|
|
|
#ifdef UNX
|
|
|
|
|
|
|
|
Directory gid_Dir_Fonts_Truetype
|
|
|
|
ParentID = gid_Dir_Fonts;
|
|
|
|
DosName = "truetype";
|
|
|
|
End
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef UNX
|
|
|
|
|
|
|
|
Directory gid_Dir_Psprint
|
2011-10-07 21:12:30 +02:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
2004-02-05 17:10:37 +00:00
|
|
|
DosName = "psprint";
|
|
|
|
End
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef UNX
|
|
|
|
|
|
|
|
Directory gid_Dir_Psprint_Driver
|
|
|
|
ParentID = gid_Dir_Psprint;
|
|
|
|
DosName = "driver";
|
|
|
|
End
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-11-30 13:45:42 +01:00
|
|
|
/* *** Accessories Extras *** */
|
|
|
|
|
|
|
|
/* ** Gallery ** */
|
|
|
|
|
|
|
|
/* Draws */
|
|
|
|
Directory gid_Dir_Gallery_Draws
|
|
|
|
ParentID = gid_Dir_Gallery;
|
|
|
|
DosName = "Draws";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Draws - People */
|
|
|
|
Directory gid_Dir_Gallery_Draws_People
|
|
|
|
ParentID = gid_Dir_Gallery_Draws;
|
|
|
|
DosName = "People";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos */
|
|
|
|
Directory gid_Dir_Gallery_Photos
|
|
|
|
ParentID = gid_Dir_Gallery;
|
|
|
|
DosName = "Photos";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Cities */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Cities
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Cities";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Buildings */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Buildings
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Buildings";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Plants */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Plants
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Plants";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Fauna */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Fauna
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Fauna";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Flowers */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Flowers
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Flowers";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Landscapes */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Landscapes
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Landscapes";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Statues */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Statues
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Statues";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Space */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Space
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Space";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Travel */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Travel
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Travel";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Objects */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Objects
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Objects";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Humans */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Humans
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Humans";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - FoodsandDrinks */
|
|
|
|
Directory gid_Dir_Gallery_Photos_FoodsandDrinks
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "FoodsandDrinks";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Photos - Celebration */
|
|
|
|
Directory gid_Dir_Gallery_Photos_Celebration
|
|
|
|
ParentID = gid_Dir_Gallery_Photos;
|
|
|
|
DosName = "Celebration";
|
|
|
|
End
|
|
|
|
|
2012-08-30 21:08:50 +02:00
|
|
|
Directory gid_Dir_Samples
|
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
DosName = "samples";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Samples_Language
|
|
|
|
ParentID = gid_Dir_Samples;
|
|
|
|
DIR_ISOLANGUAGE_ALL_LANG_2;
|
|
|
|
End
|
|
|
|
|
2010-11-30 13:45:42 +01:00
|
|
|
/* Elements */
|
|
|
|
Directory gid_Dir_Gallery_Elements
|
|
|
|
ParentID = gid_Dir_Gallery;
|
|
|
|
DosName = "Elements";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Elements - Bullets 2 */
|
|
|
|
Directory gid_Dir_Gallery_Elements_Bullets2
|
|
|
|
ParentID = gid_Dir_Gallery_Elements;
|
|
|
|
DosName = "Bullets2";
|
|
|
|
End
|
|
|
|
|
|
|
|
/* Templates - Common */
|
|
|
|
Directory gid_Dir_Template_Common
|
|
|
|
ParentID = gid_Dir_Template;
|
|
|
|
DosName = "common";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Educate
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "educate";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Finance
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "finance";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Forms
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "forms";
|
|
|
|
End
|
|
|
|
|
2012-08-16 17:38:03 +02:00
|
|
|
Directory gid_Dir_Template_Common_Internal
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "internal";
|
|
|
|
End
|
|
|
|
|
2010-11-30 13:45:42 +01:00
|
|
|
Directory gid_Dir_Template_Common_Labels
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "labels";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Layout
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "layout";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Misc
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "misc";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Officorr
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "officorr";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Offimisc
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "offimisc";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Personal
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "personal";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Dir_Template_Common_Presnt
|
|
|
|
ParentID = gid_Dir_Template_Common;
|
|
|
|
DosName = "presnt";
|
2011-03-20 21:28:08 +00:00
|
|
|
End
|
2011-11-02 16:57:23 +01:00
|
|
|
|
|
|
|
Directory gid_Brand_Dir_Program_Services
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-16 11:08:32 +03:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
#else
|
2011-11-02 16:57:23 +01:00
|
|
|
ParentID = gid_Brand_Dir_Program;
|
2013-08-16 11:08:32 +03:00
|
|
|
#endif
|
2011-11-02 16:57:23 +01:00
|
|
|
DosName = "services";
|
|
|
|
End
|
|
|
|
|
|
|
|
Directory gid_Brand_Dir_Program_Types
|
Make the "Mac-like" or "canonical" app bundle structure always used on OS X
In other words, only executable files go in the MacOS folder. Dynamic
libraries and bundled frameworks (i.e., LibreOfficePython), and
nothing else, go in the Frameworks folder, and all other files go in
the Resources folder.
Especially, note that Java class files and rc (.ini) files also go in
Resources.
Such an app bundle structure is what Apple strongly suggests one
should use, and it has been hinted that future versions of code
signing and/or Gatekeeper will require such a structure.
There is still some ugliness thanks to traces of the historical
separation of URE from "the office". Like there are two separate
"unorc" files, one for URE, one for the LibreOffice application. IMHO,
this should be cleaned up, but is probably controversial.
(Eek! I now see there are actually *three* unorc files in the app
bundle. Not intentional. Need to fix that later.)
Change-Id: Idcf235038deb5b8e1d061734993e9f31869b7606
2014-09-09 10:44:56 +03:00
|
|
|
#if defined MACOSX
|
2013-08-16 11:08:32 +03:00
|
|
|
ParentID = gid_Brand_Dir_Share;
|
|
|
|
#else
|
2011-11-02 16:57:23 +01:00
|
|
|
ParentID = gid_Brand_Dir_Program;
|
2013-08-16 11:08:32 +03:00
|
|
|
#endif
|
2011-11-02 16:57:23 +01:00
|
|
|
DosName = "types";
|
|
|
|
End
|