[pal-cvs 3784] [1519] hide path, updated ui, updated translation.

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2008年 12月 4日 (木) 14:23:37 JST


Revision: 1519
          http://svn.sourceforge.jp/view?root=pal&view=rev&rev=1519
Author:   shinsuke
Date:     2008-12-04 14:23:37 +0900 (Thu, 04 Dec 2008)

Log Message:
-----------
hide path, updated ui, updated translation.

Modified Paths:
--------------
    vfs-portlets/trunk/src/main/resources/application.properties
    vfs-portlets/trunk/src/main/resources/application_ja.properties
    vfs-portlets/trunk/src/main/webapp/WEB-INF/view/config/index.jsp
    vfs-portlets/trunk/src/main/webapp/WEB-INF/view/list/index.jsp
    vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/confirm.jsp
    vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/edit.jsp
    vfs-portlets/trunk/src/main/webapp/WEB-INF/view/upload/edit.jsp


-------------- next part --------------
Modified: vfs-portlets/trunk/src/main/resources/application.properties
===================================================================
--- vfs-portlets/trunk/src/main/resources/application.properties	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/resources/application.properties	2008-12-04 05:23:37 UTC (rev 1519)
@@ -79,4 +79,6 @@
 labels.create_folder=Create Folder
 labels.target_path=Target Path
 labels.uploaded_file=Uploaded File
-labels.upload=Upload
\ No newline at end of file
+labels.upload=Upload
+
+labels.go_to_parent=.. (Go to Parent Folder)

Modified: vfs-portlets/trunk/src/main/resources/application_ja.properties
===================================================================
--- vfs-portlets/trunk/src/main/resources/application_ja.properties	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/resources/application_ja.properties	2008-12-04 05:23:37 UTC (rev 1519)
@@ -72,4 +72,6 @@
 labels.create_folder=\u30d5\u30a9\u30eb\u30c0\u306e\u4f5c\u6210
 labels.target_path=\u5bfe\u8c61\u306e\u30d1\u30b9
 labels.uploaded_file=\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb
-labels.upload=\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9
\ No newline at end of file
+labels.upload=\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9
+
+labels.go_to_parent=.. (\u89aa\u30d5\u30a9\u30eb\u30c0\u3078\u79fb\u52d5)

Modified: vfs-portlets/trunk/src/main/webapp/WEB-INF/view/config/index.jsp
===================================================================
--- vfs-portlets/trunk/src/main/webapp/WEB-INF/view/config/index.jsp	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/webapp/WEB-INF/view/config/index.jsp	2008-12-04 05:23:37 UTC (rev 1519)
@@ -40,19 +40,19 @@
 		</tr>
 		<tr>
 			<th><bean:message key="labels.default_uri"/></th>
-			<td><html:text property="defaultUri"/></td>
+			<td><html:text property="defaultUri" style="width:100%;"/></td>
 		</tr>
 		<tr>
 			<th><bean:message key="labels.root_uri"/></th>
-			<td><html:text property="rootUri"/></td>
+			<td><html:text property="rootUri" style="width:100%;"/></td>
 		</tr>
 		<tr>
 			<th><bean:message key="labels.accepted_paths"/></th>
-			<td><html:text property="acceptPaths"/></td>
+			<td><html:text property="acceptPaths" style="width:100%;"/></td>
 		</tr>
 		<tr>
 			<th><bean:message key="labels.denied_paths"/></th>
-			<td><html:text property="denyPaths"/></td>
+			<td><html:text property="denyPaths" style="width:100%;"/></td>
 		</tr>
 		<tr>
 			<th><bean:message key="labels.show_path"/></th>

Modified: vfs-portlets/trunk/src/main/webapp/WEB-INF/view/list/index.jsp
===================================================================
--- vfs-portlets/trunk/src/main/webapp/WEB-INF/view/list/index.jsp	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/webapp/WEB-INF/view/list/index.jsp	2008-12-04 05:23:37 UTC (rev 1519)
@@ -64,7 +64,7 @@
 <c:if test="${parent}">
 		<tr class="row2">
 			<td>
-				<s:link href="parent/${f:u(encodedUri)}}">..</s:link>
+				<s:link href="parent/${f:u(encodedUri)}}"><bean:message key="labels.go_to_parent"/></s:link>
 			</td>
 			<td style="text-align: right;"></td>
 			<td style="text-align: center;"></td>

Modified: vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/confirm.jsp
===================================================================
--- vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/confirm.jsp	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/confirm.jsp	2008-12-04 05:23:37 UTC (rev 1519)
@@ -28,10 +28,12 @@
 		<table style="width: 500px">
 			<caption><bean:message key="labels.create_folder"/></caption>
 			<tbody>
+<c:if test="${showPath}">
 				<tr>
 					<th style="width: 100px;"><bean:message key="labels.path"/></th>
 					<td>${f:h(uri)}</td>
 				</tr>
+</c:if>
 				<tr>
 					<th style="width: 100px;"><bean:message key="labels.folder_name"/></th>
 					<td>${f:h(name)}<html:hidden property="name"/></td>

Modified: vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/edit.jsp
===================================================================
--- vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/edit.jsp	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/webapp/WEB-INF/view/newfolder/edit.jsp	2008-12-04 05:23:37 UTC (rev 1519)
@@ -35,13 +35,15 @@
 		<table style="width: 500px">
 			<caption><bean:message key="labels.create_folder"/></caption>
 			<tbody>
+<c:if test="${showPath}">
 				<tr>
 					<th style="width: 100px;"><bean:message key="labels.target_path"/></th>
 					<td>${f:h(uri)}</td>
 				</tr>
+</c:if>
 				<tr>
 					<th style="width: 100px;"><bean:message key="labels.folder_name"/></th>
-					<td><html:text property="name" size="40"/></td>
+					<td><html:text property="name" size="40" style="width:100%;"/></td>
 				</tr>
 			</tbody>
 			<tfoot>

Modified: vfs-portlets/trunk/src/main/webapp/WEB-INF/view/upload/edit.jsp
===================================================================
--- vfs-portlets/trunk/src/main/webapp/WEB-INF/view/upload/edit.jsp	2008-12-04 05:15:03 UTC (rev 1518)
+++ vfs-portlets/trunk/src/main/webapp/WEB-INF/view/upload/edit.jsp	2008-12-04 05:23:37 UTC (rev 1519)
@@ -35,10 +35,12 @@
 		<table style="width: 500px">
 			<caption><bean:message key="labels.upload_file"/></caption>
 			<tbody>
+<c:if test="${showPath}">
 				<tr>
 					<th style="width: 100px;"><bean:message key="labels.target_path"/></th>
 					<td>${f:h(uri)}</td>
 				</tr>
+</c:if>
 				<tr>
 					<th style="width: 100px;"><bean:message key="labels.uploaded_file"/></th>
 					<td><input type="file" name="uploadedFile" /></td>


pal-cvs メーリングリストの案内
Back to archive index