blob: 0a659f7c99071dcfab1199eff14b51cb94fb2a6e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ 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.
-->
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>DeltaSpike JSF Playground</title>
</h:head>
<h:body>
<h1>Deltaspike JSF Playground</h1>
<br/>
ExceptionHandling: <br/>
<h:link value="ExceptionHandling" outcome="views/exceptionhandling/exceptionhandling.jsf" /> <br/>
<br/>
Scope: <br/>
<h:link value="ViewAccess 1" outcome="views/scope/viewaccess/test1.jsf" /> <br/>
<h:link value="ViewAccess 2" outcome="views/scope/viewaccess/test2.jsf" /> <br/>
<h:link value="ViewAccess 3" outcome="views/scope/viewaccess/test3.jsf" /> <br/>
<br/>
WindowHandling: <br/>
<h:link value="ClientWindow" outcome="views/windowhandling/clientwindow/test.jsf" /> <br/>
<h:link value="Lazy" outcome="views/windowhandling/lazy/test.jsf" /> <br/>
<h:link value="Lazy without JS" outcome="views/windowhandling/lazy/testWithoutJS.jsf" /> <br/>
<h:link value="Lazy ViewAction" outcome="views/windowhandling/lazy/viewAction.jsf" /> <br/>
<br/>
<br/>
'window.name': <input id="windowname" />
<button onclick="window.name = document.getElementById('windowname').value; return false;">set</button>
<script type="text/javascript">
document.getElementById('windowname').value = window.name;
</script>
</h:body>
</html>