Skip to content

Commit

Permalink
Merge pull request #581 from HannesWell/renormalize-lineendings
Browse files Browse the repository at this point in the history
Re-normalize line-endings in git of all files to Linux style ("\n")
  • Loading branch information
lcaron committed Mar 26, 2024
2 parents 8622402 + 0e1e561 commit 44150cc
Show file tree
Hide file tree
Showing 1,751 changed files with 215,774 additions and 215,774 deletions.
14 changes: 7 additions & 7 deletions examples/org.eclipse.nebula.examples/.classpath
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
@@ -1,14 +1,14 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=11
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=11
16 changes: 8 additions & 8 deletions examples/org.eclipse.nebula.examples/build.properties
@@ -1,8 +1,8 @@
source.. = src/
output.. = bin/
bin.includes = icons/,\
plugin.xml,\
META-INF/,\
plugin.properties,\
.
src.includes = about.html
source.. = src/
output.. = bin/
bin.includes = icons/,\
plugin.xml,\
META-INF/,\
plugin.properties,\
.
src.includes = about.html
308 changes: 154 additions & 154 deletions examples/org.eclipse.nebula.examples/schema/examples.exsd
@@ -1,154 +1,154 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.nebula.examples" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.nebula.examples" id="examples" name="Nebula Example Part"/>
</appInfo>
<documentation>
Provides an extension point to hook in the Nebula Examples View.
</documentation>
</annotation>

<element name="extension">
<annotation>
<appInfo>
<meta.element />
</appInfo>
<documentation>
This extension point enables extenders to hook into the Nebula Examples view. Each contribution will be displayed in a separate tab in the view.
</documentation>
</annotation>
<complexType>
<sequence minOccurs="1" maxOccurs="unbounded">
<element ref="tab"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>

</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>

</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>

</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>

<element name="tab">
<annotation>
<documentation>
The tab element is used to point to an implementation of AbstractExampleTab
</documentation>
</annotation>
<complexType>
<attribute name="name" type="string" use="required">
<annotation>
<documentation>
The name attribute will be used as the title of the tab. Provide a short name like &quot;ChartTable&quot; which describes the widget that is exposed on the tab.
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
Provide a class that extends org.eclipse.nebula.examples.AbstractExampleTab.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.nebula.examples.AbstractExampleTab"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>

<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
The value of the class attribute in the describer element must represent an implementor of org.eclipse.nebula.examples.AbstractExampleTab
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="since"/>
</appInfo>
<documentation>
1.0
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
&lt;pre&gt;
&lt;extension
point=&quot;org.eclipse.nebula.examples.examples&quot;&gt;
&lt;tab
class=&quot;org.eclipse.nebula.widgets.oscilloscope.example.OscilloscopeExampleTab&quot;
name=&quot;Oscilloscope&quot;&gt;
&lt;/tab&gt;
&lt;/extension&gt;


&lt;extension
point=&quot;org.eclipse.nebula.examples.examples&quot;&gt;
&lt;tab
class=&quot;org.eclipse.nebula.widgets.ganttchart.example.GanttExampleTab&quot;
name=&quot;Ganttchart&quot;&gt;
&lt;/tab&gt;
&lt;/extension&gt;
&lt;/pre&gt;
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
No information is supplied by the provider of this extension point but all Nebula widgets must use this extension point. Please look at any of the Nebula widgets for a variety of implementation examples.
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
Copyright (c) 2007,2012 IBM, Remain Software and Others
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html

Contributors:
Chris Gross - IBM - Creation
Wim jongman &lt;wim.jongman@remainsoftware.com&gt; Documentation

</documentation>
</annotation>

</schema>
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.nebula.examples" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.nebula.examples" id="examples" name="Nebula Example Part"/>
</appInfo>
<documentation>
Provides an extension point to hook in the Nebula Examples View.
</documentation>
</annotation>

<element name="extension">
<annotation>
<appInfo>
<meta.element />
</appInfo>
<documentation>
This extension point enables extenders to hook into the Nebula Examples view. Each contribution will be displayed in a separate tab in the view.
</documentation>
</annotation>
<complexType>
<sequence minOccurs="1" maxOccurs="unbounded">
<element ref="tab"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>

</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>

</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>

</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>

<element name="tab">
<annotation>
<documentation>
The tab element is used to point to an implementation of AbstractExampleTab
</documentation>
</annotation>
<complexType>
<attribute name="name" type="string" use="required">
<annotation>
<documentation>
The name attribute will be used as the title of the tab. Provide a short name like &quot;ChartTable&quot; which describes the widget that is exposed on the tab.
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
Provide a class that extends org.eclipse.nebula.examples.AbstractExampleTab.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.nebula.examples.AbstractExampleTab"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>

<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
The value of the class attribute in the describer element must represent an implementor of org.eclipse.nebula.examples.AbstractExampleTab
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="since"/>
</appInfo>
<documentation>
1.0
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
&lt;pre&gt;
&lt;extension
point=&quot;org.eclipse.nebula.examples.examples&quot;&gt;
&lt;tab
class=&quot;org.eclipse.nebula.widgets.oscilloscope.example.OscilloscopeExampleTab&quot;
name=&quot;Oscilloscope&quot;&gt;
&lt;/tab&gt;
&lt;/extension&gt;


&lt;extension
point=&quot;org.eclipse.nebula.examples.examples&quot;&gt;
&lt;tab
class=&quot;org.eclipse.nebula.widgets.ganttchart.example.GanttExampleTab&quot;
name=&quot;Ganttchart&quot;&gt;
&lt;/tab&gt;
&lt;/extension&gt;
&lt;/pre&gt;
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
No information is supplied by the provider of this extension point but all Nebula widgets must use this extension point. Please look at any of the Nebula widgets for a variety of implementation examples.
</documentation>
</annotation>

<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
Copyright (c) 2007,2012 IBM, Remain Software and Others
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html

Contributors:
Chris Gross - IBM - Creation
Wim jongman &lt;wim.jongman@remainsoftware.com&gt; Documentation

</documentation>
</annotation>

</schema>
14 changes: 7 additions & 7 deletions examples/org.eclipse.nebula.snippets/.classpath
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
@@ -1,7 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8

0 comments on commit 44150cc

Please sign in to comment.