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/03/03 21:36:39 UTC

incubator-freemarker git commit: (Removed unused test file)

Repository: incubator-freemarker
Updated Branches:
  refs/heads/2.3-gae b13a8763d -> 5ca7e14ab


(Removed unused test file)


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

Branch: refs/heads/2.3-gae
Commit: 5ca7e14ab75951ac9ffd6a47849d65ceb9758a2f
Parents: b13a876
Author: ddekany <dd...@apache.org>
Authored: Fri Mar 3 22:36:30 2017 +0100
Committer: ddekany <dd...@apache.org>
Committed: Fri Mar 3 22:36:30 2017 +0100

----------------------------------------------------------------------
 .../test/templatesuite/templates/exthash.ftl    | 48 --------------------
 1 file changed, 48 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/5ca7e14a/src/test/resources/freemarker/test/templatesuite/templates/exthash.ftl
----------------------------------------------------------------------
diff --git a/src/test/resources/freemarker/test/templatesuite/templates/exthash.ftl b/src/test/resources/freemarker/test/templatesuite/templates/exthash.ftl
deleted file mode 100644
index 24ba759..0000000
--- a/src/test/resources/freemarker/test/templatesuite/templates/exthash.ftl
+++ /dev/null
@@ -1,48 +0,0 @@
-<#--
-  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.
--->
-<html>
-<head>
-<title>FreeMarker: Extended Hash Test</title>
-</head>
-<body>
-
-<p>A simple test follows:</p>
-
-<p>${message}</p>
-
-<p>A hash set of ${animals?size} animals follows:</p>
-<assign animalKeys = animals?keys>
-<p><foreach animal in animalKeys>
-  ${animal}<if animal_has_next>, <else>.</if>
-</foreach></p>
-
-<p>The first animal is an ${animalKeys?first}, and the last is a 
-${animalKeys?last}.</p>
-
-<p>A hash set of ${animals?size} digits follows:<p>
-<assign animalValues = animals._values>
-<p><foreach number in animalValues>
-  ${number}<if number_has_next>, <else>.</if>
-</foreach></p>
-
-<p>The zebra number is ${animals.zebra}.</p>
-
-<p>The end.</p>
-</body>
-</html>