---
 server/app/controllers/api_controller.rb           |   39 ------
 server/app/controllers/application_controller.rb   |   47 -------
 server/app/controllers/flavors_controller.rb       |   48 --------
 .../controllers/hardware_profiles_controller.rb    |   16 ---
 server/app/controllers/images_controller.rb        |   52 --------
 .../app/controllers/instance_states_controller.rb  |   49 --------
 server/app/controllers/instances_controller.rb     |  109 -----------------
 server/app/controllers/realms_controller.rb        |   48 --------
 server/app/controllers/root_controller.rb          |   23 ----
 .../controllers/storage_snapshots_controller.rb    |   47 -------
 .../app/controllers/storage_volumes_controller.rb  |   47 -------
 server/app/stylesheets/.gitignore                  |    2 -
 server/app/stylesheets/application.sass            |  128 --------------------
 server/app/stylesheets/ie.sass                     |   14 --
 server/app/stylesheets/partials/_base.sass         |   11 --
 server/app/stylesheets/print.sass                  |    3 -
 server/app/stylesheets/screen.sass                 |   40 ------
 server/config/boot.rb                              |  110 -----------------
 server/config/compass/.gitignore                   |    2 +
 server/config/compass/application.sass             |  128 ++++++++++++++++++++
 server/config/compass/ie.sass                      |   14 ++
 server/config/compass/partials/_base.sass          |   11 ++
 server/config/compass/print.sass                   |    3 +
 server/config/compass/screen.sass                  |   40 ++++++
 server/config/database.yml                         |   22 ----
 server/config/environment.rb                       |  111 -----------------
 server/config/environments/development.rb          |   17 ---
 server/config/environments/production.rb           |   28 -----
 server/config/environments/test.rb                 |   28 -----
 server/config/initializers/backtrace_silencers.rb  |    7 -
 server/config/initializers/compass.rb              |    5 -
 server/config/initializers/inflections.rb          |   10 --
 server/config/initializers/mime_types.rb           |   10 --
 server/config/initializers/new_rails_defaults.rb   |   19 ---
 server/config/initializers/session_store.rb        |   15 ---
 server/config/locales/en.yml                       |    2 -
 server/config/routes.rb                            |   49 --------
 37 files changed, 198 insertions(+), 1156 deletions(-)
 delete mode 100644 server/app/controllers/api_controller.rb
 delete mode 100644 server/app/controllers/application_controller.rb
 delete mode 100644 server/app/controllers/flavors_controller.rb
 delete mode 100644 server/app/controllers/hardware_profiles_controller.rb
 delete mode 100644 server/app/controllers/images_controller.rb
 delete mode 100644 server/app/controllers/instance_states_controller.rb
 delete mode 100644 server/app/controllers/instances_controller.rb
 delete mode 100644 server/app/controllers/realms_controller.rb
 delete mode 100644 server/app/controllers/root_controller.rb
 delete mode 100644 server/app/controllers/storage_snapshots_controller.rb
 delete mode 100644 server/app/controllers/storage_volumes_controller.rb
 delete mode 100644 server/app/stylesheets/.gitignore
 delete mode 100644 server/app/stylesheets/application.sass
 delete mode 100644 server/app/stylesheets/ie.sass
 delete mode 100644 server/app/stylesheets/partials/_base.sass
 delete mode 100644 server/app/stylesheets/print.sass
 delete mode 100644 server/app/stylesheets/screen.sass
 delete mode 100644 server/config/boot.rb
 create mode 100644 server/config/compass/.gitignore
 create mode 100644 server/config/compass/application.sass
 create mode 100644 server/config/compass/ie.sass
 create mode 100644 server/config/compass/partials/_base.sass
 create mode 100644 server/config/compass/print.sass
 create mode 100644 server/config/compass/screen.sass
 delete mode 100644 server/config/database.yml
 delete mode 100644 server/config/environment.rb
 delete mode 100644 server/config/environments/development.rb
 delete mode 100644 server/config/environments/production.rb
 delete mode 100644 server/config/environments/test.rb
 delete mode 100644 server/config/initializers/backtrace_silencers.rb
 delete mode 100644 server/config/initializers/compass.rb
 delete mode 100644 server/config/initializers/inflections.rb
 delete mode 100644 server/config/initializers/mime_types.rb
 delete mode 100644 server/config/initializers/new_rails_defaults.rb
 delete mode 100644 server/config/initializers/session_store.rb
 delete mode 100644 server/config/locales/en.yml
 delete mode 100644 server/config/routes.rb

diff --git a/server/app/controllers/api_controller.rb 
b/server/app/controllers/api_controller.rb
deleted file mode 100644
index dd201eb..0000000
--- a/server/app/controllers/api_controller.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class ApiController < ApplicationController
-
-  def show
-    @version = 1.0
-    @entry_points = [
-      [ :flavors, flavors_url ],
-      [ :hardware_profiles, hardware_profiles_url ],
-      [ :instance_states, instance_states_url ],
-      [ :realms, realms_url ],
-      [ :images, images_url ],
-      [ :instances, instances_url ],
-      [ :storage_volumes, storage_volumes_url ],
-      [ :storage_snapshots, storage_snapshots_url ],
-    ]
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml
-    end
-  end
-
-end
diff --git a/server/app/controllers/application_controller.rb 
b/server/app/controllers/application_controller.rb
deleted file mode 100644
index 618a833..0000000
--- a/server/app/controllers/application_controller.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-#
-# Filters added to this controller apply to all controllers in the application.
-# Likewise, all the methods added will be available for all controllers.
-
-class ApplicationController < ActionController::Base
-  helper :all # include all helpers, all the time
-  #protect_from_forgery # See ActionController::RequestForgeryProtection for 
details
-
-  # Scrub sensitive parameters from your log
-  # filter_parameter_logging :password
-
-
-  protected
-
-  def credentials
-    creds = {}
-    authenticate_with_http_basic do |name,password|
-      creds[:name]     = name
-      creds[:password] = password
-    end
-    creds
-  end
-
-  def build_filter(param_name)
-    if ( params[param_name] )
-      @filter ||= {}
-      @filter[param_name] = params[param_name]
-    end
-  end
-
-end
diff --git a/server/app/controllers/flavors_controller.rb 
b/server/app/controllers/flavors_controller.rb
deleted file mode 100644
index 6176f2a..0000000
--- a/server/app/controllers/flavors_controller.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class FlavorsController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def index
-    build_filter( :id )
-    build_filter( :architecture )
-    @flavors = driver.flavors( credentials, @filter )
-    respond_to do |format|
-      format.html
-      format.xml {
-        render :xml=>convert_to_xml( :flavor, @flavors )
-      }
-    end
-  end
-
-  def show
-    @flavor = driver.flavor( credentials, :id => params[:id] )
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :flavor, @flavor )
-      }
-    end
-  end
-
-end
diff --git a/server/app/controllers/hardware_profiles_controller.rb 
b/server/app/controllers/hardware_profiles_controller.rb
deleted file mode 100644
index 1b2215b..0000000
--- a/server/app/controllers/hardware_profiles_controller.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-class HardwareProfilesController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def index
-    @profiles = driver().hardware_profiles
-  end
-
-  def show
-    @profile = driver().hardware_profile(params[:id])
-  end
-
-end
diff --git a/server/app/controllers/images_controller.rb 
b/server/app/controllers/images_controller.rb
deleted file mode 100644
index 92fe73f..0000000
--- a/server/app/controllers/images_controller.rb
+++ /dev/null
@@ -1,52 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class ImagesController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def index
-    build_filter( :id )
-    build_filter( :owner_id )
-    build_filter( :architecture )
-    @images = driver.images( credentials, @filter )
-
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :image, @images )
-      }
-    end
-  end
-
-  def show
-    @image = driver.image( credentials, :id => params[:id]  )
-
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :image, @image )
-      }
-    end
-  end
-
-end
diff --git a/server/app/controllers/instance_states_controller.rb 
b/server/app/controllers/instance_states_controller.rb
deleted file mode 100644
index b860b50..0000000
--- a/server/app/controllers/instance_states_controller.rb
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-require 'open3'
-
-class InstanceStatesController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def show
-    #...@states = driver.instance_states()
-    @machine = driver.instance_state_machine()
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml
-      format.gv
-      format.png {
-        gv = render_to_string( :file=>'instance_states/show.gv.erb' )
-        png =  ''
-        cmd = 'dot -Kdot -Gpad="0.2,0.2" -Gsize="5.0,8.0" -Gdpi="180" -Tpng'
-        Open3.popen3( cmd ) do |stdin, stdout, stderr|
-          stdin.write( gv )
-          stdin.close()
-          png = stdout.read
-        end
-        render :text=>png, :content_type=>'image/png'
-      }
-    end
-  end
-
-end
diff --git a/server/app/controllers/instances_controller.rb 
b/server/app/controllers/instances_controller.rb
deleted file mode 100644
index abcc1ed..0000000
--- a/server/app/controllers/instances_controller.rb
+++ /dev/null
@@ -1,109 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class InstancesController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def states
-    @states = driver.instance_states()
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml
-    end
-  end
-
-  def index
-    build_filter( :id )
-    @instances = driver.instances( credentials, @filter )
-    @id = params[:id]
-
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :instance, @instances )
-      }
-    end
-  end
-
-  def show
-    @instance = driver.instance( credentials, :id=>params[:id] )
-
-    respond_to do |format|
-      format.html {
-        render :text=>'resource not found', :status=>404 and return unless 
@instance
-      }
-      format.json
-      format.xml {
-        render :nothing=>true, :status=>404 and return unless @instance
-        render :xml=>convert_to_xml( :instance, @instance )
-      }
-    end
-  end
-
-  def new
-    @instance = Instance.new( {
-                  :id=>params[:id],
-                  :image_id=>params[:image_id],
-                } )
-    @image   = driver.image( credentials, :id => params[:image_id] )
-    @flavors = driver.flavors( credentials, { 
:architecture=>@image.architecture } )
-    @realms = driver.realms(credentials)
-  end
-
-  def create
-    @image   = driver.image( credentials, :id=>params[:image_id] )
-    respond_to do |format|
-      format.html {
-        instance = driver.create_instance( credentials, @image.id, params )
-        redirect_to instance_url( instance.id )
-      }
-      format.xml {
-        instance = driver.create_instance( credentials, @image.id, params )
-        render :xml=>convert_to_xml( :instance, instance), :status=>:created, 
:location=>instance_url( instance.id )
-      }
-    end
-  end
-
-  ##
-
-  def start
-    driver.start_instance(credentials, params[:id])
-    redirect_to :action=>:show
-  end
-
-  def stop
-    driver.stop_instance(credentials, params[:id])
-    redirect_to :action=>:show
-  end
-
-  def destroy
-    driver.destroy_instance( credentials, params[:id] )
-    redirect_to :action=>:show
-  end
-
-  def reboot
-    driver.reboot_instance( credentials, params[:id] )
-    redirect_to :action=>:show
-  end
-
-end
diff --git a/server/app/controllers/realms_controller.rb 
b/server/app/controllers/realms_controller.rb
deleted file mode 100644
index 492b850..0000000
--- a/server/app/controllers/realms_controller.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class RealmsController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def index
-    build_filter( :id )
-    build_filter( :architecture )
-    @realms = driver.realms( credentials, @filter )
-    respond_to do |format|
-      format.html
-      format.xml {
-        render :xml=>convert_to_xml( :realm, @realms )
-      }
-    end
-  end
-
-  def show
-    @realm = driver.realm( credentials, :id => params[:id] )
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :realm, @realm )
-      }
-    end
-  end
-
-end
diff --git a/server/app/controllers/root_controller.rb 
b/server/app/controllers/root_controller.rb
deleted file mode 100644
index a616740..0000000
--- a/server/app/controllers/root_controller.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class RootController < ApplicationController
-
-  def index
-  end
-
-end
diff --git a/server/app/controllers/storage_snapshots_controller.rb 
b/server/app/controllers/storage_snapshots_controller.rb
deleted file mode 100644
index 7b5a074..0000000
--- a/server/app/controllers/storage_snapshots_controller.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class StorageSnapshotsController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def index
-    @snapshots = driver.storage_snapshots( credentials, :id=>params[:id] )
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :storage_snapshot, @snapshots )
-      }
-    end
-  end
-
-  def show
-    @snapshot = driver.storage_snapshot( credentials, :id=>params[:id] )
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :storage_snapshot, @snapshot )
-      }
-    end
-  end
-
-end
diff --git a/server/app/controllers/storage_volumes_controller.rb 
b/server/app/controllers/storage_volumes_controller.rb
deleted file mode 100644
index 128796e..0000000
--- a/server/app/controllers/storage_volumes_controller.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-class StorageVolumesController < ApplicationController
-
-  include DriverHelper
-  include ConversionHelper
-
-  around_filter :catch_auth
-
-  def index
-    @volumes = driver.storage_volumes( credentials, :id=>params[:id] )
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :storage_volume, @volumes )
-      }
-    end
-  end
-
-  def show
-    @volume = driver.storage_volume( credentials, :id => params[:id] )
-    respond_to do |format|
-      format.html
-      format.json
-      format.xml {
-        render :xml=>convert_to_xml( :storage_volume, @volume )
-      }
-    end
-  end
-
-end
diff --git a/server/app/stylesheets/.gitignore 
b/server/app/stylesheets/.gitignore
deleted file mode 100644
index 8bf9ddc..0000000
--- a/server/app/stylesheets/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-.sass-cache
-
diff --git a/server/app/stylesheets/application.sass 
b/server/app/stylesheets/application.sass
deleted file mode 100644
index b57ffef..0000000
--- a/server/app/stylesheets/application.sass
+++ /dev/null
@@ -1,128 +0,0 @@
-...@import partials/base.sass
-...@import screen
-
-!main_bg = #ffffff
-
-!th_bg = #cccccc
-!td_bg = #eeeeee
-
-html
-  :background-color = !main_bg
-
-body
-  :font-family "Trebuchet MS"
-  :font-size 90%
-  a
-    :color=  #6498c5 - #444
-
-#wrapper
-  +container
-
-#header
-  :padding 1em
-  :background-image url('/images/topbar-bg.png')
-  img
-    :margin-bottom 1em
-
-#content
-  :margin-bottom 2em
-
-#footer
-  :border-top 1px solid #BBB
-  :padding-top 1ex
-  :text-align right
-  :color #BBB
-  :font-size 70%
-
-#content
-  h1
-    :font-size     160%
-    :margin-bottom 1ex
-  h2
-    :font-size     140%
-    :margin-bottom 1ex
-  h3
-    :font-size     120%
-    :margin-bottom 1ex
-  dl
-    :font-size 90%
-    :margin-bottom 1em
-    di
-      :display block
-      :margin-bottom 1em
-      dt, dd
-        :padding .5ex
-      dt
-        :font-weight bold
-        :background-color = !th_bg
-      dd
-        :padding-left 1em
-        :background-color = !td_bg
-  ul
-    li
-      :list-style-type square
-      :margin-left 1em
-
-  em
-    :font-style italic
-
-
-ul.breadcrumb
-  :background-color #eee
-  :border 1px solid #6498c5
-  :padding 1ex
-  :font-size 90%
-  :margin-bottom 1em
-  a
-    :text-decoration none
-  li
-    :display inline
-
-    &.subsequent:before
-      content: " >> "
-
-table
-  :width 100%
-  th, td
-    :padding .5ex
-    :font-size 90%
-  th
-    :font-weight bold
-    :background-color = !th_bg
-  td
-    :background-color = !td_bg
-
-table.states
-  tr
-    :border-bottom = 1px solid !th_bg - #111
-  th, td
-    :vertical-align top
-
-table
-  tr
-    td
-      :border-bottom 1px solid white
-
-.radio-group
-  :font-size 90%
-  :margin-bottom 1em
-  :background-color = !th_bg
-  label
-    :font-weight bold
-
-.radio-group-details
-  :font-weight normal
-  :display block
-  :padding-left 1em
-  :background-color = !td_bg
-  :padding 1ex
-
-input[type='radio']
-  :margin-top 1ex
-  :margin-left 1ex
-  :margin-bottom 1ex
-
-#state_graph
-  :display block
-  :margin-bottom 2em
-  :text-align center
diff --git a/server/app/stylesheets/ie.sass b/server/app/stylesheets/ie.sass
deleted file mode 100644
index bb3c4b1..0000000
--- a/server/app/stylesheets/ie.sass
+++ /dev/null
@@ -1,14 +0,0 @@
-...@import blueprint.sass
-
-+blueprint-ie
-
-// Note :
-//
-// Compass will center text to fix IE6 container centering.
-// This means all your texts will be centered under all version of IE by 
default.
-// Please don't forget to restore the correct behavior to your main container 
(but not the body tag!)
-//
-// Example :
-//
-// .container, .footer
-//   :text-align left
diff --git a/server/app/stylesheets/partials/_base.sass 
b/server/app/stylesheets/partials/_base.sass
deleted file mode 100644
index f6d45e5..0000000
--- a/server/app/stylesheets/partials/_base.sass
+++ /dev/null
@@ -1,11 +0,0 @@
-// Here is where you can define your constants for your application and to 
configure the blueprint framework.
-// Feel free to delete these if you want keep the defaults:
-
-!blueprint_grid_columns = 24
-!blueprint_container_size = 950px
-!blueprint_grid_margin  = 10px
-
-// Use this to calculate the width based on the total width.
-// Or you can set !blueprint_grid_width to a fixed value and unset 
!blueprint_container_size -- it will be calculated for you.
-!blueprint_grid_width   = (!blueprint_container_size + !blueprint_grid_margin) 
/ !blueprint_grid_columns - !blueprint_grid_margin
-
diff --git a/server/app/stylesheets/print.sass 
b/server/app/stylesheets/print.sass
deleted file mode 100644
index 8e5d49d..0000000
--- a/server/app/stylesheets/print.sass
+++ /dev/null
@@ -1,3 +0,0 @@
-...@import blueprint.sass
-
-+blueprint-print
\ No newline at end of file
diff --git a/server/app/stylesheets/screen.sass 
b/server/app/stylesheets/screen.sass
deleted file mode 100644
index e3588dc..0000000
--- a/server/app/stylesheets/screen.sass
+++ /dev/null
@@ -1,40 +0,0 @@
-// This import applies a global reset to any page that imports this stylesheet.
-...@import blueprint/reset.sass
-// To configure blueprint, edit the partials/base.sass file.
-...@import partials/base.sass
-// Import all the default blueprint modules so that we can access their mixins.
-...@import blueprint
-// Import the non-default scaffolding module.
-...@import blueprint/modules/scaffolding.sass
-
-// To generate css equivalent to the blueprint css but with your configuration 
applied, uncomment:
-// +blueprint
-
-//Recommended Blueprint configuration with scoping and semantic layout:
-+blueprint-typography("body.bp")
-+blueprint-scaffolding("body.bp")
-body.bp
-  +blueprint-utilities
-  +blueprint-debug
-  +blueprint-interaction
-  // Remove the scaffolding when you're ready to start doing visual design.
-  // Or leave it in if you're happy with how blueprint looks out-of-the-box
-form.bp
-  +blueprint-form
-
-// Page layout can be done using mixins applied to your semantic classes and 
IDs:
-body.three-col
-  #container
-    +container
-  #header, #footer
-    +column(!blueprint_grid_columns)
-  #sidebar
-    // One third of the grid columns, rounding down. With 24 cols, this is 8.
-    !sidebar_columns = floor(!blueprint_grid_columns / 3)
-    +column(!sidebar_columns)
-  #content
-    // Two thirds of the grid columns, rounding up.
-    // With 24 cols, this is 16.
-    !content_columns = ceil(2 * !blueprint_grid_columns / 3)
-    // true means it's the last column in the row
-    +column(!content_columns, true)
diff --git a/server/config/boot.rb b/server/config/boot.rb
deleted file mode 100644
index 0ad0f78..0000000
--- a/server/config/boot.rb
+++ /dev/null
@@ -1,110 +0,0 @@
-# Don't change this file!
-# Configure your app in config/environment.rb and config/environments/*.rb
-
-RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
-
-module Rails
-  class << self
-    def boot!
-      unless booted?
-        preinitialize
-        pick_boot.run
-      end
-    end
-
-    def booted?
-      defined? Rails::Initializer
-    end
-
-    def pick_boot
-      (vendor_rails? ? VendorBoot : GemBoot).new
-    end
-
-    def vendor_rails?
-      File.exist?("#{RAILS_ROOT}/vendor/rails")
-    end
-
-    def preinitialize
-      load(preinitializer_path) if File.exist?(preinitializer_path)
-    end
-
-    def preinitializer_path
-      "#{RAILS_ROOT}/config/preinitializer.rb"
-    end
-  end
-
-  class Boot
-    def run
-      load_initializer
-      Rails::Initializer.run(:set_load_path)
-    end
-  end
-
-  class VendorBoot < Boot
-    def load_initializer
-      require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
-      Rails::Initializer.run(:install_gem_spec_stubs)
-      Rails::GemDependency.add_frozen_gem_path
-    end
-  end
-
-  class GemBoot < Boot
-    def load_initializer
-      self.class.load_rubygems
-      load_rails_gem
-      require 'initializer'
-    end
-
-    def load_rails_gem
-      if version = self.class.gem_version
-        gem 'rails', version
-      else
-        gem 'rails'
-      end
-    rescue Gem::LoadError => load_error
-      $stderr.puts %(Missing the Rails #{version} gem. Please `gem install 
-v=#{version} rails`, update your RAILS_GEM_VERSION setting in 
config/environment.rb for the Rails version you do have installed, or comment 
out RAILS_GEM_VERSION to use the latest version installed.)
-      exit 1
-    end
-
-    class << self
-      def rubygems_version
-        Gem::RubyGemsVersion rescue nil
-      end
-
-      def gem_version
-        if defined? RAILS_GEM_VERSION
-          RAILS_GEM_VERSION
-        elsif ENV.include?('RAILS_GEM_VERSION')
-          ENV['RAILS_GEM_VERSION']
-        else
-          parse_gem_version(read_environment_rb)
-        end
-      end
-
-      def load_rubygems
-        require 'rubygems'
-        min_version = '1.3.1'
-        unless rubygems_version >= min_version
-          $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have 
#{rubygems_version}). Please `gem update --system` and try again.)
-          exit 1
-        end
-
-      rescue LoadError
-        $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please 
install RubyGems and try again: http://rubygems.rubyforge.org)
-        exit 1
-      end
-
-      def parse_gem_version(text)
-        $1 if text =~ 
/^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
-      end
-
-      private
-        def read_environment_rb
-          File.read("#{RAILS_ROOT}/config/environment.rb")
-        end
-    end
-  end
-end
-
-# All that for this:
-Rails.boot!
diff --git a/server/config/compass/.gitignore b/server/config/compass/.gitignore
new file mode 100644
index 0000000..8bf9ddc
--- /dev/null
+++ b/server/config/compass/.gitignore
@@ -0,0 +1,2 @@
+.sass-cache
+
diff --git a/server/config/compass/application.sass 
b/server/config/compass/application.sass
new file mode 100644
index 0000000..b57ffef
--- /dev/null
+++ b/server/config/compass/application.sass
@@ -0,0 +1,128 @@
+...@import partials/base.sass
+...@import screen
+
+!main_bg = #ffffff
+
+!th_bg = #cccccc
+!td_bg = #eeeeee
+
+html
+  :background-color = !main_bg
+
+body
+  :font-family "Trebuchet MS"
+  :font-size 90%
+  a
+    :color=  #6498c5 - #444
+
+#wrapper
+  +container
+
+#header
+  :padding 1em
+  :background-image url('/images/topbar-bg.png')
+  img
+    :margin-bottom 1em
+
+#content
+  :margin-bottom 2em
+
+#footer
+  :border-top 1px solid #BBB
+  :padding-top 1ex
+  :text-align right
+  :color #BBB
+  :font-size 70%
+
+#content
+  h1
+    :font-size     160%
+    :margin-bottom 1ex
+  h2
+    :font-size     140%
+    :margin-bottom 1ex
+  h3
+    :font-size     120%
+    :margin-bottom 1ex
+  dl
+    :font-size 90%
+    :margin-bottom 1em
+    di
+      :display block
+      :margin-bottom 1em
+      dt, dd
+        :padding .5ex
+      dt
+        :font-weight bold
+        :background-color = !th_bg
+      dd
+        :padding-left 1em
+        :background-color = !td_bg
+  ul
+    li
+      :list-style-type square
+      :margin-left 1em
+
+  em
+    :font-style italic
+
+
+ul.breadcrumb
+  :background-color #eee
+  :border 1px solid #6498c5
+  :padding 1ex
+  :font-size 90%
+  :margin-bottom 1em
+  a
+    :text-decoration none
+  li
+    :display inline
+
+    &.subsequent:before
+      content: " >> "
+
+table
+  :width 100%
+  th, td
+    :padding .5ex
+    :font-size 90%
+  th
+    :font-weight bold
+    :background-color = !th_bg
+  td
+    :background-color = !td_bg
+
+table.states
+  tr
+    :border-bottom = 1px solid !th_bg - #111
+  th, td
+    :vertical-align top
+
+table
+  tr
+    td
+      :border-bottom 1px solid white
+
+.radio-group
+  :font-size 90%
+  :margin-bottom 1em
+  :background-color = !th_bg
+  label
+    :font-weight bold
+
+.radio-group-details
+  :font-weight normal
+  :display block
+  :padding-left 1em
+  :background-color = !td_bg
+  :padding 1ex
+
+input[type='radio']
+  :margin-top 1ex
+  :margin-left 1ex
+  :margin-bottom 1ex
+
+#state_graph
+  :display block
+  :margin-bottom 2em
+  :text-align center
diff --git a/server/config/compass/ie.sass b/server/config/compass/ie.sass
new file mode 100644
index 0000000..bb3c4b1
--- /dev/null
+++ b/server/config/compass/ie.sass
@@ -0,0 +1,14 @@
+...@import blueprint.sass
+
++blueprint-ie
+
+// Note :
+//
+// Compass will center text to fix IE6 container centering.
+// This means all your texts will be centered under all version of IE by 
default.
+// Please don't forget to restore the correct behavior to your main container 
(but not the body tag!)
+//
+// Example :
+//
+// .container, .footer
+//   :text-align left
diff --git a/server/config/compass/partials/_base.sass 
b/server/config/compass/partials/_base.sass
new file mode 100644
index 0000000..f6d45e5
--- /dev/null
+++ b/server/config/compass/partials/_base.sass
@@ -0,0 +1,11 @@
+// Here is where you can define your constants for your application and to 
configure the blueprint framework.
+// Feel free to delete these if you want keep the defaults:
+
+!blueprint_grid_columns = 24
+!blueprint_container_size = 950px
+!blueprint_grid_margin  = 10px
+
+// Use this to calculate the width based on the total width.
+// Or you can set !blueprint_grid_width to a fixed value and unset 
!blueprint_container_size -- it will be calculated for you.
+!blueprint_grid_width   = (!blueprint_container_size + !blueprint_grid_margin) 
/ !blueprint_grid_columns - !blueprint_grid_margin
+
diff --git a/server/config/compass/print.sass b/server/config/compass/print.sass
new file mode 100644
index 0000000..8e5d49d
--- /dev/null
+++ b/server/config/compass/print.sass
@@ -0,0 +1,3 @@
+...@import blueprint.sass
+
++blueprint-print
\ No newline at end of file
diff --git a/server/config/compass/screen.sass 
b/server/config/compass/screen.sass
new file mode 100644
index 0000000..e3588dc
--- /dev/null
+++ b/server/config/compass/screen.sass
@@ -0,0 +1,40 @@
+// This import applies a global reset to any page that imports this stylesheet.
+...@import blueprint/reset.sass
+// To configure blueprint, edit the partials/base.sass file.
+...@import partials/base.sass
+// Import all the default blueprint modules so that we can access their mixins.
+...@import blueprint
+// Import the non-default scaffolding module.
+...@import blueprint/modules/scaffolding.sass
+
+// To generate css equivalent to the blueprint css but with your configuration 
applied, uncomment:
+// +blueprint
+
+//Recommended Blueprint configuration with scoping and semantic layout:
++blueprint-typography("body.bp")
++blueprint-scaffolding("body.bp")
+body.bp
+  +blueprint-utilities
+  +blueprint-debug
+  +blueprint-interaction
+  // Remove the scaffolding when you're ready to start doing visual design.
+  // Or leave it in if you're happy with how blueprint looks out-of-the-box
+form.bp
+  +blueprint-form
+
+// Page layout can be done using mixins applied to your semantic classes and 
IDs:
+body.three-col
+  #container
+    +container
+  #header, #footer
+    +column(!blueprint_grid_columns)
+  #sidebar
+    // One third of the grid columns, rounding down. With 24 cols, this is 8.
+    !sidebar_columns = floor(!blueprint_grid_columns / 3)
+    +column(!sidebar_columns)
+  #content
+    // Two thirds of the grid columns, rounding up.
+    // With 24 cols, this is 16.
+    !content_columns = ceil(2 * !blueprint_grid_columns / 3)
+    // true means it's the last column in the row
+    +column(!content_columns, true)
diff --git a/server/config/database.yml b/server/config/database.yml
deleted file mode 100644
index 025d62a..0000000
--- a/server/config/database.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-# SQLite version 3.x
-#   gem install sqlite3-ruby (not necessary on OS X Leopard)
-development:
-  adapter: sqlite3
-  database: db/development.sqlite3
-  pool: 5
-  timeout: 5000
-
-# Warning: The database defined as "test" will be erased and
-# re-generated from your development database when you run "rake".
-# Do not set this db to the same as development or production.
-test:
-  adapter: sqlite3
-  database: db/test.sqlite3
-  pool: 5
-  timeout: 5000
-
-production:
-  adapter: sqlite3
-  database: db/production.sqlite3
-  pool: 5
-  timeout: 5000
diff --git a/server/config/environment.rb b/server/config/environment.rb
deleted file mode 100644
index 5d967f3..0000000
--- a/server/config/environment.rb
+++ /dev/null
@@ -1,111 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-# Be sure to restart your server when you modify this file
-
-# Specifies gem version of Rails to use when vendor/rails is not present
-RAILS_GEM_VERSION = '2.3.2' unless defined? RAILS_GEM_VERSION
-
-# Bootstrap the Rails environment, frameworks, and default configuration
-require File.join(File.dirname(__FILE__), 'boot')
-
-Rails::Initializer.run do |config|
-  # Settings in config/environments/* take precedence over those specified 
here.
-  # Application configuration should go into files in config/initializers
-  # -- all .rb files in that directory are automatically loaded.
-
-  # Add additional load paths for your own custom dirs
-  # config.load_paths += %W( #{RAILS_ROOT}/extras )
-
-  # Specify gems that this application depends on and have them installed with 
rake gems:install
-  # config.gem "bj"
-  # config.gem "hpricot", :version => '0.6', :source => 
"http://code.whytheluckystiff.net";
-  # config.gem "sqlite3-ruby", :lib => "sqlite3"
-  # config.gem "aws-s3", :lib => "aws/s3"
-
-
-  #config.gem "activerecord-jdbc-adapter",
-             #:lib=>'jdbc_adapter'
-
-  #config.gem "torquebox-gem"
-
-  #config.gem "torquebox-rails"
-  #config.gem "right_aws"
-
-  # Only load the plugins named here, in the order given (default is 
alphabetical).
-  # :all can be used as a placeholder for all plugins not explicitly named
-  # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
-
-  # Skip frameworks you're not going to use. To use Rails without a database,
-  # you must remove the Active Record framework.
-  # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
-  config.frameworks -= [ :active_record ]
-
-  # Activate observers that should always be running
-  # config.active_record.observers = :cacher, :garbage_collector, 
:forum_observer
-
-  # Set Time.zone default to the specified zone and make Active Record 
auto-convert to this zone.
-  # Run "rake -D time" for a list of tasks for finding time zone names.
-  config.time_zone = 'UTC'
-
-  # The default locale is :en and all translations from 
config/locales/*.rb,yml are auto loaded.
-  # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', 
'*.{rb,yml}')]
-  # config.i18n.default_locale = :de
-end
-
-#DEFAULT_DRIVER=:ec2
-DEFAULT_DRIVER=:mock
-#DEFAULT_DRIVER=:rhevm
-
-
-unless defined?( DRIVER )
-  driver_env = ENV['DRIVER']
-  ( driver_env = driver_env.to_sym ) if ( driver_env )
-  DRIVER=driver_env if driver_env
-end
-
-unless defined?( DRIVER )
-  if ( defined?( DEFAULT_DRIVER ) )
-    DRIVER=DEFAULT_DRIVER
-  else
-    raise Exception.new( "DRIVER must be defined through environment variable 
or DEFAULT_DRIVER through config/environment.rb" )
-  end
-end
-
-
-DRIVER_ROOT = File.dirname( __FILE__ ) + "/../../driver-#{DRIVER}"
-$: << DRIVER_ROOT+'/lib'
-
-case DRIVER
-  when :mock
-    DRIVER_CLASS_NAME = "Deltacloud::Drivers::Mock::MockDriver"
-    mock_storage_root = File.dirname( __FILE__ ) + "/../../client/specs/data"
-    puts "Using mock storage root of #{mock_storage_root}"
-    MOCK_STORAGE_ROOT = mock_storage_root
-  when :ec2
-    DRIVER_CLASS_NAME = "Deltacloud::Drivers::EC2::EC2Driver"
-  when :rackspace
-    DRIVER_CLASS_NAME = "Deltacloud::Drivers::Rackspace::RackspaceDriver"
-  when :rhevm
-    DRIVER_CLASS_NAME = "Deltacloud::Drivers::RHEVM::RHEVMDriver"
-  when :rimu
-    DRIVER_CLASS_NAME = "Deltacloud::Drivers::Rimu::RimuHostingDriver"
-  when :opennebula
-    DRIVER_CLASS_NAME = "Deltacloud::Drivers::Opennebula::OpennebulaDriver"
-  else
-    raise Exception.new( "Unknown driver #{DRIVER}" )
-end
diff --git a/server/config/environments/development.rb 
b/server/config/environments/development.rb
deleted file mode 100644
index 85c9a60..0000000
--- a/server/config/environments/development.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# Settings specified here will take precedence over those in 
config/environment.rb
-
-# In the development environment your application's code is reloaded on
-# every request.  This slows down response time but is perfect for development
-# since you don't have to restart the webserver when you make code changes.
-config.cache_classes = false
-
-# Log error messages when you accidentally call methods on nil.
-config.whiny_nils = true
-
-# Show full error reports and disable caching
-config.action_controller.consider_all_requests_local = true
-config.action_view.debug_rjs                         = true
-config.action_controller.perform_caching             = false
-
-# Don't care if the mailer can't send
-config.action_mailer.raise_delivery_errors = false
\ No newline at end of file
diff --git a/server/config/environments/production.rb 
b/server/config/environments/production.rb
deleted file mode 100644
index 27119d2..0000000
--- a/server/config/environments/production.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Settings specified here will take precedence over those in 
config/environment.rb
-
-# The production environment is meant for finished, "live" apps.
-# Code is not reloaded between requests
-config.cache_classes = true
-
-# Full error reports are disabled and caching is turned on
-config.action_controller.consider_all_requests_local = false
-config.action_controller.perform_caching             = true
-config.action_view.cache_template_loading            = true
-
-# See everything in the log (default is :info)
-# config.log_level = :debug
-
-# Use a different logger for distributed setups
-# config.logger = SyslogLogger.new
-
-# Use a different cache store in production
-# config.cache_store = :mem_cache_store
-
-# Enable serving of images, stylesheets, and javascripts from an asset server
-# config.action_controller.asset_host = "http://assets.example.com";
-
-# Disable delivery errors, bad email addresses will be ignored
-# config.action_mailer.raise_delivery_errors = false
-
-# Enable threaded mode
-# config.threadsafe!
\ No newline at end of file
diff --git a/server/config/environments/test.rb 
b/server/config/environments/test.rb
deleted file mode 100644
index d6f80a4..0000000
--- a/server/config/environments/test.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Settings specified here will take precedence over those in 
config/environment.rb
-
-# The test environment is used exclusively to run your application's
-# test suite.  You never need to work with it otherwise.  Remember that
-# your test database is "scratch space" for the test suite and is wiped
-# and recreated between test runs.  Don't rely on the data there!
-config.cache_classes = true
-
-# Log error messages when you accidentally call methods on nil.
-config.whiny_nils = true
-
-# Show full error reports and disable caching
-config.action_controller.consider_all_requests_local = true
-config.action_controller.perform_caching             = false
-config.action_view.cache_template_loading            = true
-
-# Disable request forgery protection in test environment
-config.action_controller.allow_forgery_protection    = false
-
-# Tell Action Mailer not to deliver emails to the real world.
-# The :test delivery method accumulates sent emails in the
-# ActionMailer::Base.deliveries array.
-config.action_mailer.delivery_method = :test
-
-# Use SQL instead of Active Record's schema dumper when creating the test 
database.
-# This is necessary if your schema can't be completely dumped by the schema 
dumper,
-# like if you have constraints or database-specific column types
-# config.active_record.schema_format = :sql
\ No newline at end of file
diff --git a/server/config/initializers/backtrace_silencers.rb 
b/server/config/initializers/backtrace_silencers.rb
deleted file mode 100644
index c2169ed..0000000
--- a/server/config/initializers/backtrace_silencers.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-# Be sure to restart your server when you modify this file.
-
-# You can add backtrace silencers for libraries that you're using but don't 
wish to see in your backtraces.
-# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
-
-# You can also remove all the silencers if you're trying do debug a problem 
that might steem from framework code.
-# Rails.backtrace_cleaner.remove_silencers!
\ No newline at end of file
diff --git a/server/config/initializers/compass.rb 
b/server/config/initializers/compass.rb
deleted file mode 100644
index 9862fac..0000000
--- a/server/config/initializers/compass.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'compass'
-# If you have any compass plugins, require them here.
-Compass.configuration.parse(File.join(RAILS_ROOT, "config", "compass.config"))
-Compass.configuration.environment = RAILS_ENV.to_sym
-Compass.configure_sass_plugin!
diff --git a/server/config/initializers/inflections.rb 
b/server/config/initializers/inflections.rb
deleted file mode 100644
index 9e8b013..0000000
--- a/server/config/initializers/inflections.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# Be sure to restart your server when you modify this file.
-
-# Add new inflection rules using the following format
-# (all these examples are active by default):
-# ActiveSupport::Inflector.inflections do |inflect|
-#   inflect.plural /^(ox)$/i, '\1en'
-#   inflect.singular /^(ox)en/i, '\1'
-#   inflect.irregular 'person', 'people'
-#   inflect.uncountable %w( fish sheep )
-# end
diff --git a/server/config/initializers/mime_types.rb 
b/server/config/initializers/mime_types.rb
deleted file mode 100644
index 30829f7..0000000
--- a/server/config/initializers/mime_types.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# Be sure to restart your server when you modify this file.
-
-# Add new mime types for use in respond_to blocks:
-# Mime::Type.register "text/richtext", :rtf
-# Mime::Type.register_alias "text/html", :iphone
-
-#Mime::Type.register 'text/vnd.graphviz', :gv
-Mime::Type.register_alias 'text/plain', :gv
-
-Mime::Type.register 'image/png', :png
diff --git a/server/config/initializers/new_rails_defaults.rb 
b/server/config/initializers/new_rails_defaults.rb
deleted file mode 100644
index 8ec3186..0000000
--- a/server/config/initializers/new_rails_defaults.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# Be sure to restart your server when you modify this file.
-
-# These settings change the behavior of Rails 2 apps and will be defaults
-# for Rails 3. You can remove this initializer when Rails 3 is released.
-
-if defined?(ActiveRecord)
-  # Include Active Record class name as root for JSON serialized output.
-  ActiveRecord::Base.include_root_in_json = true
-
-  # Store the full class name (including module namespace) in STI type column.
-  ActiveRecord::Base.store_full_sti_class = true
-end
-
-# Use ISO 8601 format for JSON serialized times and dates.
-ActiveSupport.use_standard_json_time_format = true
-
-# Don't escape HTML entities in JSON, leave that for the #json_escape helper.
-# if you're including raw json in an HTML page.
-ActiveSupport.escape_html_entities_in_json = false
\ No newline at end of file
diff --git a/server/config/initializers/session_store.rb 
b/server/config/initializers/session_store.rb
deleted file mode 100644
index 9450644..0000000
--- a/server/config/initializers/session_store.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# Be sure to restart your server when you modify this file.
-
-# Your secret key for verifying cookie session data integrity.
-# If you change this key, all old sessions will become invalid!
-# Make sure the secret is at least 30 characters and all random,
-# no regular words or you'll be exposed to dictionary attacks.
-ActionController::Base.session = {
-  :key         => '_deltacloud-framework_session',
-  :secret      => 
'2f8c7e1de10186f37efa57c9dd816eb2abb7f780fba8844ef73b3e6745101da849e30e54dcf6e4078fc43fce76ead4d7e0d1d06d40646d876f338186810cae18'
-}
-
-# Use the database for sessions instead of the cookie-based default,
-# which shouldn't be used to store highly confidential information
-# (create the session table with "rake db:sessions:create")
-# ActionController::Base.session_store = :active_record_store
diff --git a/server/config/locales/en.yml b/server/config/locales/en.yml
deleted file mode 100644
index ae09dd9..0000000
--- a/server/config/locales/en.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-en:
-  hello: "Hello world"
\ No newline at end of file
diff --git a/server/config/routes.rb b/server/config/routes.rb
deleted file mode 100644
index ea747a0..0000000
--- a/server/config/routes.rb
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# Copyright (C) 2009  Red Hat, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
-
-ActionController::Routing::Routes.draw do |map|
-
-  map.root :controller=>'root'
-
-  map.resource :api, :controller=>'Api'
-
-  map.resources :flavors, :path_prefix=>'api'
-  map.resources :hardware_profiles, :path_prefix=>'api',
-    :as=>'hardware-profiles',
-    :only=>[ :index, :show ]
-
-  map.resources :realms,  :path_prefix=>'api'
-  map.resources :images,  :path_prefix=>'api'
-
-  map.resource :instance_states, :path_prefix=>'api',
-    :as=>'instance-states',
-    :only=>[ :show ]
-
-  map.resources :instances, :path_prefix=>'api',
-    :member=>{
-      :destroy=>:post,
-      :stop=>:post,
-      :start=>:post,
-      :reboot=>:post,
-    }
-
-  map.resource :storage, :path_prefix=>'api' do |s|
-    s.resources :volumes, :controller=>'StorageVolumes'
-    s.resources :snapshots, :controller=>'StorageSnapshots'
-  end
-
-end
-- 
1.7.0.4

_______________________________________________
deltacloud-devel mailing list
[email protected]
https://fedorahosted.org/mailman/listinfo/deltacloud-devel

Reply via email to