graffle 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. data/History.txt +5 -4
  2. data/Manifest.txt +13 -10
  3. data/Rakefile.hoe +1 -1
  4. data/examples/rails-workflow-test.expected +10 -0
  5. data/examples/rails-workflow-test.graffle/data.plist +1033 -0
  6. data/examples/rails-workflow-test.graffle/image1.png +0 -0
  7. data/examples/rails-workflow-test.graffle/image2.png +0 -0
  8. data/examples/rails-workflow-test.graffle/image3.png +0 -0
  9. data/examples/rails-workflow-test.rb +40 -0
  10. data/graffle.tmproj +431 -2
  11. data/lib/graffle/stereotypes.rb +15 -4
  12. data/lib/graffle/styled-text-reader.rb +3 -0
  13. data/lib/graffle/version.rb +1 -1
  14. data/lib/graphical_tests_for_rails.rb +25 -0
  15. data/lib/graphical_tests_for_rails/interpreters.rb +147 -0
  16. data/lib/graphical_tests_for_rails/orderings.rb +101 -0
  17. data/test/graffle-file-types/opening-tests.rb +0 -1
  18. data/test/graphical_tests_for_rails/graphic-interpreter-tests.rb +131 -0
  19. data/test/graphical_tests_for_rails/in-workflow-order-tests.rb +165 -0
  20. data/test/{grails-tests/commands-from-quoted-args-tests.rb → graphical_tests_for_rails/text-interpreter-tests.rb} +38 -27
  21. data/test/line-graphic-tests.rb +8 -0
  22. data/test/sheet-tests.rb +18 -0
  23. data/test/tests-of-examples/workflow-slowtests.rb +19 -0
  24. metadata +20 -18
  25. data/bin/bin-skeleton +0 -13
  26. data/lib/graffle/lib-skeleton +0 -3
  27. data/lib/grail_test.rb +0 -16
  28. data/lib/grail_test/command-interpreters.rb +0 -78
  29. data/test/grails-tests/destinations-tests.rb +0 -19
  30. data/test/grails-tests/do-nothing-commands-tests.rb +0 -18
  31. data/test/grails-tests/graphic-interpreter-tests.rb +0 -70
  32. data/test/grails-tests/translation-testcase.rb +0 -25
  33. data/test/test-skeleton +0 -19
@@ -1,7 +1,8 @@
1
+ Version 0.1.8
2
+ * Can now trace workflows in documents.
3
+ * A rails-ish example added.
4
+ * Test failures produce helpful traceback.
5
+
1
6
  Version 0.1.7
2
7
  * Use the s4t-utils gem instead of including it.
3
8
  * Beginning support for converting text to method calls
4
- (under grails_test)
5
-
6
- Version 0.1.0
7
- * Basic version can talk about lines, boxes, sheets, etc.
@@ -4,18 +4,23 @@ Manifest.txt
4
4
  README.txt
5
5
  Rakefile
6
6
  Rakefile.hoe
7
- bin/bin-skeleton
7
+ examples/rails-workflow-test.expected
8
+ examples/rails-workflow-test.graffle/data.plist
9
+ examples/rails-workflow-test.graffle/image1.png
10
+ examples/rails-workflow-test.graffle/image2.png
11
+ examples/rails-workflow-test.graffle/image3.png
12
+ examples/rails-workflow-test.rb
8
13
  graffle.tmproj
9
14
  lib/graffle.rb
10
15
  lib/graffle/.document
11
- lib/graffle/lib-skeleton
12
16
  lib/graffle/nodoc/hacks.rb
13
17
  lib/graffle/point.rb
14
18
  lib/graffle/stereotypes.rb
15
19
  lib/graffle/styled-text-reader.rb
16
20
  lib/graffle/version.rb
17
- lib/grail_test.rb
18
- lib/grail_test/command-interpreters.rb
21
+ lib/graphical_tests_for_rails.rb
22
+ lib/graphical_tests_for_rails/interpreters.rb
23
+ lib/graphical_tests_for_rails/orderings.rb
19
24
  setup.rb
20
25
  test/abstract-graphic-tests.rb
21
26
  test/array-and-hash-stereotyping-tests.rb
@@ -27,11 +32,9 @@ test/graffle-file-types/as-a-package.graffle/image3.png
27
32
  test/graffle-file-types/multiple-canvases.graffle
28
33
  test/graffle-file-types/opening-tests.rb
29
34
  test/graffle-file-types/two-boxes-and-a-line.graffle
30
- test/grails-tests/commands-from-quoted-args-tests.rb
31
- test/grails-tests/destinations-tests.rb
32
- test/grails-tests/do-nothing-commands-tests.rb
33
- test/grails-tests/graphic-interpreter-tests.rb
34
- test/grails-tests/translation-testcase.rb
35
+ test/graphical_tests_for_rails/graphic-interpreter-tests.rb
36
+ test/graphical_tests_for_rails/in-workflow-order-tests.rb
37
+ test/graphical_tests_for_rails/text-interpreter-tests.rb
35
38
  test/group-tests.rb
36
39
  test/hacks-tests.rb
37
40
  test/line-graphic-tests.rb
@@ -40,6 +43,6 @@ test/set-standalone-test-paths.rb
40
43
  test/shaped-graphic-tests.rb
41
44
  test/sheet-tests.rb
42
45
  test/styled-text-reader-tests.rb
43
- test/test-skeleton
46
+ test/tests-of-examples/workflow-slowtests.rb
44
47
  test/text-tests.rb
45
48
  test/util.rb
@@ -22,7 +22,7 @@ Hoe.new("graffle", Graffle::Version) do |p|
22
22
  ['plist', '>= 3.0.0'],
23
23
  ['s4t-utils', '>= 1.0.0']]
24
24
  p.test_globs = "test/**/*-tests.rb"
25
- p.rdoc_pattern = %r{README.txt|History.txt|lib/grail_test.rb|lib/graffle.rb|#{second_level_to_document}|lib/grail_test/.+\.rb}
25
+ p.rdoc_pattern = %r{README.txt|History.txt|lib/graphical_tests_for_rails.rb|lib/graffle.rb|#{second_level_to_document}|lib/graphical_tests_for_rails/.+\.rb}
26
26
  p.url = "http://graffle.rubyforge.org"
27
27
  p.remote_rdoc_dir = 'rdoc'
28
28
  end
@@ -0,0 +1,10 @@
1
+ john_visits_home_page()
2
+ john_follows("sign up")
3
+ assert_on_page("signup")
4
+ john_signs_up_as("john", "john@example.com", "sloop")
5
+ assert_on_page("welcome")
6
+ john_waits_for_activation_email()
7
+ john_clicks_on_url_ending_in_activation_code()
8
+ assert_on_page("login")
9
+ john_logs_in_as("john", "sloop")
10
+ assert_on_page("member")
@@ -0,0 +1,1033 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>ActiveLayerIndex</key>
6
+ <integer>0</integer>
7
+ <key>AutoAdjust</key>
8
+ <true/>
9
+ <key>CanvasColor</key>
10
+ <dict>
11
+ <key>w</key>
12
+ <string>1</string>
13
+ </dict>
14
+ <key>CanvasOrigin</key>
15
+ <string>{0, 0}</string>
16
+ <key>CanvasScale</key>
17
+ <real>1</real>
18
+ <key>ColumnAlign</key>
19
+ <integer>1</integer>
20
+ <key>ColumnSpacing</key>
21
+ <real>36</real>
22
+ <key>CreationDate</key>
23
+ <string>2007-06-13 12:12:09 -0500</string>
24
+ <key>Creator</key>
25
+ <string>Brian Marick</string>
26
+ <key>DisplayScale</key>
27
+ <string>1 in = 1 in</string>
28
+ <key>GraphDocumentVersion</key>
29
+ <integer>5</integer>
30
+ <key>GraphicsList</key>
31
+ <array>
32
+ <dict>
33
+ <key>Bounds</key>
34
+ <string>{{204.628, 538.581}, {169, 24}}</string>
35
+ <key>Class</key>
36
+ <string>ShapedGraphic</string>
37
+ <key>FitText</key>
38
+ <string>YES</string>
39
+ <key>FontInfo</key>
40
+ <dict>
41
+ <key>Color</key>
42
+ <dict>
43
+ <key>w</key>
44
+ <string>0</string>
45
+ </dict>
46
+ <key>Font</key>
47
+ <string>Helvetica</string>
48
+ <key>Size</key>
49
+ <real>12</real>
50
+ </dict>
51
+ <key>ID</key>
52
+ <integer>206</integer>
53
+ <key>Line</key>
54
+ <dict>
55
+ <key>ID</key>
56
+ <integer>196</integer>
57
+ <key>Position</key>
58
+ <real>0.77188819646835327</real>
59
+ <key>RotationType</key>
60
+ <integer>0</integer>
61
+ </dict>
62
+ <key>Shape</key>
63
+ <string>Rectangle</string>
64
+ <key>Style</key>
65
+ <dict>
66
+ <key>shadow</key>
67
+ <dict>
68
+ <key>Draws</key>
69
+ <string>NO</string>
70
+ </dict>
71
+ <key>stroke</key>
72
+ <dict>
73
+ <key>Draws</key>
74
+ <string>NO</string>
75
+ </dict>
76
+ </dict>
77
+ <key>Text</key>
78
+ <dict>
79
+ <key>Text</key>
80
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
81
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
82
+ {\colortbl;\red255\green255\blue255;}
83
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
84
+
85
+ \f0\fs24 \cf0 John logs in as "john", "sloop"}</string>
86
+ <key>VerticalPad</key>
87
+ <integer>5</integer>
88
+ </dict>
89
+ </dict>
90
+ <dict>
91
+ <key>Bounds</key>
92
+ <string>{{169.07, 218.138}, {387, 14}}</string>
93
+ <key>Class</key>
94
+ <string>ShapedGraphic</string>
95
+ <key>FitText</key>
96
+ <string>YES</string>
97
+ <key>FontInfo</key>
98
+ <dict>
99
+ <key>Color</key>
100
+ <dict>
101
+ <key>w</key>
102
+ <string>0</string>
103
+ </dict>
104
+ <key>Font</key>
105
+ <string>Helvetica</string>
106
+ <key>Size</key>
107
+ <real>12</real>
108
+ </dict>
109
+ <key>ID</key>
110
+ <integer>201</integer>
111
+ <key>Line</key>
112
+ <dict>
113
+ <key>ID</key>
114
+ <integer>188</integer>
115
+ <key>Offset</key>
116
+ <real>23.661972045898438</real>
117
+ <key>Position</key>
118
+ <real>0.14361701905727386</real>
119
+ <key>RotationType</key>
120
+ <integer>0</integer>
121
+ </dict>
122
+ <key>Shape</key>
123
+ <string>Rectangle</string>
124
+ <key>Style</key>
125
+ <dict>
126
+ <key>shadow</key>
127
+ <dict>
128
+ <key>Draws</key>
129
+ <string>NO</string>
130
+ </dict>
131
+ <key>stroke</key>
132
+ <dict>
133
+ <key>Draws</key>
134
+ <string>NO</string>
135
+ </dict>
136
+ </dict>
137
+ <key>Text</key>
138
+ <dict>
139
+ <key>Text</key>
140
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
141
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
142
+ {\colortbl;\red255\green255\blue255;}
143
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
144
+
145
+ \f0\fs24 \cf0 John signs up as "john", email "john@example.com", password "sloop"}</string>
146
+ </dict>
147
+ </dict>
148
+ <dict>
149
+ <key>Bounds</key>
150
+ <string>{{28.785, 30.4289}, {127, 14}}</string>
151
+ <key>Class</key>
152
+ <string>ShapedGraphic</string>
153
+ <key>FitText</key>
154
+ <string>YES</string>
155
+ <key>FontInfo</key>
156
+ <dict>
157
+ <key>Color</key>
158
+ <dict>
159
+ <key>w</key>
160
+ <string>0</string>
161
+ </dict>
162
+ <key>Font</key>
163
+ <string>Helvetica</string>
164
+ <key>Size</key>
165
+ <real>12</real>
166
+ </dict>
167
+ <key>ID</key>
168
+ <integer>200</integer>
169
+ <key>Line</key>
170
+ <dict>
171
+ <key>ID</key>
172
+ <integer>182</integer>
173
+ <key>Offset</key>
174
+ <real>-13</real>
175
+ <key>Position</key>
176
+ <real>0.50669318437576294</real>
177
+ <key>RotationType</key>
178
+ <integer>0</integer>
179
+ </dict>
180
+ <key>Shape</key>
181
+ <string>Rectangle</string>
182
+ <key>Style</key>
183
+ <dict>
184
+ <key>shadow</key>
185
+ <dict>
186
+ <key>Draws</key>
187
+ <string>NO</string>
188
+ </dict>
189
+ <key>stroke</key>
190
+ <dict>
191
+ <key>Draws</key>
192
+ <string>NO</string>
193
+ </dict>
194
+ </dict>
195
+ <key>Text</key>
196
+ <dict>
197
+ <key>Text</key>
198
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
199
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
200
+ {\colortbl;\red255\green255\blue255;}
201
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
202
+
203
+ \f0\fs24 \cf0 john visits home page}</string>
204
+ </dict>
205
+ </dict>
206
+ <dict>
207
+ <key>Bounds</key>
208
+ <string>{{220.411, 589.218}, {109.646, 87}}</string>
209
+ <key>Class</key>
210
+ <string>ShapedGraphic</string>
211
+ <key>ID</key>
212
+ <integer>198</integer>
213
+ <key>ImageID</key>
214
+ <integer>2</integer>
215
+ <key>Magnets</key>
216
+ <array>
217
+ <string>{-0.685994, -1.14332}</string>
218
+ <string>{-0.261488, -1.30744}</string>
219
+ <string>{0.261487, -1.30744}</string>
220
+ <string>{0.685993, -1.14332}</string>
221
+ <string>{1.14332, -0.685995}</string>
222
+ <string>{1.30744, -0.261489}</string>
223
+ <string>{1.30744, 0.261488}</string>
224
+ <string>{1.14332, 0.685993}</string>
225
+ <string>{0.685994, 1.14332}</string>
226
+ <string>{0.261488, 1.30744}</string>
227
+ <string>{-0.261489, 1.30744}</string>
228
+ <string>{-0.685995, 1.14332}</string>
229
+ <string>{-1.14332, 0.685993}</string>
230
+ <string>{-1.30744, 0.261488}</string>
231
+ <string>{-1.30744, -0.261489}</string>
232
+ <string>{-1.14332, -0.685994}</string>
233
+ </array>
234
+ <key>Shape</key>
235
+ <string>Rectangle</string>
236
+ <key>Style</key>
237
+ <dict>
238
+ <key>fill</key>
239
+ <dict>
240
+ <key>Draws</key>
241
+ <string>NO</string>
242
+ </dict>
243
+ <key>shadow</key>
244
+ <dict>
245
+ <key>Draws</key>
246
+ <string>NO</string>
247
+ </dict>
248
+ <key>stroke</key>
249
+ <dict>
250
+ <key>Draws</key>
251
+ <string>NO</string>
252
+ </dict>
253
+ </dict>
254
+ <key>Text</key>
255
+ <dict>
256
+ <key>Text</key>
257
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
258
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
259
+ {\colortbl;\red255\green255\blue255;}
260
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
261
+
262
+ \f0\fs24 \cf0 MEMBER}</string>
263
+ </dict>
264
+ <key>TextRelativeArea</key>
265
+ <string>{{0, 0.1}, {1, 1}}</string>
266
+ </dict>
267
+ <dict>
268
+ <key>Class</key>
269
+ <string>LineGraphic</string>
270
+ <key>Head</key>
271
+ <dict>
272
+ <key>ID</key>
273
+ <integer>198</integer>
274
+ </dict>
275
+ <key>ID</key>
276
+ <integer>196</integer>
277
+ <key>Points</key>
278
+ <array>
279
+ <string>{377, 495.428}</string>
280
+ <string>{300.369, 512}</string>
281
+ <string>{286.198, 589.218}</string>
282
+ </array>
283
+ <key>Style</key>
284
+ <dict>
285
+ <key>stroke</key>
286
+ <dict>
287
+ <key>HeadArrow</key>
288
+ <string>FilledArrow</string>
289
+ <key>LineType</key>
290
+ <integer>1</integer>
291
+ <key>TailArrow</key>
292
+ <string>0</string>
293
+ </dict>
294
+ </dict>
295
+ <key>Tail</key>
296
+ <dict>
297
+ <key>ID</key>
298
+ <integer>191</integer>
299
+ </dict>
300
+ </dict>
301
+ <dict>
302
+ <key>Bounds</key>
303
+ <string>{{189.156, 410.32}, {252, 14}}</string>
304
+ <key>Class</key>
305
+ <string>ShapedGraphic</string>
306
+ <key>FitText</key>
307
+ <string>YES</string>
308
+ <key>FontInfo</key>
309
+ <dict>
310
+ <key>Color</key>
311
+ <dict>
312
+ <key>w</key>
313
+ <string>0</string>
314
+ </dict>
315
+ <key>Font</key>
316
+ <string>Helvetica</string>
317
+ <key>Size</key>
318
+ <real>12</real>
319
+ </dict>
320
+ <key>ID</key>
321
+ <integer>194</integer>
322
+ <key>Line</key>
323
+ <dict>
324
+ <key>ID</key>
325
+ <integer>193</integer>
326
+ <key>Offset</key>
327
+ <real>-26</real>
328
+ <key>Position</key>
329
+ <real>0.6466825008392334</real>
330
+ <key>RotationType</key>
331
+ <integer>0</integer>
332
+ </dict>
333
+ <key>Shape</key>
334
+ <string>Rectangle</string>
335
+ <key>Style</key>
336
+ <dict>
337
+ <key>shadow</key>
338
+ <dict>
339
+ <key>Draws</key>
340
+ <string>NO</string>
341
+ </dict>
342
+ <key>stroke</key>
343
+ <dict>
344
+ <key>Draws</key>
345
+ <string>NO</string>
346
+ </dict>
347
+ </dict>
348
+ <key>Text</key>
349
+ <dict>
350
+ <key>Text</key>
351
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
352
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
353
+ {\colortbl;\red255\green255\blue255;}
354
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
355
+
356
+ \f0\fs24 \cf0 John clicks on URL ending in activation code }</string>
357
+ </dict>
358
+ </dict>
359
+ <dict>
360
+ <key>Class</key>
361
+ <string>LineGraphic</string>
362
+ <key>Head</key>
363
+ <dict>
364
+ <key>ID</key>
365
+ <integer>191</integer>
366
+ </dict>
367
+ <key>ID</key>
368
+ <integer>193</integer>
369
+ <key>Points</key>
370
+ <array>
371
+ <string>{175.083, 431.052}</string>
372
+ <string>{262.369, 433.057}</string>
373
+ <string>{326.369, 447.114}</string>
374
+ <string>{377, 460.628}</string>
375
+ </array>
376
+ <key>Style</key>
377
+ <dict>
378
+ <key>stroke</key>
379
+ <dict>
380
+ <key>HeadArrow</key>
381
+ <string>FilledArrow</string>
382
+ <key>LineType</key>
383
+ <integer>1</integer>
384
+ <key>TailArrow</key>
385
+ <string>0</string>
386
+ </dict>
387
+ </dict>
388
+ <key>Tail</key>
389
+ <dict>
390
+ <key>ID</key>
391
+ <integer>190</integer>
392
+ </dict>
393
+ </dict>
394
+ <dict>
395
+ <key>Bounds</key>
396
+ <string>{{377, 443.228}, {109.646, 87}}</string>
397
+ <key>Class</key>
398
+ <string>ShapedGraphic</string>
399
+ <key>ID</key>
400
+ <integer>191</integer>
401
+ <key>ImageID</key>
402
+ <integer>2</integer>
403
+ <key>Magnets</key>
404
+ <array>
405
+ <string>{-0.685994, -1.14332}</string>
406
+ <string>{-0.261488, -1.30744}</string>
407
+ <string>{0.261487, -1.30744}</string>
408
+ <string>{0.685993, -1.14332}</string>
409
+ <string>{1.14332, -0.685995}</string>
410
+ <string>{1.30744, -0.261489}</string>
411
+ <string>{1.30744, 0.261488}</string>
412
+ <string>{1.14332, 0.685993}</string>
413
+ <string>{0.685994, 1.14332}</string>
414
+ <string>{0.261488, 1.30744}</string>
415
+ <string>{-0.261489, 1.30744}</string>
416
+ <string>{-0.685995, 1.14332}</string>
417
+ <string>{-1.14332, 0.685993}</string>
418
+ <string>{-1.30744, 0.261488}</string>
419
+ <string>{-1.30744, -0.261489}</string>
420
+ <string>{-1.14332, -0.685994}</string>
421
+ </array>
422
+ <key>Shape</key>
423
+ <string>Rectangle</string>
424
+ <key>Style</key>
425
+ <dict>
426
+ <key>fill</key>
427
+ <dict>
428
+ <key>Draws</key>
429
+ <string>NO</string>
430
+ </dict>
431
+ <key>shadow</key>
432
+ <dict>
433
+ <key>Draws</key>
434
+ <string>NO</string>
435
+ </dict>
436
+ <key>stroke</key>
437
+ <dict>
438
+ <key>Draws</key>
439
+ <string>NO</string>
440
+ </dict>
441
+ </dict>
442
+ <key>Text</key>
443
+ <dict>
444
+ <key>Text</key>
445
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
446
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
447
+ {\colortbl;\red255\green255\blue255;}
448
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
449
+
450
+ \f0\fs24 \cf0 LOGIN}</string>
451
+ </dict>
452
+ <key>TextRelativeArea</key>
453
+ <string>{{0, 0.1}, {1, 1}}</string>
454
+ </dict>
455
+ <dict>
456
+ <key>Bounds</key>
457
+ <string>{{67.3463, 386.314}, {107.737, 87}}</string>
458
+ <key>Class</key>
459
+ <string>ShapedGraphic</string>
460
+ <key>ID</key>
461
+ <integer>190</integer>
462
+ <key>ImageID</key>
463
+ <integer>3</integer>
464
+ <key>Shape</key>
465
+ <string>Rectangle</string>
466
+ <key>Style</key>
467
+ <dict>
468
+ <key>fill</key>
469
+ <dict>
470
+ <key>Draws</key>
471
+ <string>NO</string>
472
+ </dict>
473
+ <key>shadow</key>
474
+ <dict>
475
+ <key>Draws</key>
476
+ <string>NO</string>
477
+ </dict>
478
+ <key>stroke</key>
479
+ <dict>
480
+ <key>Draws</key>
481
+ <string>NO</string>
482
+ </dict>
483
+ </dict>
484
+ </dict>
485
+ <dict>
486
+ <key>Bounds</key>
487
+ <string>{{183.234, 344.314}, {184, 14}}</string>
488
+ <key>Class</key>
489
+ <string>ShapedGraphic</string>
490
+ <key>FitText</key>
491
+ <string>YES</string>
492
+ <key>Flow</key>
493
+ <string>Resize</string>
494
+ <key>FontInfo</key>
495
+ <dict>
496
+ <key>Color</key>
497
+ <dict>
498
+ <key>w</key>
499
+ <string>0</string>
500
+ </dict>
501
+ <key>Font</key>
502
+ <string>Helvetica</string>
503
+ <key>Size</key>
504
+ <real>12</real>
505
+ </dict>
506
+ <key>ID</key>
507
+ <integer>179</integer>
508
+ <key>Notes</key>
509
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
510
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
511
+ {\colortbl;\red255\green255\blue255;}
512
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
513
+
514
+ \f0\fs24 \cf0 type: button\
515
+ name: run\
516
+ active: no}</string>
517
+ <key>Shape</key>
518
+ <string>Rectangle</string>
519
+ <key>Style</key>
520
+ <dict>
521
+ <key>fill</key>
522
+ <dict>
523
+ <key>Color</key>
524
+ <dict>
525
+ <key>b</key>
526
+ <string>0.901961</string>
527
+ <key>g</key>
528
+ <string>0.901961</string>
529
+ <key>r</key>
530
+ <string>0.901961</string>
531
+ </dict>
532
+ <key>Draws</key>
533
+ <string>NO</string>
534
+ </dict>
535
+ <key>shadow</key>
536
+ <dict>
537
+ <key>Draws</key>
538
+ <string>NO</string>
539
+ </dict>
540
+ <key>stroke</key>
541
+ <dict>
542
+ <key>Color</key>
543
+ <dict>
544
+ <key>b</key>
545
+ <string>0.592391</string>
546
+ <key>g</key>
547
+ <string>0.592391</string>
548
+ <key>r</key>
549
+ <string>0.592391</string>
550
+ </dict>
551
+ <key>Draws</key>
552
+ <string>NO</string>
553
+ </dict>
554
+ </dict>
555
+ <key>Text</key>
556
+ <dict>
557
+ <key>Text</key>
558
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
559
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
560
+ {\colortbl;\red255\green255\blue255;}
561
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
562
+
563
+ \f0\fs24 \cf0 John waits for activation email... }</string>
564
+ </dict>
565
+ <key>Wrap</key>
566
+ <string>NO</string>
567
+ </dict>
568
+ <dict>
569
+ <key>Class</key>
570
+ <string>LineGraphic</string>
571
+ <key>Head</key>
572
+ <dict>
573
+ <key>ID</key>
574
+ <integer>187</integer>
575
+ </dict>
576
+ <key>ID</key>
577
+ <integer>188</integer>
578
+ <key>Points</key>
579
+ <array>
580
+ <string>{365.739, 183.41}</string>
581
+ <string>{328.369, 213}</string>
582
+ <string>{176.038, 211}</string>
583
+ <string>{154.569, 239}</string>
584
+ </array>
585
+ <key>Style</key>
586
+ <dict>
587
+ <key>stroke</key>
588
+ <dict>
589
+ <key>HeadArrow</key>
590
+ <string>FilledArrow</string>
591
+ <key>LineType</key>
592
+ <integer>1</integer>
593
+ <key>TailArrow</key>
594
+ <string>0</string>
595
+ </dict>
596
+ </dict>
597
+ <key>Tail</key>
598
+ <dict>
599
+ <key>ID</key>
600
+ <integer>184</integer>
601
+ </dict>
602
+ </dict>
603
+ <dict>
604
+ <key>Bounds</key>
605
+ <string>{{66.3918, 239}, {109.646, 87}}</string>
606
+ <key>Class</key>
607
+ <string>ShapedGraphic</string>
608
+ <key>ID</key>
609
+ <integer>187</integer>
610
+ <key>ImageID</key>
611
+ <integer>2</integer>
612
+ <key>Shape</key>
613
+ <string>Rectangle</string>
614
+ <key>Style</key>
615
+ <dict>
616
+ <key>fill</key>
617
+ <dict>
618
+ <key>Draws</key>
619
+ <string>NO</string>
620
+ </dict>
621
+ <key>shadow</key>
622
+ <dict>
623
+ <key>Draws</key>
624
+ <string>NO</string>
625
+ </dict>
626
+ <key>stroke</key>
627
+ <dict>
628
+ <key>Draws</key>
629
+ <string>NO</string>
630
+ </dict>
631
+ </dict>
632
+ <key>Text</key>
633
+ <dict>
634
+ <key>Text</key>
635
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
636
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
637
+ {\colortbl;\red255\green255\blue255;}
638
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
639
+
640
+ \f0\fs24 \cf0 WELCOME}</string>
641
+ </dict>
642
+ <key>TextRelativeArea</key>
643
+ <string>{{0, 0.1}, {1, 1}}</string>
644
+ </dict>
645
+ <dict>
646
+ <key>Bounds</key>
647
+ <string>{{201.418, 118.314}, {148, 14}}</string>
648
+ <key>Class</key>
649
+ <string>ShapedGraphic</string>
650
+ <key>FitText</key>
651
+ <string>YES</string>
652
+ <key>FontInfo</key>
653
+ <dict>
654
+ <key>Color</key>
655
+ <dict>
656
+ <key>w</key>
657
+ <string>0</string>
658
+ </dict>
659
+ <key>Font</key>
660
+ <string>Helvetica</string>
661
+ <key>Size</key>
662
+ <real>12</real>
663
+ </dict>
664
+ <key>ID</key>
665
+ <integer>186</integer>
666
+ <key>Line</key>
667
+ <dict>
668
+ <key>ID</key>
669
+ <integer>185</integer>
670
+ <key>Offset</key>
671
+ <real>-12</real>
672
+ <key>Position</key>
673
+ <real>0.49937888979911804</real>
674
+ <key>RotationType</key>
675
+ <integer>0</integer>
676
+ </dict>
677
+ <key>Shape</key>
678
+ <string>Rectangle</string>
679
+ <key>Style</key>
680
+ <dict>
681
+ <key>shadow</key>
682
+ <dict>
683
+ <key>Draws</key>
684
+ <string>NO</string>
685
+ </dict>
686
+ <key>stroke</key>
687
+ <dict>
688
+ <key>Draws</key>
689
+ <string>NO</string>
690
+ </dict>
691
+ </dict>
692
+ <key>Text</key>
693
+ <dict>
694
+ <key>Text</key>
695
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
696
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
697
+ {\colortbl;\red255\green255\blue255;}
698
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
699
+
700
+ \f0\fs24 \cf0 John follows "sign up" link}</string>
701
+ </dict>
702
+ </dict>
703
+ <dict>
704
+ <key>Class</key>
705
+ <string>LineGraphic</string>
706
+ <key>Head</key>
707
+ <dict>
708
+ <key>ID</key>
709
+ <integer>184</integer>
710
+ </dict>
711
+ <key>ID</key>
712
+ <integer>185</integer>
713
+ <key>Points</key>
714
+ <array>
715
+ <string>{184.878, 135.642}</string>
716
+ <string>{365.739, 138.986}</string>
717
+ </array>
718
+ <key>Style</key>
719
+ <dict>
720
+ <key>stroke</key>
721
+ <dict>
722
+ <key>HeadArrow</key>
723
+ <string>FilledArrow</string>
724
+ <key>LineType</key>
725
+ <integer>1</integer>
726
+ <key>TailArrow</key>
727
+ <string>0</string>
728
+ </dict>
729
+ </dict>
730
+ <key>Tail</key>
731
+ <dict>
732
+ <key>ID</key>
733
+ <integer>180</integer>
734
+ </dict>
735
+ </dict>
736
+ <dict>
737
+ <key>Bounds</key>
738
+ <string>{{365.739, 96.5}, {109.646, 87}}</string>
739
+ <key>Class</key>
740
+ <string>ShapedGraphic</string>
741
+ <key>ID</key>
742
+ <integer>184</integer>
743
+ <key>ImageID</key>
744
+ <integer>2</integer>
745
+ <key>Shape</key>
746
+ <string>Rectangle</string>
747
+ <key>Style</key>
748
+ <dict>
749
+ <key>fill</key>
750
+ <dict>
751
+ <key>Draws</key>
752
+ <string>NO</string>
753
+ </dict>
754
+ <key>shadow</key>
755
+ <dict>
756
+ <key>Draws</key>
757
+ <string>NO</string>
758
+ </dict>
759
+ <key>stroke</key>
760
+ <dict>
761
+ <key>Draws</key>
762
+ <string>NO</string>
763
+ </dict>
764
+ </dict>
765
+ <key>Text</key>
766
+ <dict>
767
+ <key>Text</key>
768
+ <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
769
+ {\fonttbl\f0\fswiss\fcharset77 Helvetica;}
770
+ {\colortbl;\red255\green255\blue255;}
771
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
772
+
773
+ \f0\fs24 \cf0 SIGNUP}</string>
774
+ </dict>
775
+ <key>TextRelativeArea</key>
776
+ <string>{{0, 0.1}, {1, 1}}</string>
777
+ </dict>
778
+ <dict>
779
+ <key>Class</key>
780
+ <string>LineGraphic</string>
781
+ <key>Head</key>
782
+ <dict>
783
+ <key>ID</key>
784
+ <integer>180</integer>
785
+ </dict>
786
+ <key>ID</key>
787
+ <integer>182</integer>
788
+ <key>Points</key>
789
+ <array>
790
+ <string>{31.3693, 50}</string>
791
+ <string>{97.3693, 51}</string>
792
+ <string>{116.369, 62}</string>
793
+ <string>{118.559, 85.5}</string>
794
+ </array>
795
+ <key>Style</key>
796
+ <dict>
797
+ <key>stroke</key>
798
+ <dict>
799
+ <key>HeadArrow</key>
800
+ <string>FilledArrow</string>
801
+ <key>LineType</key>
802
+ <integer>1</integer>
803
+ <key>TailArrow</key>
804
+ <string>0</string>
805
+ </dict>
806
+ </dict>
807
+ </dict>
808
+ <dict>
809
+ <key>Bounds</key>
810
+ <string>{{61.3693, 85.5}, {123.509, 98}}</string>
811
+ <key>Class</key>
812
+ <string>ShapedGraphic</string>
813
+ <key>ID</key>
814
+ <integer>180</integer>
815
+ <key>ImageID</key>
816
+ <integer>1</integer>
817
+ <key>Shape</key>
818
+ <string>Rectangle</string>
819
+ <key>Style</key>
820
+ <dict>
821
+ <key>fill</key>
822
+ <dict>
823
+ <key>Draws</key>
824
+ <string>NO</string>
825
+ </dict>
826
+ <key>shadow</key>
827
+ <dict>
828
+ <key>Draws</key>
829
+ <string>NO</string>
830
+ </dict>
831
+ <key>stroke</key>
832
+ <dict>
833
+ <key>Draws</key>
834
+ <string>NO</string>
835
+ </dict>
836
+ </dict>
837
+ </dict>
838
+ </array>
839
+ <key>GridInfo</key>
840
+ <dict/>
841
+ <key>GuidesLocked</key>
842
+ <string>NO</string>
843
+ <key>GuidesVisible</key>
844
+ <string>YES</string>
845
+ <key>HPages</key>
846
+ <integer>1</integer>
847
+ <key>ImageCounter</key>
848
+ <integer>4</integer>
849
+ <key>ImageLinkBack</key>
850
+ <array>
851
+ <dict/>
852
+ <dict/>
853
+ <dict/>
854
+ </array>
855
+ <key>ImageList</key>
856
+ <array>
857
+ <string>image2.png</string>
858
+ <string>image3.png</string>
859
+ <string>image1.png</string>
860
+ </array>
861
+ <key>IsPalette</key>
862
+ <string>NO</string>
863
+ <key>KeepToScale</key>
864
+ <false/>
865
+ <key>Layers</key>
866
+ <array>
867
+ <dict>
868
+ <key>Lock</key>
869
+ <string>NO</string>
870
+ <key>Name</key>
871
+ <string>Layer 1</string>
872
+ <key>Print</key>
873
+ <string>YES</string>
874
+ <key>View</key>
875
+ <string>YES</string>
876
+ </dict>
877
+ </array>
878
+ <key>LayoutInfo</key>
879
+ <dict/>
880
+ <key>LinksVisible</key>
881
+ <string>NO</string>
882
+ <key>MagnetsVisible</key>
883
+ <string>NO</string>
884
+ <key>MasterSheet</key>
885
+ <string>Master 1</string>
886
+ <key>MasterSheets</key>
887
+ <array>
888
+ <dict>
889
+ <key>ActiveLayerIndex</key>
890
+ <integer>0</integer>
891
+ <key>AutoAdjust</key>
892
+ <true/>
893
+ <key>CanvasColor</key>
894
+ <dict>
895
+ <key>w</key>
896
+ <string>1</string>
897
+ </dict>
898
+ <key>CanvasOrigin</key>
899
+ <string>{0, 0}</string>
900
+ <key>CanvasScale</key>
901
+ <real>1</real>
902
+ <key>ColumnAlign</key>
903
+ <integer>1</integer>
904
+ <key>ColumnSpacing</key>
905
+ <real>36</real>
906
+ <key>DisplayScale</key>
907
+ <string>1 in = 1 in</string>
908
+ <key>GraphicsList</key>
909
+ <array/>
910
+ <key>GridInfo</key>
911
+ <dict/>
912
+ <key>HPages</key>
913
+ <integer>1</integer>
914
+ <key>IsPalette</key>
915
+ <string>NO</string>
916
+ <key>KeepToScale</key>
917
+ <false/>
918
+ <key>Layers</key>
919
+ <array>
920
+ <dict>
921
+ <key>Lock</key>
922
+ <string>NO</string>
923
+ <key>Name</key>
924
+ <string>Layer 1</string>
925
+ <key>Print</key>
926
+ <string>YES</string>
927
+ <key>View</key>
928
+ <string>YES</string>
929
+ </dict>
930
+ </array>
931
+ <key>LayoutInfo</key>
932
+ <dict/>
933
+ <key>Orientation</key>
934
+ <integer>2</integer>
935
+ <key>OutlineStyle</key>
936
+ <string>Basic</string>
937
+ <key>RowAlign</key>
938
+ <integer>1</integer>
939
+ <key>RowSpacing</key>
940
+ <real>36</real>
941
+ <key>SheetTitle</key>
942
+ <string>Master 1</string>
943
+ <key>UniqueID</key>
944
+ <integer>1</integer>
945
+ <key>VPages</key>
946
+ <integer>1</integer>
947
+ </dict>
948
+ </array>
949
+ <key>ModificationDate</key>
950
+ <string>2007-07-12 15:17:38 -0500</string>
951
+ <key>Modifier</key>
952
+ <string>Brian Marick</string>
953
+ <key>NotesVisible</key>
954
+ <string>NO</string>
955
+ <key>Orientation</key>
956
+ <integer>2</integer>
957
+ <key>OriginVisible</key>
958
+ <string>NO</string>
959
+ <key>OutlineStyle</key>
960
+ <string>Basic</string>
961
+ <key>PageBreaks</key>
962
+ <string>YES</string>
963
+ <key>PrintInfo</key>
964
+ <dict>
965
+ <key>NSBottomMargin</key>
966
+ <array>
967
+ <string>float</string>
968
+ <string>0</string>
969
+ </array>
970
+ <key>NSLeftMargin</key>
971
+ <array>
972
+ <string>float</string>
973
+ <string>0</string>
974
+ </array>
975
+ <key>NSPaperSize</key>
976
+ <array>
977
+ <string>size</string>
978
+ <string>{612, 792}</string>
979
+ </array>
980
+ <key>NSRightMargin</key>
981
+ <array>
982
+ <string>float</string>
983
+ <string>0</string>
984
+ </array>
985
+ <key>NSTopMargin</key>
986
+ <array>
987
+ <string>float</string>
988
+ <string>0</string>
989
+ </array>
990
+ </dict>
991
+ <key>ReadOnly</key>
992
+ <string>NO</string>
993
+ <key>RowAlign</key>
994
+ <integer>1</integer>
995
+ <key>RowSpacing</key>
996
+ <real>36</real>
997
+ <key>SheetTitle</key>
998
+ <string>Canvas 1</string>
999
+ <key>SmartAlignmentGuidesActive</key>
1000
+ <string>YES</string>
1001
+ <key>SmartDistanceGuidesActive</key>
1002
+ <string>YES</string>
1003
+ <key>UniqueID</key>
1004
+ <integer>1</integer>
1005
+ <key>UseEntirePage</key>
1006
+ <true/>
1007
+ <key>VPages</key>
1008
+ <integer>1</integer>
1009
+ <key>WindowInfo</key>
1010
+ <dict>
1011
+ <key>CurrentSheet</key>
1012
+ <string>0</string>
1013
+ <key>DrawerOpen</key>
1014
+ <false/>
1015
+ <key>DrawerTab</key>
1016
+ <string>Outline</string>
1017
+ <key>DrawerWidth</key>
1018
+ <real>209</real>
1019
+ <key>FitInWindow</key>
1020
+ <false/>
1021
+ <key>Frame</key>
1022
+ <string>{{55, 0}, {594, 746}}</string>
1023
+ <key>ShowRuler</key>
1024
+ <false/>
1025
+ <key>ShowStatusBar</key>
1026
+ <true/>
1027
+ <key>VisibleRegion</key>
1028
+ <string>{{0, 74}, {579, 632}}</string>
1029
+ <key>Zoom</key>
1030
+ <string>1</string>
1031
+ </dict>
1032
+ </dict>
1033
+ </plist>