update
authorMichael Wallner <mike@php.net>
Tue, 29 Sep 2015 14:20:11 +0000 (16:20 +0200)
committerMichael Wallner <mike@php.net>
Tue, 29 Sep 2015 14:20:11 +0000 (16:20 +0200)
init
presets/CREDITS
presets/LICENSE
presets/README.md

diff --git a/init b/init
index d9917291515730a0977857160c1e5545d50492f4..f172675d8665ca08fa031dc0388b165a7d17c2a2 100755 (executable)
--- a/init
+++ b/init
@@ -19,16 +19,16 @@ do
                ;;
        composer.json)
                test "${COMPOSER+set}" = "" && continue
-               SRCFILE=$(mktemp -t $RANDOM)
+               SRCFILE=$(mktemp)
                php -d variables_order=E $(dirname -- $0)/presets/composer.json >$SRCFILE
                ;;
        package.xml|CREDITS)
                test "${PECL+set}" = "" && continue
-               SRCFILE=$(mktemp -t $RANDOM)
-               php -d variables_order=E $(dirname -- $0)/presets/package.xml >$SRCFILE
+               SRCFILE=$(mktemp)
+               php -d variables_order=E $(dirname -- $0)/presets/$FILE >$SRCFILE
                ;;
        README.md)
-               SRCFILE=$(mktemp -t $RANDOM)
+               SRCFILE=$(mktemp)
                php -d variables_order=E $(dirname -- $0)/presets/README.md >$SRCFILE
                ;;
        *)
index 2c5da8fd13a9ccd553e6deef2b4b9cb2e09d278b..0656ad1f1858b560043e4a098bb34a3f03e9e86d 100644 (file)
@@ -1,2 +1,3 @@
 <?=$_ENV["PECL"]?>
+
 Michael Wallner
index 34859a144f428b591935c3cd573c4223933b841d..f52c89a6784501332be46a0941c49b5769386091 100644 (file)
@@ -1,22 +1,22 @@
 Copyright (c) 2015, Michael Wallner <mike@php.net>.
 All rights reserved.
 
-Redistribution and use in source and binary forms, with or without 
+Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 
-    * Redistributions of source code must retain the above copyright notice, 
+    * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
-    * Redistributions in binary form must reproduce the above copyright 
-      notice, this list of conditions and the following disclaimer in the 
+    * Redistributions in binary form must reproduce the above copyright
+      notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
 
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
index 2e9e9800e8cbf171ca780990d42e99dcf4b44de7..d4a36df9a78ce2ffd603bf7073865645ee9b932c 100644 (file)
@@ -4,7 +4,13 @@
 
 [![Build Status](https://travis-ci.org/m6w6/<?=$REPO?>.svg?branch=master)](https://travis-ci.org/m6w6/<?=$REPO?>)
 
-...
+## Documentation
+
+<?php if (isset($PECL)) : ?>
+See the [online markdown reference](https://mdref.m6w6.name/<?=$PECL=?>).
+
+Known issues are listed in [BUGS](./BUGS) and future ideas can be found in [TODO](./TODO).
+<?php endif; ?>
 
 ## Installing
 <?php if (isset($COMPOSER)) : ?>