代码搜索:Controller
找到约 10,000 项符合「Controller」的源代码
代码结果 10,000
www.eeworm.com/read/213767/4912517
rb themes_controller.rb
class Admin::ThemesController < Admin::BaseController
def index
@themes = Theme.find_all
@themes.each do |theme|
theme.description_html = TextFilter.filter_text(this_blog, theme.descr
www.eeworm.com/read/213767/4912518
rb sidebar_controller.rb
class Admin::SidebarController < Admin::BaseController
def index
@available = available
# Reset the staged position based on the active position.
Sidebar.delete_all(['blog_id = ? and act
www.eeworm.com/read/213767/4912519
rb pages_controller.rb
require 'base64'
class Admin::PagesController < Admin::BaseController
def index
list
render_action 'list'
end
def list
@pages = Page.find(:all, :order => "id DESC")
@page = Pag
www.eeworm.com/read/213767/4912520
rb textfilters_controller.rb
class Admin::TextfiltersController < Admin::BaseController
def index
list
render_action 'list'
end
def list
@textfilters = TextFilter.find(:all, :order => "id DESC")
@textfilter
www.eeworm.com/read/213767/4912521
rb trackbacks_controller.rb
class Admin::TrackbacksController < Admin::BaseController
before_filter :get_article
def index
list
render_action 'list'
end
def list
@trackbacks = @article.trackbacks.find(:all
www.eeworm.com/read/213767/4912522
rb blacklist_controller.rb
class Admin::BlacklistController < Admin::BaseController
def index
list
render_action 'list'
end
def list
@blacklist_patterns = BlacklistPattern.find :all
end
def show
@bla
www.eeworm.com/read/208214/4994923
m controller_init.m
function controller_init
% Distributed control system: controller node
%
% Receives messages from the sensor node, computes control signal
% and sends it back to the actuator node.
% Initialize True
www.eeworm.com/read/208214/4994981
cpp controller_init.cpp
// Distributed control system: controller node
//
// Receives messages from the sensor node, computes control signal
// and sends it to the actuator node. Also contains a high-priority
// disturbing t
www.eeworm.com/read/208214/4994991
m controller_init.m
function controller_init(arg)
% Distributed control system: controller node
%
% Receives messages from the sensor node, computes control signal
% and sends it to the actuator node. Also contains a hi
www.eeworm.com/read/205153/5025724
rb customer_controller.rb
#---
# Excerpted from "Pragmatic Ajax"
# We make no guarantees that this code is fit for any purpose.
# Visit http://www.pragmaticprogrammer.com/titles/ajax for more book information.
#---
class Cust