-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import 2018-03-12 Fixed default parameters for Gallery::getUrl().
Fixed default parameters for Gallery::getUrl(). Added example PHAR stub and compilation instructions. index.sample: Added index link to show image pages. index.sample: Tweaked built-in config activation case. index.sample: Make index appropriate for use in PHAr as is. index.sample: Tweaked show-image page CSS to combat text overlap. index.sample: Correctly set HTTP response code. config.sample: More comments and better defaults. Updated dev-master alias.
- Loading branch information
Showing
7 changed files
with
75 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,42 @@ | ||
------------------------------------------------------------------------ | ||
r684 | anrdaemon | 2017-10-10 07:41:44 +0300 (Вт, 10 окт 2017) | 3 lines | ||
r761 | anrdaemon | 2018-03-12 18:31:02 +0300 (Mon, 12 Mar 2018) | 2 lines | ||
|
||
- Fix using $this outside object context. | ||
* Change base classes' resolution. | ||
* Fix default parameters for Gallery::getUrl(). | ||
|
||
------------------------------------------------------------------------ | ||
r674 | anrdaemon | 2017-06-25 02:01:04 +0300 (Вс, 25 июн 2017) | 2 lines | ||
r760 | anrdaemon | 2018-03-12 09:01:38 +0300 (Mon, 12 Mar 2018) | 2 lines | ||
|
||
* ArrayIterator to store entries. | ||
* Correctly set HTTP response code. | ||
|
||
------------------------------------------------------------------------ | ||
r673 | anrdaemon | 2017-06-25 01:57:12 +0300 (Вс, 25 июн 2017) | 2 lines | ||
r759 | anrdaemon | 2018-03-12 08:34:55 +0300 (Mon, 12 Mar 2018) | 2 lines | ||
|
||
* Reformat initial assignment. | ||
+ index.sample: Added index link to show image pages. | ||
|
||
------------------------------------------------------------------------ | ||
r672 | anrdaemon | 2017-06-24 00:56:23 +0300 (Сб, 24 июн 2017) | 2 lines | ||
r758 | anrdaemon | 2018-03-12 08:01:19 +0300 (Mon, 12 Mar 2018) | 2 lines | ||
|
||
* Fix setters chaining. | ||
+ Added example PHAR stub and compilation instructions. | ||
|
||
------------------------------------------------------------------------ | ||
r757 | anrdaemon | 2018-03-12 07:55:31 +0300 (Mon, 12 Mar 2018) | 2 lines | ||
|
||
* index.sample: Tweak built-in config activation case. | ||
|
||
------------------------------------------------------------------------ | ||
r756 | anrdaemon | 2018-03-12 07:46:20 +0300 (Mon, 12 Mar 2018) | 2 lines | ||
|
||
* config.sample: More comments and better defaults. | ||
|
||
------------------------------------------------------------------------ | ||
r755 | anrdaemon | 2018-03-12 06:51:49 +0300 (Mon, 12 Mar 2018) | 4 lines | ||
|
||
* index.sample: Make index appropriate for use in PHAr as is. | ||
* index.sample: Tweak show image page CSS to combat text overlap. | ||
|
||
------------------------------------------------------------------------ | ||
r692 | anrdaemon | 2017-10-27 20:48:50 +0300 (Fri, 27 Oct 2017) | 2 lines | ||
|
||
* Update dev-master alias. | ||
|
||
------------------------------------------------------------------------ |
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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
require_once __DIR__ . '/config.php'; | ||
require_once 'phar://' . __FILE__ . '/index.php'; | ||
|
||
__HALT_COMPILER(); |