summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-01 13:02:56 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-01 13:02:56 +0000
commit0b8842a0c710631b5a84f07002a4fe0668f57444 (patch)
tree308c859928eb15d0ff9504530c00d1e786c5afbc /sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html
parenta9d9bc5e828c0a2833a9d5b5743968bf52bedb88 (diff)
move files to correct place
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@681682 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html')
-rw-r--r--sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html145
1 files changed, 145 insertions, 0 deletions
diff --git a/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html b/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html
new file mode 100644
index 0000000000..88bad8ed1f
--- /dev/null
+++ b/sandbox/travelsample/ui-contribution-webapp/src/main/webapp/scatours.html
@@ -0,0 +1,145 @@
+<!--
+ * 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>SCA Tours</title>
+
+<link rel="stylesheet" type="text/css" href="style.css" />
+
+<script type="text/javascript" src="scatours.js"></script>
+
+<script language="JavaScript">
+
+ //@Reference
+ var hotel = new Reference("hotel");
+
+ //@Reference
+ var trip = new Reference("trip");
+
+ //local state
+ var hotels;
+ var flights;
+ var cars;
+
+ //the constructor for trip leg beans
+ function TripLegType(id,
+ fromLocation,
+ toLocation,
+ fromDate,
+ toDate,
+ noOfPeople) {
+ this.id = id;
+ this.fromLocation = fromLocation;
+ this.toLocation = toLocation;
+ this.fromDate = fromDate;
+ this.toDate = toDate;
+ this.noOfPeople = noOfPeople;
+ }
+
+ function getTripLeg(){
+ return new TripLegType("X",
+ document.searchForm.fromLocation.value,
+ document.searchForm.toLocation.value,
+ document.searchForm.fromDate.value,
+ document.searchForm.toDate.value,
+ document.searchForm.noOfPeople.value);
+ }
+
+ function init() {
+ try {
+
+ }
+ catch(e) {
+ alert(e);
+ }
+ }
+
+ function searchHotels() {
+ hotel.searchSynch(getTripLeg(), search_response);
+ }
+
+ function searchTrip() {
+ trip.search(getTripLeg(), search_response);
+ }
+
+ function search_response(items, exception) {
+ if(exception){
+ alert(exception.javaStack);
+ return;
+ }
+ var hotelsHTML = "";
+ for (var i=0; i<items.length; i++) {
+ var item = items[i].name + ' - ' + items[i].description;
+ hotelsHTML += '<input name="items" type="checkbox" value="' +
+ item + '">' + item + ' <br>';
+ }
+ document.getElementById('searchResponse').innerHTML = hotelsHTML;
+ hotels = items;
+ }
+
+</script>
+
+</head>
+
+<body onload="init()" background="">
+ <img src="scatours.png" border="0" />
+ <div id="scatours">
+ <br>
+ <form name="searchForm">
+ <table border="0">
+ <tr>
+ <td>From Location:</td>
+ <td><input type="text" name="fromLocation" value="LGW"></td>
+ <td>To Location:</td>
+ <td><input type="text" name="toLocation" value="ANU"></td>
+ </tr>
+ <tr>
+ <td>Start Date:</td>
+ <td><input type="text" name="fromDate" value="06/12/08"></td>
+ <td>End Date:</td>
+ <td><input type="text" name="toDate" value="06/12/08"></td>
+ </tr>
+ <tr>
+ <td>Number of people:</td>
+ <td><select name="noOfPeople">
+ <option>1
+ <option selected>2
+ <option>3
+ <option>4
+ </select></td>
+ <td/>
+ <td/>
+ </tr>
+ </table>
+ <input type="button" onClick="searchHotels()" value="SearchHotels">
+ <input type="button" onClick="searchTrip()" value="SearchTrip">
+ </form>
+ <div id="searchResponse"></div>
+ <br>
+ <form name="tripForm">
+ <input type="button" onClick="bookTrip()" value="BookTrip">
+ </form>
+ <br>
+ <div id="trip"></div>
+ <br>
+ <div id="total"></div>
+ </div>
+
+</body>
+</html>