Author: channa
Date: Mon Jul 21 04:57:26 2008
New Revision: 19796
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=19796

Log:
Updating image sizes.


Modified:
   trunk/mashup/java/xdocs/identity.html
   trunk/mashup/java/xdocs/usermanagement.html

Modified: trunk/mashup/java/xdocs/identity.html
URL: 
http://wso2.org/svn/browse/wso2/trunk/mashup/java/xdocs/identity.html?rev=19796&r1=19795&r2=19796&view=diff
==============================================================================
--- trunk/mashup/java/xdocs/identity.html       (original)
+++ trunk/mashup/java/xdocs/identity.html       Mon Jul 21 04:57:26 2008
@@ -30,9 +30,10 @@
 href="http://wso2.org/project/solutions/identity/1.5/docs/";>Identity
 Solution</a> to provide two user friendly means of authentication in addition
 to the traditional User ID and Password based login. Both OpenID and InfoCard
-are fast becoming preferred means of authentication for users frustrated and 
concerned by the need to remember and manage User
-ID and Password combinations for an increasing number of web sites and
-services that require authentication.</p>
+are fast becoming preferred means of authentication for users frustrated and
+concerned by the need to remember and manage User ID and Password
+combinations for an increasing number of web sites and services that require
+authentication.</p>
 
 <p>You can enable both OpenID and InfoCard based authentication for users
 registering on your WSO2 Mashup Server by updating your server installation
@@ -50,7 +51,7 @@
 
 <p class="Code">&lt;init-param&gt;<br>
 &#xa0;&#xa0;&lt;param-name&gt;webapp_url&lt;/param-name&gt;<br>
-&nbsp;&nbsp;&lt;param-value&gt;https://<strong>mydomain</strong>/&lt;/param-value&gt;<br>
+&#xa0;&#xa0;&lt;param-value&gt;https://<strong>mydomain</strong>/&lt;/param-value&gt;<br>
 &lt;/init-param&gt;<br>
 </p>
 <br>
@@ -61,7 +62,8 @@
 <p>Simply attempting to Login with an unregistered OpenID will trigger the
 self registration process, if internet guests are allowed on your server. The
 initial page displayed will warn you that you are attempting to use an
-unregistered OpenID to login and request confirmation to register this OpenId 
on the site.</p>
+unregistered OpenID to login and request confirmation to register this OpenId
+on the site.</p>
 <img src="images/openid_selfreg_url.png"> 
 
 <p>Once you click on 'Register', the Mashup Server will retrieve your full
@@ -90,7 +92,8 @@
 <p>1. To use InfoCards for authentication, the JDK on your mashup server
 needs to include the 'Java Cryptography Extension (JCE) Unlimited Strength
 Jurisdiction Policy Files' which can be found, along with installation
-instructions, on the download page for your JDK. The policy file for JDK 1.5 
can be found <a
+instructions, on the download page for your JDK. The policy file for JDK 1.5
+can be found <a
 
href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/[EMAIL
 PROTECTED]">here</a>.
 Typically, just copying the local_policy.jar and US_export_policy.jar files
 from the downloaded zip file to the /jre/lib/security directory of your JDK,
@@ -99,44 +102,46 @@
 <p>2. A keystore needs to be configured on your server. The default
 configuration and keystore that ships with the Mashup Server will be
 sufficient for testing CardSpace on your local system, but if you wish to
-deploy the Mashup Server in a production environment, you need to obtain a 
valid certificate. The parameters hightlighted below
-need to be changed to match the valid certificate that you will have obtained
-for your domain before you can allow users to authenticate via InfoCards.</p>
+deploy the Mashup Server in a production environment, you need to obtain a
+valid certificate. The parameters hightlighted below need to be changed to
+match the valid certificate that you will have obtained for your domain
+before you can allow users to authenticate via InfoCards.</p>
 
-<p><strong>The [Mashup Home]/lib/tomcat/webapps/ROOT/WEB-INF/web.xml file 
needs to
-have the keystore information updated.</strong></p>
+<p><strong>The [Mashup Home]/lib/tomcat/webapps/ROOT/WEB-INF/web.xml file
+needs to have the keystore information updated.</strong></p>
 
 <p class="Code">&lt;init-param&gt;<br>
-&nbsp;&nbsp;&lt;param-name&gt;Keystore&lt;/param-name&gt;<br>
-&nbsp;&nbsp;&lt;param-value&gt;../../../../conf/<strong>mykeystore</strong>.jks&lt;/param-value&gt;<br>
+&#xa0;&#xa0;&lt;param-name&gt;Keystore&lt;/param-name&gt;<br>
+&#xa0;&#xa0;&lt;param-value&gt;../../../../conf/<strong>mykeystore</strong>.jks&lt;/param-value&gt;<br>
 &lt;/init-param&gt;<br>
 &lt;init-param&gt;<br>
-&nbsp;&nbsp;&lt;param-name&gt;StorePass&lt;/param-name&gt;<br>
-&nbsp;&nbsp;&lt;param-value&gt;<strong>mykeystorepassword</strong>&lt;/param-value&gt;<br>
+&#xa0;&#xa0;&lt;param-name&gt;StorePass&lt;/param-name&gt;<br>
+&#xa0;&#xa0;&lt;param-value&gt;<strong>mykeystorepassword</strong>&lt;/param-value&gt;<br>
 &lt;/init-param&gt;<br>
 &lt;init-param&gt;<br>
-&nbsp;&nbsp;&lt;param-name&gt;KeyAlias&lt;/param-name&gt;<br>
-&nbsp;&nbsp;&lt;param-value&gt;<strong>myalias</strong>&lt;/param-value&gt;<br>
+&#xa0;&#xa0;&lt;param-name&gt;KeyAlias&lt;/param-name&gt;<br>
+&#xa0;&#xa0;&lt;param-value&gt;<strong>myalias</strong>&lt;/param-value&gt;<br>
 &lt;/init-param&gt;<br>
 &lt;init-param&gt;<br>
-&nbsp;&nbsp;&lt;param-name&gt;KeyPass&lt;/param-name&gt;<br>
-&nbsp;&nbsp;&lt;param-value&gt;<strong>mykeypass</strong>&lt;/param-value&gt;<br>
+&#xa0;&#xa0;&lt;param-name&gt;KeyPass&lt;/param-name&gt;<br>
+&#xa0;&#xa0;&lt;param-value&gt;<strong>mykeypass</strong>&lt;/param-value&gt;<br>
 &lt;/init-param&gt;<br>
 </p>
 
 <p><strong>This change has to also be carried out in the [Mashup
-Home]/conf/axis2.xml file, by updating the values highlighted 
below.</strong></p>
+Home]/conf/axis2.xml file, by updating the values highlighted
+below.</strong></p>
 
 <p class="Code">&lt;parameter name="keystore"&gt;<br>
-&nbsp;&nbsp;&lt;wso2wsas:KeyStore
+&#xa0;&#xa0;&lt;wso2wsas:KeyStore
 xmlns:wso2wsas="http://www.wso2.org/products/wsas"&gt;<br>
-&nbsp;&nbsp;&lt;!-- Keystore file location--&gt;<br>
-&nbsp;&nbsp;&lt;wso2wsas:Location&gt;conf/<strong>mykeystore</strong>.jks&lt;/wso2wsas:Location&gt;<br>
-&nbsp;&nbsp;&lt;!-- Keystore type (JKS/PKCS12 etc.)--&gt;<br>
-&nbsp;&nbsp;&lt;wso2wsas:Type&gt;JKS&lt;/wso2wsas:Type&gt;<br>
-&nbsp;&nbsp;&lt;!-- Keystore password--&gt;<br>
-&nbsp;&nbsp;&lt;wso2wsas:Password&gt;<strong>mykeystorepassword</strong>&lt;/wso2wsas:Password&gt;<br>
-&nbsp;&nbsp;&lt;/wso2wsas:KeyStore&gt;<br>
+&#xa0;&#xa0;&lt;!-- Keystore file location--&gt;<br>
+&#xa0;&#xa0;&lt;wso2wsas:Location&gt;conf/<strong>mykeystore</strong>.jks&lt;/wso2wsas:Location&gt;<br>
+&#xa0;&#xa0;&lt;!-- Keystore type (JKS/PKCS12 etc.)--&gt;<br>
+&#xa0;&#xa0;&lt;wso2wsas:Type&gt;JKS&lt;/wso2wsas:Type&gt;<br>
+&#xa0;&#xa0;&lt;!-- Keystore password--&gt;<br>
+&#xa0;&#xa0;&lt;wso2wsas:Password&gt;<strong>mykeystorepassword</strong>&lt;/wso2wsas:Password&gt;<br>
+&#xa0;&#xa0;&lt;/wso2wsas:KeyStore&gt;<br>
 &lt;/parameter&gt;<br>
 </p>
 <br>
@@ -177,27 +182,29 @@
 clicked, you will be shown the IdentitySelector, from whcih you need to
 select the InfoCard that you plan to use to register on the Mashup Server.</p>
 
-<p><img style="width: 1001px; height: 558px;" alt="Self Registration"
-src="images/Self_Registration.png"><br><br/>
+<p><img alt="Self Registration" src="images/Self_Registration.png"
+width="1009" height="707"><br>
+<br>
 Once you send the card across, the server will extract the required claims
 from the information supplied by the InfoCard and display them for
 verification, while requesting you to enter a username, based on which the
-server will create your profile and script directory. After the standard e-mail
-ID verification step is complete, you may login using your InfoCard and
-associate other InfoCards, OpenID's or even a password with your profile.</p>
+server will create your profile and script directory. After the standard
+e-mail ID verification step is complete, you may login using your InfoCard
+and associate other InfoCards, OpenID's or even a password with your
+profile.</p>
 
 <h3>Associating an InfoCard with an Existing Profile</h3>
 
 <p>The 'Management Tasks' pane of the profile page contains a link to
 'Register your InfoCard'. This can be used as many times as necessary, to
 associate as many cards as you require with your profile. Simply click on the
-link, select the card to be associated in your Identity Selector and send. The
-next time you access your profile, you will see the list of associated cards
-displayed.</p>
-
-<p><br>
-<img style="width: 1010px; height: 564px;" alt="Profile"
-src="images/User_Profile.png"></p>
+link, select the card to be associated in your Identity Selector and send.
+The next time you access your profile, you will see the list of associated
+cards displayed.</p>
+
+<p><img alt="User Profile" src="images/User_Profile.png" width="1005"
+height="650"><br>
+</p>
 
 <h1>Further Reading</h1>
 
@@ -212,6 +219,6 @@
 site, from where you can get access to a host of other resources InfoCard.</p>
 </div>
 
-<p>&copy; 2007-2008 WSO2 Inc.</p>
+<p>&#xa9; 2007-2008 WSO2 Inc.</p>
 </body>
 </html>

Modified: trunk/mashup/java/xdocs/usermanagement.html
URL: 
http://wso2.org/svn/browse/wso2/trunk/mashup/java/xdocs/usermanagement.html?rev=19796&r1=19795&r2=19796&view=diff
==============================================================================
--- trunk/mashup/java/xdocs/usermanagement.html (original)
+++ trunk/mashup/java/xdocs/usermanagement.html Mon Jul 21 04:57:26 2008
@@ -90,6 +90,8 @@
 &#xa0;&#xa0;&#xa0; &lt;/PrimaryUserConfig&gt;<br>
 </p>
 <br>
+
+
 <h2>Setting Up Self Registration</h2>
 
 <p><br>
@@ -119,9 +121,8 @@
 All user management functions require admin privileges and are provided from
 the 'Manage Users' page.<br>
 <br>
-<img style="width: 997px; height: 403px;" alt="Manage Users"
-src="images/Manage_Users.png"><br>
-</p>
+<span style=""><img alt="Manage Users" src="images/Manage_Users.png"
+width="1001" height="541"></span></p>
 
 <h3>Add User</h3>
 
@@ -176,7 +177,7 @@
 <p></p>
 
 <h3>Assign Administrative Privileges</h3>
-<img alt="Assign Admin Icon" src="images/assign_admin.png">
+<img alt="Assign Admin Icon" src="images/assign_admin.png"> 
 
 <p>The primary user is permitted to assign administrative privileges to any
 other registered user. Clicking the 'Assign Admin' icon will display a
@@ -207,8 +208,8 @@
 registration process by clicking on a verfication link sent to the specified
 e-mail ID.<br>
 <br>
-<img style="width: 1001px; height: 558px;" alt="Self Registration"
-src="images/Self_Registration.png"><br>
+<img alt="Self Registration" src="images/Self_Registration.png" width="1009"
+height="707"><br>
 <br>
 </p>
 
@@ -235,15 +236,15 @@
 profile using the 'Register your Infocard' or 'Register your OpenID'
 links.</p>
 
-<p>Further details on managing OpenID and InfoCard are provided in the
-<a href="identity.html">Identity</a> page.<br>
+<p>Further details on managing OpenID and InfoCard are provided in the <a
+href="identity.html">Identity</a> page.<br>
 <br>
-<img style="width: 1010px; height: 564px;" alt="Profile"
-src="images/User_Profile.png"><br>
+<img alt="User Profile" src="images/User_Profile.png" width="1005"
+height="650"><br>
 <br>
 </p>
 </div>
 
-<p>&copy; 2007-2008 WSO2 Inc.</p>
+<p>&#xa9; 2007-2008 WSO2 Inc.</p>
 </body>
 </html>

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

Reply via email to