12345678910111213141516171819202122232425262728293031323334353637 |
- By priority:
- do not use command line (Kernel.cmdLine), use env variables instead
- remove Kernel.cmdLine
- Console:
- non-blocking (input)
- move to Cons?
- ConsCompiler:
- interface similar to DevCompiler
- localization:
- Enc:
- utf-8:
- encoder: special case: high surrogate
- encodings with not unique codes
- CJK
- low priority:
- re-implement EncStd generators from Python to Component Pascal
- command line: do not use
- env variables:
- decode (encoding = current locale encoding)
- filenames:
- HostFiles:
- store encoded (ARRAY OF SHORTCHAR), encoding = currect locale encoding
- display decoded (ARRAY OF CHAR)
- NOTE: Kernel.cmdLine decoded (see ^)
- handle SIGTERM in server version (when Kernel.Start used)
- Comm
- printing (to PostScript)
- GUI:
- ...
|