| XAO-Web documentation | Contained in the XAO-Web distribution. |
XAO::PageSupport - Fast text collection for XAO::Objects::Page
use XAO::PageSupport;
This is very specific module oriented to support fast text adding for XAO displaying engine. Helps a lot with template processing, especially when template splits into thousands or even milions of pieces.
The idea is to have one long buffer that extends automatically and a stack of positions in it that can be pushed/popped when application need new portion of text.
None.
Andrew Maltsev, <amaltsev@valinux.com>
perl(1).
| XAO-Web documentation | Contained in the XAO-Web distribution. |
package XAO::PageSupport; require 5.005; use strict; require DynaLoader; use vars qw(@ISA $VERSION); @ISA = qw(DynaLoader); ($VERSION)=(q$Id: PageSupport.pm,v 2.1 2005/01/14 01:39:56 am Exp $ =~ /(\d+\.\d+)/); bootstrap XAO::PageSupport $VERSION; 1; __END__