fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / TEMPLATE.SOURCECODE.HEADER
blob945af5b94cee5be82e31588e2ba48d47cc2e8f60
1 ------------------------------------------------------------------------
3                           * Stop / Think *
5         You need to choose either a pure MPLv2 header (from the top),
6 or an MPLv2 on ALv2 header (from the bottom).
8         If the new module you created is based in any way on an
9 existing module, then:
11         a) if that module has an LGPLv3+ header - please retain that
12            in the new code, it will get updated when that module is
13            re-based.
15         b) if that module has an MPLv2 on ALv2 header - please use
16            this option or
18         c) if the module is entirely your own work, and/or based on an
19            existing MPLv2 header - please use that header.
21         For any questions please contact me directly:
22                             michael.meeks@suse.com.
24         Thanks !
26 ------------------------------------------------------------------------
28              For all entirely new, original source files created by
29                         LibreOffice hackers:
31 ------------------------------------------------------------------------
33 For C/C++/Java/IDL etc.
35 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
37  * This file is part of the LibreOffice project.
38  *
39  * This Source Code Form is subject to the terms of the Mozilla Public
40  * License, v. 2.0. If a copy of the MPL was not distributed with this
41  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
42  */
43 ...
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
46 For makefiles:
48 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
50 # This file is part of the LibreOffice project.
52 # This Source Code Form is subject to the terms of the Mozilla Public
53 # License, v. 2.0. If a copy of the MPL was not distributed with this
54 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
56 ...
57 # vim: set noet sw=4 ts=4:
59 For XML / .component:
61 <?xml version="1.0" encoding="UTF-8"?>
62 <!--
63  * This file is part of the LibreOffice project.
64  *
65  * This Source Code Form is subject to the terms of the Mozilla Public
66  * License, v. 2.0. If a copy of the MPL was not distributed with this
67  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
68  *
69 -->
72 ------------------------------------------------------------------------
74              For source files which may contain code
75                from the Apache Software Foundation:
77 ------------------------------------------------------------------------
79 For C/C++/Java/IDL etc.
81 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
83  * This file is part of the LibreOffice project.
84  *
85  * This Source Code Form is subject to the terms of the Mozilla Public
86  * License, v. 2.0. If a copy of the MPL was not distributed with this
87  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
88  *
89  * This file incorporates work covered by the following license notice:
90  *
91  *   Licensed to the Apache Software Foundation (ASF) under one or more
92  *   contributor license agreements. See the NOTICE file distributed
93  *   with this work for additional information regarding copyright
94  *   ownership. The ASF licenses this file to you under the Apache
95  *   License, Version 2.0 (the "License"); you may not use this file
96  *   except in compliance with the License. You may obtain a copy of
97  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
98  */
99 ...
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
102 For makefiles, perl, scripts etc.
104 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
106 # This file is part of the LibreOffice project.
108 # This Source Code Form is subject to the terms of the Mozilla Public
109 # License, v. 2.0. If a copy of the MPL was not distributed with this
110 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
112 # This file incorporates work covered by the following license notice:
114 #   Licensed to the Apache Software Foundation (ASF) under one or more
115 #   contributor license agreements. See the NOTICE file distributed
116 #   with this work for additional information regarding copyright
117 #   ownership. The ASF licenses this file to you under the Apache
118 #   License, Version 2.0 (the "License"); you may not use this file
119 #   except in compliance with the License. You may obtain a copy of
120 #   the License at http://www.apache.org/licenses/LICENSE-2.0 .
123 # vim: set noet sw=4 ts=4:
125 For XML / .component:
127 <?xml version="1.0" encoding="UTF-8"?>
128 <!--
129  * This file is part of the LibreOffice project.
131  * This Source Code Form is subject to the terms of the Mozilla Public
132  * License, v. 2.0. If a copy of the MPL was not distributed with this
133  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
135  * This file incorporates work covered by the following license notice:
137  *   Licensed to the Apache Software Foundation (ASF) under one or more
138  *   contributor license agreements. See the NOTICE file distributed
139  *   with this work for additional information regarding copyright
140  *   ownership. The ASF licenses this file to you under the Apache
141  *   License, Version 2.0 (the "License"); you may not use this file
142  *   except in compliance with the License. You may obtain a copy of
143  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .