From 796ea918866c15f0d59ce178d095022edfaf096d Mon Sep 17 00:00:00 2001
From: Thomas Lange
Date: Fri, 5 May 2017 02:38:39 +0200
Subject: A significant increase in the response time has been achieved, since
the template parameters "$ITEM['BODY']['TEXT']" and "$ITEM['BODY']['HTML']"
are now no longer strings but closures (anonymous functions). This means that
the underlying logic, which parses the content or converts it into Markdown,
is not executed until one of these parameters is really needed and called in
the template (which maybe significantly increases the response time on a long
list of items which not use one of those two parameters).
This means that within templates you now have to call these parameters in the following way (note the brackets at the end, which represent a function call):
=$ITEM['BODY']['TEXT']()?>
=$ITEM['BODY']['HTML']()?>
In the background, the anonymous functions are called and executes $Item->getBody() and $Item->getHTML() only when needed. Previously, $Item->getBody() and $Item->getHTML() were basically executed and the parsed content was passed to the template, regardless of whether these parameters are required in the template or not!
---
template/standard/html/feed/item_page.php | 4 ++--
template/standard/html/feed/item_post.php | 4 ++--
template/standard/html/home.php | 2 +-
template/standard/html/page/item.php | 2 +-
template/standard/html/page/main.php | 2 +-
template/standard/html/post/item.php | 2 +-
template/standard/html/post/main.php | 2 +-
template/standard/html/user/item.php | 2 +-
template/standard/html/user/main.php | 2 +-
9 files changed, 11 insertions(+), 11 deletions(-)
(limited to 'template/standard/html')
diff --git a/template/standard/html/feed/item_page.php b/template/standard/html/feed/item_page.php
index f1a7a4d..25d7d30 100644
--- a/template/standard/html/feed/item_page.php
+++ b/template/standard/html/feed/item_page.php
@@ -13,10 +13,10 @@
=$PAGE['GUID']?>=parseDatetime($PAGE['ATTR']['TIME_INSERT'], '[RFC2822]')?>=escapeHTML($USER['ATTR']['FULLNAME'])?>
- =escapeHTML(description($PAGE['BODY']['HTML'], 400))?>
+ =escapeHTML(description($PAGE['BODY']['HTML'](), 400))?>
+ =$PAGE['BODY']['HTML']()?>
]]>
diff --git a/template/standard/html/feed/item_post.php b/template/standard/html/feed/item_post.php
index d645810..7f477d6 100644
--- a/template/standard/html/feed/item_post.php
+++ b/template/standard/html/feed/item_post.php
@@ -13,10 +13,10 @@
=$POST['GUID']?>=parseDatetime($POST['ATTR']['TIME_INSERT'], '[RFC2822]')?>=escapeHTML($USER['ATTR']['FULLNAME'])?>
- =escapeHTML(description($POST['BODY']['HTML'], 400))?>
+ =escapeHTML(description($POST['BODY']['HTML'](), 400))?>
+ =$POST['BODY']['HTML']()?>
]]>
diff --git a/template/standard/html/home.php b/template/standard/html/home.php
index 9909dc1..64206e9 100644
--- a/template/standard/html/home.php
+++ b/template/standard/html/home.php
@@ -16,4 +16,4 @@
-=$PAGINATION['HTML']?>
\ No newline at end of file
+=$PAGINATION['HTML']?>
diff --git a/template/standard/html/page/item.php b/template/standard/html/page/item.php
index d0058e7..6065354 100644
--- a/template/standard/html/page/item.php
+++ b/template/standard/html/page/item.php
@@ -15,6 +15,6 @@
-
=excerpt($PAGE['BODY']['HTML'], 600)?>
+
=excerpt($PAGE['BODY']['HTML'](), 600)?>
\ No newline at end of file
diff --git a/template/standard/html/page/main.php b/template/standard/html/page/main.php
index 621b939..3b62571 100644
--- a/template/standard/html/page/main.php
+++ b/template/standard/html/page/main.php
@@ -14,7 +14,7 @@ $time = "
\ No newline at end of file
diff --git a/template/standard/html/post/main.php b/template/standard/html/post/main.php
index 5104ba9..22974dc 100644
--- a/template/standard/html/post/main.php
+++ b/template/standard/html/post/main.php
@@ -14,7 +14,7 @@ $time = "