1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "macros.inc"
25
26// Files
27
28File gid_Brand_File_Txt_License
29    TXT_FILE_BODY;
30    Dir = gid_Brand_Dir_Share_Readme;
31  #ifdef UNX
32    README_ALL_LANG(Name, LICENSE);
33  #endif
34  #if defined(WNT) || defined(OS2)
35    README_TXT_ALL_LANG(Name, license, txt);
36  #endif
37    Styles = (PACKED, SCPZIP_REPLACE);
38End
39
40File gid_Brand_File_Txt_License_Html
41    TXT_FILE_BODY;
42    Dir = gid_Brand_Dir_Share_Readme;
43  #ifdef UNX
44    README_TXT_ALL_LANG(Name, LICENSE, html);
45  #endif
46  #if defined(WNT) || defined(OS2)
47    README_TXT_ALL_LANG(Name, license, html);
48  #endif
49    Styles = (PACKED, SCPZIP_REPLACE);
50End
51
52File gid_Brand_File_License_License
53    TXT_FILE_BODY;
54    Dir = gid_Brand_Dir_License;
55  #ifdef UNX
56    README_ALL_LANG(Name, LICENSE);
57  #endif
58  #if defined(WNT) || defined(OS2)
59    README_TXT_ALL_LANG(Name, license, txt);
60  #endif
61    Styles = (PACKED, SCPZIP_REPLACE);
62End
63
64File gid_Brand_File_License_License_Html
65    TXT_FILE_BODY;
66    Dir = gid_Brand_Dir_License;
67  #ifdef UNX
68    README_TXT_ALL_LANG(Name, LICENSE, html);
69  #endif
70  #if defined(WNT) || defined(OS2)
71    README_TXT_ALL_LANG(Name, license, html);
72  #endif
73    Styles = (PACKED, SCPZIP_REPLACE);
74End
75
76File gid_Brand_File_Txt_Readme
77    TXT_FILE_BODY;
78    Dir = gid_Brand_Dir_Share_Readme;
79  #ifdef UNX
80    README_ALL_LANG(Name, README);
81  #endif
82  #if defined(WNT) || defined(OS2)
83    README_TXT_ALL_LANG(Name, readme, txt);
84  #endif
85    Styles = (PACKED, SCPZIP_REPLACE);
86End
87
88File gid_Brand_File_Txt_Readme_Html
89    TXT_FILE_BODY;
90    Dir = gid_Brand_Dir_Share_Readme;
91  #ifdef UNX
92    README_TXT_ALL_LANG(Name, README, html);
93  #endif
94  #if defined(WNT) || defined(OS2)
95    README_TXT_ALL_LANG(Name, readme, html);
96  #endif
97    Styles = (PACKED, SCPZIP_REPLACE);
98End
99
100File gid_Brand_File_Readme_Readme
101    TXT_FILE_BODY;
102    Dir = gid_Brand_Dir_Readme;
103  #ifdef UNX
104    README_ALL_LANG(Name, README);
105  #endif
106  #if defined(WNT) || defined(OS2)
107    README_TXT_ALL_LANG(Name, readme, txt);
108  #endif
109    Styles = (PACKED, SCPZIP_REPLACE);
110End
111
112File gid_Brand_File_Readme_Readme_Html
113    TXT_FILE_BODY;
114    Dir = gid_Brand_Dir_Readme;
115  #ifdef UNX
116    README_TXT_ALL_LANG(Name, README, html);
117  #endif
118  #if defined(WNT) || defined(OS2)
119    README_TXT_ALL_LANG(Name, readme, html);
120  #endif
121    Styles = (PACKED, SCPZIP_REPLACE);
122End
123