[xoops-cvslog 4246] CVS update: xoops2jp/html/modules/base/admin/templates

Back to archive index

Tom Hayakawa tom_g3x****@users*****
2006年 8月 19日 (土) 18:39:44 JST


Index: xoops2jp/html/modules/base/admin/templates/imagecategory_list.html
diff -u xoops2jp/html/modules/base/admin/templates/imagecategory_list.html:1.1.2.10 xoops2jp/html/modules/base/admin/templates/imagecategory_list.html:1.1.2.11
--- xoops2jp/html/modules/base/admin/templates/imagecategory_list.html:1.1.2.10	Mon Aug 14 21:46:44 2006
+++ xoops2jp/html/modules/base/admin/templates/imagecategory_list.html	Sat Aug 19 18:39:44 2006
@@ -43,18 +43,18 @@
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=obj from=$objects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-      <td><{$obj->getShow('imgcat_id')}></td>
-      <td><{$obj->getShow('imgcat_name')}></td>
-      <td><{$obj->get('imgcat_maxsize')|number_format}></td>
-      <td><{$obj->get('imgcat_maxwidth')|number_format}></td>
-      <td><{$obj->get('imgcat_maxheight')|number_format}></td>
-      <td><{$obj->getShow('imgcat_display')}></td>
-      <td><{$obj->getShow('imgcat_weight')}></td>
-      <td><{$obj->getShow('imgcat_type')}></td>
-      <td><{$obj->getShow('imgcat_storetype')}></td>
-      <td><{$obj->getImageCount()|escape}></td>
-      <td>
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_id"><{$obj->getShow('imgcat_id')}></td>
+      <td class="base_list_title"><{$obj->getShow('imgcat_name')}></td>
+      <td class="base_list_number"><{$obj->get('imgcat_maxsize')|number_format}></td>
+      <td class="base_list_number"><{$obj->get('imgcat_maxwidth')|number_format}></td>
+      <td class="base_list_number"><{$obj->get('imgcat_maxheight')|number_format}></td>
+      <td class="base_list_select"><{$obj->getShow('imgcat_display')}></td>
+      <td class="base_list_order"><{$obj->getShow('imgcat_weight')}></td>
+      <td class="base_list_type"><{$obj->getShow('imgcat_type')}></td>
+      <td class="base_list_type"><{$obj->getShow('imgcat_storetype')}></td>
+      <td class="base_list_number"><{$obj->getImageCount()|escape}></td>
+      <td class="base_list_control">
         <a href="./index.php?action=ImageList&amp;imgcat_id=<{$obj->getShow('imgcat_id')}>"><img src="<{"icons/view.gif"|theme}>" alt="<{$smarty.const._AD_BASE_LANG_LIST}>" title="<{$smarty.const._AD_BASE_LANG_LIST}>" /></a>
         <a href="./index.php?action=ImagecategoryEdit&amp;imgcat_id=<{$obj->getShow('imgcat_id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <a href="./index.php?action=ImagecategoryDelete&amp;imgcat_id=<{$obj->getShow('imgcat_id')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
Index: xoops2jp/html/modules/base/admin/templates/image_list.html
diff -u xoops2jp/html/modules/base/admin/templates/image_list.html:1.1.2.12 xoops2jp/html/modules/base/admin/templates/image_list.html:1.1.2.13
--- xoops2jp/html/modules/base/admin/templates/image_list.html:1.1.2.12	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/image_list.html	Sat Aug 19 18:39:44 2006
@@ -31,15 +31,12 @@
     <th><{$smarty.const._AD_BASE_LANG_IMAGE_WEIGHT}><br />
       <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=<{$smarty.const.IMAGE_SORT_KEY_IMAGE_WEIGHT}>"><img src="<{"icons/up.gif"|theme}>" alt="<{$smarty.const._ASCENDING}>" title="<{$smarty.const._ASCENDING}>" /></a>
       <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=-<{$smarty.const.IMAGE_SORT_KEY_IMAGE_WEIGHT}>"><img src="<{"icons/down.gif"|theme}>" alt="<{$smarty.const._DESCENDING}>" title="<{$smarty.const._DESCENDING}>" /></a></th>
-    <th><{$smarty.const._AD_BASE_LANG_IMGCAT_ID}><br />
-      <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=<{$smarty.const.IMAGE_SORT_KEY_IMGCAT_ID}>"><img src="<{"icons/up.gif"|theme}>" alt="<{$smarty.const._ASCENDING}>" title="<{$smarty.const._ASCENDING}>" /></a>
-      <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=-<{$smarty.const.IMAGE_SORT_KEY_IMGCAT_ID}>"><img src="<{"icons/down.gif"|theme}>" alt="<{$smarty.const._DESCENDING}>" title="<{$smarty.const._DESCENDING}>" /></a></th>
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=obj from=$objects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-      <td><{$obj->getShow('image_id')}></td>
-      <td>
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_id"><{$obj->getShow('image_id')}></td>
+      <td class="base_list_image">
         <{if $obj->mImageCategory != null}>
           <{if $obj->mImageCategory->get('imgcat_storetype') == 'file'}>
             <img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('image_name')}>" />
@@ -48,13 +45,12 @@
           <{/if}>
         <{/if}>
       </td>
-      <td><{$obj->getShow('image_nicename')}></td>
-      <td><{$obj->getShow('image_mimetype')}></td>
-      <td><{$obj->getShow('image_created')|xoops_formattimestamp:l}></td>
-      <td><{if $obj->get('image_display') == 1}><{$smarty.const._YES}><{else}><{$smarty.const._YES}><{/if}></td>
-      <td><{$obj->getShow('image_weight')}></td>
-      <td><{$obj->getShow('imgcat_id')}></td>
-      <td>
+      <td class="base_list_title"><{$obj->getShow('image_nicename')}></td>
+      <td class="base_list_type"><{$obj->getShow('image_mimetype')}></td>
+      <td class="base_list_date"><{$obj->getShow('image_created')|xoops_formattimestamp:l}></td>
+      <td class="base_list_select"><{if $obj->get('image_display') == 1}><{$smarty.const._YES}><{else}><{$smarty.const._YES}><{/if}></td>
+      <td class="base_list_order"><{$obj->getShow('image_weight')}></td>
+      <td class="base_list_control">
         <a href="./index.php?action=ImageEdit&amp;image_id=<{$obj->getShow('image_id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <a href="./index.php?action=ImageDelete&amp;image_id=<{$obj->getShow('image_id')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
       </td>
Index: xoops2jp/html/modules/base/admin/templates/blockinstall_list.html
diff -u xoops2jp/html/modules/base/admin/templates/blockinstall_list.html:1.1.2.16 xoops2jp/html/modules/base/admin/templates/blockinstall_list.html:1.1.2.17
--- xoops2jp/html/modules/base/admin/templates/blockinstall_list.html:1.1.2.16	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/blockinstall_list.html	Sat Aug 19 18:39:44 2006
@@ -22,11 +22,6 @@
     <th><{$smarty.const._AD_BASE_LANG_MID}><br />
       <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=<{$smarty.const.NEWBLOCKS_SORT_KEY_MID}>"><img src="<{"icons/up.gif"|theme}>" alt="<{$smarty.const._ASCENDING}>" title="<{$smarty.const._ASCENDING}>" /></a>
       <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=-<{$smarty.const.NEWBLOCKS_SORT_KEY_MID}>"><img src="<{"icons/down.gif"|theme}>" alt="<{$smarty.const._DESCENDING}>" title="<{$smarty.const._DESCENDING}>" /></a></th>
-<{*
-    <th><{$smarty.const._AD_BASE_LANG_NAME}><br />
-      <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=<{$smarty.const.NEWBLOCKS_SORT_KEY_NAME}>"><img src="<{"icons/up.gif"|theme}>" alt="<{$smarty.const._ASCENDING}>" title="<{$smarty.const._ASCENDING}>" /></a>
-      <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=-<{$smarty.const.NEWBLOCKS_SORT_KEY_NAME}>"><img src="<{"icons/down.gif"|theme}>" alt="<{$smarty.const._DESCENDING}>" title="<{$smarty.const._DESCENDING}>" /></a></th>
-*}>
     <th><{$smarty.const._AD_BASE_LANG_TITLE}><br />
       <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=<{$smarty.const.NEWBLOCKS_SORT_KEY_TITLE}>"><img src="<{"icons/up.gif"|theme}>" alt="<{$smarty.const._ASCENDING}>" title="<{$smarty.const._ASCENDING}>" /></a>
       <a href="<{$pageNavi->renderSortUrl()}>&amp;sort=-<{$smarty.const.NEWBLOCKS_SORT_KEY_TITLE}>"><img src="<{"icons/down.gif"|theme}>" alt="<{$smarty.const._DESCENDING}>" title="<{$smarty.const._DESCENDING}>" /></a></th>
@@ -36,25 +31,24 @@
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=obj from=$objects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-      <td><{$obj->getShow('bid')}></td>
-      <td style="text-align:left;">
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_id"><{$obj->getShow('bid')}></td>
+      <td class="base_list_name">
         <{if $obj->mModule}>
-          <b><{$obj->mModule->getShow('name')}></b>
+          <span class="base_blocktype_module"><{$obj->mModule->getShow('name')}></span>
         <{else}>
+          <span class="base_blocktype_custom">
           <{if $obj->get('c_type') == "H" }><{$smarty.const._AD_BASE_LANG_CUSTOM_HTML}>
           <{elseif $obj->get('c_type') == "P"}><{$smarty.const._AD_BASE_LANG_CUSTOM_PHP}>
           <{elseif $obj->get('c_type') == "S"}><{$smarty.const._AD_BASE_LANG_CUSTOM_WITH_SMILIES}>
           <{elseif $obj->get('c_type') == "T"}><{$smarty.const._AD_BASE_LANG_CUSTOM_WITHOUT_SMILIES}>
           <{/if}>
+          </span>
         <{/if}>
       </td>
-<{*
-      <td style="text-align:left;"><{$obj->getShow('name')}></td>
-*}>
-      <td style="text-align:left;"><{$obj->getShow('title')}></td>
-      <td style="text-align:left;"><{$obj->getShow('template')}></td>
-      <td>
+      <td class="base_list_title"><{$obj->getShow('title')}></td>
+      <td class="base_list_text"><{$obj->getShow('template')}></td>
+      <td class="base_list_control">
         <{if $obj->get('block_type') == 'C'}>
           <a href="./index.php?action=CustomBlockEdit&amp;bid=<{$obj->getShow('bid')}>"><img src="<{"icons/install.gif"|theme}>" alt="<{$smarty.const._AD_BASE_LANG_INSTALL}>" title="<{$smarty.const._AD_BASE_LANG_INSTALL}>" /></a>
           <a href="./index.php?action=CustomBlockDelete&amp;bid=<{$obj->getShow('bid')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
Index: xoops2jp/html/modules/base/admin/templates/module_list.html
diff -u xoops2jp/html/modules/base/admin/templates/module_list.html:1.1.2.17 xoops2jp/html/modules/base/admin/templates/module_list.html:1.1.2.18
--- xoops2jp/html/modules/base/admin/templates/module_list.html:1.1.2.17	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/module_list.html	Sat Aug 19 18:39:44 2006
@@ -44,21 +44,21 @@
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=module from=$moduleObjects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-      <td><{$module->getShow('mid')}></td>
-      <td><img src="<{$xoops_url}>/modules/<{$module->getShow('dirname')}>/<{$module->modinfo.image}>" alt="<{$module->getShow('name')}>" /><br />
-        <input type="text" size="22" name="name[<{$module->getShow('mid')}>]" value="<{$module->getShow('name')}>" /></td>
-      <td><{$module->getRenderedVersion()}></td>
-      <td><{$module->get('last_update')|xoops_formattimestamp:l}></td>
-      <td>
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_id"><{$module->getShow('mid')}></td>
+      <td class="base_list_image"><img src="<{$xoops_url}>/modules/<{$module->getShow('dirname')}>/<{$module->modinfo.image}>" alt="<{$module->getShow('name')}>" /><br />
+        <input type="text" size="24" name="name[<{$module->getShow('mid')}>]" value="<{$module->getShow('name')}>" /></td>
+      <td class="base_list_order"><{$module->getRenderedVersion()}></td>
+      <td class="base_list_date"><{$module->get('last_update')|xoops_formattimestamp:l}></td>
+      <td class="base_list_select">
       <{if $module->get('hasmain')}>
         <input type="text" size="4" maxlength="4" name="weight[<{$module->getShow('mid')}>]" value="<{$module->getShow('weight','e')}>" />
       <{else}>
         <input type="hidden" name="weight[<{$module->getShow('mid')}>]" value="<{$module->getShow('weight','e')}>" />
       <{/if}>
       </td>
-      <td><input type="checkbox" name="isactive[<{$module->getShow('mid')}>]" value="1" <{if $module->get('isactive')}>checked="checked"<{/if}> /></td>
-      <td>
+      <td class="base_list_select"><input type="checkbox" name="isactive[<{$module->getShow('mid')}>]" value="1" <{if $module->get('isactive')}>checked="checked"<{/if}> /></td>
+      <td class="base_list_control">
         <a href="index.php?action=ModuleUpdate&amp;dirname=<{$module->getShow('dirname')}>"><img src="<{"icons/update.gif"|theme}>" alt="<{$smarty.const._AD_BASE_LANG_UPDATE}>" title="<{$smarty.const._AD_BASE_LANG_UPDATE}>" /></a>
         <{if $module->get('isactive') == 0 }>
           <a href="index.php?action=ModuleUninstall&amp;dirname=<{$module->getShow('dirname')}>"><img src="<{"icons/uninstall.gif"|theme}>" alt="<{$smarty.const._AD_BASE_LANG_UNINSTALL}>" title="<{$smarty.const._AD_BASE_LANG_UNINSTALL}>" /></a>
Index: xoops2jp/html/modules/base/admin/templates/preference_list.html
diff -u xoops2jp/html/modules/base/admin/templates/preference_list.html:1.1.2.9 xoops2jp/html/modules/base/admin/templates/preference_list.html:1.1.2.10
--- xoops2jp/html/modules/base/admin/templates/preference_list.html:1.1.2.9	Mon Aug 14 21:46:44 2006
+++ xoops2jp/html/modules/base/admin/templates/preference_list.html	Sat Aug 19 18:39:44 2006
@@ -12,10 +12,10 @@
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=obj from=$objects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-      <td><{$obj->getVar('confcat_id')}></td>
-      <td style="text-align:left;"><{$obj->getName()|escape}></td>
-      <td>
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_id"><{$obj->getVar('confcat_id')}></td>
+      <td class="base_list_title"><{$obj->getName()|escape}></td>
+      <td class="base_list_control">
         <a href="./index.php?action=PreferenceEdit&amp;confcat_id=<{$obj->getVar('confcat_id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
       </td>
     </tr>
Index: xoops2jp/html/modules/base/admin/templates/block_list.html
diff -u xoops2jp/html/modules/base/admin/templates/block_list.html:1.1.2.21 xoops2jp/html/modules/base/admin/templates/block_list.html:1.1.2.22
--- xoops2jp/html/modules/base/admin/templates/block_list.html:1.1.2.21	Fri Aug 18 20:25:05 2006
+++ xoops2jp/html/modules/base/admin/templates/block_list.html	Sat Aug 19 18:39:44 2006
@@ -55,7 +55,7 @@
     <{foreach item=obj from=$objects}>
       <tr class="<{cycle values='odd,even'}>">
         <td class="base_list_id"><{$obj->getShow('bid')}></td>
-        <td class="base_list_title">
+        <td class="base_list_name">
           <{if $obj->mModule}>
             <span class="base_blocktype_module"><{$obj->mModule->getShow('name')}></span>
           <{else}>
Index: xoops2jp/html/modules/base/admin/templates/install_list.html
diff -u xoops2jp/html/modules/base/admin/templates/install_list.html:1.1.2.9 xoops2jp/html/modules/base/admin/templates/install_list.html:1.1.2.10
--- xoops2jp/html/modules/base/admin/templates/install_list.html:1.1.2.9	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/install_list.html	Sat Aug 19 18:39:44 2006
@@ -15,13 +15,13 @@
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=module from=$moduleObjects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-      <td>
-        <img src="<{$xoops_url}>/modules/<{$module->getShow('dirname')}>/<{$module->modinfo.image}>" alt="<{$module->getShow('name','e')}>" title="<{$module->getShow('name','e')}>" /><br />
-        <{$module->getShow('name')}>
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_image">
+        <img src="<{$xoops_url}>/modules/<{$module->getShow('dirname')}>/<{$module->modinfo.image}>" alt="<{$module->getShow('name','e')}>" title="<{$module->getShow('name','e')}>" />
+        <div class="base_module_title"><{$module->getShow('name')}></div>
       </td>
-      <td><{$module->getRenderedVersion()}></td>
-      <td>
+      <td class="base_list_order"><{$module->getRenderedVersion()}></td>
+      <td class="base_list_control">
         <a href="index.php?action=ModuleInstall&amp;dirname=<{$module->getShow('dirname')}>"><img src="<{"icons/install.gif"|theme}>" alt="<{$smarty.const._AD_BASE_LANG_INSTALL}>" title="<{$smarty.const._AD_BASE_LANG_INSTALL}>" /></a>
         <a href="index.php?action=ModuleInfo&amp;dirname=<{$module->getShow('dirname')}>"><img src="<{"icons/info.gif"|theme}>" alt="<{$smarty.const._AD_BASE_LANG_INFORMATION}>" title="<{$smarty.const._AD_BASE_LANG_INFORMATION}>" /></a>
       </td>
Index: xoops2jp/html/modules/base/admin/templates/smiles_list.html
diff -u xoops2jp/html/modules/base/admin/templates/smiles_list.html:1.1.2.11 xoops2jp/html/modules/base/admin/templates/smiles_list.html:1.1.2.12
--- xoops2jp/html/modules/base/admin/templates/smiles_list.html:1.1.2.11	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/smiles_list.html	Sat Aug 19 18:39:44 2006
@@ -30,22 +30,22 @@
   </tr>
   <{foreach item=obj from=$objects}>
     <{if $obj->get('display') == 1 }>
-    <tr class="<{cycle values='odd,even'}> base_smiles_active" style="text-align:center;">
+    <tr class="<{cycle values='odd,even'}> base_smiles_active">
     <{else}>
-    <tr class="<{cycle values='odd,even'}> base_smiles_inactive" style="text-align:center;">
+    <tr class="<{cycle values='odd,even'}> base_smiles_inactive">
     <{/if}>
-      <td><{$obj->getShow('id')}></td>
-      <td><{$obj->getShow('code')}></td>
-      <td><img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('smile_url')}>" alt="<{$obj->getShow('emotion')}>" title="<{$obj->getShow('emotion')}>" /></td>
-      <td><{$obj->getShow('emotion')}></td>
-      <td>
+      <td class="base_list_id"><{$obj->getShow('id')}></td>
+      <td class="base_list_name"><{$obj->getShow('code')}></td>
+      <td class="base_list_image"><img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('smile_url')}>" alt="<{$obj->getShow('emotion')}>" title="<{$obj->getShow('emotion')}>" /></td>
+      <td class="base_list_text"><{$obj->getShow('emotion')}></td>
+      <td class="base_list_select">
         <{if $obj->get('display') == 1 }>
           <{$smarty.const._YES}>
         <{else}>
           <{$smarty.const._NO}>
         <{/if}>
       </td>
-      <td>
+      <td class="base_list_control">
         <a href="./index.php?action=SmilesEdit&amp;id=<{$obj->getShow('id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <a href="./index.php?action=SmilesDelete&amp;id=<{$obj->getShow('id')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
       </td>
Index: xoops2jp/html/modules/base/admin/templates/module_list_confirm.html
diff -u xoops2jp/html/modules/base/admin/templates/module_list_confirm.html:1.1.2.9 xoops2jp/html/modules/base/admin/templates/module_list_confirm.html:1.1.2.10
--- xoops2jp/html/modules/base/admin/templates/module_list_confirm.html:1.1.2.9	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/module_list_confirm.html	Sat Aug 19 18:39:44 2006
@@ -18,23 +18,23 @@
   </tr>
 
 <{foreach item=mid from=$mids}>
-  <tr class="<{cycle values='odd,even'}>" style="text-align:center;">
-    <td><{$mid}></td>
-    <td>
+  <tr class="<{cycle values='odd,even'}>">
+    <td class="base_list_id"><{$mid}></td>
+    <td class="base_list_name">
       <{if $actionForm->get('name',$mid) == $moduleObjects[$mid]->getProperty('name')}>
         <{$actionForm->get('name',$mid)|escape}>
       <{else}>
          (<{$moduleObjects[$mid]->getShow('name')}>) &raquo; <b style="color:#ff0000;"><{$actionForm->get('name',$mid)|escape}></b>
       <{/if}>
     </td>
-    <td>
+    <td class="base_list_order">
       <{if $actionForm->get('weight',$mid) == $moduleObjects[$mid]->getProperty('weight')}>
         <{$actionForm->get('weight',$mid)|escape}>
       <{else}>
          (<{$moduleObjects[$mid]->getShow('weight')}>) &raquo; <b style="color:#ff0000;"><{$actionForm->get('weight',$mid)|escape}></b>
       <{/if}>
     </td>
-    <td>
+    <td class="base_list_select">
       <{if $actionForm->get('isactive',$mid) == $moduleObjects[$mid]->getProperty('isactive')}>
         <{$smarty.const._AD_BASE_LANG_NO_CHANGE}>
       <{else}>
@@ -51,15 +51,15 @@
           <{$smarty.const._AD_BASE_LANG_DEACTIVATE}>
         <{/if}></b>
       <{/if}>
+      <input type="hidden" name="name[<{$mid}>]" value="<{$actionForm->get('name',$mid)|escape}>" />
+      <input type="hidden" name="weight[<{$mid}>]" value="<{$actionForm->get('weight',$mid)|escape}>" />
+      <{if $actionForm->get('isactive',$mid)}>
+        <input type="hidden" name="isactive[<{$mid}>]" value="1" />
+      <{else}>
+        <input type="hidden" name="isactive[<{$mid}>]" value="0" />
+      <{/if}>
     </td>
   </tr>
-  <input type="hidden" name="name[<{$mid}>]" value="<{$actionForm->get('name',$mid)|escape}>" />
-  <input type="hidden" name="weight[<{$mid}>]" value="<{$actionForm->get('weight',$mid)|escape}>" />
-  <{if $actionForm->get('isactive',$mid)}>
-    <input type="hidden" name="isactive[<{$mid}>]" value="1" />
-  <{else}>
-    <input type="hidden" name="isactive[<{$mid}>]" value="0" />
-  <{/if}>
 <{/foreach}>
   <tr>
     <td class="foot" colspan="4">
Index: xoops2jp/html/modules/base/admin/templates/theme_list.html
diff -u xoops2jp/html/modules/base/admin/templates/theme_list.html:1.1.2.7 xoops2jp/html/modules/base/admin/templates/theme_list.html:1.1.2.8
--- xoops2jp/html/modules/base/admin/templates/theme_list.html:1.1.2.7	Sat Aug 19 17:37:35 2006
+++ xoops2jp/html/modules/base/admin/templates/theme_list.html	Sat Aug 19 18:39:44 2006
@@ -27,19 +27,18 @@
   </tr>
   <{foreach item=theme from=$themes}>
     <{if $currentThemeName == $theme->get('dirname')}>
-      <tr class="<{cycle values="odd,even"}> base_theme_active" style="text-align:center;">
+      <tr class="<{cycle values="odd,even"}> base_theme_active">
     <{else}>
-      <tr class="<{cycle values="odd,even"}> base_theme_inactive" style="text-align:center;">
+      <tr class="<{cycle values="odd,even"}> base_theme_inactive">
     <{/if}>
-      <td>
+      <td class="base_list_image">
         <{if $theme->get('screenshot')}>
-          <img src="<{$smarty.const.XOOPS_THEME_URL}>/<{$theme->getShow('dirname')}>/<{$theme->getShow('screenshot')}>" title="<{$theme->getShow('name')}>" width="120" height="90" alt="<{$theme->getShow('name')}>" title="<{$theme->getShow('name')}>" /><br/>
+          <img src="<{$smarty.const.XOOPS_THEME_URL}>/<{$theme->getShow('dirname')}>/<{$theme->getShow('screenshot')}>" title="<{$theme->getShow('name')}>" width="120" height="90" alt="<{$theme->getShow('name')}>" title="<{$theme->getShow('name')}>" />
         <{/if}>
-        <!-- Sorry, please modify the following line -->
-        <b><{$theme->getShow('name')}></b>
+        <div class="base_list_title"><{$theme->getShow('name')}></div>
       </td>
-      <td style="text-align:left;">
-        <p><{$theme->getShow('description') != null}></p>
+      <td class="base_list_text">
+        <p class="base_list_description"><{$theme->getShow('description') != null}></p>
         <ul>
           <li><{$smarty.const._AD_BASE_LANG_VERSION}> : <{$theme->getShow('version')}>
           <li><{$smarty.const._AD_BASE_LANG_RENDER}> : <{$theme->getShow('render_system')}>
@@ -50,14 +49,14 @@
           <{/if}>
         </ul>
       </td>
-      <td>
+      <td class="base_list_select">
         <input type="checkbox" name="select[<{$theme->getShow('dirname')}>]" value="1" <{if $actionForm->get('select', $theme->get('dirname'))}>checked="checked"<{/if}> />
       </td>
-      <td>
+      <td class="base_list_control">
         <{if $currentThemeName != $theme->get('dirname')}>
           <input name="choose[<{$theme->getShow('dirname')}>]" type="submit" value="<{$smarty.const._SELECT}>" class="formButton" />
         <{else}>
-          <img src="<{"icons/active.gif"|theme}>" alt="<{$smarty.const._AD_LEGACYRENDER_LANG_SELECTED}>" title="<{$smarty.const._AD_LEGACYRENDER_LANG_SELECTED}>" style="vertical-align:middle;" />
+          <img src="<{"icons/active.gif"|theme}>" alt="<{$smarty.const._AD_LEGACYRENDER_LANG_SELECTED}>" title="<{$smarty.const._AD_LEGACYRENDER_LANG_SELECTED}>" />
         <{/if}>
       </td>
     </tr>
Index: xoops2jp/html/modules/base/admin/templates/comment_list.html
diff -u xoops2jp/html/modules/base/admin/templates/comment_list.html:1.1.2.18 xoops2jp/html/modules/base/admin/templates/comment_list.html:1.1.2.19
--- xoops2jp/html/modules/base/admin/templates/comment_list.html:1.1.2.18	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/comment_list.html	Sat Aug 19 18:39:44 2006
@@ -62,20 +62,20 @@
     <th><{$smarty.const._AD_BASE_LANG_CONTROL}></th>
   </tr>
   <{foreach item=obj from=$objects}>
-    <tr class="<{cycle values='odd,even'}>" style="text-align:center">
-      <td><{$obj->getShow('com_id')}></td>
-      <td>
+    <tr class="<{cycle values='odd,even'}>">
+      <td class="base_list_id"><{$obj->getShow('com_id')}></td>
+      <td class="base_list_name">
         <{if $obj->mModule}>
           <{$obj->mModule->getShow('name')}>
         <{/if}>
       </td>
-      <td><a href="./index.php?action=CommentView&amp;com_id=<{$obj->getShow('com_id')}>"><{$obj->getShow('com_title')}></a></td>
-      <td><{$obj->getShow('com_created')|xoops_formattimestamp:l}></td>
-      <td><{$obj->getShow('com_modified')|xoops_formattimestamp:l}></td>
+      <td class="base_list_title"><a href="./index.php?action=CommentView&amp;com_id=<{$obj->getShow('com_id')}>"><{$obj->getShow('com_title')}></a></td>
+      <td class="base_list_date"><{$obj->getShow('com_created')|xoops_formattimestamp:l}></td>
+      <td class="base_list_date"><{$obj->getShow('com_modified')|xoops_formattimestamp:l}></td>
       <td><a href="<{$smarty.const.XOOPS_URL}>/modules/user/index.php?action=UserInfo&uid=<{$obj->getShow('com_uid')}>"><{if $obj->mUser}><{$obj->mUser->getShow('uname')}><{else}><{$smarty.const._GUESTS}><{/if}></a></td>
       <td><{$obj->getShow('com_ip')}></td>
       <td><{$obj->mStatus->getShow('name')}></td>
-      <td>
+      <td class="base_list_control">
         <a href="./index.php?action=CommentView&amp;com_id=<{$obj->getShow('com_id')}>"><img src="<{"icons/property.gif"|theme}>" alt="<{$smarty.const._VIEW}>" title="<{$smarty.const._VIEW}>" /></a>
         <a href="./index.php?action=CommentEdit&amp;com_id=<{$obj->getShow('com_id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <a href="./index.php?action=CommentDelete&amp;com_id=<{$obj->getShow('com_id')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
Index: xoops2jp/html/modules/base/admin/templates/install_wizard_licence.html
diff -u xoops2jp/html/modules/base/admin/templates/install_wizard_licence.html:1.1.2.8 xoops2jp/html/modules/base/admin/templates/install_wizard_licence.html:1.1.2.9
--- xoops2jp/html/modules/base/admin/templates/install_wizard_licence.html:1.1.2.8	Fri Aug 18 20:29:46 2006
+++ xoops2jp/html/modules/base/admin/templates/install_wizard_licence.html	Sat Aug 19 18:39:44 2006
@@ -25,7 +25,7 @@
     <th><{$licence|escape}></th>
   </tr>
   <tr>
-    <td class="head" style="text-align:center">
+    <td class="head">
       <textarea cols="75" rows="15"><{$licenceText|escape}></textarea>
     </td>
   <tr>


xoops-cvslog メーリングリストの案内
Back to archive index