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 <?php
/** /**
* This is a concatenated copy of the following files: * This is a copy of the Horde/Date.php class from the Horde framework
* Horde/Date.php, PEAR/Date/Calc.php, Horde/Date/Recurrence.php
*/ */
define('HORDE_DATE_SUNDAY', 0); define('HORDE_DATE_SUNDAY', 0);

View file

@ -1,5 +1,10 @@
<?php <?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'); require_once(dirname(__FILE__) . '/Horde_Date.php');
// {{{ Header // {{{ Header

View file

@ -1,5 +1,10 @@
<?php <?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'); require_once(dirname(__FILE__) . '/Horde_Date.php');

View file

@ -11,8 +11,14 @@ if [ ! -d "$SRCDIR" ]; then
exit 1 exit 1
fi fi
echo "<?php\n" echo "<?php
echo "require_once(dirname(__FILE__) . '/Horde_Date.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 sed 's/<?php//; s/?>//' $SRCDIR/String.php
echo "\n" echo "\n"