Skip to content

Instantly share code, notes, and snippets.

@totten
totten / civicrm-review-template-sublist-1.0.md
Last active October 25, 2017 21:02 — forked from seancolsen/civicrm-review-template-sublist-1.0.md
CiviCRM Review Template SUBLIST-1.0

Checklist

(Move each criterion that you evaluate into "Passing" or "Failing". Add comments describing any failures.)

  • Not evaluated
    • A JIRA ticket is mentioned (or not needed) (r-jira)
    • The automated tests pass (r-test)
    • The code looks good (r-code)
    • It works as advertised (r-run)
    • Users will be able to transition to this change easily (r-users)
// Currently going to latest.civicrm.org/stable.php outputs:
4.5.2
// Proposed new output (B)
[
{version: "4.4.0"},
{version: "4.4.1"},
{version: "4.4.2", security: true}
{version: "4.5.0"},
{version: "4.5.1"},
@totten
totten / LoggerInterface.php
Created November 24, 2012 19:45 — forked from Seldaek/LoggerInterface.php
LoggerInterface PSR Proposal
<?php
namespace PSR\Log;
/**
* Describes a logger instance
*
* The $message MUST be a string.
* The $message MAY contain variable expressions like "%var%" which reference $data['var'].
* The "%var%" notation MUST NOT reference values of nested arrays (eg no "%parent.child%" notation).
@totten
totten / LoggerInterface.php
Created November 20, 2012 19:59 — forked from Seldaek/LoggerInterface.php
LoggerInterface PSR Proposal (with fluent options)
<?php
namespace PSR\Log;
/**
* Describes a logger instance
*
* The $message MUST be a string.
* The $message MAY contain variable expressions like "%var%" which reference $data.
* The $message SHOULD NOT include runtime data using plain string concatenation.