File: app/controllers/admin/references_controller.rb

Overview
Module Structure
Class Hierarchy
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: Admin
  class: ReferencesController#1
inherits from
  ApplicationController   
has properties
method: show #2

Class Hierarchy

Code

   1  class Admin::ReferencesController < ApplicationController
   2    def show
   3      respond_to do |format|
   4        format.any { render :action => params[:type], :content_type => "text/html", :layout => false }
   5      end
   6    end
   7  end