Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
merge remote changes
Browse files Browse the repository at this point in the history
  • Loading branch information
oyejorge committed Sep 24, 2015
2 parents 046cd93 + 947599f commit 8cd680a
Show file tree
Hide file tree
Showing 58 changed files with 13 additions and 9 deletions.
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
language: php

php:
- "7"
- "5.6"
- "5.5"
- "5.4"
- "5.3"
- 7
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- nightly

sudo: false
Empty file modified lib/Less/.easymin/ignore_prefixes
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions lib/Less/Cache.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ public static function Get( $less_files, $parser_options = array(), $modify_vars
self::ListFiles($list_file, $list, $cached_name);
$compiled_name = self::CompiledName($list);

// if $cached_name != $compiled_name, we know we need to recompile
if( !$cached_name || $cached_name !== $compiled_name ){
// if $cached_name is the same as the $compiled name, don't regenerate
if( !$cached_name || $cached_name === $compiled_name ){

$output_file = self::OutputFile($compiled_name, $parser_options );

Expand Down
Empty file modified lib/Less/Colors.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Configurable.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Environment.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Exception/Chunk.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Exception/Compiler.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Exception/Parser.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Functions.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Less.php.combine
100755 → 100644
Empty file.
Empty file modified lib/Less/Mime.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Output/Mapped.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Parser.php
100755 → 100644
Empty file.
Empty file modified lib/Less/SourceMap/Base64VLQ.php
100755 → 100644
Empty file.
Empty file modified lib/Less/SourceMap/Generator.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Alpha.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Anonymous.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Assignment.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Attribute.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Call.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Color.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Comment.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Condition.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Dimension.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Directive.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Element.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Expression.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Extend.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Import.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Javascript.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Keyword.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Media.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Mixin/Call.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Mixin/Definition.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/NameValue.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Negative.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Operation.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Paren.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Quoted.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Rule.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Ruleset.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Selector.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/UnicodeDescriptor.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Unit.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/UnitConversions.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Url.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Value.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Tree/Variable.php
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions lib/Less/Version.php
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php

/**
* Release numbers
Expand All @@ -8,7 +8,7 @@
*/
class Less_Version{

const version = '1.7.0.6'; // The current build number of less.php
const version = '1.7.0.7'; // The current build number of less.php
const less_version = '1.7'; // The less.js version that this build should be compatible with
const cache_version = '170'; // The parser cache version

Expand Down
Empty file modified lib/Less/Visitor.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Visitor/extendFinder.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Visitor/import.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Visitor/joinSelector.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Visitor/processExtends.php
100755 → 100644
Empty file.
Empty file modified lib/Less/Visitor/toCSS.php
100755 → 100644
Empty file.
Empty file modified lib/Less/VisitorReplacing.php
100755 → 100644
Empty file.

0 comments on commit 8cd680a

Please sign in to comment.