Subversion Repositories wimsdev

Rev

Rev 16950 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. !if $datacnt<1
  2.   $name_warning_update
  3.   !exit
  4. !endif
  5.  
  6. !set table_id=TABLE_new_modules
  7. !set table_class=sortable
  8. !reset table_center
  9. $table_header
  10. <caption>$name_depr
  11.   <a href="$w_/rss/modif.xml"><img src="gifs/rss.png" alt="rss"></a></caption>
  12. <thead>
  13.   $table_hdtr<th>$wims_name_date</th><th>$wims_name_Language</th>
  14.   <th>$wims_name_title</th><th>$wims_name_Description</th>
  15.   <th>$name_new</th></tr>
  16. </thead>
  17. <tbody>
  18. !for i=1 to $datacnt
  19.   !set l=!line $i of $data
  20.   !distribute words $l into d_,a_,v_
  21.   !set depr=!module deprecated $a_
  22.   !if $depr=yes
  23.     !set la=!module language $a_
  24.     !set tit=!module title_$lang $a_
  25.     !set desc=!module description_$lang $a_
  26.     !if $tit=
  27.       !set tit=!module title $a_
  28.     !endif
  29.     !set cat=!module category $a_
  30.     !read category $cat
  31.     !set desc=!module description $a_
  32.     $table_tr
  33.     <td class="wimscenter small">
  34.       !char 1 to 8 of $d_
  35.     </td><td class="wimscenter">$la
  36.     !module translation_language $a_
  37.     </td><td>
  38.       !set wims_ref_class=wims_$(cat)_item
  39.       !href target=wims_test module=$a_ $tit
  40.     </td><td>
  41.       $desc
  42.     </td><td class="wimscenter">$v_</td>
  43.   </tr>
  44.   !endif
  45.   !reset desc tit
  46. !next i
  47. </tbody>
  48. $table_end
  49. !read tablesort.phtml
  50.