source: trunk/template/yoga/search_rules.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: 1.1 KB
Line 
1<!-- DEV TAG: not smarty migrated -->
2<div id="content">
3<h2>{lang:Search rules}</h2>
4
5<p>{INTRODUCTION}</p>
6
7<ul>
8
9  <!-- BEGIN words -->
10  <li>{words.CONTENT}</li>
11  <!-- END words -->
12
13  <!-- BEGIN tags -->
14  <li>
15    <p>{tags.LIST_INTRO}</p>
16
17    <ul>
18      <!-- BEGIN tag -->
19      <li>{tags.tag.NAME}</li>
20      <!-- END tag -->
21    </ul>
22  </li>
23  <!-- END tags -->
24 
25  <!-- BEGIN author -->
26  <li>{author.CONTENT}</li>
27  <!-- END author -->
28
29  <!-- BEGIN date_creation -->
30  <li>{date_creation.CONTENT}</li>
31  <!-- END date_creation -->
32
33  <!-- BEGIN date_available -->
34  <li>{date_available.CONTENT}</li>
35  <!-- END date_available -->
36
37  <!-- BEGIN categories -->
38  <li>
39    <p>{categories.LIST_INTRO}</p>
40
41    <ul>
42      <!-- BEGIN category -->
43      <li>{categories.category.NAME}</li>
44      <!-- END category -->
45    </ul>
46  </li>
47  <!-- END categories -->
48 
49</ul>
50
51</div> <!-- content -->
52
53<p id="pageBottomActions">
54  <a href="#" onclick="window.close();" title="{lang:Close this window}">
55    <img src="{themeconf:icon_dir}/exit.png" class="button" alt="close">
56  </a>
57</p>
Note: See TracBrowser for help on using the repository browser.