source: trunk/template/yoga/admin/advanced_feature.tpl @ 2222

Last change on this file since 2222 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: 612 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<!-- $Id: advanced_feature.tpl 2222 2008-02-27 23:08:44Z rub $ -->
3<div class="titrePage">
4  <ul class="categoryActions">
5    <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li>
6  </ul>
7  <h2>{lang:Advanced_features}</h2>
8</div>
9
10<ul>
11  <!-- BEGIN advanced_features -->
12    <!-- BEGIN advanced_feature -->
13      <li><a href="{advanced_features.advanced_feature.URL}" {TAG_INPUT_ENABLED}>{advanced_features.advanced_feature.CAPTION}</a></li>
14    <!-- END advanced_feature -->
15  <!-- END advanced_features -->
16</ul>
Note: See TracBrowser for help on using the repository browser.