<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| {% extends 'base.volt' %} | |
| {% block content %} | |
| {%- macro error_messages(message, field, type) %} | |
| <div> | |
| <span class="error-type">{{ type }}</span> | |
| <span class="error-field">{{ field }}</span> | |
| <span class="error-message">{{ message }}</span> | |
| </div> |
| " ---------------------------------------------------------------------------------------------------" | |
| " UI Configuration | |
| " ---------------------------------------------------------------------------------------------------" | |
| colorscheme jellybeans | |
| set guifont=Liberation\ Mono\ 09 | |
| set linespace=6 | |
| set nospell | |
| set t_Co=256 | |
| set bg=dark | |
| nnoremap ; : |
| #! /bin/sh | |
| # | |
| # run as current user | |
| # | |
| # before, you should edit php-fpm.conf | |
| # and comment out [www] user and group. | |
| PHP_BASE=$HOME/.phpbrew/php/$PHPBREW_PHP | |
| PHP_FPM_BIN=$PHP_BASE/sbin/php-fpm |
| <?php | |
| interface Pizza | |
| { | |
| public function getDescription(); | |
| public function getPrice(); | |
| } | |
| class PlainPizza implements Pizza | |
| { |
| # Update packages | |
| sudo apt-get update && sudo apt-get upgrade --yes | |
| # Install git | |
| sudo apt-get git-core install build-essential autoconf libtool libxml2 libxml2-dev openssl libcurl4-openssl-dev \ | |
| libbz2-1.0 libbz2-dev libjpeg-dev libpng12-dev libfreetype6 libfreetype6-dev \ | |
| libldap-2.4-2 libldap2-dev libmcrypt4 libmcrypt-dev libmysqlclient-dev \ | |
| libxslt1.1 libxslt1-dev libxt-dev | |
| <?php | |
| class Repository | |
| { | |
| /** | |
| * Define o nome da tabela. | |
| * | |
| * @var string | |
| */ |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant::Config.run do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. | |
| # Every Vagrant virtual environment requires a box to build off of. | |
| config.vm.box = "precise64" |
| set :application, "App Name" # Your app name | |
| set :repository, "git@github.com:xxxxx/xxx.git" # Your git repository | |
| set :document_root, "/home/user/www/awesome_app" | |
| set :deploy_via, :remote_cache | |
| # SSH Settings | |
| set :user, "user_ssh" | |
| set :password, "password_ssh" | |
| set :use_sudo, false |