[Carbon-dev] svn commit r31331 - in trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources: org/wso2/carbon/jarservices/ui/i18n web/jarservices

azeez at wso2.com azeez at wso2.com
Mon Feb 23 08:06:07 PST 2009


Author: azeez
Date: Mon Feb 23 08:06:07 2009
New Revision: 31331
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=31331

Log:
More improvements to Jar services

Modified:
   trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/org/wso2/carbon/jarservices/ui/i18n/Resources.properties
   trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/web/jarservices/list_classes.jsp

Modified: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/org/wso2/carbon/jarservices/ui/i18n/Resources.properties
URL: http://wso2.org/svn/browse/wso2/trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/org/wso2/carbon/jarservices/ui/i18n/Resources.properties?rev=31331&r1=31330&r2=31331&view=diff
==============================================================================
--- trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/org/wso2/carbon/jarservices/ui/i18n/Resources.properties	(original)
+++ trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/org/wso2/carbon/jarservices/ui/i18n/Resources.properties	Mon Feb 23 08:06:07 2009
@@ -20,4 +20,5 @@
 select.at.least.one.class=Select at least one class to be exposed as a Web  service
 select.at.least.one.method=Select at least one method to be exposed as a Web service operation
 class1=Class
-service.name=Service Name
\ No newline at end of file
+service.name=Service Name
+deployment.scope=Deployment Scope
\ No newline at end of file

Modified: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/web/jarservices/list_classes.jsp
URL: http://wso2.org/svn/browse/wso2/trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/web/jarservices/list_classes.jsp?rev=31331&r1=31330&r2=31331&view=diff
==============================================================================
--- trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/web/jarservices/list_classes.jsp	(original)
+++ trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/resources/web/jarservices/list_classes.jsp	Mon Feb 23 08:06:07 2009
@@ -53,7 +53,7 @@
                 <table class="styledLeft" id="archiveTbl">
                     <thead>
                     <tr>
-                        <th colspan="3"><fmt:message key="classes"/></th>
+                        <th colspan="4"><fmt:message key="classes"/></th>
                     </tr>
                     </thead>
 
@@ -67,26 +67,35 @@
                         <td>&nbsp;</td>
                         <td><strong><fmt:message key="class1"/></strong></td>
                         <td><strong><fmt:message key="service.name"/></strong></td>
+                        <td><strong><fmt:message key="deployment.scope"/></strong></td>
                     </tr>
                     <tr>
                         <td class="formRow" width="15px">
                             <input id="<%= clazz.getClassName()%>Chk" name="clazzChk" type="checkbox" value="<%= clazz.getClassName() %>"
                                    onclick="setClass('<%= clazz.getClassName()%>');"/>
                         </td>
-                        <td class="formRow">
+                        <td class="formRow" width="20%">
                             <%= clazz.getClassName() %>
                             <input id="<%= clazz.getClassName()%>Hid" type="hidden" name="clazz"
                                    value="<%= clazz + "#" + clazz.getServiceName()%>"/>
                         </td>
-                        <td class="formRow">
+                        <td class="formRow" width="20%">
                             <input id="<%= clazz.getClassName()%>Txt" type="text" size="50"
                                    value="<%= clazz.getServiceName() %>"
                                    onchange="setClass('<%= clazz.getClassName()%>Txt');"/>
                         </td>
+                        <td class="formRow">
+                            <select name="foo">
+                                <option>Request</option>
+                                <option>SOAP Session</option>
+                                <option>Transport Session</option>
+                                <option>Application</option>
+                            </select>
+                        </td>
                     </tr>
                     <% } %>
                     <tr>
-                        <td class="buttonRow" colspan="3">
+                        <td class="buttonRow" colspan="4">
                             <input type="button" class="button"
                                    value=" <fmt:message key="back"/> " onclick="history.back();"/>
                             <input type="button" class="button"



More information about the Carbon-dev mailing list