Skip to content

Commit

Permalink
bumped version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
TRPB committed Dec 23, 2015
1 parent 18c96e2 commit 678b453
Show file tree
Hide file tree
Showing 22 changed files with 29 additions and 20 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"license": "BSD-2-Clause",
"homepage": "https://github.com/Level-2/Transphporm",
"keywords": ["template system"],
"minimum-stability": "dev",
"authors": [
{
"name": "Tom Butler",
Expand Down
2 changes: 1 addition & 1 deletion src/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
/** Builds a Transphorm instance from the 3 constituent parts. XML template string, TSS string and data */
class Builder {
Expand Down
2 changes: 1 addition & 1 deletion src/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
class Cache {
private $cache;
Expand Down
2 changes: 1 addition & 1 deletion src/CssToXpath.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
class CssToXpath {
private $specialChars = [' ', '.', '>', '~', '#', ':', '[', ']'];
Expand Down
2 changes: 1 addition & 1 deletion src/Formatter/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Formatter;
/** Date/time formatting for use in formmat: property*/
class Date {
Expand Down
2 changes: 1 addition & 1 deletion src/Formatter/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Formatter;
class Number {
private $locale;
Expand Down
2 changes: 1 addition & 1 deletion src/Formatter/StringFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Formatter;
class StringFormatter {
public function uppercase($val) {
Expand Down
2 changes: 1 addition & 1 deletion src/Hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
interface Hook {
public function run(\DomElement $element);
Expand Down
2 changes: 1 addition & 1 deletion src/Hook/DataFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Hook;
/* Handles data() and iteration() functions in the CDS */
class DataFunction {
Expand Down
5 changes: 5 additions & 0 deletions src/Hook/Formatter.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/* @description Transformation Style Sheets - Revolutionising PHP templating *
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 1.0 */
namespace Transphporm\Hook;
class Formatter {
private $formatters = [];
Expand Down
2 changes: 1 addition & 1 deletion src/Hook/PostProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Hook;
/** Hooks into the template system, gets assigned as `ul li` or similar and `run()` is called with any elements that match */
class PostProcess implements \Transphporm\Hook {
Expand Down
2 changes: 1 addition & 1 deletion src/Hook/PseudoMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Hook;
/** Determines whether $element matches the pseudo rule such as nth-child() or [attribute="value"] */
class PseudoMatcher {
Expand Down
2 changes: 1 addition & 1 deletion src/Hook/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Hook;
/** Hooks into the template system, gets assigned as `ul li` or similar and `run()` is called with any elements that match */
class Rule implements \Transphporm\Hook {
Expand Down
2 changes: 1 addition & 1 deletion src/Property.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
interface Property {
public function run($value, \DomElement $element, Hook\Rule $rule);
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Bind.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Property;
class Bind implements \Transphporm\Property {
private $data;
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Property;
class Content implements \Transphporm\Property {
private $data;
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Display.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Property;
class Display implements \Transphporm\Property {
public function run($value, \DomElement $element, \Transphporm\Hook\Rule $rule) {
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Repeat.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm\Property;
class Repeat implements \Transphporm\Property {
private $data;
Expand Down
5 changes: 5 additions & 0 deletions src/Rule.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/* @description Transformation Style Sheets - Revolutionising PHP templating *
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 1.0 */
namespace Transphporm;
class Rule {
private $query;
Expand Down
2 changes: 1 addition & 1 deletion src/Sheet.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
/** Parses a .cds file into individual rules, each rule has a query e,g, `ul li` and a set of rules e.g. `display: none; data: iteration(id);` */
class Sheet {
Expand Down
2 changes: 1 addition & 1 deletion src/StringExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
class StringExtractor {
private $str;
Expand Down
2 changes: 1 addition & 1 deletion src/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Tom Butler [email protected] *
* @copyright 2015 Tom Butler <[email protected]> | https://r.je/ *
* @license http://www.opensource.org/licenses/bsd-license.php BSD License *
* @version 0.9 */
* @version 1.0 */
namespace Transphporm;
/** Loads an XML string into a DomDocument and allows searching for specific elements using xpath based hooks */
class Template {
Expand Down

0 comments on commit 678b453

Please sign in to comment.