Page MenuHomeDevCentral
Feed Advanced Search

Nov 4 2017

dereckson updated the diff for D1168: Prefer to read url from HTTP_HOST than SERVER_NAME.

rm space

Nov 4 2017, 01:41 · Keruald
dereckson updated the diff for D1168: Prefer to read url from HTTP_HOST than SERVER_NAME.

Remove extraneous \n

Nov 4 2017, 01:38 · Keruald
dereckson updated the summary of D1168: Prefer to read url from HTTP_HOST than SERVER_NAME.
Nov 4 2017, 01:37 · Keruald
dereckson added a task to D1165: Ignore empty PATH_INFO string: T1294: Dockerize tools.nasqueron.org.
Nov 4 2017, 01:01 · Keruald
dereckson closed D1165: Ignore empty PATH_INFO string.
Nov 4 2017, 01:00 · Keruald
dereckson added a project to D1165: Ignore empty PATH_INFO string: Keruald.
Nov 4 2017, 00:59 · Keruald

Sep 3 2016

dereckson updated the language for P218 composer.lock from autodetect to json.
Sep 3 2016, 13:14 · Notifications center, Keruald

Sep 2 2016

dereckson closed T965: Create a Docker Hub client API library to trigger builds as Resolved by committing rKDOCKERHUB1f7ac83499fa: Send HTTP payload to Docker Hub to trigger a build.
Sep 2 2016, 23:41 · User-Dereckson, Keruald, Notifications center
dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D647: Send HTTP payload to Docker Hub to trigger a build.
Sep 2 2016, 23:34 · User-Dereckson, Keruald, Notifications center

Aug 28 2016

dereckson moved T965: Create a Docker Hub client API library to trigger builds from Backlog to In progress on the User-Dereckson board.
Aug 28 2016, 14:35 · User-Dereckson, Keruald, Notifications center
dereckson added a project to T965: Create a Docker Hub client API library to trigger builds: User-Dereckson.
Aug 28 2016, 14:35 · User-Dereckson, Keruald, Notifications center
dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D637: DockerImage::loadFromSlashNotation.
Aug 28 2016, 14:35 · User-Dereckson, Keruald, Notifications center

Aug 3 2016

dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D598: Allow to get a TriggerBuild instance from DockerHubImage.
Aug 3 2016, 20:04 · User-Dereckson, Keruald, Notifications center

Aug 2 2016

dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D596: Add support for build trigger payloads.
Aug 2 2016, 21:39 · User-Dereckson, Keruald, Notifications center
dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D595: Get build trigger URL.
Aug 2 2016, 20:23 · User-Dereckson, Keruald, Notifications center
dereckson renamed T965: Create a Docker Hub client API library to trigger builds from Create a Docker Hub client API library to Create a Docker Hub client API library to trigger builds.
Aug 2 2016, 20:20 · User-Dereckson, Keruald, Notifications center
dereckson moved T965: Create a Docker Hub client API library to trigger builds from Backlog to Working on on the Notifications center board.
Aug 2 2016, 18:41 · User-Dereckson, Keruald, Notifications center
dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D593: DockerHubImage class.
Aug 2 2016, 02:37 · User-Dereckson, Keruald, Notifications center
dereckson added a revision to T965: Create a Docker Hub client API library to trigger builds: D592: Repository configuration.
Aug 2 2016, 02:26 · User-Dereckson, Keruald, Notifications center
dereckson created T965: Create a Docker Hub client API library to trigger builds.
Aug 2 2016, 00:16 · User-Dereckson, Keruald, Notifications center

Jul 25 2016

dereckson closed T905: UndoStack as Resolved.
Jul 25 2016, 19:33 · Keruald, Auth Grove, User-Dereckson
dereckson added a revision to T905: UndoStack: D522: Undo mechanism.
Jul 25 2016, 19:32 · Keruald, Auth Grove, User-Dereckson

Jul 21 2016

dereckson moved T905: UndoStack from In progress to Needs Review / Blocked / Waiting on the User-Dereckson board.
Jul 21 2016, 21:54 · Keruald, Auth Grove, User-Dereckson

Jul 9 2016

dereckson claimed T905: UndoStack.
Jul 9 2016, 20:56 · Keruald, Auth Grove, User-Dereckson
dereckson moved T905: UndoStack from Backlog to In progress on the User-Dereckson board.
Jul 9 2016, 20:56 · Keruald, Auth Grove, User-Dereckson

Jul 8 2016

dereckson created T905: UndoStack.
Jul 8 2016, 13:16 · Keruald, Auth Grove, User-Dereckson

Mar 12 2016

dereckson renamed T782: Composer package videlalvaro/php-amqplib is now php-amqplib/php-amqplib from Package videlalvaro/php-amqplib is abandoned, you should avoid using it. Use php-amqplib/php-amqplib instead. to Composer package videlalvaro/php-amqplib is now php-amqplib/php-amqplib.
Mar 12 2016, 22:44 · Keruald, Notifications center
dereckson added projects to T782: Composer package videlalvaro/php-amqplib is now php-amqplib/php-amqplib: Notifications center, Keruald.
Mar 12 2016, 22:43 · Keruald, Notifications center

Jan 29 2016

dereckson added a comment to T699: Some 404 errors want to include again index.php.

Note: after T700 resolution, error will be:

Jan 29 2016, 01:40 · Keruald, Nasqueron Tools
dereckson updated the task description for T699: Some 404 errors want to include again index.php.
Jan 29 2016, 01:38 · Keruald, Nasqueron Tools
dereckson created T699: Some 404 errors want to include again index.php.
Jan 29 2016, 01:38 · Keruald, Nasqueron Tools

Jan 10 2016

dereckson added a comment to D197: Payload full test, with a blackhole broker.

We need to mock the broker.

Code to mock
Broker::setExchangeTarget($this->target)
    ->routeTo($this->routingKey)
    ->sendMessage($this->message);
Mock proposal
$mock = Mockery('Keruald\Broker\AMQPBroker');

$mock->shouldReceive('setExchangeTarget'); // TODO: return $this, not null
$mock->shouldReceive('routeTo');
$mock->shouldReceive('sendMessage');

$this->app->instance('broker', $mock);

Reference: http://docs.mockery.io/en/latest/reference/demeter_chains.html

Jan 10 2016, 03:42 · Keruald, Notifications center

Jan 9 2016

dereckson closed D197: Payload full test, with a blackhole broker by committing rNOTIFc89945f725f8: Payload full test, with a blackhole broker.
Jan 9 2016, 18:13 · Keruald, Notifications center
dereckson retitled D197: Payload full test, with a blackhole broker from WIP: Payload full test to Payload full test, with a blackhole broker.
Jan 9 2016, 18:13 · Keruald, Notifications center

Jul 16 2015

dereckson closed T495: Document Keruald global functions API as Resolved.
{
        "name": "keruald-global-functions",
        "title": "Keruald global functions",
        "preface": "Library of useful PHP functions.",
        "short": "Keruald GF",
        "root": ".",
        "uri.source": "http://devcentral.nasqueron.org/diffusion/KGF/browse/master/%f$%l",
        "exclude": [
                "(^tests/)"
        ]
}
Jul 16 2015, 14:13 · Keruald
dereckson closed T493: nasqueron/phabricator Docker image nginx configuration doesn't handle /diffusion/.../browse/master/...php, a subtask of T495: Document Keruald global functions API, as Resolved.
Jul 16 2015, 14:08 · Keruald
dereckson reopened T495: Document Keruald global functions API as "Open".
Jul 16 2015, 13:58 · Keruald
dereckson added a subtask for T495: Document Keruald global functions API: T493: nasqueron/phabricator Docker image nginx configuration doesn't handle /diffusion/.../browse/master/...php.
Jul 16 2015, 13:58 · Keruald
dereckson closed T495: Document Keruald global functions API as Resolved.

Documentation is live at http://devcentral.nasqueron.org/book/keruald-global-functions/.

Jul 16 2015, 13:50 · Keruald
dereckson created T495: Document Keruald global functions API.
Jul 16 2015, 13:04 · Keruald
dereckson set the image for Keruald to F4706: profile.
Jul 16 2015, 13:02
dereckson created Keruald.
Jul 16 2015, 13:01