source: tags/release-2_0_0RC2/plugins/add_index/admin/main_page.tpl @ 31208

Last change on this file since 31208 was 2222, checked in by rub, 16 years ago

Add comment tags in order to know tpl to migrate

# tag
for f in find . -name \*.tpl
do

echo $f
mv $f $f.tmp
echo '<!-- DEV TAG: not smarty migrated -->' > $f
cat $f.tmp >> $f
rm -f $f.tmp

done

#find file not migrated
for f in find . -name \*.tpl
do

grep -i '<!-- DEV TAG: not smarty migrated -->' $f > /dev/null && echo $f

done

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 339 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<!-- $Id: notification_by_mail.tpl Ruben ARNAUD -->
3<div class="titrePage">
4  <h2>{lang:Add_Index}</h2>
5</div>
6
7<!-- BEGIN add_index_results -->
8<div>
9  <ul>
10    <!-- BEGIN result -->
11    <li>{add_index_results.result.RESULT}</li>
12    <!-- END result -->
13  </ul>
14</div>
15<!-- END add_index_results -->
Note: See TracBrowser for help on using the repository browser.