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 2016/06/01 21:23:28 UTC

incubator-freemarker git commit: (Copyright headers)

Repository: incubator-freemarker
Updated Branches:
  refs/heads/2.3-gae 7195f178a -> 47a53c9b5


(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/47a53c9b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/47a53c9b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/47a53c9b

Branch: refs/heads/2.3-gae
Commit: 47a53c9b58df674139e56bd9370a31f0dca64015
Parents: 7195f17
Author: ddekany <dd...@apache.org>
Authored: Wed Jun 1 23:23:19 2016 +0200
Committer: ddekany <dd...@apache.org>
Committed: Wed Jun 1 23:23:19 2016 +0200

----------------------------------------------------------------------
 .../expected/listhashliteral-ici-2.3.20.txt       | 18 ++++++++++++++++++
 .../expected/listhashliteral-ici-2.3.21.txt       | 18 ++++++++++++++++++
 .../templatesuite/templates/listhashliteral.ftl   | 18 ++++++++++++++++++
 3 files changed, 54 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/47a53c9b/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.20.txt
----------------------------------------------------------------------
diff --git a/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.20.txt b/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.20.txt
index 4f3873b..df0becc 100644
--- a/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.20.txt
+++ b/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.20.txt
@@ -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.
+ */
   KVPs:
     a = 1
     b = 2

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/47a53c9b/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.21.txt
----------------------------------------------------------------------
diff --git a/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.21.txt b/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.21.txt
index 698ebe4..653cbe3 100644
--- a/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.21.txt
+++ b/src/test/resources/freemarker/test/templatesuite/expected/listhashliteral-ici-2.3.21.txt
@@ -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.
+ */
   KVPs:
     a = 3
     b = 2

http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/47a53c9b/src/test/resources/freemarker/test/templatesuite/templates/listhashliteral.ftl
----------------------------------------------------------------------
diff --git a/src/test/resources/freemarker/test/templatesuite/templates/listhashliteral.ftl b/src/test/resources/freemarker/test/templatesuite/templates/listhashliteral.ftl
index f56fc84..918b629 100644
--- a/src/test/resources/freemarker/test/templatesuite/templates/listhashliteral.ftl
+++ b/src/test/resources/freemarker/test/templatesuite/templates/listhashliteral.ftl
@@ -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.
+-->
 <#list [ { "a": 1, "b": 2, "a": 3 }, { } ] as h>
   KVPs:
   <#list h as k, v>