This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<tv generator-info-name="WebGrab+Plus/w MDB & REX Postprocess -- version V3.1.0.0 -- Jan van Straaten" generator-info-url="http://www.webgrabplus.com"> | |
<channel id="KABC"> | |
<display-name lang="en">KABC</display-name> | |
<url>http://www.schedulesdirect.org</url> | |
</channel> | |
<channel id="KTLA"> | |
<display-name lang="en">KTLA</display-name> | |
<url>http://www.schedulesdirect.org</url> | |
</channel> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<tv generator-info-name="WebGrab+Plus/w MDB & REX Postprocess -- version V3.1.0.0 -- Jan van Straaten" generator-info-url="http://www.webgrabplus.com"> | |
<channel id="ABC (KABC) Los Angeles, CA"> | |
<display-name lang="en">ABC (KABC) Los Angeles, CA</display-name> | |
<icon src="https://tvtv.us/tvm/i/image/station/100x100/comedytv_logo.png" /> | |
<url>http://www.tvtv.us</url> | |
</channel> | |
<channel id="FOX (KTTV) Los Angeles, CA"> | |
<display-name lang="en">FOX (KTTV) Los Angeles, CA</display-name> | |
<icon src="https://tvtv.us/tvm/i/image/station/100x100/" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "server", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"dependencies": { | |
"apollo-server": "^2.6.3", | |
"apollo-server-express": "^2.6.3", | |
"apollo-server-lambda": "^2.6.3", | |
"express": "^4.17.1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/xenial64" | |
config.vm.box_version = "20161221.0.0" | |
config.vm.network "private_network", ip: "192.168.33.10" | |
config.vm.hostname = "removed" | |
config.vm.synced_folder ".", "/var/www" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MediaController::{closure}() - APP/Controller/MediaController.php, line 63 | |
call_user_func - [internal], line ?? | |
CakeEventManager::dispatch() - CORE/Cake/Event/CakeEventManager.php, line 247 | |
CrudComponent::trigger() - APP/Plugin/Crud/Controller/Component/CrudComponent.php, line 477 | |
CrudBaseObject::_trigger() - APP/Plugin/Crud/Controller/Crud/CrudBaseObject.php, line 151 | |
AddCrudAction::_post() - APP/Plugin/Crud/Controller/Crud/Action/AddCrudAction.php, line 108 | |
CrudAction::handle() - APP/Plugin/Crud/Controller/Crud/CrudAction.php, line 65 | |
CrudComponent::execute() - APP/Plugin/Crud/Controller/Component/CrudComponent.php, line 218 | |
MediaController::create() - APP/Controller/MediaController.php, line 89 | |
ReflectionMethod::invokeArgs() - [internal], line ?? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// controller | |
class MediaController extends AppController { | |
private $foreign_id, $model, $user_id; | |
public $components = array('Paginator', 'RequestHandler', | |
'Crud.Crud' => array( | |
'actions' => array( | |
'create' => 'Crud.add', | |
), | |
'listeners' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Controller: | |
def update | |
@pet = current_user.pets.find(params[:id]) | |
end | |
View: | |
<%= simple_form_for(@pet, :html => {:class => 'form-horizontal'}) do |f| %> | |
<%= f.input :name %> |