projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use named constants for HTTP response codes.
[rails.git]
/
app
/
controllers
/
export_controller.rb
1
class ExportController < ApplicationController
2
def start
3
render :update do |page|
4
page.replace_html :sidebar_content, :partial => 'start'
5
page.call "openSidebar"
6
end
7
end
8
end