├── .gitattributes ├── .gitignore ├── .gitmodules ├── CachedTexts.pas ├── LICENSE ├── README.md ├── data ├── CachedSerializer.zip ├── Demo.zip └── ScreenShots.png ├── demo ├── FileReaders.dpr ├── FileReaders.dproj ├── FileWriters.dpr ├── FileWriters.dproj ├── FromStrings.dpr ├── FromStrings.dproj ├── ToStrings.dpr └── ToStrings.dproj ├── thirdparty └── update.bat └── utilities └── CachedSerializer ├── CachedSerializer.dpr ├── CachedSerializer.dproj ├── IdentifiersUnit.pas ├── SerializeUnit.pas └── examples ├── html_tags.txt ├── null_terminated1.txt ├── null_terminated2.txt ├── simple1.txt ├── simple2.txt ├── simplecode_ignorecase.txt ├── utf16code_ignorecase.txt └── xml_encodings.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/.gitmodules -------------------------------------------------------------------------------- /CachedTexts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/CachedTexts.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/README.md -------------------------------------------------------------------------------- /data/CachedSerializer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/data/CachedSerializer.zip -------------------------------------------------------------------------------- /data/Demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/data/Demo.zip -------------------------------------------------------------------------------- /data/ScreenShots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/data/ScreenShots.png -------------------------------------------------------------------------------- /demo/FileReaders.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/FileReaders.dpr -------------------------------------------------------------------------------- /demo/FileReaders.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/FileReaders.dproj -------------------------------------------------------------------------------- /demo/FileWriters.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/FileWriters.dpr -------------------------------------------------------------------------------- /demo/FileWriters.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/FileWriters.dproj -------------------------------------------------------------------------------- /demo/FromStrings.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/FromStrings.dpr -------------------------------------------------------------------------------- /demo/FromStrings.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/FromStrings.dproj -------------------------------------------------------------------------------- /demo/ToStrings.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/ToStrings.dpr -------------------------------------------------------------------------------- /demo/ToStrings.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/demo/ToStrings.dproj -------------------------------------------------------------------------------- /thirdparty/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/thirdparty/update.bat -------------------------------------------------------------------------------- /utilities/CachedSerializer/CachedSerializer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/CachedSerializer.dpr -------------------------------------------------------------------------------- /utilities/CachedSerializer/CachedSerializer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/CachedSerializer.dproj -------------------------------------------------------------------------------- /utilities/CachedSerializer/IdentifiersUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/IdentifiersUnit.pas -------------------------------------------------------------------------------- /utilities/CachedSerializer/SerializeUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/SerializeUnit.pas -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/html_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/examples/html_tags.txt -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/null_terminated1.txt: -------------------------------------------------------------------------------- 1 | -ansi -f"ValueToID:ID_" -p"S:0" 2 | sheet 3 | row 4 | cell 5 | data 6 | value 7 | style -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/null_terminated2.txt: -------------------------------------------------------------------------------- 1 | -utf8 -i -f"ValueToEnum-PUTF8Char:tk:TTagKind" -p"S:4" 2 | sheet 3 | row 4 | cell 5 | data 6 | value 7 | style -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/simple1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/examples/simple1.txt -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/simple2.txt: -------------------------------------------------------------------------------- 1 | -ansi -f"ValueToEnum:tk:TTagKind" 2 | sheet 3 | row 4 | cell 5 | data 6 | value 7 | style -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/simplecode_ignorecase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/examples/simplecode_ignorecase.txt -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/utf16code_ignorecase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/examples/utf16code_ignorecase.txt -------------------------------------------------------------------------------- /utilities/CachedSerializer/examples/xml_encodings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-mozulyov/CachedTexts/HEAD/utilities/CachedSerializer/examples/xml_encodings.txt --------------------------------------------------------------------------------