Author: werpu
Date: Fri Sep 30 08:48:51 2005
New Revision: 292784
URL: http://svn.apache.org/viewcvs?rev=292784&view=rev
Log: (empty)
Added:
myfaces/examples/trunk/sandbox/effect.jsp
Modified:
myfaces/examples/trunk/sandbox/home.jsp
Added: myfaces/examples/trunk/sandbox/effect.jsp
URL: http://svn.apache.org/viewcvs/myfaces/examples/trunk/sandbox/effect.jsp?rev=292784&view=auto
==============================================================================
--- myfaces/examples/trunk/sandbox/effect.jsp (added)
+++ myfaces/examples/trunk/sandbox/effect.jsp Fri Sep 30 08:48:51 2005
@@ -0,0 +1,57 @@
+<%@ page session="false" contentType="text/html;charset=utf-8"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
+<%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s"%>
+
+<html>
+
+<%@include file="inc/head.inc"%>
+
+<!--
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed 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.
+ */
+//-->
+
+<body>
+
+<f:view>
+
+ <h:form>
+ <s:effect id="effect1" fade="true">
+ <h:outputText
+ value="Hello We hope you enjoy Apache MyFaces and the effects by FAT and script.aculo.us"
/>
+ </s:effect>
+
+ <s:effect id="booga" puff="true">
+ <t:outputText value="[Puff me by Clicking]" />
+ </s:effect>
+ <s:effect id="booga2" squish="true">
+ <t:outputText value="[Squish me by clicking]" />
+ </s:effect>
+ <s:effect id="boogae2" pulsate="true">
+ <t:outputText value="[Pulsate me by clicking]" />
+ </s:effect>
+ </h:form>
+
+</f:view>
+
+<%@include file="inc/page_footer.jsp"%>
+
+</body>
+
+</html>
+
Modified: myfaces/examples/trunk/sandbox/home.jsp
URL: http://svn.apache.org/viewcvs/myfaces/examples/trunk/sandbox/home.jsp?rev=292784&r1=292783&r2=292784&view=diff
==============================================================================
--- myfaces/examples/trunk/sandbox/home.jsp (original)
+++ myfaces/examples/trunk/sandbox/home.jsp Fri Sep 30 08:48:51 2005
@@ -25,6 +25,8 @@
<h:outputLink value="accordionPanel.jsf" ><f:verbatim>AccordionPanel</f:verbatim></h:outputLink>
<h:outputLink value="validateUrl.jsf" ><f:verbatim>Validation example
2 - including URL validator</f:verbatim></h:outputLink>
<h:outputLink value="graphicImageDynamic.jsf" ><f:verbatim>GraphicImageDynamic
- graphic image without a dedicated servlet</f:verbatim></h:outputLink>
+ <h:outputLink value="effect.jsf" ><f:verbatim>Effect - FAT and script.aculo.us
effects</f:verbatim></h:outputLink>
+
</h:panelGrid>
</f:view>
|