XCore v2.3.0
The XCore package is used to build basic object for programmation. for the WebAbility compatility code.
For GO, the actual existing code includes:
- XCache: Application Memory Caches, thread safe.
- XDataset: Basic nested data structures for any purpose (template injection, configuration files, database records, etc) Support thread safe operations on thread safe structures (XDatasetTS and XDatasetCollectionTS)
- XLanguage: language dependent text tables, thread safe
- XTemplate: template system with meta language, thread safe cloning
New in this release:
- XTemplate has now the ability to use templates from upper levels. Example:
[[a]]Template A[[]]
&&b&&
[[b]] Using template a: &&a&& [[]]
This will insert the template A into the template B, since template A is accessible for any sub templates. Just be carefull of infinite recursivity.