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
"use strict"; | |
function waitFor(testFx, onReady, timeOutMillis) { | |
var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 10000, //< Default Max Timout is 3s | |
start = new Date().getTime(), | |
condition = false, | |
interval = setInterval(function() { | |
if ( (new Date().getTime() - start < maxtimeOutMillis) && !condition ) { | |
// If not time-out yet and condition not yet fulfilled | |
condition = (typeof(testFx) === "string" ? eval(testFx) : testFx()); //< defensive code | |
} else { |
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
[blackfire] | |
; setting: log-file | |
; desc : Sets the path of the log file. Use stderr to log to stderr | |
; default: stderr | |
log-file=/tmp/blackfire-agent.log | |
; | |
; setting: log-level | |
; desc : log verbosity level (4: debug, 3: info, 2: warning, 1: error) |
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
worker_processes 4; | |
http { | |
tcp_nopush on; | |
tcp_nodelay on; | |
keepalive_timeout 65; | |
types_hash_max_size 2048; | |
include /etc/nginx/mime.types; | |
default_type application/octet-stream; |
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
Trying to show standard registration form from FOSUser and connectors/provides from HWIOAuthBundle in the same page. | |
Getting error | |
Variable "form" does not exist in FOSUserBundle:Registration:register_content.html.twig at line 1 | |
{# this is app/Resources/HWIOAuthBundle/views/Connect/login.html.twig #} | |
{% extends 'HWIOAuthBundle::layout.html.twig' %} |
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
<?php | |
/* | |
the below is a semplification of | |
https://github.com/symfony/symfony/blob/2.8/src/Symfony/Component/Security/Core/Encoder/MessageDigestPasswordEncoder.php#L44 | |
*/ | |
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
<?php | |
$dpBoxes = json_decode( | |
'["https://dl.dropboxusercontent.com/u/29173892/vagrant-boxes/debian7.3.0-vbox4.3.6-puppet3.4.1.box", | |
"https://dl.dropboxusercontent.com/u/12089300/VirtualBox/openbsd53_amd64_vagrant12.box", | |
"https://dl.dropboxusercontent.com/u/12089300/VirtualBox/openbsd53_amd64.box", | |
"https://dl.dropboxusercontent.com/u/31112574/arch64-20130801.box", | |
"https://dl.dropboxusercontent.com/u/9213047/arch64_2013-07-28.box", | |
"https://dl.dropboxusercontent.com/s/kp4m59j4k5ifj9l/vagrant-archlinux64-20131221.box", | |
"https://dl.dropboxusercontent.com/u/6750592/Arch_Linux_2013.11_x64.box", |
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
vagrant@precise64:/var/www$ /var/www/composer.phar create-project symfony/framework-standard-edition symfony dev-master --prefer-dist --no-interaction -vvv | |
Downloading https://packagist.org/packages.json | |
Writing /home/vagrant/.composer/cache/repo/https---packagist.org/packages.json into cache | |
Downloading https://packagist.org/p/provider-active$341ba3ce6e358f39ee24b4e5aa58b650251cb16e4ab90bd1fa10fc02fba62cb1.json | |
Writing /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-active.json into cache | |
Downloading https://packagist.org/p/provider-latest$2086ec2331a8f4ad6af09788a0d10dad3a09ea7df2eada2e7abb0ca2fcfa9e75.json | |
Writing /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-latest.json into cache | |
Downloading https://packagist.org/p/provider-stale$75ca0f1c535af20d88420c91c6b120e7a6f882309ff56472e5ff50fab5ad623d.json | |
Writing /home/vagrant/.composer/cache/repo/https---packagist.org/p-provider-stale.json into cache | |
Downloading http://packagist.org/p/symfony/framework-standard-edition |
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
/bin/sh -xe /tmp/hudson5724027307813135954.sh | |
+ OE_CUSTOM_HTTP_PORT=8889 | |
+ OE_CUSTOM_SQL_PORT=3334 | |
+ OE_CUSTOM_IP=192.168.50.5 | |
+ export OE_CUSTOM_HTTP_PORT | |
+ export OE_CUSTOM_SQL_PORT | |
+ export OE_CUSTOM_IP | |
+ vagrant destroy --force | |
[default] Forcing shutdown of VM... | |
[default] Destroying VM and associated drives... |
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
<?php | |
class InitialDbMigrationCommand extends CConsoleCommand | |
{ | |
public function run($args) { | |
$schema = $args[0]; | |
$tables = Yii::app()->db->schema->getTables($schema); | |
$addForeignKeys = ''; | |
$dropForeignKeys = ''; |
NewerOlder