spree 0.9.2 → 0.9.3
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.
Potentially problematic release.
This version of spree might be problematic. Click here for more details.
- data/CHANGELOG +5 -0
- data/Rakefile +56 -1
- data/config/boot.rb +4 -4
- data/config/database.yml +9 -36
- data/config/environment.rb +1 -1
- data/db/schema.rb +9 -9
- data/lib/spree.rb +1 -1
- data/lib/tasks/consistency.rake +1 -1
- data/lib/tasks/database.rake +1 -1
- data/public/assets/layouts/6/original/Picture_1.png +0 -0
- data/public/images/flags/dk.png +0 -0
- data/public/stylesheets/compiled/buttons.css +70 -0
- data/public/stylesheets/compiled/cart.css +69 -0
- data/public/stylesheets/compiled/checkout.css +79 -0
- data/public/stylesheets/compiled/colors.css +0 -0
- data/public/stylesheets/compiled/compare_products.css +14 -0
- data/public/stylesheets/compiled/layout.css +79 -0
- data/public/stylesheets/compiled/messages.css +69 -0
- data/public/stylesheets/compiled/mixins.css +0 -0
- data/public/stylesheets/compiled/navigation.css +69 -0
- data/public/stylesheets/compiled/prices.css +81 -0
- data/public/stylesheets/compiled/product_detail.css +78 -0
- data/public/stylesheets/compiled/product_thumbnail.css +69 -0
- data/public/stylesheets/compiled/registration.css +69 -0
- data/public/stylesheets/compiled/screen.css +1 -1
- data/public/stylesheets/sass/_buttons.sass +2 -2
- data/public/stylesheets/sass/_checkout.sass +1 -1
- data/public/stylesheets/sass/_layout.sass +3 -3
- data/public/stylesheets/sass/_mixins.sass +1 -1
- data/public/stylesheets/sass/_navigation.sass +4 -4
- data/public/stylesheets/sass/_product_thumbnail.sass +2 -2
- data/public/stylesheets/sass/_registration.sass +9 -0
- metadata +214 -602
- data/lib/tasks/release.rake +0 -114
- data/public/javascripts/calendar_date_select/format_db.js +0 -27
- data/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +0 -7
- data/public/javascripts/calendar_date_select/format_iso_date.js +0 -46
- data/public/javascripts/calendar_date_select/locale/de.js +0 -11
- data/public/javascripts/calendar_date_select/locale/fi.js +0 -10
- data/public/javascripts/calendar_date_select/locale/fr.js +0 -10
- data/public/javascripts/calendar_date_select/locale/pl.js +0 -10
- data/public/javascripts/calendar_date_select/locale/pt.js +0 -11
- data/public/javascripts/calendar_date_select/locale/ru.js +0 -10
    
        data/CHANGELOG
    CHANGED
    
    
    
        data/Rakefile
    CHANGED
    
    | @@ -6,6 +6,61 @@ require 'rake/rdoctask' | |
| 6 6 |  | 
| 7 7 | 
             
            require 'tasks/rails'
         | 
| 8 8 |  | 
| 9 | 
            -
            unless Rake::Task.task_defined? " | 
| 9 | 
            +
            unless Rake::Task.task_defined? "db:sample"
         | 
| 10 10 | 
             
              Dir["#{SPREE_ROOT}/lib/tasks/**/*.rake"].sort.each { |ext| load ext }
         | 
| 11 | 
            +
            end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            begin
         | 
| 14 | 
            +
              require 'jeweler'
         | 
| 15 | 
            +
              Jeweler::Tasks.new do |s|
         | 
| 16 | 
            +
                s.name = "spree"
         | 
| 17 | 
            +
                s.summary = "Open Source E-Commerce for Ruby on Rails"
         | 
| 18 | 
            +
                s.description = "The most flexible commerce platform available - designed from the ground up to be as open and extensible as possible."
         | 
| 19 | 
            +
                s.email = "sean@railsdog.com"
         | 
| 20 | 
            +
                s.homepage = "http://github.com/railsdog/spree"
         | 
| 21 | 
            +
                s.authors = ["Sean Schofield"]
         | 
| 22 | 
            +
                s.add_dependency('treetop', '>= 1.4.2')
         | 
| 23 | 
            +
                s.bindir = 'bin'
         | 
| 24 | 
            +
                s.executables = ['spree']
         | 
| 25 | 
            +
                s.rubyforge_project = 'spree'
         | 
| 26 | 
            +
                s.version = Spree::Version
         | 
| 27 | 
            +
                s.add_dependency 'rake', '>= 0.7.1'
         | 
| 28 | 
            +
                s.add_dependency 'highline', '>= 1.4.0'
         | 
| 29 | 
            +
                s.add_dependency 'rails', '= 2.3.5'
         | 
| 30 | 
            +
                s.add_dependency 'rack', '>= 1.0.1'
         | 
| 31 | 
            +
                s.add_dependency 'activemerchant', '= 1.4.1'
         | 
| 32 | 
            +
                s.add_dependency 'activerecord-tableless', '>= 0.1.0'
         | 
| 33 | 
            +
                #s.add_dependency 'authlogic', '>=2.0.11'  (For some reason including authlogic causes bug - see #433)
         | 
| 34 | 
            +
                s.add_dependency 'calendar_date_select', '= 1.15' 
         | 
| 35 | 
            +
                s.add_dependency 'haml-edge', '>=2.1.37'
         | 
| 36 | 
            +
                s.add_dependency 'chronic', '>=0.2.3'
         | 
| 37 | 
            +
                s.add_dependency 'tlsmail', '= 0.0.1' 
         | 
| 38 | 
            +
                s.add_dependency 'rspec', '>= 1.2.0'
         | 
| 39 | 
            +
                s.add_dependency 'rspec-rails', '>= 1.2.0'
         | 
| 40 | 
            +
                s.add_dependency 'searchlogic', ">=2.3.5" 
         | 
| 41 | 
            +
                files = FileList['**/*']
         | 
| 42 | 
            +
                files.exclude '**/._*'
         | 
| 43 | 
            +
                files.exclude '**/*.rej'
         | 
| 44 | 
            +
                files.exclude 'cache/'
         | 
| 45 | 
            +
                files.exclude 'config/locomotive.yml'
         | 
| 46 | 
            +
                files.exclude 'config/lighttpd.conf'
         | 
| 47 | 
            +
                files.exclude 'config/mongrel_mimes.yml'
         | 
| 48 | 
            +
                files.exclude 'db/schema.db'
         | 
| 49 | 
            +
                files.exclude 'db/*.sqlite3'
         | 
| 50 | 
            +
                files.exclude 'db/*.sql'
         | 
| 51 | 
            +
                files.exclude /^doc/
         | 
| 52 | 
            +
                files.exclude 'log/*.log'
         | 
| 53 | 
            +
                files.exclude 'log/*.pid'
         | 
| 54 | 
            +
                files.exclude /^pkg/
         | 
| 55 | 
            +
                files.include 'public/.htaccess.example'
         | 
| 56 | 
            +
                files.exclude 'public/images/products'
         | 
| 57 | 
            +
                files.exclude 'public/assets/products'
         | 
| 58 | 
            +
                files.exclude 'spree.gemspec'
         | 
| 59 | 
            +
                files.exclude 'tmp/'
         | 
| 60 | 
            +
                files.exclude 'vendor/plugins/delegate_belongs_to/spec/app_root/log/*.log'
         | 
| 61 | 
            +
                files.exclude 'vendor/plugins/resource_controller/test/*'
         | 
| 62 | 
            +
                s.files = files.to_a
         | 
| 63 | 
            +
              end
         | 
| 64 | 
            +
            rescue LoadError
         | 
| 65 | 
            +
              puts "Jeweler not available. Install it with: sudo gem install jeweler"
         | 
| 11 66 | 
             
            end
         | 
    
        data/config/boot.rb
    CHANGED
    
    | @@ -37,13 +37,13 @@ module Spree | |
| 37 37 | 
             
                def load_rubygems
         | 
| 38 38 | 
             
                  require 'rubygems'
         | 
| 39 39 |  | 
| 40 | 
            -
                  unless rubygems_version >= ' | 
| 41 | 
            -
                    $stderr.puts %(Spree requires RubyGems >=  | 
| 40 | 
            +
                  unless rubygems_version >= '1.3.2'
         | 
| 41 | 
            +
                    $stderr.puts %(Spree requires RubyGems >= 1.3.2 (you have #{rubygems_version}). Please `gem update --system` and try again.)
         | 
| 42 42 | 
             
                    exit 1
         | 
| 43 43 | 
             
                  end
         | 
| 44 44 |  | 
| 45 45 | 
             
                rescue LoadError
         | 
| 46 | 
            -
                  $stderr.puts %(Spree requires RubyGems >=  | 
| 46 | 
            +
                  $stderr.puts %(Spree requires RubyGems >= 1.3.2. Please install RubyGems and try again: http://rubygems.rubyforge.org)
         | 
| 47 47 | 
             
                  exit 1
         | 
| 48 48 | 
             
                end
         | 
| 49 49 |  | 
| @@ -55,7 +55,7 @@ module Spree | |
| 55 55 | 
             
              class Boot 
         | 
| 56 56 | 
             
                include Spree::RubyGemsLoader
         | 
| 57 57 | 
             
                def run
         | 
| 58 | 
            -
                  load_rails("2.3. | 
| 58 | 
            +
                  load_rails("2.3.5")  # note: spree requires this specific version of rails (change at your own risk)
         | 
| 59 59 | 
             
                  load_initializer
         | 
| 60 60 | 
             
                  Spree::Initializer.run(:set_load_path)
         | 
| 61 61 | 
             
                end
         | 
    
        data/config/database.yml
    CHANGED
    
    | @@ -3,53 +3,26 @@ | |
| 3 3 | 
             
            development:
         | 
| 4 4 | 
             
              adapter: mysql
         | 
| 5 5 | 
             
              database: spree_dev
         | 
| 6 | 
            -
              username:  | 
| 7 | 
            -
              password: | 
| 6 | 
            +
              username: root
         | 
| 7 | 
            +
              password:
         | 
| 8 8 | 
             
              host: localhost
         | 
| 9 9 |  | 
| 10 | 
            -
            #development:
         | 
| 11 | 
            -
            # | 
| 12 | 
            -
            # | 
| 13 | 
            -
            #  username: spree
         | 
| 14 | 
            -
            #  password: spree_dev
         | 
| 15 | 
            -
            #  host: localhost
         | 
| 16 | 
            -
              
         | 
| 17 | 
            -
            #development:
         | 
| 18 | 
            -
            #  adapter: sqlite3
         | 
| 19 | 
            -
            #  database: db/development.sqlite3
         | 
| 10 | 
            +
            # development:
         | 
| 11 | 
            +
            #   adapter: sqlite3
         | 
| 12 | 
            +
            #   database: db/development.sqlite3
         | 
| 20 13 |  | 
| 21 14 | 
             
            test:
         | 
| 22 15 | 
             
              adapter: mysql
         | 
| 23 16 | 
             
              database: spree_test
         | 
| 24 | 
            -
              username:  | 
| 25 | 
            -
              password: | 
| 17 | 
            +
              username: root
         | 
| 18 | 
            +
              password:
         | 
| 26 19 | 
             
              host: localhost
         | 
| 27 | 
            -
              
         | 
| 28 | 
            -
            staging:
         | 
| 29 | 
            -
              #adapter: sqlite3
         | 
| 30 | 
            -
              #database: db/staging.sqlite3
         | 
| 31 | 
            -
              adapter: mysql
         | 
| 32 | 
            -
              database: spree_dev
         | 
| 33 | 
            -
              username: spree
         | 
| 34 | 
            -
              password: spree
         | 
| 35 | 
            -
              host: localhost
         | 
| 36 | 
            -
              
         | 
| 37 | 
            -
            #test:
         | 
| 38 | 
            -
            #  adapter: postgresql
         | 
| 39 | 
            -
            #  database: spree_test
         | 
| 40 | 
            -
            #  username: spree
         | 
| 41 | 
            -
            #  password: spree_dev
         | 
| 42 | 
            -
            #  host: localhost
         | 
| 43 | 
            -
             | 
| 44 | 
            -
            #test:
         | 
| 45 | 
            -
            #  adapter: sqlite3
         | 
| 46 | 
            -
            #  database: db/test.sqlite3
         | 
| 47 20 |  | 
| 48 21 | 
             
            production:
         | 
| 49 22 | 
             
              adapter: sqlite3
         | 
| 50 23 | 
             
              database: db/production.sqlite3
         | 
| 51 | 
            -
             | 
| 52 | 
            -
            # special mode for demo.spreehq.org (you  | 
| 24 | 
            +
                                                
         | 
| 25 | 
            +
            # special mode for demo.spreehq.org (you probably don't need this)                                    
         | 
| 53 26 | 
             
            demo:
         | 
| 54 27 | 
             
              adapter: sqlite3
         | 
| 55 28 | 
             
              database: db/production.sqlite3
         | 
    
        data/config/environment.rb
    CHANGED
    
    | @@ -5,7 +5,7 @@ | |
| 5 5 | 
             
            # ENV['RAILS_ENV'] ||= 'production'
         | 
| 6 6 |  | 
| 7 7 | 
             
            # Specifies gem version of Rails to use when vendor/rails is not present
         | 
| 8 | 
            -
            SPREE_GEM_VERSION = '0.9. | 
| 8 | 
            +
            SPREE_GEM_VERSION = '0.9.3' unless defined? SPREE_GEM_VERSION
         | 
| 9 9 |  | 
| 10 10 | 
             
            # Bootstrap the Rails environment, frameworks, and default configuration
         | 
| 11 11 | 
             
            require File.join(File.dirname(__FILE__), 'boot')
         | 
    
        data/db/schema.rb
    CHANGED
    
    | @@ -55,8 +55,8 @@ ActiveRecord::Schema.define(:version => 20090908141056) do | |
| 55 55 |  | 
| 56 56 | 
             
              create_table "calculators", :force => true do |t|
         | 
| 57 57 | 
             
                t.string   "type"
         | 
| 58 | 
            -
                t.integer  "calculable_id", | 
| 59 | 
            -
                t.string   "calculable_type", : | 
| 58 | 
            +
                t.integer  "calculable_id",   :null => false
         | 
| 59 | 
            +
                t.string   "calculable_type", :null => false
         | 
| 60 60 | 
             
                t.datetime "created_at"
         | 
| 61 61 | 
             
                t.datetime "updated_at"
         | 
| 62 62 | 
             
              end
         | 
| @@ -235,9 +235,9 @@ ActiveRecord::Schema.define(:version => 20090908141056) do | |
| 235 235 | 
             
              end
         | 
| 236 236 |  | 
| 237 237 | 
             
              create_table "preferences", :force => true do |t|
         | 
| 238 | 
            -
                t.string   "attribute",  : | 
| 239 | 
            -
                t.integer  "owner_id", | 
| 240 | 
            -
                t.string   "owner_type", : | 
| 238 | 
            +
                t.string   "attribute",  :null => false
         | 
| 239 | 
            +
                t.integer  "owner_id",   :null => false
         | 
| 240 | 
            +
                t.string   "owner_type", :null => false
         | 
| 241 241 | 
             
                t.integer  "group_id"
         | 
| 242 242 | 
             
                t.string   "group_type"
         | 
| 243 243 | 
             
                t.string   "value"
         | 
| @@ -292,7 +292,7 @@ ActiveRecord::Schema.define(:version => 20090908141056) do | |
| 292 292 |  | 
| 293 293 | 
             
              create_table "properties", :force => true do |t|
         | 
| 294 294 | 
             
                t.string   "name"
         | 
| 295 | 
            -
                t.string   "presentation", : | 
| 295 | 
            +
                t.string   "presentation", :null => false
         | 
| 296 296 | 
             
                t.datetime "created_at"
         | 
| 297 297 | 
             
                t.datetime "updated_at"
         | 
| 298 298 | 
             
              end
         | 
| @@ -386,16 +386,16 @@ ActiveRecord::Schema.define(:version => 20090908141056) do | |
| 386 386 | 
             
              end
         | 
| 387 387 |  | 
| 388 388 | 
             
              create_table "taxonomies", :force => true do |t|
         | 
| 389 | 
            -
                t.string   "name",       : | 
| 389 | 
            +
                t.string   "name",       :null => false
         | 
| 390 390 | 
             
                t.datetime "created_at"
         | 
| 391 391 | 
             
                t.datetime "updated_at"
         | 
| 392 392 | 
             
              end
         | 
| 393 393 |  | 
| 394 394 | 
             
              create_table "taxons", :force => true do |t|
         | 
| 395 | 
            -
                t.integer  "taxonomy_id", | 
| 395 | 
            +
                t.integer  "taxonomy_id",                :null => false
         | 
| 396 396 | 
             
                t.integer  "parent_id"
         | 
| 397 397 | 
             
                t.integer  "position",    :default => 0
         | 
| 398 | 
            -
                t.string   "name", | 
| 398 | 
            +
                t.string   "name",                       :null => false
         | 
| 399 399 | 
             
                t.datetime "created_at"
         | 
| 400 400 | 
             
                t.datetime "updated_at"
         | 
| 401 401 | 
             
                t.string   "permalink"
         | 
    
        data/lib/spree.rb
    CHANGED
    
    
    
        data/lib/tasks/consistency.rake
    CHANGED
    
    
    
        data/lib/tasks/database.rake
    CHANGED
    
    
| Binary file | 
| Binary file | 
| @@ -0,0 +1,70 @@ | |
| 1 | 
            +
            /*
         | 
| 2 | 
            +
            Sass::SyntaxError: Undefined mixin 'round_corners'.
         | 
| 3 | 
            +
            on line 3 of /Users/schof/open_source/spree/public/stylesheets/sass/buttons.sass
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            1: button,
         | 
| 6 | 
            +
            2: a.button,input.button
         | 
| 7 | 
            +
            3:   +round_corners(0.3em)
         | 
| 8 | 
            +
            4:   :background #efefef url(/images/buttons/bg-button.png) center left repeat-x !important
         | 
| 9 | 
            +
            5:   :border-style solid
         | 
| 10 | 
            +
            6:   :border-width 1px !important
         | 
| 11 | 
            +
            7:   :border-color #ddd #999 #999 #ddd !important
         | 
| 12 | 
            +
            8:   :-moz-outline-radius .3em
         | 
| 13 | 
            +
            9:   :color #111
         | 
| 14 | 
            +
             | 
| 15 | 
            +
             | 
| 16 | 
            +
            Backtrace:
         | 
| 17 | 
            +
            /Users/schof/open_source/spree/public/stylesheets/sass/buttons.sass:3
         | 
| 18 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/mixin_node.rb:14:in `_perform'
         | 
| 19 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 20 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 21 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 22 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 23 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 24 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/rule_node.rb:132:in `perform!'
         | 
| 25 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 26 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 27 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 28 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 29 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 30 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 31 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 32 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 33 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/engine.rb:104:in `render'
         | 
| 34 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:75:in `update_stylesheet'
         | 
| 35 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:60:in `update_stylesheets'
         | 
| 36 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:55:in `each'
         | 
| 37 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:55:in `update_stylesheets'
         | 
| 38 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:53:in `each'
         | 
| 39 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:53:in `update_stylesheets'
         | 
| 40 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin/rails.rb:16:in `process'
         | 
| 41 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:559:in `process_with_test'
         | 
| 42 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:439:in `process'
         | 
| 43 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:395:in `post'
         | 
| 44 | 
            +
            ./test/functional/orders_controller_test.rb:9:in `__bind_1243531630_922835'
         | 
| 45 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:271:in `call'
         | 
| 46 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:271:in `run_current_setup_blocks'
         | 
| 47 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:270:in `each'
         | 
| 48 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:270:in `run_current_setup_blocks'
         | 
| 49 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:252:in `test: on POST to :checkout should change "Creditcard.count" from 0 to 1. '
         | 
| 50 | 
            +
            /Users/schof/open_source/spree/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `__send__'
         | 
| 51 | 
            +
            /Users/schof/open_source/spree/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `run'
         | 
| 52 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
         | 
| 53 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
         | 
| 54 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
         | 
| 55 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
         | 
| 56 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
         | 
| 57 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
         | 
| 58 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite'
         | 
| 59 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator'
         | 
| 60 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start'
         | 
| 61 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run'
         | 
| 62 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'
         | 
| 63 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'
         | 
| 64 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278
         | 
| 65 | 
            +
            /Library/Ruby/Gems/1.8/gems/rake-0.8.4/lib/rake/rake_test_loader.rb:5
         | 
| 66 | 
            +
            */
         | 
| 67 | 
            +
            body:before {
         | 
| 68 | 
            +
              white-space: pre;
         | 
| 69 | 
            +
              font-family: monospace;
         | 
| 70 | 
            +
              content: "Sass::SyntaxError: Undefined mixin 'round_corners'.\A on line 3 of /Users/schof/open_source/spree/public/stylesheets/sass/buttons.sass\A \A 1: button,\A 2: a.button,input.button\A 3:   +round_corners(0.3em)\A 4:   :background #efefef url(/images/buttons/bg-button.png) center left repeat-x !important\A 5:   :border-style solid\A 6:   :border-width 1px !important\A 7:   :border-color #ddd #999 #999 #ddd !important\A 8:   :-moz-outline-radius .3em\A 9:   :color #111\A "; }
         | 
| @@ -0,0 +1,69 @@ | |
| 1 | 
            +
            /*
         | 
| 2 | 
            +
            Sass::SyntaxError: Undefined mixin 'rightie'.
         | 
| 3 | 
            +
            on line 2 of /Users/schof/open_source/spree/public/stylesheets/sass/cart.sass
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            1: div#subtotal
         | 
| 6 | 
            +
            2:   +rightie
         | 
| 7 | 
            +
            3:   :width auto
         | 
| 8 | 
            +
            4:   :text-align left
         | 
| 9 | 
            +
            5: 
         | 
| 10 | 
            +
            6: table
         | 
| 11 | 
            +
            7:   :border-collapse collapse
         | 
| 12 | 
            +
            8:   th
         | 
| 13 | 
            +
             | 
| 14 | 
            +
             | 
| 15 | 
            +
            Backtrace:
         | 
| 16 | 
            +
            /Users/schof/open_source/spree/public/stylesheets/sass/cart.sass:2
         | 
| 17 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/mixin_node.rb:14:in `_perform'
         | 
| 18 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 19 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 20 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 21 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 22 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 23 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/rule_node.rb:132:in `perform!'
         | 
| 24 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 25 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 26 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 27 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 28 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 29 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 30 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 31 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 32 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/engine.rb:104:in `render'
         | 
| 33 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:75:in `update_stylesheet'
         | 
| 34 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:60:in `update_stylesheets'
         | 
| 35 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:55:in `each'
         | 
| 36 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:55:in `update_stylesheets'
         | 
| 37 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:53:in `each'
         | 
| 38 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:53:in `update_stylesheets'
         | 
| 39 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin/rails.rb:16:in `process'
         | 
| 40 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:559:in `process_with_test'
         | 
| 41 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:439:in `process'
         | 
| 42 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:395:in `post'
         | 
| 43 | 
            +
            ./test/functional/orders_controller_test.rb:9:in `__bind_1243531630_922835'
         | 
| 44 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:271:in `call'
         | 
| 45 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:271:in `run_current_setup_blocks'
         | 
| 46 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:270:in `each'
         | 
| 47 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:270:in `run_current_setup_blocks'
         | 
| 48 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:252:in `test: on POST to :checkout should change "Creditcard.count" from 0 to 1. '
         | 
| 49 | 
            +
            /Users/schof/open_source/spree/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `__send__'
         | 
| 50 | 
            +
            /Users/schof/open_source/spree/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `run'
         | 
| 51 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
         | 
| 52 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
         | 
| 53 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
         | 
| 54 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
         | 
| 55 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
         | 
| 56 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
         | 
| 57 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite'
         | 
| 58 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator'
         | 
| 59 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start'
         | 
| 60 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run'
         | 
| 61 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'
         | 
| 62 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'
         | 
| 63 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278
         | 
| 64 | 
            +
            /Library/Ruby/Gems/1.8/gems/rake-0.8.4/lib/rake/rake_test_loader.rb:5
         | 
| 65 | 
            +
            */
         | 
| 66 | 
            +
            body:before {
         | 
| 67 | 
            +
              white-space: pre;
         | 
| 68 | 
            +
              font-family: monospace;
         | 
| 69 | 
            +
              content: "Sass::SyntaxError: Undefined mixin 'rightie'.\A on line 2 of /Users/schof/open_source/spree/public/stylesheets/sass/cart.sass\A \A 1: div#subtotal\A 2:   +rightie\A 3:   :width auto\A 4:   :text-align left\A 5: \A 6: table\A 7:   :border-collapse collapse\A 8:   th\A "; }
         | 
| @@ -0,0 +1,79 @@ | |
| 1 | 
            +
            /*
         | 
| 2 | 
            +
            Sass::SyntaxError: Undefined mixin 'round_corners'.
         | 
| 3 | 
            +
            on line 14 of /Users/schof/open_source/spree/public/stylesheets/sass/checkout.sass
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            10:     :padding 10px 2px
         | 
| 6 | 
            +
            11: 
         | 
| 7 | 
            +
            12: div#checkout
         | 
| 8 | 
            +
            13:   div#registration div.error, div#shipping_method div.error
         | 
| 9 | 
            +
            14:     +round_corners
         | 
| 10 | 
            +
            15:     :width 815px
         | 
| 11 | 
            +
            16:   div#billing input, div#shipping input, div#payment input, div#registration_input input
         | 
| 12 | 
            +
            17:     :border= 1px solid !input_border
         | 
| 13 | 
            +
            18:   select.error, input.error
         | 
| 14 | 
            +
            19:     :padding 0px
         | 
| 15 | 
            +
            20:     :background = !white
         | 
| 16 | 
            +
             | 
| 17 | 
            +
             | 
| 18 | 
            +
            Backtrace:
         | 
| 19 | 
            +
            /Users/schof/open_source/spree/public/stylesheets/sass/checkout.sass:14
         | 
| 20 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/mixin_node.rb:14:in `_perform'
         | 
| 21 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 22 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 23 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 24 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 25 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 26 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/rule_node.rb:132:in `perform!'
         | 
| 27 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 28 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 29 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 30 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 31 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 32 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 33 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/rule_node.rb:132:in `perform!'
         | 
| 34 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 35 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 36 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 37 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `map'
         | 
| 38 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:64:in `perform_children'
         | 
| 39 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:60:in `perform!'
         | 
| 40 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:55:in `_perform'
         | 
| 41 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/tree/node.rb:45:in `perform'
         | 
| 42 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/engine.rb:104:in `render'
         | 
| 43 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:75:in `update_stylesheet'
         | 
| 44 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:60:in `update_stylesheets'
         | 
| 45 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:55:in `each'
         | 
| 46 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:55:in `update_stylesheets'
         | 
| 47 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:53:in `each'
         | 
| 48 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin.rb:53:in `update_stylesheets'
         | 
| 49 | 
            +
            /Library/Ruby/Gems/1.8/gems/haml-edge-2.1.3/lib/sass/plugin/rails.rb:16:in `process'
         | 
| 50 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:559:in `process_with_test'
         | 
| 51 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:439:in `process'
         | 
| 52 | 
            +
            /Users/schof/open_source/spree/vendor/rails/actionpack/lib/action_controller/test_process.rb:395:in `post'
         | 
| 53 | 
            +
            ./test/functional/orders_controller_test.rb:9:in `__bind_1243531630_922835'
         | 
| 54 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:271:in `call'
         | 
| 55 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:271:in `run_current_setup_blocks'
         | 
| 56 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:270:in `each'
         | 
| 57 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:270:in `run_current_setup_blocks'
         | 
| 58 | 
            +
            /Library/Ruby/Gems/1.8/gems/thoughtbot-shoulda-2.10.1/lib/shoulda/context.rb:252:in `test: on POST to :checkout should change "Creditcard.count" from 0 to 1. '
         | 
| 59 | 
            +
            /Users/schof/open_source/spree/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `__send__'
         | 
| 60 | 
            +
            /Users/schof/open_source/spree/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `run'
         | 
| 61 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
         | 
| 62 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
         | 
| 63 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
         | 
| 64 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
         | 
| 65 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
         | 
| 66 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
         | 
| 67 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite'
         | 
| 68 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator'
         | 
| 69 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start'
         | 
| 70 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run'
         | 
| 71 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'
         | 
| 72 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'
         | 
| 73 | 
            +
            /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278
         | 
| 74 | 
            +
            /Library/Ruby/Gems/1.8/gems/rake-0.8.4/lib/rake/rake_test_loader.rb:5
         | 
| 75 | 
            +
            */
         | 
| 76 | 
            +
            body:before {
         | 
| 77 | 
            +
              white-space: pre;
         | 
| 78 | 
            +
              font-family: monospace;
         | 
| 79 | 
            +
              content: "Sass::SyntaxError: Undefined mixin 'round_corners'.\A on line 14 of /Users/schof/open_source/spree/public/stylesheets/sass/checkout.sass\A \A 10:     :padding 10px 2px\A 11: \A 12: div#checkout\A 13:   div#registration div.error, div#shipping_method div.error\A 14:     +round_corners\A 15:     :width 815px\A 16:   div#billing input, div#shipping input, div#payment input, div#registration_input input\A 17:     :border= 1px solid !input_border\A 18:   select.error, input.error\A 19:     :padding 0px\A 20:     :background = !white\A "; }
         |