You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2007/01/27 22:14:56 UTC

svn commit: r500623 - in /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp: home.jsp securityContext.jsp

Author: cagatay
Date: Sat Jan 27 13:14:55 2007
New Revision: 500623

URL: http://svn.apache.org/viewvc?view=rev&rev=500623
Log:
Add securitycontext example page

Added:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/securityContext.jsp   (with props)
Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp?view=diff&rev=500623&r1=500622&r2=500623
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp Sat Jan 27 13:14:55 2007
@@ -143,6 +143,15 @@
                 <h:outputLink value="submitOnEventGlobal.jsf" ><f:verbatim>submit on a global event</f:verbatim></h:outputLink>
                 <h:outputLink value="submitOnEventLink.jsf" ><f:verbatim>submit on a global event as child of a commandLink</f:verbatim></h:outputLink>
             </h:panelGrid>
+            
+            <h:outputText value="SecurityContext"/>
+             <h:panelGrid style="padding-left:25px">
+           		<h:outputLink value="securityContext.jsf" ><f:verbatim>Security Extensions for Page Authorization</f:verbatim></h:outputLink>
+           		<h:outputText value="Try following user accounts during authentication"></h:outputText>
+           		<h:outputText value="user: 'admin' , password: 'myfacesrocks' , role: 'admin'"></h:outputText>
+           		<h:outputText value="user: 'editor' , password: 'editor' , role: 'writer'"></h:outputText>
+           		<h:outputText value="user: 'guest' , password: 'guest' , role: 'reader'"></h:outputText>           		
+            </h:panelGrid>
 
         </h:panelGrid>
     </h:form>

Added: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/securityContext.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/securityContext.jsp?view=auto&rev=500623
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/securityContext.jsp (added)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/securityContext.jsp Sat Jan 27 13:14:55 2007
@@ -0,0 +1,61 @@
+<%@ 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>
+
+<!--
+/*
+ * 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.
+ */
+//-->
+
+<%@include file="inc/head.inc"%>
+
+<body>
+
+<f:view>
+
+	<h:form>
+		<h:outputText value="Welcome: #{securityContext.remoteUser}"></h:outputText>
+		
+		<br>
+		
+		<h:outputText value="Auth Type: #{securityContext.authType}"></h:outputText>
+
+		<br>
+
+		<h:commandButton value="Administrator Menu" rendered="#{securityContext.ifGranted['admin']}" />
+
+		<br>
+
+		<h:outputLabel for="city" value="City"></h:outputLabel>
+		<h:inputText id="city" disabled="#{! securityContext.ifNotGranted['reader']}"></h:inputText>
+
+		<h:commandButton value="Edit" rendered="#{securityContext.ifAnyGranted['admin,writer']}" />
+
+	</h:form>
+
+</f:view>
+
+<%@include file="inc/page_footer.jsp"%>
+
+</body>
+
+</html>

Propchange: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/securityContext.jsp
------------------------------------------------------------------------------
    svn:eol-style = native