From 0e64ec0e82521db7f5dcd3ef255c099599612b77 Mon Sep 17 00:00:00 2001 From: de-jcup Date: Sun, 1 May 2022 03:51:32 +0200 Subject: [PATCH] Update site changes + added missing copyright headers #409 --- .../ContentProviderResolver.java | 15 +++++++++++++++ .../de/jcup/asciidoctoreditor/Sha256Support.java | 15 +++++++++++++++ .../UniqueAsciidoctorEditorId.java | 15 +++++++++++++++ .../diagram/plantuml/PlantUMLScriptModel.java | 15 +++++++++++++++ .../plantuml/PlantumlScriptModelBuilder.java | 15 +++++++++++++++ .../outline/ScriptItemContentOutlinePage.java | 15 +++++++++++++++ .../outline/ScriptItemTreeContentProvider.java | 15 +++++++++++++++ ...sciiDoctorEditorEnvironmentPreferencePage.java | 15 +++++++++++++++ .../CustomEnvironmentEntrySupport.java | 15 +++++++++++++++ .../asciidoctoreditor/preferences/KeyValue.java | 15 +++++++++++++++ .../preferences/KeyValueConverter.java | 15 +++++++++++++++ .../preferences/KeyValueEntryDialog.java | 15 +++++++++++++++ .../asciidoctoreditor/UniquePrefixProvider.java | 15 +++++++++++++++ .../diagram/plantuml/PlantUMLFileEndings.java | 15 +++++++++++++++ .../script/AsciiDoctorScriptModelBuilder.java | 15 +++++++++++++++ .../jcup/asciidoctoreditor/Sha256SupportTest.java | 15 +++++++++++++++ .../diagram/plantuml/PlantUMLFileEndingsTest.java | 15 +++++++++++++++ asciidoctor-editor-updatesite/site.xml | 3 +++ 18 files changed, 258 insertions(+) diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/ContentProviderResolver.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/ContentProviderResolver.java index 018a607..b4e089d 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/ContentProviderResolver.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/ContentProviderResolver.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor; import de.jcup.asciidoctoreditor.outline.ScriptItemTreeContentProvider; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/Sha256Support.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/Sha256Support.java index aed34c2..c6e48b6 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/Sha256Support.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/Sha256Support.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor; import java.io.IOException; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/UniqueAsciidoctorEditorId.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/UniqueAsciidoctorEditorId.java index b591dbd..c7da834 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/UniqueAsciidoctorEditorId.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/UniqueAsciidoctorEditorId.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor; import java.io.File; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLScriptModel.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLScriptModel.java index 3301bd6..becd794 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLScriptModel.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLScriptModel.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.diagram.plantuml; import de.jcup.asciidoctoreditor.script.AsciiDoctorScriptModel; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantumlScriptModelBuilder.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantumlScriptModelBuilder.java index cd16e9e..e56f674 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantumlScriptModelBuilder.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantumlScriptModelBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.diagram.plantuml; import de.jcup.asciidoctoreditor.script.AsciiDoctorScriptModelBuilder; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemContentOutlinePage.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemContentOutlinePage.java index e040b0c..0d24d2f 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemContentOutlinePage.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemContentOutlinePage.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.outline; import org.eclipse.ui.views.contentoutline.IContentOutlinePage; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemTreeContentProvider.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemTreeContentProvider.java index aec224c..0db243a 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemTreeContentProvider.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/outline/ScriptItemTreeContentProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.outline; import org.eclipse.jface.viewers.ITreeContentProvider; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/AsciiDoctorEditorEnvironmentPreferencePage.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/AsciiDoctorEditorEnvironmentPreferencePage.java index e807b68..6cd4629 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/AsciiDoctorEditorEnvironmentPreferencePage.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/AsciiDoctorEditorEnvironmentPreferencePage.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.preferences; import static de.jcup.eclipse.commons.ui.SWTFactory.*; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/CustomEnvironmentEntrySupport.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/CustomEnvironmentEntrySupport.java index 8bf48b0..92ef910 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/CustomEnvironmentEntrySupport.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/CustomEnvironmentEntrySupport.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.preferences; import java.util.HashMap; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValue.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValue.java index f9331c1..63952bb 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValue.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValue.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.preferences; import java.util.Objects; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueConverter.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueConverter.java index f1a8fb7..52c1265 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueConverter.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.preferences; import de.jcup.eclipse.commons.preferences.AbstractPreferenceValueConverter; diff --git a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueEntryDialog.java b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueEntryDialog.java index b1409f6..b52e600 100644 --- a/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueEntryDialog.java +++ b/asciidoctor-editor-plugin/src/main/java-eclipse/de/jcup/asciidoctoreditor/preferences/KeyValueEntryDialog.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.preferences; import org.eclipse.jface.dialogs.IMessageProvider; diff --git a/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/UniquePrefixProvider.java b/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/UniquePrefixProvider.java index e2c32d5..faa1650 100644 --- a/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/UniquePrefixProvider.java +++ b/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/UniquePrefixProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor; public interface UniquePrefixProvider { diff --git a/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndings.java b/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndings.java index cfaba49..c6b46b2 100644 --- a/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndings.java +++ b/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndings.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.diagram.plantuml; import java.io.File; diff --git a/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/script/AsciiDoctorScriptModelBuilder.java b/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/script/AsciiDoctorScriptModelBuilder.java index abaea5e..27e058c 100644 --- a/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/script/AsciiDoctorScriptModelBuilder.java +++ b/asciidoctor-editor-plugin/src/main/java/de/jcup/asciidoctoreditor/script/AsciiDoctorScriptModelBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.script; public interface AsciiDoctorScriptModelBuilder { diff --git a/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/Sha256SupportTest.java b/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/Sha256SupportTest.java index 25d6894..4dfdbf8 100644 --- a/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/Sha256SupportTest.java +++ b/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/Sha256SupportTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor; import static org.junit.Assert.*; diff --git a/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndingsTest.java b/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndingsTest.java index 2a8d173..70272d1 100644 --- a/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndingsTest.java +++ b/asciidoctor-editor-plugin/src/test/java-eclipse/de/jcup/asciidoctoreditor/diagram/plantuml/PlantUMLFileEndingsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2021 Albert Tregnaghi + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * + */ package de.jcup.asciidoctoreditor.diagram.plantuml; import static org.junit.Assert.*; diff --git a/asciidoctor-editor-updatesite/site.xml b/asciidoctor-editor-updatesite/site.xml index da386f0..ccf3940 100644 --- a/asciidoctor-editor-updatesite/site.xml +++ b/asciidoctor-editor-updatesite/site.xml @@ -15,6 +15,9 @@ + + + Contain stable releases