Sha256: 497fed1a5ae60ace493903ee7c6af822798e178d8f943d72d798081d8fc97965

Contents?: true

Size: 1.82 KB

Versions: 23

Compression:

Stored size: 1.82 KB

Contents

module ActiveMetadata
  class NotesController < ApplicationController

    def index
      @document = params[:model_name].to_class.find(params[:model_id])
      @notes = @document.notes_for params[:field_name]
      respond_to do |format|
        format.html { render :layout => false}
        format.xml  { render :xml => @notes }
      end
    end  

    def edit
      @document = params[:model_name].to_class.find(params[:model_id])
      @note = @document.note_for params[:field_name],params[:id]     
    end  

    def show
      @document = params[:model_name].to_class.find(params[:model_id])
      @note = @document.note_for params[:field_name],params[:id]     
    end  

    def create
      @document = params[:model_name].to_class.find(params[:model_id])
      @document.create_note_for(params[:field_name], params[:note], params[:starred], params[:group])
      respond_to do |format|
        # TODO redirect to edit
        format.js       
      end
    end

    def update
      @document = params[:model_name].to_class.find(params[:model_id])
      @note = @document.note_for params[:field_name],params[:id]     
            
      respond_to do |format|
        if @document.update_note(params[:id],params[:note][:note])
          format.html { redirect_to(active_metadata_show_note_path(@document.class,@document.id,@note.label,@note.id), :notice => 'Note was successfully updated.') }
          format.xml  { head :ok }
        else
          format.html { render :action => "edit" }
          format.xml  { render :xml => @note.errors, :status => :unprocessable_entity }
        end
      end
    end

    def destroy
      @document = params[:model_name].to_class.find(params[:model_id])
      @document.delete_note(params[:id])
      respond_to do |format|
        # TODO redirect to index
        format.js
      end
    end

  end

end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
active_metadata-0.8.9 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.8 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.7.1 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.7 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.6 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.5.2 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.5.1 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.5 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.4 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.3.1 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.3 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.2 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.1 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.8.0 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.7.9 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.7.8 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.7.7 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.7.6 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.7.5 app/controllers/active_metadata/notes_controller.rb
active_metadata-0.7.4 app/controllers/active_metadata/notes_controller.rb