compass 0.12.alpha.0 → 0.12.alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +1 -1
  3. data/bin/compass +1 -1
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/downloader.rb +3 -2
  6. data/examples/ninesixty/bootstrap.rb +1 -1
  7. data/features/command_line.feature +17 -17
  8. data/features/extensions.feature +6 -0
  9. data/features/step_definitions/command_line_steps.rb +2 -0
  10. data/frameworks/compass/stylesheets/compass/_support.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -24
  12. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +12 -12
  14. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +6 -20
  15. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +38 -24
  16. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  17. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  18. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  19. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  20. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +29 -6
  21. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  22. data/lib/compass.rbc +42 -36
  23. data/lib/compass/actions.rb +0 -1
  24. data/lib/compass/actions.rbc +244 -85
  25. data/lib/compass/app_integration.rbc +28 -20
  26. data/lib/compass/app_integration/merb.rbc +8 -4
  27. data/lib/compass/app_integration/rails.rbc +664 -148
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +23 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +8 -10
  30. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  31. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  32. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  33. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  34. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  35. data/lib/compass/browser_support.rbc +35 -23
  36. data/lib/compass/commands.rbc +307 -0
  37. data/lib/compass/commands/base.rbc +1044 -0
  38. data/lib/compass/commands/clean_project.rbc +1856 -0
  39. data/lib/compass/commands/create_project.rbc +2691 -0
  40. data/lib/compass/commands/default.rbc +1677 -0
  41. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  42. data/lib/compass/commands/help.rbc +1921 -0
  43. data/lib/compass/commands/imports.rbc +969 -0
  44. data/lib/compass/commands/installer_command.rbc +807 -0
  45. data/lib/compass/commands/interactive.rbc +1341 -0
  46. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  47. data/lib/compass/commands/print_version.rbc +2478 -0
  48. data/lib/compass/commands/project_base.rbc +2085 -0
  49. data/lib/compass/commands/project_stats.rb +7 -7
  50. data/lib/compass/commands/project_stats.rbc +4202 -0
  51. data/lib/compass/commands/registry.rbc +1350 -0
  52. data/lib/compass/commands/sprite.rbc +2212 -0
  53. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  54. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  55. data/lib/compass/commands/update_project.rbc +3002 -0
  56. data/lib/compass/commands/validate_project.rbc +1686 -0
  57. data/lib/compass/commands/watch_project.rbc +4155 -0
  58. data/lib/compass/commands/write_configuration.rbc +2896 -0
  59. data/lib/compass/compiler.rb +3 -0
  60. data/lib/compass/compiler.rbc +591 -398
  61. data/lib/compass/configuration.rbc +134 -78
  62. data/lib/compass/configuration/adapters.rbc +98 -40
  63. data/lib/compass/configuration/comments.rbc +132 -51
  64. data/lib/compass/configuration/data.rb +6 -0
  65. data/lib/compass/configuration/data.rbc +541 -551
  66. data/lib/compass/configuration/defaults.rbc +764 -189
  67. data/lib/compass/configuration/file_data.rbc +37 -125
  68. data/lib/compass/configuration/helpers.rb +1 -0
  69. data/lib/compass/configuration/helpers.rbc +433 -153
  70. data/lib/compass/configuration/inheritance.rb +2 -0
  71. data/lib/compass/configuration/inheritance.rbc +412 -165
  72. data/lib/compass/configuration/paths.rbc +9 -9
  73. data/lib/compass/configuration/serialization.rbc +151 -84
  74. data/lib/compass/dependencies.rbc +16 -4
  75. data/lib/compass/errors.rbc +5 -5
  76. data/lib/compass/exec.rbc +500 -0
  77. data/lib/compass/exec/command_option_parser.rbc +676 -0
  78. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  79. data/lib/compass/exec/helpers.rbc +758 -0
  80. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  81. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  82. data/lib/compass/frameworks.rb +10 -4
  83. data/lib/compass/frameworks.rbc +118 -66
  84. data/lib/compass/grid_builder.rbc +0 -0
  85. data/lib/compass/installers.rbc +152 -0
  86. data/lib/compass/installers/bare_installer.rbc +939 -0
  87. data/lib/compass/installers/base.rbc +4427 -0
  88. data/lib/compass/installers/manifest.rbc +3335 -0
  89. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  90. data/lib/compass/installers/template_context.rbc +1030 -0
  91. data/lib/compass/logger.rbc +2317 -0
  92. data/lib/compass/quick_cache.rbc +12 -8
  93. data/lib/compass/sass_extensions.rbc +8 -4
  94. data/lib/compass/sass_extensions/functions.rb +4 -2
  95. data/lib/compass/sass_extensions/functions.rbc +90 -57
  96. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  97. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  98. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  99. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  100. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  101. data/lib/compass/sass_extensions/functions/env.rb +5 -0
  102. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  103. data/lib/compass/sass_extensions/functions/font_files.rb +32 -3
  104. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  105. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  106. data/lib/compass/sass_extensions/functions/image_size.rb +19 -16
  107. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  108. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -1
  109. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  110. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  111. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  112. data/lib/compass/sass_extensions/functions/sprites.rb +27 -4
  113. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  114. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  115. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  116. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  117. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  118. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  119. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  120. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  121. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  122. data/lib/compass/sass_extensions/sprites/image.rb +5 -5
  123. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  124. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  125. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  126. data/lib/compass/sass_extensions/sprites/layout_methods.rb +12 -8
  127. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  128. data/lib/compass/sass_extensions/sprites/row_fitter.rb +7 -1
  129. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  130. data/lib/compass/sass_extensions/sprites/sprite_map.rb +1 -1
  131. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  132. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +24 -4
  133. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  134. data/lib/compass/sprite_importer.rb +15 -80
  135. data/lib/compass/sprite_importer.rbc +1125 -1495
  136. data/lib/compass/sprite_importer/binding.rb +11 -0
  137. data/lib/compass/sprite_importer/content.erb +81 -0
  138. data/lib/compass/util.rbc +19 -11
  139. data/lib/compass/version.rbc +53 -25
  140. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  141. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  142. data/test/fixtures/fonts/bgrove.base64.txt +1 -0
  143. data/test/fixtures/fonts/bgrove.ttf +0 -0
  144. data/test/fixtures/sprites/public/images/bool/false.png +0 -0
  145. data/test/fixtures/sprites/public/images/bool/true.png +0 -0
  146. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -2
  147. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  148. data/test/fixtures/stylesheets/compass/css/border_radius.css +6 -9
  149. data/test/fixtures/stylesheets/compass/css/box.css +0 -19
  150. data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -6
  151. data/test/fixtures/stylesheets/compass/css/columns.css +8 -16
  152. data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -8
  153. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  154. data/test/fixtures/stylesheets/compass/css/pie.css +2 -3
  155. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  156. data/test/fixtures/stylesheets/compass/css/sprites.css +1 -1
  157. data/test/fixtures/stylesheets/compass/css/text_shadow.css +0 -3
  158. data/test/fixtures/stylesheets/compass/css/transform.css +28 -92
  159. data/test/fixtures/stylesheets/compass/css/transition.css +11 -0
  160. data/test/fixtures/stylesheets/compass/css/user-interface.css +4 -0
  161. data/test/fixtures/stylesheets/compass/images/{flag-s8c3c755a68.png → flag-s8f1e8fdb9b.png} +0 -0
  162. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +0 -1
  163. data/test/fixtures/stylesheets/compass/sass/transition.scss +4 -0
  164. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  165. data/test/fixtures/stylesheets/envtest/config.rb +9 -0
  166. data/test/fixtures/stylesheets/envtest/css/env.css +2 -0
  167. data/test/fixtures/stylesheets/envtest/sass/env.scss +3 -0
  168. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  169. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  170. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  171. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  172. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  173. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  174. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  175. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  176. data/test/helpers/command_line.rbc +2820 -0
  177. data/test/helpers/diff.rbc +1104 -0
  178. data/test/helpers/io.rbc +962 -0
  179. data/test/helpers/rails.rbc +1116 -0
  180. data/test/helpers/test_case.rbc +1255 -0
  181. data/test/integrations/compass_test.rb +24 -2
  182. data/test/integrations/compass_test.rbc +6589 -0
  183. data/test/integrations/rails_integration_test.rbc +1342 -0
  184. data/test/integrations/sprites_test.rb +123 -25
  185. data/test/integrations/sprites_test.rbc +6192 -0
  186. data/test/test_helper.rb +7 -5
  187. data/test/test_helper.rbc +1694 -0
  188. data/test/tmp/compass_rails/public/images/{selectors-sef52c5c63a.png → selectors-s4c703bbc05.png} +0 -0
  189. data/test/units/actions_test.rbc +644 -0
  190. data/test/units/command_line_test.rbc +1532 -0
  191. data/test/units/compass_png_test.rbc +0 -0
  192. data/test/units/configuration_test.rbc +3833 -0
  193. data/test/units/rails_configuration_test.rbc +1032 -0
  194. data/test/units/sass_extensions_test.rb +31 -0
  195. data/test/units/sass_extensions_test.rbc +3586 -0
  196. data/test/units/sprites/engine_test.rbc +962 -0
  197. data/test/units/sprites/image_row_test.rbc +1578 -0
  198. data/test/units/sprites/image_test.rb +3 -3
  199. data/test/units/sprites/image_test.rbc +2836 -0
  200. data/test/units/sprites/importer_test.rb +6 -0
  201. data/test/units/sprites/importer_test.rbc +2620 -0
  202. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  203. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  204. data/test/units/sprites/sprite_map_test.rb +19 -6
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +180 -54
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -187,72 +187,29 @@ x
187
187
  8
188
188
  FileData
189
189
  i
190
- 67
190
+ 24
191
191
  5
192
192
  66
193
- 5
194
- 45
195
- 0
196
- 1
197
- 43
198
- 2
199
- 47
200
- 49
201
- 3
202
- 1
203
- 15
204
- 5
205
- 7
206
- 4
207
- 47
208
- 49
209
- 5
210
- 1
211
- 15
212
- 5
213
- 7
214
- 6
215
- 47
216
- 49
217
- 5
218
- 1
219
- 15
220
- 5
221
- 7
222
- 7
223
- 47
224
- 49
225
- 5
226
- 1
227
- 15
228
- 5
229
- 7
230
- 8
231
- 47
232
- 49
233
- 5
234
- 1
235
- 15
236
193
  99
237
194
  7
238
- 9
195
+ 0
239
196
  7
240
- 10
197
+ 1
241
198
  65
242
199
  5
243
200
  49
244
- 11
201
+ 2
245
202
  4
246
203
  15
247
204
  99
248
205
  7
249
- 12
206
+ 3
250
207
  7
251
- 13
208
+ 4
252
209
  65
253
210
  5
254
211
  49
255
- 11
212
+ 2
256
213
  4
257
214
  11
258
215
  I
@@ -265,32 +222,7 @@ I
265
222
  0
266
223
  n
267
224
  p
268
- 14
269
- x
270
- 4
271
- Sass
272
- n
273
- x
274
- 9
275
- Callbacks
276
- x
277
- 6
278
- extend
279
- x
280
- 12
281
- sprite_saved
282
- x
283
- 15
284
- define_callback
285
- x
286
- 16
287
- sprite_generated
288
- x
289
- 16
290
- stylesheet_saved
291
- x
292
- 16
293
- stylesheet_error
225
+ 5
294
226
  x
295
227
  13
296
228
  new_from_file
@@ -418,12 +350,12 @@ p
418
350
  I
419
351
  0
420
352
  I
421
- 1d
353
+ 7
422
354
  I
423
355
  a
424
356
  x
425
- 68
426
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
357
+ 70
358
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
427
359
  p
428
360
  0
429
361
  x
@@ -434,24 +366,24 @@ p
434
366
  I
435
367
  -1
436
368
  I
437
- 1a
369
+ 4
438
370
  I
439
371
  8
440
372
  I
441
- 1b
373
+ 5
442
374
  I
443
375
  26
444
376
  I
445
- 1c
377
+ 6
446
378
  I
447
379
  30
448
380
  I
449
- 1f
381
+ 9
450
382
  I
451
383
  33
452
384
  x
453
- 68
454
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
385
+ 70
386
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
455
387
  p
456
388
  3
457
389
  x
@@ -596,12 +528,12 @@ p
596
528
  I
597
529
  0
598
530
  I
599
- 25
531
+ f
600
532
  I
601
533
  d
602
534
  x
603
- 68
604
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
535
+ 70
536
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
605
537
  p
606
538
  0
607
539
  x
@@ -612,24 +544,24 @@ p
612
544
  I
613
545
  -1
614
546
  I
615
- 22
547
+ c
616
548
  I
617
549
  8
618
550
  I
619
- 23
551
+ d
620
552
  I
621
553
  26
622
554
  I
623
- 24
555
+ e
624
556
  I
625
557
  30
626
558
  I
627
- 27
559
+ 11
628
560
  I
629
561
  33
630
562
  x
631
- 68
632
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
563
+ 70
564
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
633
565
  p
634
566
  4
635
567
  x
@@ -645,7 +577,7 @@ x
645
577
  4
646
578
  data
647
579
  p
648
- 15
580
+ 5
649
581
  I
650
582
  2
651
583
  I
@@ -653,32 +585,12 @@ I
653
585
  I
654
586
  d
655
587
  I
656
- 9
657
- I
658
- 15
659
- I
660
- e
661
- I
662
- 1d
663
- I
664
- 13
665
- I
666
- 25
588
+ c
667
589
  I
668
590
  18
669
- I
670
- 2d
671
- I
672
- 1a
673
- I
674
- 38
675
- I
676
- 22
677
- I
678
- 43
679
591
  x
680
- 68
681
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
592
+ 70
593
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
682
594
  p
683
595
  0
684
596
  x
@@ -693,8 +605,8 @@ I
693
605
  I
694
606
  1f
695
607
  x
696
- 68
697
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
608
+ 70
609
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
698
610
  p
699
611
  0
700
612
  x
@@ -709,8 +621,8 @@ I
709
621
  I
710
622
  1c
711
623
  x
712
- 68
713
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
624
+ 70
625
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
714
626
  p
715
627
  0
716
628
  x
@@ -725,7 +637,7 @@ I
725
637
  I
726
638
  1c
727
639
  x
728
- 68
729
- /Users/chris/Projects/compass/lib/compass/configuration/file_data.rb
640
+ 70
641
+ /Users/crispee/Projects/compass/lib/compass/configuration/file_data.rb
730
642
  p
731
643
  0
@@ -78,6 +78,7 @@ module Compass
78
78
  end
79
79
 
80
80
  def configure_rails!(app)
81
+ return unless app.config.respond_to?(:sass)
81
82
  app.config.compass.to_sass_engine_options.each do |key, value|
82
83
  app.config.sass.send(:"#{key}=", value)
83
84
  end
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -198,7 +198,7 @@ x
198
198
  7
199
199
  Helpers
200
200
  i
201
- 236
201
+ 250
202
202
  5
203
203
  66
204
204
  99
@@ -369,15 +369,23 @@ i
369
369
  3
370
370
  4
371
371
  15
372
- 65
372
+ 99
373
373
  7
374
374
  26
375
375
  7
376
376
  27
377
- 64
377
+ 65
378
+ 67
379
+ 49
380
+ 2
381
+ 0
382
+ 49
383
+ 3
384
+ 4
385
+ 15
386
+ 65
378
387
  7
379
388
  28
380
- 64
381
389
  7
382
390
  29
383
391
  64
@@ -387,17 +395,23 @@ i
387
395
  7
388
396
  31
389
397
  64
398
+ 7
399
+ 32
400
+ 64
401
+ 7
402
+ 33
403
+ 64
390
404
  35
391
405
  5
392
406
  49
393
- 32
407
+ 34
394
408
  2
395
409
  15
396
410
  99
397
411
  7
398
- 33
412
+ 35
399
413
  7
400
- 34
414
+ 36
401
415
  65
402
416
  67
403
417
  49
@@ -409,9 +423,9 @@ i
409
423
  15
410
424
  99
411
425
  7
412
- 35
426
+ 37
413
427
  7
414
- 36
428
+ 38
415
429
  65
416
430
  67
417
431
  49
@@ -423,9 +437,9 @@ i
423
437
  15
424
438
  99
425
439
  7
426
- 37
440
+ 39
427
441
  7
428
- 38
442
+ 40
429
443
  65
430
444
  67
431
445
  49
@@ -445,7 +459,7 @@ I
445
459
  0
446
460
  n
447
461
  p
448
- 39
462
+ 41
449
463
  x
450
464
  13
451
465
  configuration
@@ -502,7 +516,7 @@ x
502
516
  21
503
517
  default_configuration
504
518
  p
505
- 13
519
+ 15
506
520
  I
507
521
  -1
508
522
  I
@@ -524,14 +538,18 @@ I
524
538
  I
525
539
  8
526
540
  I
541
+ 16
542
+ I
543
+ 0
544
+ I
527
545
  17
528
546
  I
529
547
  b
530
548
  I
531
549
  1a
532
550
  x
533
- 66
534
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
551
+ 68
552
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
535
553
  p
536
554
  0
537
555
  x
@@ -646,8 +664,8 @@ f
646
664
  I
647
665
  2b
648
666
  x
649
- 66
650
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
667
+ 68
668
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
651
669
  p
652
670
  0
653
671
  x
@@ -745,7 +763,7 @@ x
745
763
  14
746
764
  @configuration
747
765
  p
748
- 13
766
+ 15
749
767
  I
750
768
  -1
751
769
  I
@@ -755,6 +773,10 @@ I
755
773
  I
756
774
  13
757
775
  I
776
+ 14
777
+ I
778
+ 0
779
+ I
758
780
  15
759
781
  I
760
782
  16
@@ -773,8 +795,8 @@ I
773
795
  I
774
796
  35
775
797
  x
776
- 66
777
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
798
+ 68
799
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
778
800
  p
779
801
  3
780
802
  x
@@ -1109,7 +1131,7 @@ x
1109
1131
  5
1110
1132
  raise
1111
1133
  p
1112
- 31
1134
+ 35
1113
1135
  I
1114
1136
  -1
1115
1137
  I
@@ -1139,6 +1161,10 @@ I
1139
1161
  I
1140
1162
  25
1141
1163
  I
1164
+ 4f
1165
+ I
1166
+ 0
1167
+ I
1142
1168
  50
1143
1169
  I
1144
1170
  26
@@ -1171,10 +1197,14 @@ c8
1171
1197
  I
1172
1198
  2e
1173
1199
  I
1200
+ d9
1201
+ I
1202
+ 0
1203
+ I
1174
1204
  da
1175
1205
  x
1176
- 66
1177
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1206
+ 68
1207
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1178
1208
  p
1179
1209
  3
1180
1210
  x
@@ -1229,8 +1259,8 @@ I
1229
1259
  I
1230
1260
  4
1231
1261
  x
1232
- 66
1233
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1262
+ 68
1263
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1234
1264
  p
1235
1265
  0
1236
1266
  x
@@ -1282,8 +1312,8 @@ I
1282
1312
  I
1283
1313
  7
1284
1314
  x
1285
- 66
1286
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1315
+ 68
1316
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1287
1317
  p
1288
1318
  0
1289
1319
  x
@@ -1512,7 +1542,7 @@ x
1512
1542
  21
1513
1543
  add_template_location
1514
1544
  p
1515
- 7
1545
+ 9
1516
1546
  I
1517
1547
  0
1518
1548
  I
@@ -1526,10 +1556,14 @@ I
1526
1556
  I
1527
1557
  42
1528
1558
  I
1559
+ 2d
1560
+ I
1561
+ 0
1562
+ I
1529
1563
  2e
1530
1564
  x
1531
- 66
1532
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1565
+ 68
1566
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1533
1567
  p
1534
1568
  2
1535
1569
  x
@@ -1558,7 +1592,7 @@ x
1558
1592
  22
1559
1593
  configure_sass_plugin!
1560
1594
  i
1561
- 24
1595
+ 22
1562
1596
  58
1563
1597
  37
1564
1598
  19
@@ -1575,16 +1609,14 @@ i
1575
1609
  49
1576
1610
  2
1577
1611
  0
1578
- 7
1579
- 3
1580
1612
  20
1581
1613
  1
1582
1614
  49
1583
- 4
1584
- 2
1615
+ 3
1616
+ 1
1585
1617
  11
1586
1618
  I
1587
- 6
1619
+ 5
1588
1620
  I
1589
1621
  2
1590
1622
  I
@@ -1593,7 +1625,7 @@ I
1593
1625
  2
1594
1626
  n
1595
1627
  p
1596
- 5
1628
+ 4
1597
1629
  x
1598
1630
  7
1599
1631
  Compass
@@ -1602,11 +1634,8 @@ x
1602
1634
  13
1603
1635
  configuration
1604
1636
  x
1605
- 16
1606
- stylesheet_saved
1607
- x
1608
- 12
1609
- run_callback
1637
+ 20
1638
+ run_stylesheet_saved
1610
1639
  p
1611
1640
  5
1612
1641
  I
@@ -1618,10 +1647,10 @@ a
1618
1647
  I
1619
1648
  47
1620
1649
  I
1621
- 18
1650
+ 16
1622
1651
  x
1623
- 66
1624
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1652
+ 68
1653
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1625
1654
  p
1626
1655
  2
1627
1656
  x
@@ -1647,7 +1676,7 @@ x
1647
1676
  22
1648
1677
  configure_sass_plugin!
1649
1678
  i
1650
- 33
1679
+ 31
1651
1680
  58
1652
1681
  37
1653
1682
  19
@@ -1668,21 +1697,19 @@ i
1668
1697
  49
1669
1698
  2
1670
1699
  0
1671
- 7
1672
- 3
1673
1700
  20
1674
1701
  1
1675
1702
  20
1676
1703
  0
1677
1704
  49
1678
- 4
1705
+ 3
1679
1706
  0
1680
1707
  49
1681
- 5
1682
- 3
1708
+ 4
1709
+ 2
1683
1710
  11
1684
1711
  I
1685
- 8
1712
+ 7
1686
1713
  I
1687
1714
  3
1688
1715
  I
@@ -1691,7 +1718,7 @@ I
1691
1718
  3
1692
1719
  n
1693
1720
  p
1694
- 6
1721
+ 5
1695
1722
  x
1696
1723
  7
1697
1724
  Compass
@@ -1700,14 +1727,11 @@ x
1700
1727
  13
1701
1728
  configuration
1702
1729
  x
1703
- 16
1704
- stylesheet_error
1705
- x
1706
1730
  7
1707
1731
  message
1708
1732
  x
1709
- 12
1710
- run_callback
1733
+ 20
1734
+ run_stylesheet_error
1711
1735
  p
1712
1736
  5
1713
1737
  I
@@ -1719,10 +1743,10 @@ e
1719
1743
  I
1720
1744
  4a
1721
1745
  I
1722
- 21
1746
+ 1f
1723
1747
  x
1724
- 66
1725
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1748
+ 68
1749
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1726
1750
  p
1727
1751
  3
1728
1752
  x
@@ -1738,7 +1762,7 @@ x
1738
1762
  20
1739
1763
  on_compilation_error
1740
1764
  p
1741
- 21
1765
+ 23
1742
1766
  I
1743
1767
  -1
1744
1768
  I
@@ -1780,10 +1804,14 @@ I
1780
1804
  I
1781
1805
  4c
1782
1806
  I
1807
+ 4f
1808
+ I
1809
+ 0
1810
+ I
1783
1811
  50
1784
1812
  x
1785
- 66
1786
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
1813
+ 68
1814
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1787
1815
  p
1788
1816
  2
1789
1817
  x
@@ -1793,6 +1821,214 @@ x
1793
1821
  9
1794
1822
  locations
1795
1823
  x
1824
+ 16
1825
+ configure_rails!
1826
+ M
1827
+ 1
1828
+ n
1829
+ n
1830
+ x
1831
+ 16
1832
+ configure_rails!
1833
+ i
1834
+ 35
1835
+ 20
1836
+ 0
1837
+ 49
1838
+ 0
1839
+ 0
1840
+ 7
1841
+ 1
1842
+ 49
1843
+ 2
1844
+ 1
1845
+ 9
1846
+ 15
1847
+ 1
1848
+ 8
1849
+ 17
1850
+ 1
1851
+ 11
1852
+ 15
1853
+ 20
1854
+ 0
1855
+ 49
1856
+ 0
1857
+ 0
1858
+ 49
1859
+ 3
1860
+ 0
1861
+ 49
1862
+ 4
1863
+ 0
1864
+ 56
1865
+ 5
1866
+ 50
1867
+ 6
1868
+ 0
1869
+ 11
1870
+ I
1871
+ 3
1872
+ I
1873
+ 1
1874
+ I
1875
+ 1
1876
+ I
1877
+ 1
1878
+ n
1879
+ p
1880
+ 7
1881
+ x
1882
+ 6
1883
+ config
1884
+ x
1885
+ 4
1886
+ sass
1887
+ x
1888
+ 11
1889
+ respond_to?
1890
+ x
1891
+ 7
1892
+ compass
1893
+ x
1894
+ 22
1895
+ to_sass_engine_options
1896
+ M
1897
+ 1
1898
+ p
1899
+ 2
1900
+ x
1901
+ 9
1902
+ for_block
1903
+ t
1904
+ n
1905
+ x
1906
+ 16
1907
+ configure_rails!
1908
+ i
1909
+ 38
1910
+ 58
1911
+ 37
1912
+ 19
1913
+ 0
1914
+ 15
1915
+ 37
1916
+ 19
1917
+ 1
1918
+ 15
1919
+ 15
1920
+ 21
1921
+ 1
1922
+ 0
1923
+ 49
1924
+ 0
1925
+ 0
1926
+ 49
1927
+ 1
1928
+ 0
1929
+ 20
1930
+ 0
1931
+ 47
1932
+ 101
1933
+ 2
1934
+ 7
1935
+ 3
1936
+ 63
1937
+ 2
1938
+ 47
1939
+ 49
1940
+ 4
1941
+ 0
1942
+ 20
1943
+ 1
1944
+ 49
1945
+ 5
1946
+ 2
1947
+ 11
1948
+ I
1949
+ 6
1950
+ I
1951
+ 2
1952
+ I
1953
+ 2
1954
+ I
1955
+ 2
1956
+ n
1957
+ p
1958
+ 6
1959
+ x
1960
+ 6
1961
+ config
1962
+ x
1963
+ 4
1964
+ sass
1965
+ x
1966
+ 4
1967
+ to_s
1968
+ s
1969
+ 1
1970
+ =
1971
+ x
1972
+ 6
1973
+ to_sym
1974
+ x
1975
+ 4
1976
+ send
1977
+ p
1978
+ 5
1979
+ I
1980
+ 0
1981
+ I
1982
+ 52
1983
+ I
1984
+ a
1985
+ I
1986
+ 53
1987
+ I
1988
+ 26
1989
+ x
1990
+ 68
1991
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1992
+ p
1993
+ 2
1994
+ x
1995
+ 3
1996
+ key
1997
+ x
1998
+ 5
1999
+ value
2000
+ x
2001
+ 4
2002
+ each
2003
+ p
2004
+ 9
2005
+ I
2006
+ -1
2007
+ I
2008
+ 50
2009
+ I
2010
+ 0
2011
+ I
2012
+ 51
2013
+ I
2014
+ 11
2015
+ I
2016
+ 0
2017
+ I
2018
+ 12
2019
+ I
2020
+ 52
2021
+ I
2022
+ 23
2023
+ x
2024
+ 68
2025
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2026
+ p
2027
+ 1
2028
+ x
2029
+ 3
2030
+ app
2031
+ x
1796
2032
  19
1797
2033
  sass_engine_options
1798
2034
  M
@@ -1833,16 +2069,16 @@ p
1833
2069
  I
1834
2070
  -1
1835
2071
  I
1836
- 50
2072
+ 57
1837
2073
  I
1838
2074
  0
1839
2075
  I
1840
- 51
2076
+ 58
1841
2077
  I
1842
2078
  7
1843
2079
  x
1844
- 66
1845
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
2080
+ 68
2081
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
1846
2082
  p
1847
2083
  0
1848
2084
  x
@@ -2129,60 +2365,84 @@ x
2129
2365
  28
2130
2366
  project_type_without_default
2131
2367
  p
2132
- 25
2368
+ 37
2133
2369
  I
2134
2370
  -1
2135
2371
  I
2136
- 55
2372
+ 5c
2137
2373
  I
2138
2374
  0
2139
2375
  I
2140
- 56
2376
+ 5d
2377
+ I
2378
+ 1b
2379
+ I
2380
+ 5d
2141
2381
  I
2142
2382
  1e
2143
2383
  I
2144
- 57
2384
+ 5e
2145
2385
  I
2146
2386
  2d
2147
2387
  I
2148
- 58
2388
+ 5f
2389
+ I
2390
+ 42
2391
+ I
2392
+ 0
2149
2393
  I
2150
2394
  43
2151
2395
  I
2152
- 59
2396
+ 60
2153
2397
  I
2154
2398
  5b
2155
2399
  I
2156
- 5a
2400
+ 61
2157
2401
  I
2158
2402
  62
2159
2403
  I
2160
- 5b
2404
+ 62
2161
2405
  I
2162
2406
  71
2163
2407
  I
2164
- 5c
2408
+ 63
2165
2409
  I
2166
2410
  7a
2167
2411
  I
2168
- 5d
2412
+ 64
2169
2413
  I
2170
2414
  88
2171
2415
  I
2172
- 5f
2416
+ 66
2417
+ I
2418
+ 8f
2419
+ I
2420
+ 0
2173
2421
  I
2174
2422
  90
2175
2423
  I
2176
- 62
2424
+ 69
2177
2425
  I
2178
2426
  99
2179
2427
  I
2180
- 64
2428
+ 6b
2429
+ I
2430
+ b7
2431
+ I
2432
+ 0
2433
+ I
2434
+ bb
2435
+ I
2436
+ 6b
2437
+ I
2438
+ c1
2439
+ I
2440
+ 0
2181
2441
  I
2182
2442
  c2
2183
2443
  x
2184
- 66
2185
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
2444
+ 68
2445
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2186
2446
  p
2187
2447
  4
2188
2448
  x
@@ -2342,28 +2602,32 @@ x
2342
2602
  8
2343
2603
  discover
2344
2604
  p
2345
- 9
2605
+ 11
2346
2606
  I
2347
2607
  0
2348
2608
  I
2349
- 69
2609
+ 70
2350
2610
  I
2351
2611
  4
2352
2612
  I
2353
- 6a
2613
+ 71
2354
2614
  I
2355
2615
  e
2356
2616
  I
2357
- 6b
2617
+ 72
2358
2618
  I
2359
2619
  1a
2360
2620
  I
2361
- 6a
2621
+ 71
2622
+ I
2623
+ 1b
2624
+ I
2625
+ 0
2362
2626
  I
2363
2627
  1c
2364
2628
  x
2365
- 66
2366
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
2629
+ 68
2630
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2367
2631
  p
2368
2632
  1
2369
2633
  x
@@ -2393,32 +2657,36 @@ x
2393
2657
  8
2394
2658
  discover
2395
2659
  p
2396
- 11
2660
+ 13
2397
2661
  I
2398
2662
  -1
2399
2663
  I
2400
- 68
2664
+ 6f
2401
2665
  I
2402
2666
  0
2403
2667
  I
2404
- 69
2668
+ 70
2405
2669
  I
2406
2670
  c
2407
2671
  I
2408
- 6e
2672
+ 75
2409
2673
  I
2410
2674
  1a
2411
2675
  I
2412
- 6f
2676
+ 76
2413
2677
  I
2414
2678
  2a
2415
2679
  I
2416
- 6e
2680
+ 75
2681
+ I
2682
+ 2b
2683
+ I
2684
+ 0
2417
2685
  I
2418
2686
  2c
2419
2687
  x
2420
- 66
2421
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
2688
+ 68
2689
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2422
2690
  p
2423
2691
  0
2424
2692
  x
@@ -2510,20 +2778,20 @@ p
2510
2778
  I
2511
2779
  -1
2512
2780
  I
2513
- 74
2781
+ 7b
2514
2782
  I
2515
2783
  8
2516
2784
  I
2517
- 75
2785
+ 7c
2518
2786
  I
2519
2787
  17
2520
2788
  I
2521
- 76
2789
+ 7d
2522
2790
  I
2523
2791
  2a
2524
2792
  x
2525
- 66
2526
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
2793
+ 68
2794
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2527
2795
  p
2528
2796
  2
2529
2797
  x
@@ -2657,32 +2925,36 @@ x
2657
2925
  1
2658
2926
  +
2659
2927
  p
2660
- 11
2928
+ 13
2661
2929
  I
2662
2930
  -1
2663
2931
  I
2664
- 79
2932
+ 80
2665
2933
  I
2666
2934
  8
2667
2935
  I
2668
- 7a
2936
+ 81
2669
2937
  I
2670
2938
  17
2671
2939
  I
2672
- 7b
2940
+ 82
2673
2941
  I
2674
2942
  31
2675
2943
  I
2676
- 7c
2944
+ 83
2677
2945
  I
2678
2946
  47
2679
2947
  I
2680
- 7e
2948
+ 85
2949
+ I
2950
+ 49
2951
+ I
2952
+ 0
2681
2953
  I
2682
2954
  4a
2683
2955
  x
2684
- 66
2685
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
2956
+ 68
2957
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2686
2958
  p
2687
2959
  2
2688
2960
  x
@@ -2814,12 +3086,12 @@ p
2814
3086
  I
2815
3087
  0
2816
3088
  I
2817
- 87
3089
+ 8e
2818
3090
  I
2819
3091
  f
2820
3092
  x
2821
- 66
2822
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3093
+ 68
3094
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2823
3095
  p
2824
3096
  1
2825
3097
  x
@@ -2878,12 +3150,12 @@ p
2878
3150
  I
2879
3151
  0
2880
3152
  I
2881
- 88
3153
+ 8f
2882
3154
  I
2883
3155
  d
2884
3156
  x
2885
- 66
2886
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3157
+ 68
3158
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2887
3159
  p
2888
3160
  1
2889
3161
  x
@@ -2897,20 +3169,20 @@ p
2897
3169
  I
2898
3170
  -1
2899
3171
  I
2900
- 86
3172
+ 8d
2901
3173
  I
2902
3174
  8
2903
3175
  I
2904
- 87
3176
+ 8e
2905
3177
  I
2906
3178
  13
2907
3179
  I
2908
- 88
3180
+ 8f
2909
3181
  I
2910
3182
  1b
2911
3183
  x
2912
- 66
2913
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3184
+ 68
3185
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
2914
3186
  p
2915
3187
  2
2916
3188
  x
@@ -2978,28 +3250,32 @@ x
2978
3250
  6
2979
3251
  clean!
2980
3252
  p
2981
- 9
3253
+ 11
2982
3254
  I
2983
3255
  -1
2984
3256
  I
2985
- 8b
3257
+ 92
2986
3258
  I
2987
3259
  0
2988
3260
  I
2989
- 8c
3261
+ 93
2990
3262
  I
2991
3263
  d
2992
3264
  I
2993
- 8d
3265
+ 94
2994
3266
  I
2995
3267
  14
2996
3268
  I
2997
- 8c
3269
+ 93
3270
+ I
3271
+ 15
3272
+ I
3273
+ 0
2998
3274
  I
2999
3275
  16
3000
3276
  x
3001
- 66
3002
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3277
+ 68
3278
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
3003
3279
  p
3004
3280
  1
3005
3281
  x
@@ -3070,20 +3346,20 @@ p
3070
3346
  I
3071
3347
  -1
3072
3348
  I
3073
- 91
3349
+ 98
3074
3350
  I
3075
3351
  0
3076
3352
  I
3077
- 92
3353
+ 99
3078
3354
  I
3079
3355
  14
3080
3356
  x
3081
- 66
3082
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3357
+ 68
3358
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
3083
3359
  p
3084
3360
  0
3085
3361
  p
3086
- 33
3362
+ 35
3087
3363
  I
3088
3364
  2
3089
3365
  I
@@ -3119,40 +3395,44 @@ I
3119
3395
  I
3120
3396
  72
3121
3397
  I
3122
- 55
3398
+ 57
3123
3399
  I
3124
3400
  80
3125
3401
  I
3126
- 68
3402
+ 5c
3127
3403
  I
3128
3404
  8e
3129
3405
  I
3130
- 74
3406
+ 6f
3131
3407
  I
3132
3408
  9c
3133
3409
  I
3134
- 79
3410
+ 7b
3135
3411
  I
3136
3412
  aa
3137
3413
  I
3138
- 83
3414
+ 80
3139
3415
  I
3140
- c2
3416
+ b8
3141
3417
  I
3142
- 86
3418
+ 8a
3143
3419
  I
3144
3420
  d0
3145
3421
  I
3146
- 8b
3422
+ 8d
3147
3423
  I
3148
3424
  de
3149
3425
  I
3150
- 91
3426
+ 92
3151
3427
  I
3152
3428
  ec
3429
+ I
3430
+ 98
3431
+ I
3432
+ fa
3153
3433
  x
3154
- 66
3155
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3434
+ 68
3435
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
3156
3436
  p
3157
3437
  0
3158
3438
  x
@@ -3171,8 +3451,8 @@ I
3171
3451
  I
3172
3452
  20
3173
3453
  x
3174
- 66
3175
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3454
+ 68
3455
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
3176
3456
  p
3177
3457
  0
3178
3458
  x
@@ -3194,12 +3474,12 @@ I
3194
3474
  I
3195
3475
  1c
3196
3476
  I
3197
- 97
3477
+ 9e
3198
3478
  I
3199
3479
  27
3200
3480
  x
3201
- 66
3202
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3481
+ 68
3482
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
3203
3483
  p
3204
3484
  0
3205
3485
  x
@@ -3214,7 +3494,7 @@ I
3214
3494
  I
3215
3495
  1c
3216
3496
  x
3217
- 66
3218
- /Users/chris/Projects/compass/lib/compass/configuration/helpers.rb
3497
+ 68
3498
+ /Users/crispee/Projects/compass/lib/compass/configuration/helpers.rb
3219
3499
  p
3220
3500
  0