finished converting view() methods to have a prepareView() companion.

This commit is contained in:
JT Smith 2006-01-30 23:54:45 +00:00
parent 6c4ae02f34
commit bb263b4777
12 changed files with 208 additions and 28 deletions

View file

@ -7,6 +7,10 @@
- Added "201" http status to various entity creation responses.
- Replaced the old search engine system with a brand new one, that is more
powerful, easier to use, and more flexible.
- Added output chunking as an option for asset www_ methods. The net effect
of this provides a fairly significant performance increase to what would
otherwise be slow or complex pages. More details in migration.txt.
6.8.6
- Added logic to deal with case sensitivity and whitespace problems in LDAP

View file

@ -194,6 +194,18 @@ In 6.8 the long depricated method processMacros() was removed. No one should
be using this any longer anyway, but we thought we'd warn you anyway.
1.8 Output Chunking
Starting in 6.9 WebGUI www_ asset methods are capable of having full control
over the output buffer. They can use $session->output->print() to send chunks
of content back to the browser before the page is entirely processed. The
advantage here is that the page appears to load more quickly to the end user.
The disadvantage is that you must set up any HTTP and HTML headers before you
start to send any content. The view() method now has a companion method called
prepareView() in which HTML and HTTP headers must be set. See any of the
existing assets and wobjects for implementation details.
2. Macro Migration
-------------------