Fix comments in Horde_* file headers

This commit is contained in:
Thomas Bruederli 2012-05-01 22:34:51 +02:00
parent d4ce6a729a
commit f21b941070
4 changed files with 19 additions and 4 deletions

View file

@ -1,8 +1,7 @@
<?php
/**
* This is a concatenated copy of the following files:
* Horde/Date.php, PEAR/Date/Calc.php, Horde/Date/Recurrence.php
* This is a copy of the Horde/Date.php class from the Horde framework
*/
define('HORDE_DATE_SUNDAY', 0);

View file

@ -1,5 +1,10 @@
<?php
/**
* This is a concatenated copy of the following files:
* PEAR/Date/Calc.php, Horde/Date/Recurrence.php
*/
require_once(dirname(__FILE__) . '/Horde_Date.php');
// {{{ Header

View file

@ -1,5 +1,10 @@
<?php
/**
* This is a concatenated copy of the following files:
* Horde/String.php, Horde/iCalendar.php, Horde/iCalendar/*.php
*/
require_once(dirname(__FILE__) . '/Horde_Date.php');

View file

@ -11,8 +11,14 @@ if [ ! -d "$SRCDIR" ]; then
exit 1
fi
echo "<?php\n"
echo "require_once(dirname(__FILE__) . '/Horde_Date.php');"
echo "<?php
/**
* This is a concatenated copy of the following files:
* Horde/String.php, Horde/iCalendar.php, Horde/iCalendar/*.php
*/
require_once(dirname(__FILE__) . '/Horde_Date.php');"
sed 's/<?php//; s/?>//' $SRCDIR/String.php
echo "\n"