Skip to content

Commit 31a785b

Browse files
committed
Remove noise from file header
1 parent 5957a2a commit 31a785b

File tree

177 files changed

+83
-1319
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+83
-1319
lines changed

build/build.xml

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0"?>
2-
<!-- ======================================================================
3-
* $RCSfile: build.xml,v $
4-
*
5-
* $Revision: 1.5 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2008/12/13 13:42:56 $
8-
*
9-
* The Contents of this file are made available subject to the terms of
2+
<!-- ======================================================================
3+
* The Contents of this file are made available subject to the terms of
104
* the GNU Lesser General Public License Version 2.1
115
*
126
* Sun Microsystems Inc., October, 2000
@@ -30,14 +24,14 @@
3024
* License along with this library; if not, write to the Free Software
3125
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
3226
* MA 02111-1307 USA
33-
*
27+
*
3428
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
3529
*
3630
* Copyright: 2002 by Sun Microsystems, Inc.
3731
*
3832
* All Rights Reserved.
3933
*
40-
* Contributor(s): Cedric Bosdonnat
34+
* Contributor(s): Cedric Bosdonnat
4135
====================================================================== -->
4236

4337
<project name="loeclipseintegration" default="site">
@@ -48,30 +42,30 @@
4842
<import file="../core/build.xml"/>
4943
<import file="../java/build.xml"/>
5044
<import file="../python/build.xml"/>
51-
45+
5246
<target name="help" description="Tells how to run the script">
5347
<echo>
5448
This ant file has to be called with the following parameters:
5549
-Dlibreoffice.home=/path/to/your/libreoffice/
5650
-Declipse.home=/path/to/your/eclipse/
57-
51+
5852
To disable the build of a language plugin, define the corresponding
5953
variable amongst the following ones. By default all the plugins are
6054
built. The value of these parameters can be anything: they only have
6155
to be defined.
6256
-Djava.nobuild=true
63-
57+
6458
These arguments can be either put in the command line or in an
6559
environment variable called ANT_ARGS.
66-
60+
6761
Targets:
6862
site (default): generates the eclipse update site
6963
archive-site: generates an archive of the update site
7064
clean: removes all the temporary build results
7165
purge: removes all the build results
7266
</echo>
7367
</target>
74-
68+
7569
<target name="init-env" depends="core.init-env, java.init-env, python.init-env">
7670

7771
<property name="package.prefix" value="org.libreoffice.ide.eclipse"/>
@@ -84,26 +78,26 @@
8478
<include name="*.jar"/>
8579
</fileset>
8680
</path>
87-
81+
8882
<dirname property="build.basedir" file="${ant.file.loeclipseintegration}"/>
8983
<property name="out.path" value="${basedir}/../site" />
9084
<condition property="debug" value="false">
9185
<not>
9286
<isset property="debug"/>
9387
</not>
9488
</condition>
95-
89+
9690
<mkdir dir="${out.path}" />
9791
<mkdir dir="${out.path}/plugins" />
9892
<mkdir dir="${out.path}/features" />
9993
</target>
100-
101-
<target name="purge" description="Cleans all the output results"
94+
95+
<target name="purge" description="Cleans all the output results"
10296
depends="core.purge, java.purge, python.purge">
10397
<delete dir="../site"/>
10498
<delete file="../loeclipseintegration_site.zip" />
10599
</target>
106-
100+
107101
<target name="versions" depends="core.version, java.version, python.version" />
108102

109103
<target name="java.feature.nobuild" if="java.nobuild">
@@ -117,20 +111,20 @@
117111
<expandproperties/>
118112
</filterchain>
119113
</copy>
120-
114+
121115
<jar destfile="${out.path}/features/${package.prefix}.java_${java.Bundle-Version}.jar">
122116
<zipfileset dir="${out.path}/features" prefix="" defaultexcludes="true">
123117
<include name="feature.xml"/>
124118
</zipfileset>
125119
</jar>
126-
120+
127121
<delete file="${out.path}/features/feature.xml"/>
128122
</target>
129123

130124
<target name="java.feature" depends="java.feature.build, java.feature.nobuild"/>
131-
125+
132126
<!--Addition of feature.xml for Python plugin starts-->
133-
127+
134128
<target name="python.feature.nobuild" if="python.nobuild">
135129
<property name="includes.python" value=""/>
136130
</target>
@@ -142,31 +136,31 @@
142136
<expandproperties/>
143137
</filterchain>
144138
</copy>
145-
139+
146140
<jar destfile="${out.path}/features/${package.prefix}.python_${python.Bundle-Version}.jar">
147141
<zipfileset dir="${out.path}/features" prefix="" defaultexcludes="true">
148142
<include name="feature.xml"/>
149143
</zipfileset>
150144
</jar>
151-
145+
152146
<delete file="${out.path}/features/feature.xml"/>
153147
</target>
154148

155149
<target name="python.feature" depends="python.feature.build, python.feature.nobuild"/>
156-
150+
157151
<!--Addition of feature.xml for Python plugin ends-->
158-
152+
159153
<target name="features" depends="versions, java.feature, python.feature"/>
160154
<target name="plugins" depends="core.plugin, java.plugin, python.plugin"/>
161155

162156
<target name="site" depends="init-env, plugins, features, core.site, java.site, python.site"
163157
description="Creates the Eclipse update site">
164-
165-
<!--
158+
159+
<!--
166160
Instructions to create the update site are coming from this page:
167161
http://plosquare.blogspot.com/2009/05/migrating-eclipse-update-sites-to-p2.html
168162
-->
169-
163+
170164
<!-- Create site.xml -->
171165
<concat destfile="${out.path}/site.xml" binary="true">
172166
<path path="site-header.xml"/>
@@ -186,6 +180,6 @@
186180
basedir="${out.path}"
187181
includes="plugins/**, features/**, site.xml" />
188182
</target>
189-
183+
190184
</project>
191185

build/header.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
^/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*$
2-
^ \*$
3-
^ \* \$RCSfile: .* \$$
4-
^ \*$
5-
^ \* \$Revision: .* \$$
6-
^ \*$
7-
^ \* last change: \$Author: .* \$ \$Date: .* \$$
8-
^ \*$
92
^ \* The Contents of this file are made available subject to the terms of$
103
^ \* the GNU Lesser General Public License Version 2.1$
114
^ \*$

core/build.xml

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0"?>
2-
<!-- ======================================================================
3-
* $RCSfile: build.xml,v $
4-
*
5-
* $Revision: 1.9 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2009/04/20 06:16:00 $
8-
*
9-
* The Contents of this file are made available subject to the terms of
2+
<!-- ======================================================================
3+
* The Contents of this file are made available subject to the terms of
104
* the GNU Lesser General Public License Version 2.1
115
*
126
* Sun Microsystems Inc., October, 2000
@@ -30,33 +24,33 @@
3024
* License along with this library; if not, write to the Free Software
3125
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
3226
* MA 02111-1307 USA
33-
*
27+
*
3428
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
3529
*
3630
* Copyright: 2002 by Sun Microsystems, Inc.
3731
*
3832
* All Rights Reserved.
3933
*
40-
* Contributor(s): Cedric Bosdonnat
34+
* Contributor(s): Cedric Bosdonnat
4135
====================================================================== -->
4236

4337
<project name="core" default="core.error">
4438
<target name="core.error">
4539
<fail>Wrong target!
46-
40+
4741
This script should not be executed directly.
4842
Please, use the one in the build project
4943
</fail>
5044
</target>
51-
45+
5246
<target name="init-env">
5347
<dirname property="core.basedir" file="${ant.file.core}"/>
54-
48+
5549
<property file = "../build.properties"/>
5650
<property name="core.out.path" value="${core.basedir}/bin/ant" />
5751
<property name="core.out.classes" value="${core.out.path}/classes"/>
5852
<property name="core.sources" value="${core.basedir}/source"/>
59-
53+
6054
<path id="core.dependencies.path">
6155
<path refid="office.class.path"/>
6256

@@ -65,19 +59,19 @@
6559
<include name="org.junit*/*.jar"/>
6660
</fileset>
6761
</path>
68-
62+
6963
<mkdir dir="${core.out.path}/plugins" />
7064
<mkdir dir="${core.out.classes}" />
7165
</target>
72-
66+
7367
<target name="core.version" depends="init-env">
7468
<property name="manifest.properties" value="MANIFEST-MF.properties"/>
7569
<copy tofile="${manifest.properties}" file="${core.basedir}/META-INF/MANIFEST.MF"/>
7670
<replace file="${manifest.properties}" token=":" value="="/>
7771
<property file="${manifest.properties}" prefix="core"/>
7872
<delete file="${manifest.properties}" />
7973
</target>
80-
74+
8175
<target name="purge" depends="init-env">
8276
<property name="core.out.path" value="${core.basedir}/bin/ant" />
8377
<delete dir="${core.out.path}" />
@@ -88,14 +82,14 @@
8882
<javac srcdir="${core.basedir}/source" destdir="${core.out.classes}"
8983
target="${java_target}" source="${java_source}"
9084
debug="${debug}"
91-
classpathref="core.dependencies.path"
85+
classpathref="core.dependencies.path"
9286
excludes="**/unittests/**"/>
9387
</target>
94-
88+
9589
<target name="core.plugin" depends="core.version, core.compile, javadocs">
9690
<jar destfile="${core.out.path}/plugins/${package.prefix}.core_${core.Bundle-Version}.jar"
9791
manifest="${core.basedir}/META-INF/MANIFEST.MF">
98-
92+
9993
<zipfileset dir="${core.out.classes}" prefix=""/>
10094
<zipfileset dir="${core.sources}" prefix="">
10195
<exclude name="**/*.java"/>
@@ -109,7 +103,7 @@
109103
</zipfileset>
110104
</jar>
111105
</target>
112-
106+
113107
<target name="core.site" depends="core.plugin">
114108
<!-- Copying the plugins -->
115109
<copy todir="${out.path}/plugins">
@@ -130,25 +124,25 @@
130124
</not>
131125
</condition>
132126
</target>
133-
127+
134128
<target name="javadocs" depends="init-env, check-javadocs" if="javadocs.do">
135129
<echo message="Generate the javadoc API in the doc/html/api folder"/>
136-
137-
<javadoc
130+
131+
<javadoc
138132
useexternalfile="true"
139133
packagenames="org.libreoffice.ide.eclipse.core.*"
140134
classpathref="core.dependencies.path"
141135
destdir="${core.basedir}/../docs/loeclipse-doc/help/html/api">
142-
136+
143137
<packageset dir="${core.basedir}/source">
144138
<include name="org/libreoffice/ide/eclipse/core/**"/>
145139
<exclude name="**/internal/**"/>
146140
<exclude name="**/unittests/**"/>
147141
</packageset>
148142
</javadoc>
149-
143+
150144
<touch file="${core.out.path}/javadocs-done"/>
151145
</target>
152-
146+
153147
</project>
154148

core/source/org/libreoffice/ide/eclipse/core/LogLevels.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
/*************************************************************************
2-
*
3-
* $RCSfile: LogLevels.java,v $
4-
*
5-
* $Revision: 1.1 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:30 $
8-
*
92
* The Contents of this file are made available subject to the terms of
103
* the GNU Lesser General Public License Version 2.1
114
*

core/source/org/libreoffice/ide/eclipse/core/Messages.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
/*************************************************************************
2-
*
3-
* $RCSfile: Messages.java,v $
4-
*
5-
* $Revision: 1.2 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:30 $
8-
*
92
* The Contents of this file are made available subject to the terms of
103
* the GNU Lesser General Public License Version 2.1
114
*

core/source/org/libreoffice/ide/eclipse/core/OOEclipsePlugin.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
/*************************************************************************
2-
*
3-
* $RCSfile: OOEclipsePlugin.java,v $
4-
*
5-
* $Revision: 1.11 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2008/12/13 13:42:50 $
8-
*
92
* The Contents of this file are made available subject to the terms of
103
* the GNU Lesser General Public License Version 2.1
114
*

core/source/org/libreoffice/ide/eclipse/core/PluginLogger.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
/*************************************************************************
2-
*
3-
* $RCSfile: PluginLogger.java,v $
4-
*
5-
* $Revision: 1.6 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:30 $
8-
*
92
* The Contents of this file are made available subject to the terms of
103
* the GNU Lesser General Public License Version 2.1
114
*

core/source/org/libreoffice/ide/eclipse/core/ResourceChangesHandler.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
/*************************************************************************
2-
*
3-
* $RCSfile: ResourceChangesHandler.java,v $
4-
*
5-
* $Revision: 1.4 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2008/12/13 13:42:50 $
8-
*
92
* The Contents of this file are made available subject to the terms of
103
* the GNU Lesser General Public License Version 2.1
114
*

core/source/org/libreoffice/ide/eclipse/core/actions/AbstractPulldownAction.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
/*************************************************************************
2-
*
3-
* $RCSfile: AbstractPulldownAction.java,v $
4-
*
5-
* $Revision: 1.4 $
6-
*
7-
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:31 $
8-
*
92
* The Contents of this file are made available subject to the terms of
103
* the GNU Lesser General Public License Version 2.1
114
*

0 commit comments

Comments
 (0)