Author: dumindu
Date: Tue Apr  8 06:24:50 2008
New Revision: 15629

Log:

trivial changes

Modified:
   trunk/solutions/identity/modules/samples/php-sample/getcard.php
   trunk/solutions/identity/modules/samples/php-sample/index.html
   trunk/solutions/identity/modules/samples/php-sample/login.html
   trunk/solutions/identity/modules/samples/php-sample/stat.php

Modified: trunk/solutions/identity/modules/samples/php-sample/getcard.php
==============================================================================
--- trunk/solutions/identity/modules/samples/php-sample/getcard.php     
(original)
+++ trunk/solutions/identity/modules/samples/php-sample/getcard.php     Tue Apr 
 8 06:24:50 2008
@@ -5,6 +5,7 @@
 
$_SESSION['ppi']=$_SERVER["cardspace_http://schemas_xmlsoap_org/ws/2005/05/identity/claims/privatepersonalidentifier";];
 
$_SESSION['email']=$_SERVER["cardspace_http://schemas_xmlsoap_org/ws/2005/05/identity/claims/emailaddress";];
 $_SESSION['vstate']=$_SERVER["cardspace_auth_state"];
+$_SESSION['cert']=$_SERVER["cardspace_certificate"];
 ?>
 <html>
     <head>

Modified: trunk/solutions/identity/modules/samples/php-sample/index.html
==============================================================================
--- trunk/solutions/identity/modules/samples/php-sample/index.html      
(original)
+++ trunk/solutions/identity/modules/samples/php-sample/index.html      Tue Apr 
 8 06:24:50 2008
@@ -5,10 +5,7 @@
     <body>
         <img src="img/logo.gif" />
         <h2><a href="login.html">Login to this site</a></h2>
-        <h3>
-            Please install the following certificate as a trusted root
-            certificate in your browser
-        </h3>
+
         <hr />
         <a href="http://wso2.com/products/is/";>
             WSO2 Identity Solution

Modified: trunk/solutions/identity/modules/samples/php-sample/login.html
==============================================================================
--- trunk/solutions/identity/modules/samples/php-sample/login.html      
(original)
+++ trunk/solutions/identity/modules/samples/php-sample/login.html      Tue Apr 
 8 06:24:50 2008
@@ -25,14 +25,5 @@
     -->
     </script>
 
-    <img src="img/logo.gif" />
-    <h2><a href="login.html">Login to this site</a></h2>
-    <h3>
-      Please install the following certificate as a trusted root certificate
-      in your browser
-    </h3>
-    <hr />
-    <a href="http://wso2.com/products/is/";>WSO2 Identity Solution</a>
-
   </body>
 </html>

Modified: trunk/solutions/identity/modules/samples/php-sample/stat.php
==============================================================================
--- trunk/solutions/identity/modules/samples/php-sample/stat.php        
(original)
+++ trunk/solutions/identity/modules/samples/php-sample/stat.php        Tue Apr 
 8 06:24:50 2008
@@ -10,7 +10,9 @@
             echo "<b>First Name: </b>".$_SESSION["given_name"]."<br />";
             echo "<b>Surname:    </b>".$_SESSION["surname"]."<br />";
             echo "<b>PPI:        </b>".$_SESSION["ppi"]."<br />";
-            echo "<b>E-Mail:     </b>".$_SESSION["email"]."</p>";
+            echo "<b>E-Mail:     </b>".$_SESSION["email"]."<br />";
+            echo "<b>cert:       </b>".$_SESSION["cert"]."<br />";
+            echo "<br/><b>auth_state: </b>".$_SESSION["vstate"]."</p>";
     ?>
     <hr />
     <a href="http://wso2.com/products/is/";>

_______________________________________________
Identity-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/identity-dev

Reply via email to