[Carbon-dev] svn commit r31225 - in trunk/carbon-components/jar-services: . org.wso2.carbon.jarservices org.wso2.carbon.jarservices.ui org.wso2.carbon.jarservices.ui/src/main/java/org/wso2/carbon/jarservices/ui/fileupload org.wso2.carbon.jarservices.ui/src/main/resources/org/wso2/carbon/jarservices/ui/i18n org.wso2.carbon.jarservices.ui/src/main/resources/web/jarservices
azeez at wso2.com
azeez at wso2.com
Sat Feb 21 00:49:51 PST 2009
Author: azeez
Date: Sat Feb 21 00:49:43 2009
New Revision: 31225
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=31225
Log:
Updates
Removed:
trunk/carbon-components/jar-services/jarservices-parent.iml
trunk/carbon-components/jar-services/jarservices-parent.ipr
trunk/carbon-components/jar-services/jarservices-parent.iws
trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/org.wso2.carbon.aarservices.ui.iml
trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/org.wso2.carbon.jarservices.ui.iml
trunk/carbon-components/jar-services/org.wso2.carbon.jarservices/org.wso2.carbon.aarservices.iml
trunk/carbon-components/jar-services/org.wso2.carbon.jarservices/org.wso2.carbon.jarservices.iml
Modified:
trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/java/org/wso2/carbon/jarservices/ui/fileupload/JarFileUploadExecutor.java
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
Deleted: trunk/carbon-components/jar-services/jarservices-parent.iml
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
Deleted: trunk/carbon-components/jar-services/jarservices-parent.ipr
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
Deleted: trunk/carbon-components/jar-services/jarservices-parent.iws
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
Deleted: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/org.wso2.carbon.aarservices.ui.iml
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
Deleted: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/org.wso2.carbon.jarservices.ui.iml
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
Modified: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/java/org/wso2/carbon/jarservices/ui/fileupload/JarFileUploadExecutor.java
URL: http://wso2.org/svn/browse/wso2/trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/java/org/wso2/carbon/jarservices/ui/fileupload/JarFileUploadExecutor.java?rev=31225&r1=31224&r2=31225&view=diff
==============================================================================
--- trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/java/org/wso2/carbon/jarservices/ui/fileupload/JarFileUploadExecutor.java (original)
+++ trunk/carbon-components/jar-services/org.wso2.carbon.jarservices.ui/src/main/java/org/wso2/carbon/jarservices/ui/fileupload/JarFileUploadExecutor.java Sat Feb 21 00:49:43 2009
@@ -47,7 +47,7 @@
Resource resource = new Resource();
resource.setDataHandler(fileItemData.getDataHandler());
resource.setFileName(fileName);
- if (fileItemData.getFileItem().getName().equals("primaryResourceFileName")) {
+ if (fileItemData.getFileItem().getFieldName().equals("primaryResourceFileName")) {
resource.setPrimaryResource(true);
}
resources[i++] = resource;
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=31225&r1=31224&r2=31225&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 Sat Feb 21 00:49:43 2009
@@ -8,6 +8,8 @@
cancel=Cancel
primary.archive=Primary Archive
resource.archive=Resource
+back=<Back
+next=Next>
add.resource=Add Resource
classes=Select Classes to Expose as Web Services
-select.classes=Select Classes
\ No newline at end of file
+select.classes=Select Classes
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=31225&r1=31224&r2=31225&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 Sat Feb 21 00:49:43 2009
@@ -33,10 +33,10 @@
for (String clazz : classes) {
%>
<tr>
- <td class="formRow">
+ <td class="formRow" width="15px">
<input type="checkbox" name="class"/>
</td>
- <td>
+ <td class="formRow">
<%= clazz %>
</td>
</tr>
@@ -44,7 +44,10 @@
<tr>
<td class="buttonRow" colspan="2">
<input name="upload" type="button" class="button"
- value=" <fmt:message key="upload"/> "
+ value=" <fmt:message key="back"/> "
+ onclick="validate();"/>
+ <input name="upload" type="button" class="button"
+ value=" <fmt:message key="next"/> "
onclick="validate();"/>
<input type="button" class="button"
onclick="javascript:location.href='../service-mgt/index.jsp'"
Deleted: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices/org.wso2.carbon.aarservices.iml
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
Deleted: trunk/carbon-components/jar-services/org.wso2.carbon.jarservices/org.wso2.carbon.jarservices.iml
URL: http://wso2.org/svn/browse/wso2/None?pathrev=31224
More information about the Carbon-dev
mailing list