1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28#include "macros.inc" 29 30// Files 31 32File gid_Brand_File_Txt_License 33 TXT_FILE_BODY; 34 Dir = gid_Brand_Dir_Share_Readme; 35 #ifdef UNX 36 README_ALL_LANG(Name, LICENSE); 37 #endif 38 #ifdef WNT 39 README_TXT_ALL_LANG(Name, license, txt); 40 #endif 41 Styles = (PACKED, SCPZIP_REPLACE); 42End 43 44File gid_Brand_File_Txt_License_Html 45 TXT_FILE_BODY; 46 Dir = gid_Brand_Dir_Share_Readme; 47 #ifdef UNX 48 README_TXT_ALL_LANG(Name, LICENSE, html); 49 #endif 50 #ifdef WNT 51 README_TXT_ALL_LANG(Name, license, html); 52 #endif 53 Styles = (PACKED, SCPZIP_REPLACE); 54End 55 56File gid_Brand_File_License_License 57 TXT_FILE_BODY; 58 Dir = gid_Brand_Dir_License; 59 #ifdef UNX 60 README_ALL_LANG(Name, LICENSE); 61 #endif 62 #ifdef WNT 63 README_TXT_ALL_LANG(Name, license, txt); 64 #endif 65 Styles = (PACKED, SCPZIP_REPLACE); 66End 67 68File gid_Brand_File_License_License_Html 69 TXT_FILE_BODY; 70 Dir = gid_Brand_Dir_License; 71 #ifdef UNX 72 README_TXT_ALL_LANG(Name, LICENSE, html); 73 #endif 74 #ifdef WNT 75 README_TXT_ALL_LANG(Name, license, html); 76 #endif 77 Styles = (PACKED, SCPZIP_REPLACE); 78End 79 80File gid_Brand_File_Txt_Readme 81 TXT_FILE_BODY; 82 Dir = gid_Brand_Dir_Share_Readme; 83 #ifdef UNX 84 README_ALL_LANG(Name, README); 85 #endif 86 #ifdef WNT 87 README_TXT_ALL_LANG(Name, readme, txt); 88 #endif 89 Styles = (PACKED, SCPZIP_REPLACE); 90End 91 92File gid_Brand_File_Txt_Readme_Html 93 TXT_FILE_BODY; 94 Dir = gid_Brand_Dir_Share_Readme; 95 #ifdef UNX 96 README_TXT_ALL_LANG(Name, README, html); 97 #endif 98 #ifdef WNT 99 README_TXT_ALL_LANG(Name, readme, html); 100 #endif 101 Styles = (PACKED, SCPZIP_REPLACE); 102End 103 104File gid_Brand_File_Readme_Readme 105 TXT_FILE_BODY; 106 Dir = gid_Brand_Dir_Readme; 107 #ifdef UNX 108 README_ALL_LANG(Name, README); 109 #endif 110 #ifdef WNT 111 README_TXT_ALL_LANG(Name, readme, txt); 112 #endif 113 Styles = (PACKED, SCPZIP_REPLACE); 114End 115 116File gid_Brand_File_Readme_Readme_Html 117 TXT_FILE_BODY; 118 Dir = gid_Brand_Dir_Readme; 119 #ifdef UNX 120 README_TXT_ALL_LANG(Name, README, html); 121 #endif 122 #ifdef WNT 123 README_TXT_ALL_LANG(Name, readme, html); 124 #endif 125 Styles = (PACKED, SCPZIP_REPLACE); 126End 127