You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/07/25 15:51:17 UTC

svn commit: r679806 - in /myfaces/orchestra/trunk/flow/src/main/resources/META-INF: faces-config.xml myfaces_orchestra_flow.tld

Author: skitching
Date: Fri Jul 25 06:51:17 2008
New Revision: 679806

URL: http://svn.apache.org/viewvc?rev=679806&view=rev
Log:
Add new modalFlow component definitions

Added:
    myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld   (with props)
Modified:
    myfaces/orchestra/trunk/flow/src/main/resources/META-INF/faces-config.xml

Modified: myfaces/orchestra/trunk/flow/src/main/resources/META-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/flow/src/main/resources/META-INF/faces-config.xml?rev=679806&r1=679805&r2=679806&view=diff
==============================================================================
--- myfaces/orchestra/trunk/flow/src/main/resources/META-INF/faces-config.xml (original)
+++ myfaces/orchestra/trunk/flow/src/main/resources/META-INF/faces-config.xml Fri Jul 25 06:51:17 2008
@@ -28,4 +28,9 @@
         <view-handler>org.apache.myfaces.orchestra.flow.FlowViewHandler</view-handler>
         <navigation-handler>org.apache.myfaces.orchestra.flow.FlowNavigationHandler</navigation-handler>
     </application>
+
+    <component>
+        <component-type>org.apache.myfaces.orchestra.flow.components.ModalFlow</component-type>
+        <component-class>org.apache.myfaces.orchestra.flow.components.ModalFlow</component-class>
+    </component>
 </faces-config>

Added: myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld?rev=679806&view=auto
==============================================================================
--- myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld (added)
+++ myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld Fri Jul 25 06:51:17 2008
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+
+<!--
+ * 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 taglib
+    PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
+    "misc/web-jsptaglibrary_1_2.dtd">
+
+<taglib>
+
+    <tlib-version>1.0.10</tlib-version>
+    <jsp-version>1.2</jsp-version>
+    <short-name>of</short-name>
+    <uri>http://myfaces.apache.org/orchestra/flow</uri>
+    <description>
+        Orchestra Flow Components.
+    </description>
+
+    <tag>
+        <name>modalFlow</name>
+        <tag-class>org.apache.myfaces.orchestra.flow.components.ModalFlowTag</tag-class>
+        <body-content>NONE</body-content>
+        <description>Ends a conversation</description>
+
+        <attribute>
+            <name>outcome</name>
+            <required>false</required>
+            <rtexprvalue>false</rtexprvalue>
+            <description>
+                Foo
+            </description>
+        </attribute>
+        <attribute>
+            <name>onEntry</name>
+            <required>false</required>
+            <rtexprvalue>false</rtexprvalue>
+            <description>
+                Some javascript to execute when a modal flow is opening.
+            </description>
+        </attribute>
+    </tag>
+</taglib>

Propchange: myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/orchestra/trunk/flow/src/main/resources/META-INF/myfaces_orchestra_flow.tld
------------------------------------------------------------------------------
    svn:executable = *