source: trunk/plugins/event_tracer/event_list.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: 413 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2There are {NB_EVENTS} calls to triger_event or triger_action.
3
4<table width="99%" class="table2">
5<tr class="throw">
6  <th><a href="{U_SORT0}">Type</a></th>
7  <th><a href="{U_SORT1}">Name</a></th>
8  <th><a href="{U_SORT2}">File</a></th>
9</tr>
10<!-- BEGIN event -->
11<tr>
12  <td>{event.TYPE}</td>
13  <td>{event.NAME}</td>
14  <td>{event.FILE}</td>
15</tr>
16<!-- END event -->
17</table>
Note: See TracBrowser for help on using the repository browser.