├── .gitignore ├── .hgignore ├── README.md ├── examples ├── formMain.lfm ├── formMain.pas ├── html_example.ico ├── html_example.lpi ├── html_example.lpr └── templates │ ├── simple.txt │ └── template.thtml └── src ├── experimental └── steXmlPreProcessor.pas ├── steCache.pas ├── steCommon.pas ├── steParser.pas ├── steProcGenHelper.pas └── steProcessor.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/.hgignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/README.md -------------------------------------------------------------------------------- /examples/formMain.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/examples/formMain.lfm -------------------------------------------------------------------------------- /examples/formMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/examples/formMain.pas -------------------------------------------------------------------------------- /examples/html_example.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/examples/html_example.ico -------------------------------------------------------------------------------- /examples/html_example.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/examples/html_example.lpi -------------------------------------------------------------------------------- /examples/html_example.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/examples/html_example.lpr -------------------------------------------------------------------------------- /examples/templates/simple.txt: -------------------------------------------------------------------------------- 1 | Plain text 2 | 3 | -------------------------------------------------------------------------------- /examples/templates/template.thtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/examples/templates/template.thtml -------------------------------------------------------------------------------- /src/experimental/steXmlPreProcessor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/src/experimental/steXmlPreProcessor.pas -------------------------------------------------------------------------------- /src/steCache.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/src/steCache.pas -------------------------------------------------------------------------------- /src/steCommon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/src/steCommon.pas -------------------------------------------------------------------------------- /src/steParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/src/steParser.pas -------------------------------------------------------------------------------- /src/steProcGenHelper.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/src/steProcGenHelper.pas -------------------------------------------------------------------------------- /src/steProcessor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sash-rc/ste/HEAD/src/steProcessor.pas --------------------------------------------------------------------------------