You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2017/09/28 00:35:57 UTC

incubator-freemarker git commit: (Missing copyright headers)

Repository: incubator-freemarker
Updated Branches:
  refs/heads/2.3-gae 09a253af3 -> 2c129804f


(Missing copyright headers)


Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/2c129804
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/2c129804
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/2c129804

Branch: refs/heads/2.3-gae
Commit: 2c129804fc563b3de7d2483a754873f0c1601a68
Parents: 09a253a
Author: ddekany <dd...@apache.org>
Authored: Thu Sep 28 02:35:51 2017 +0200
Committer: ddekany <dd...@apache.org>
Committed: Thu Sep 28 02:35:51 2017 +0200

----------------------------------------------------------------------
 .../freemarker/core/BreakOrContinueException.java | 18 ++++++++++++++++++
 .../freemarker/core/FlowControlException.java     | 18 ++++++++++++++++++
 .../template/LoggingAttemptExceptionReporter.java | 18 ++++++++++++++++++
 .../java/freemarker/core/AttemptLoggingTest.java  | 18 ++++++++++++++++++
 .../freemarker/core/CapturingAssignmentTest.java  | 18 ++++++++++++++++++
 .../freemarker/core/ListBreakContinueTest.java    | 18 ++++++++++++++++++
 .../java/freemarker/core/SequenceBuiltInTest.java | 18 ++++++++++++++++++
 .../core/TemplateTransformModelTest.java          | 18 ++++++++++++++++++
 .../core/UncheckedExceptionHandlingTest.java      | 18 ++++++++++++++++++
 .../template/utility/ConstantsTest.java           | 18 ++++++++++++++++++
 10 files changed, 180 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/main/java/freemarker/core/BreakOrContinueException.java
----------------------------------------------------------------------
diff --git a/src/main/java/freemarker/core/BreakOrContinueException.java b/src/main/java/freemarker/core/BreakOrContinueException.java
index 222bc28..121e0e4 100644
--- a/src/main/java/freemarker/core/BreakOrContinueException.java
+++ b/src/main/java/freemarker/core/BreakOrContinueException.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 /**

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/main/java/freemarker/core/FlowControlException.java
----------------------------------------------------------------------
diff --git a/src/main/java/freemarker/core/FlowControlException.java b/src/main/java/freemarker/core/FlowControlException.java
index 8de6331..6e45821 100644
--- a/src/main/java/freemarker/core/FlowControlException.java
+++ b/src/main/java/freemarker/core/FlowControlException.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 /**

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/main/java/freemarker/template/LoggingAttemptExceptionReporter.java
----------------------------------------------------------------------
diff --git a/src/main/java/freemarker/template/LoggingAttemptExceptionReporter.java b/src/main/java/freemarker/template/LoggingAttemptExceptionReporter.java
index 80563ff..19c3893 100644
--- a/src/main/java/freemarker/template/LoggingAttemptExceptionReporter.java
+++ b/src/main/java/freemarker/template/LoggingAttemptExceptionReporter.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.template;
 
 import freemarker.core.Environment;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/core/AttemptLoggingTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/core/AttemptLoggingTest.java b/src/test/java/freemarker/core/AttemptLoggingTest.java
index edf3d18..aa2d2c2 100644
--- a/src/test/java/freemarker/core/AttemptLoggingTest.java
+++ b/src/test/java/freemarker/core/AttemptLoggingTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 import static org.hamcrest.Matchers.*;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/core/CapturingAssignmentTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/core/CapturingAssignmentTest.java b/src/test/java/freemarker/core/CapturingAssignmentTest.java
index 2664dff..95930af 100644
--- a/src/test/java/freemarker/core/CapturingAssignmentTest.java
+++ b/src/test/java/freemarker/core/CapturingAssignmentTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/core/ListBreakContinueTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/core/ListBreakContinueTest.java b/src/test/java/freemarker/core/ListBreakContinueTest.java
index 8ee4af8..0aa904c 100644
--- a/src/test/java/freemarker/core/ListBreakContinueTest.java
+++ b/src/test/java/freemarker/core/ListBreakContinueTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/core/SequenceBuiltInTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/core/SequenceBuiltInTest.java b/src/test/java/freemarker/core/SequenceBuiltInTest.java
index 77eecc5..40f7d9c 100644
--- a/src/test/java/freemarker/core/SequenceBuiltInTest.java
+++ b/src/test/java/freemarker/core/SequenceBuiltInTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 import static org.hamcrest.Matchers.*;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/core/TemplateTransformModelTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/core/TemplateTransformModelTest.java b/src/test/java/freemarker/core/TemplateTransformModelTest.java
index d16d7ad..3d3a18a 100644
--- a/src/test/java/freemarker/core/TemplateTransformModelTest.java
+++ b/src/test/java/freemarker/core/TemplateTransformModelTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 import java.io.FilterWriter;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/core/UncheckedExceptionHandlingTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/core/UncheckedExceptionHandlingTest.java b/src/test/java/freemarker/core/UncheckedExceptionHandlingTest.java
index f06d75d..a1603fd 100644
--- a/src/test/java/freemarker/core/UncheckedExceptionHandlingTest.java
+++ b/src/test/java/freemarker/core/UncheckedExceptionHandlingTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.core;
 
 import static org.hamcrest.Matchers.*;

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/2c129804/src/test/java/freemarker/template/utility/ConstantsTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/freemarker/template/utility/ConstantsTest.java b/src/test/java/freemarker/template/utility/ConstantsTest.java
index ec18114..4eb17de 100644
--- a/src/test/java/freemarker/template/utility/ConstantsTest.java
+++ b/src/test/java/freemarker/template/utility/ConstantsTest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 freemarker.template.utility;
 
 import java.io.IOException;