diff options
author | rub <rub@piwigo.org> | 2008-02-27 23:08:44 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-02-27 23:08:44 +0000 |
commit | 618158aca4d99fe522b0f54d547442f17a5db148 (patch) | |
tree | 87ebe949898d3c7992246a9564110dcd52393d6c /template/yoga/mail | |
parent | aed45457d79401bea60b556456ffc36dd7df889f (diff) |
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
git-svn-id: http://piwigo.org/svn/trunk@2222 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
9 files changed, 9 insertions, 0 deletions
diff --git a/template/yoga/mail/text/html/admin/cat_group_info.tpl b/template/yoga/mail/text/html/admin/cat_group_info.tpl index 3451f6645..8d744746c 100644 --- a/template/yoga/mail/text/html/admin/cat_group_info.tpl +++ b/template/yoga/mail/text/html/admin/cat_group_info.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> <div id="cat_group_info"> <h2>{lang:Informations}</h2> <p>{IMG_URL}</p> diff --git a/template/yoga/mail/text/html/admin/notification_by_mail.tpl b/template/yoga/mail/text/html/admin/notification_by_mail.tpl index 77d40daea..ea9fefbc5 100644 --- a/template/yoga/mail/text/html/admin/notification_by_mail.tpl +++ b/template/yoga/mail/text/html/admin/notification_by_mail.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> <div id="nbm_message"> <h2>{lang:Notification}</h2> <p>{lang:nbm_content_hello_1}{USERNAME}{lang:nbm_content_hello_2}</p> diff --git a/template/yoga/mail/text/html/footer.tpl b/template/yoga/mail/text/html/footer.tpl index c0ee0d2e4..50b661486 100644 --- a/template/yoga/mail/text/html/footer.tpl +++ b/template/yoga/mail/text/html/footer.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> </div> <!-- content --> <div id="copyright"> <HR> diff --git a/template/yoga/mail/text/html/global-mail-css.tpl b/template/yoga/mail/text/html/global-mail-css.tpl index c8e4b3c63..f3c59f1e5 100644 --- a/template/yoga/mail/text/html/global-mail-css.tpl +++ b/template/yoga/mail/text/html/global-mail-css.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> /* $Id$ */ /* Global mail css */ /* Including like css style on HTML mail */ diff --git a/template/yoga/mail/text/html/header.tpl b/template/yoga/mail/text/html/header.tpl index 716a498e6..63ccbe327 100644 --- a/template/yoga/mail/text/html/header.tpl +++ b/template/yoga/mail/text/html/header.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> -----={BOUNDARY_KEY} Content-Type: {CONTENT_TYPE}; charset="{CONTENT_ENCODING}"; Content-Transfer-Encoding: 8bit diff --git a/template/yoga/mail/text/plain/admin/cat_group_info.tpl b/template/yoga/mail/text/plain/admin/cat_group_info.tpl index b38521465..c6df0aac9 100644 --- a/template/yoga/mail/text/plain/admin/cat_group_info.tpl +++ b/template/yoga/mail/text/plain/admin/cat_group_info.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> {lang:Hello,} {lang:Come to discover the category:} {CAT_NAME} diff --git a/template/yoga/mail/text/plain/admin/notification_by_mail.tpl b/template/yoga/mail/text/plain/admin/notification_by_mail.tpl index edaced083..22d25ef30 100644 --- a/template/yoga/mail/text/plain/admin/notification_by_mail.tpl +++ b/template/yoga/mail/text/plain/admin/notification_by_mail.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> {lang:nbm_content_hello_1}{USERNAME}{lang:nbm_content_hello_2} <!-- BEGIN subscribe_by_admin --> diff --git a/template/yoga/mail/text/plain/footer.tpl b/template/yoga/mail/text/plain/footer.tpl index a43f1621a..b3e48bc30 100644 --- a/template/yoga/mail/text/plain/footer.tpl +++ b/template/yoga/mail/text/plain/footer.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> ------------------------ PhpWebGallery {VERSION} diff --git a/template/yoga/mail/text/plain/header.tpl b/template/yoga/mail/text/plain/header.tpl index 213fedbf1..2b710b439 100644 --- a/template/yoga/mail/text/plain/header.tpl +++ b/template/yoga/mail/text/plain/header.tpl @@ -1,3 +1,4 @@ +<!-- DEV TAG: not smarty migrated --> -----={BOUNDARY_KEY} Content-Type: {CONTENT_TYPE}; charset="{CONTENT_ENCODING}"; Content-Transfer-Encoding: 8bit |