From d64d4281ec5636ffc7511cc94fcc3171f34bb805 Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 10 Feb 2011 08:38:40 +0000 Subject: Rename these old samples in contrib git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1069273 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/webapp/WEB-INF/geronimo-web.xml | 32 -------------- .../src/main/webapp/WEB-INF/web.composite | 49 ---------------------- .../src/main/webapp/WEB-INF/web.xml | 41 ------------------ .../calculator-webapp/src/main/webapp/calc.jsp | 47 --------------------- 4 files changed, 169 deletions(-) delete mode 100644 sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/geronimo-web.xml delete mode 100644 sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.composite delete mode 100644 sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.xml delete mode 100644 sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/calc.jsp (limited to 'sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp') diff --git a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/geronimo-web.xml b/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/geronimo-web.xml deleted file mode 100644 index 57d39cd8d8..0000000000 --- a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/geronimo-web.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - org.apache.tuscany.sca - sample-calculator-webapp - 2.0-SNAPSHOT - war - - - diff --git a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.composite b/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.composite deleted file mode 100644 index 50c23af0b2..0000000000 --- a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.composite +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.xml b/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.xml deleted file mode 100644 index b5a828d55b..0000000000 --- a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/WEB-INF/web.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - Apache Tuscany Calculator Web Service Sample - - - tuscany - org.apache.tuscany.sca.host.webapp.TuscanyServletFilter - - - - tuscany - /* - - - - calc.jsp - - - diff --git a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/calc.jsp b/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/calc.jsp deleted file mode 100644 index 4bc5c984dd..0000000000 --- a/sca-java-2.x/contrib/samples/calculator-webapp/src/main/webapp/calc.jsp +++ /dev/null @@ -1,47 +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. ---%> - -<%@ page contentType="text/html;charset=UTF-8" language="java" %> -<%@ taglib uri="http://www.osoa.org/sca/sca_jsp.tld" prefix="sca" %> - - - - -Calculator sample - - - - - - - - - - - - - - - - - - -
ExpressionResult
2 + 3<%= CalculatorServiceComponent.add(2, 3) %>
3 - 2<%= CalculatorServiceComponent.subtract(3, 2) %>
3 * 2<%= CalculatorServiceComponent.multiply(3, 2) %>
3 / 2<%= CalculatorServiceComponent.divide(3, 2) %>
- - -- cgit v1.2.3