OLD | NEW |
---|---|
(Empty) | |
1 Simple Tests: | |
2 test_simple.dart (main application) | |
3 | |
4 Works with templates: | |
5 name_entry.tmpl - simple template expression with attributes | |
6 name_entry2.tmpl - simple template expression inside bunch of nested t ags | |
Siggi Cherem (dart-lang)
2012/03/15 01:21:25
80 col...
terry
2012/03/15 19:02:49
Done.
| |
7 name_entry_css.tmpl - simple template expression with CSS | |
8 | |
9 Build template and run application | |
10 | |
11 cd $DART | |
12 ./utils/template/template utils/test/template/name_entry.tmpl utils/test/temp late/name_entry.dart | |
13 cd $FROG | |
14 ./frog.py -- html -- ../utils/test/template/test_simple.dart | |
15 | |
16 cd $DART | |
17 ./utils/template/template utils/test/template/name_entry2.tmpl utils/test/tem plate/name_entry.dart | |
18 cd $FROG | |
19 ./frog.py -- html -- ../utils/test/template/test_simple.dart | |
20 | |
21 cd $DART | |
22 ./utils/template/template utils/test/template/name_entry_css.tmpl utils/test/ template/name_entry.dart | |
23 cd $FROG | |
24 ./frog.py -- html -- ../utils/test/template/test_simple.dart | |
25 | |
26 | |
27 With Tests: | |
28 test_with.dart (main application) | |
29 | |
30 Works with templates: | |
31 productview.tmpl - simplest with template | |
32 productview2.tmpl - with tested with var | |
33 | |
34 Build template and run application | |
35 | |
36 cd $DART | |
37 ./utils/template/template utils/test/template/productview.tmpl utils/test/tem plate/productview.dart | |
38 cd $FROG | |
39 ./frog.py -- html -- ../utils/test/template/test_with.dart | |
40 | |
41 cd $DART | |
42 ./utils/template/template utils/test/template/productview2.tmpl utils/test/te mplate/productview.dart | |
43 cd $FROG | |
44 ./frog.py -- html -- ../utils/test/template/test_with.dart | |
45 | |
46 | |
47 List Tests: | |
48 test_list.dart (main application) | |
49 | |
50 Works with templates: | |
51 applications.tmpl - simple list | |
52 | |
53 Build template and run application | |
54 | |
55 cd $DART | |
56 ./utils/template/template utils/test/template/applications.tmpl utils/test/te mplate/applications.dart | |
57 cd $FROG | |
58 ./frog.py -- html -- ../utils/test/template/test_list.dart | |
59 | |
60 | |
61 Complex Tests: | |
62 test_complex.dart (main application) | |
63 | |
64 Works with templates: | |
65 top_searches.tmpl - #each inside of a #with | |
66 top_searches_css.tmpl - #each inside of a #with with CSS | |
67 | |
68 Build template and run application | |
69 | |
70 cd $DART | |
71 ./utils/template/template utils/test/template/top_searches.tmpl utils/test/te mplate/top_searches.dart | |
72 cd $FROG | |
73 ./frog.py -- html -- ../utils/test/template/test_complex.dart | |
74 | |
75 cd $DART | |
76 ./utils/template/template utils/test/template/top_searches_css.tmpl utils/tes t/template/top_searches.dart | |
77 cd $FROG | |
78 ./frog.py -- html -- ../utils/test/template/test_complex.dart | |
79 | |
80 | |
81 Complex #2 Tests: | |
82 test_complex2.dart (main application) | |
83 | |
84 Works with templates: | |
85 top_searches2.tmpl - #each inside of a #with w/ CSS and richer data mo del | |
86 | |
87 Build template and run application | |
88 | |
89 cd $DART | |
90 ./utils/template/template utils/test/template/top_searches2.tmpl utils/test/t emplate/top_searches2.dart | |
91 cd $FROG | |
92 ./frog.py -- html -- ../utils/test/template/test_complex2.dart | |
93 | |
94 | |
95 Real World Applications - Lists w/ events | |
96 real_app.dart (main application) | |
97 | |
98 Works with templates: | |
99 realviews.tmpl - more complex app with event hookup (using var) | |
100 | |
101 | |
102 cd $DART | |
103 ./utils/template/template utils/test/template/realviews.tmpl utils/test/templ ate/realviews.dart | |
104 cd $FROG | |
105 ./frog.py -- html -- ../utils/test/template/real_app.dart | |
106 | |
OLD | NEW |