public
Description: A JavaScript implementation of Chris Coyne's Context Free Design Grammar.
Homepage:
Clone URL: git://github.com/osteele/cfdg-js.git
osteele (author)
Sun Mar 23 20:03:32 -0700 2008
commit  572f95ea3c244ae039c2e46d54011cfc93910bb4
tree    8f60c9f7fad4773bf8efd1188fea9f3aa7c9cebe
parent  d14dee3904b5cd60c82424954f06acdc9736c34a
cfdg-js / TODO.txt
100644 34 lines (27 sloc) 0.484 kb
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
* Architecture
- turn driver into an object
 
* Literacy
- namespaces
- css for styling
 
* Language
- repeat
- pipe
- include
 
* Demo
- examples menu
 
* Features
- inline syntax errors
- syntax coloring
- jquery plugin
- svg back end
 
* Error checking
- unknown rules
- "s 1 2 3"
- "s 1 s 2 3"
- invalid attribute name
- invalid attribute name
- "line{TRIANGLE{s"
 
* Optimize
- use actual pixel size for cutoff
- [[x,y]] vs. [{x: x, y: y}] vs. [x,y]
- build a Transform for each shape