-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
679 changed files
with
58,131 additions
and
20,601 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
2.12.1 | ||
2014-09-13 | ||
2.13.0 | ||
2016-08-06 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
route.custom.php | ||
next/ | ||
r/ | ||
.r1/ | ||
.r2/ | ||
.r3/ | ||
.r4/ | ||
.r5/ | ||
|
||
route.custom.php | ||
|
||
.latest |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Edit latest/index.php |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
<?php | ||
/** | ||
* Detect latest API version and run it | ||
* Run latest API version | ||
* | ||
* @author Knut Kohl <[email protected]> | ||
* @copyright 2012-2014 Knut Kohl | ||
* @license MIT License (MIT) http://opensource.org/licenses/MIT | ||
* @version 1.0.0 | ||
*/ | ||
|
||
// Search version directories | ||
$version = glob('..'.DIRECTORY_SEPARATOR.'r*', GLOB_ONLYDIR); | ||
$latest = 'r6'; | ||
|
||
// Get last one ... | ||
$version = array_pop($version); | ||
// and split | ||
$version = explode(DIRECTORY_SEPARATOR, $version); | ||
|
||
include '..'.DIRECTORY_SEPARATOR.array_pop($version).DIRECTORY_SEPARATOR.'index.php'; | ||
include '..' . DIRECTORY_SEPARATOR . $latest . DIRECTORY_SEPARATOR . 'index.php'; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.