File: TODO

package info (click to toggle)
mailfromd 9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,512 kB
  • sloc: ansic: 56,882; sh: 22,979; yacc: 4,130; lex: 1,428; makefile: 928; lisp: 488; awk: 393; perl: 319; sed: 25
file content (51 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Mailfromd TODO list.

* Language:

** Implement \U, \L, \E and other GNU extensions to the replacement strings.

** Optionally use case-fold fnmatch in fnmatches.

** gsub(regex, repl, string)

** Implement still more string functions

* Provide a library facility:

1. Compile mailfromd source into a position-independent code:

  mailfromd --compile source.mf -osource.mfo

2. Gather several objects into a library using the standard `ar'
   utility:

  ar c file.mfl jeden.mfo dwa.mfo trzy.mfo ...
   
3. Use the archive at the startup to extract the needed functions from
   it:

  mailfromd -lfile   

* Convert database support to MFL

* Implement nested functions and lambdas:

  set var lambda(string x) returns string
          do
              ...
          done
  apply(%var, "foo")

or:

  apply(lambda(string x) returns string
        do
           ...
        done,
        "foo")


Local variables:
mode: outline
paragraph-separate: "[ 	]*$"
end: