svnno****@sourc*****
svnno****@sourc*****
2007年 7月 15日 (日) 04:46:44 JST
Revision: 252 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=pal&view=rev&rev=252 Author: takeharu Date: 2007-07-15 04:46:44 +0900 (Sun, 15 Jul 2007) Log Message: ----------- changed the link of buttons added a button for top page Modified Paths: -------------- pompei/trunk/src/main/webapp/view/admin/product/categoryEdit.html pompei/trunk/src/main/webapp/view/admin/product/categoryList.html pompei/trunk/src/main/webapp/view/admin/product/makerEdit.html pompei/trunk/src/main/webapp/view/admin/product/makerList.html pompei/trunk/src/main/webapp/view/admin/product/productConfirm.html pompei/trunk/src/main/webapp/view/admin/product/productEdit.html pompei/trunk/src/main/webapp/view/admin/product/productList.html -------------- next part -------------- Modified: pompei/trunk/src/main/webapp/view/admin/product/categoryEdit.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/categoryEdit.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/categoryEdit.html 2007-07-14 19:46:44 UTC (rev 252) @@ -6,7 +6,10 @@ <title id="title">カテゴリ登録/編集画面</title> </head> <body> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + <h2 id="title2">カテゴリの登録</h2> +<hr/> トップ > 靴 > <form id="form" method="POST"> <table> @@ -17,6 +20,7 @@ <th>イメージ</th><td><input type="file" id="categoriesImage" /></td> </tr> </table> -<input type="submit" id="doConfirm" value="保存" /> +<input type="submit" id="goCategoryList-add" value="登録" /> +<input type="submit" id="goCategoryList-cancel" value="一覧に戻る" /> </form> </body></html> \ No newline at end of file Modified: pompei/trunk/src/main/webapp/view/admin/product/categoryList.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/categoryList.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/categoryList.html 2007-07-14 19:46:44 UTC (rev 252) @@ -6,7 +6,10 @@ <title id="title">カテゴリ設定画面</title> </head> <body> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + <h2 id="title2">カテゴリ設定</h2> +<hr/> トップ > 靴 > <form id="form" method="POST"> <table border="1"> @@ -26,14 +29,14 @@ <td><span id="categoriesName"><a href="./categoryList.html">スニーカー</a></span></td> <td><span id="categoriesImage">画像</span></td> <td> - <input type="submit" id="doChange" value="編集"/> - <input type="submit" id="doChange" value="削除" onclick="alert('削除します。よろしいですか?')"/> + <input type="button" id="goCategoryEdit-update" value="編集"/> + <input type="submit" id="doChange" value="削除" onclick="confirm('削除します。よろしいですか?')"/> </td> </tr> </tbody> <tfoot></tfoot> </table> -<input type="submit" id="doChangeOrder" value="カテゴリを追加する"/> +<input type="submit" id="goCategoryEdit-add" value="カテゴリを追加する"/> <input type="submit" id="doChangeOrder" value="表示順を変更する"/> </form> </body></html> \ No newline at end of file Modified: pompei/trunk/src/main/webapp/view/admin/product/makerEdit.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/makerEdit.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/makerEdit.html 2007-07-14 19:46:44 UTC (rev 252) @@ -6,6 +6,8 @@ <title id="title-head">メーカー編集画面</title> </head> <body> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + <form id="form" method="POST"> <h2><span id="title">メーカー編集</span></h2> <hr/> @@ -31,7 +33,7 @@ <td><input type="file" id=""/></td> </tr> </table> -<input type="submit" id="doAdd" value="登録する" /> -<input type="submit" id="doAdd" value="キャンセル" /> +<input type="submit" id="goMakerList-add" value="登録する" /> +<input type="submit" id="goMakerList-cancel" value="一覧に戻る" /> </form> </body></html> Modified: pompei/trunk/src/main/webapp/view/admin/product/makerList.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/makerList.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/makerList.html 2007-07-14 19:46:44 UTC (rev 252) @@ -6,6 +6,8 @@ <title id="title-head">メーカー一覧</title> </head> <body> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + <form id="form" method="POST"> <h2><span id="title">メーカー一覧</span></h2> <hr/> @@ -24,13 +26,13 @@ <td><span id="makerName">アディダス</span></td> <td><span id="makerDesc">ドイツのスポーツメーカー</span></td> <td> - <input type="submit" id="doEdit" value="編集"/> - <input type="submit" id="doDelete" value="削除" onclick="alert('削除します。よろしいですか?')"/> + <input type="submit" id="goMakerEdit-update" value="編集" /> + <input type="submit" id="doDelete" value="削除" onclick="confirm('削除します。よろしいですか?')"/> </td> </tr> </tbody> <tfoot></tfoot> </table> -<input type="submit" id="doAdd" value="メーカーを追加する" /> +<input type="submit" id="goMakerEdit-add" value="メーカーを追加する" /> </form> </body></html> Modified: pompei/trunk/src/main/webapp/view/admin/product/productConfirm.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/productConfirm.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/productConfirm.html 2007-07-14 19:46:44 UTC (rev 252) @@ -3,10 +3,13 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> -<title id="title">商品登録確認</title> +<title id="title">商品登録内容確認画面</title> </head> <body> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + <h2 id="title2">商品登録確認</h2> +<hr /> 下記の内容で登録します。よろしければ登録ボタンを押して下さい。 <form id="form" method="POST"> <table border="1"> @@ -38,7 +41,7 @@ <th>税種別ID</th><td><span id="productsTaxClass">税種別ID</span></td> </tr> </table> -<input type="submit" id="doAdd" value="登録" /> -<input type="submit" id="doAdd" value="戻る" /> +<input type="submit" id="goProductList" value="登録" /> +<input type="submit" id="goProductEdit" value="戻る" /> </form> </body></html> \ No newline at end of file Modified: pompei/trunk/src/main/webapp/view/admin/product/productEdit.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/productEdit.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/productEdit.html 2007-07-14 19:46:44 UTC (rev 252) @@ -3,10 +3,13 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> -<title id="title">商品登録・編集</title> +<title id="title">商品登録編集画面</title> </head> <body> -<h2 id="title2">商品登録・編集</h2> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + +<h2 id="title2">商品登録編集</h2> +<hr /> <form id="form" method="POST"> <table border="1"> <tr style="dummy" height="20px"> @@ -48,8 +51,7 @@ <td><input id="productsTaxClass" /></td> </tr> </table> -<input type="submit" id="doConfirm" value="確認" /> -<input type="reset" id="doConfirm" value="取消" /> -<input type="reset" id="doConfirm" value="戻る" /> +<input type="submit" id="goProductConfirm" value="確認" /> +<input type="button" id="goProductList" value="戻る" /> </form> </body></html> \ No newline at end of file Modified: pompei/trunk/src/main/webapp/view/admin/product/productList.html =================================================================== --- pompei/trunk/src/main/webapp/view/admin/product/productList.html 2007-07-14 19:43:46 UTC (rev 251) +++ pompei/trunk/src/main/webapp/view/admin/product/productList.html 2007-07-14 19:46:44 UTC (rev 252) @@ -6,13 +6,17 @@ <title id="title-head">商品一覧</title> </head> <body> +<input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/> + <form id="form" method="POST"> <h2><span id="title">商品一覧</span></h2> +<hr /> <label>カテゴリ:</label> <div id="breadcrumbs" style="display:inline;"> <a href="productList.html?name=name"><span id="name">靴</span></a> <label>></label> </div> -<hr/> +<br/> +<br/> <label>※1:1の場合。</label><br/> <div id="categoryItems"> <a href="productList.html?name=name"><span id="name">スニーカー</span></a> @@ -50,13 +54,13 @@ <td><span id="manufacturersId">アディダス</span></td> <td><span id="productsDateAdded">2007/07/12</span></td> <td> - <input type="submit" id="doEdit" value="編集"/> - <input type="submit" id="doDelete" value="削除" onclick="alert('削除します。よろしいですか?')"/> + <input type="submit" id="goProductEdit-update" value="編集"/> + <input type="submit" id="doDelete" value="削除" onclick="confirm('削除します。よろしいですか?')"/> </td> </tr> </tbody> <tfoot></tfoot> </table> -<input type="submit" id="doAdd" value="商品を追加する" /> +<input type="submit" id="goProductEdit-add" value="商品を追加する" /> </form> </body></html>