summaryrefslogtreecommitdiff
path: root/devel/horde-chora/files
diff options
context:
space:
mode:
authorSADA Kenji <sada@FreeBSD.org>2002-05-24 20:33:28 +0000
committerSADA Kenji <sada@FreeBSD.org>2002-05-24 20:33:28 +0000
commitef4f0a412de154b79baa0fd28523a4a452ded098 (patch)
tree84ca109006068541b8da38274e5f437aff847b1c /devel/horde-chora/files
parentReset MAINTAINER, as maintainers mail address bounces: (diff)
Upgrade to version 1.1 .
PR: ports/38280 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=59928
Diffstat (limited to 'devel/horde-chora/files')
-rw-r--r--devel/horde-chora/files/patch-aa23
-rw-r--r--devel/horde-chora/files/patch-cvs.php11
-rw-r--r--devel/horde-chora/files/patch-history.php11
-rw-r--r--devel/horde-chora/files/patch-lib_CVSLib_Log.php11
4 files changed, 15 insertions, 41 deletions
diff --git a/devel/horde-chora/files/patch-aa b/devel/horde-chora/files/patch-aa
index c010eb93de6e..544301000550 100644
--- a/devel/horde-chora/files/patch-aa
+++ b/devel/horde-chora/files/patch-aa
@@ -1,6 +1,6 @@
---- config/cvsroots.php.dist.orig Fri Jun 8 22:59:42 2001
-+++ config/cvsroots.php.dist Tue Nov 27 22:42:41 2001
-@@ -27,6 +27,15 @@
+--- config/cvsroots.php.dist.orig Wed Mar 20 21:30:06 2002
++++ config/cvsroots.php.dist Sun May 19 09:41:40 2002
+@@ -30,6 +30,15 @@
$cvsroots = array();
@@ -16,10 +16,17 @@
$cvsroots['php4'] = array(
'name' => 'PHP4',
'location' => '/home/cvs/php4',
-@@ -48,5 +57,6 @@
- 'location' => '/home/cvs/openbsd',
- 'title' => 'OpenBSD CVS Repository'
+@@ -47,8 +56,9 @@
+ 'restrictions' => array('^/?hordeweb/config/defaults.php')
);
-+*/
- ?>
+-$cvsroots['openbsd'] = array(
+- 'name' => 'OpenBSD',
+- 'location' => '/home/cvs/openbsd',
+- 'title' => 'OpenBSD CVS Repository'
++$cvsroots['freebsd'] = array(
++ 'name' => 'FreeBSD',
++ 'location' => '/home/cvs/freebsd',
++ 'title' => 'FreeBSD CVS Repository'
+ );
++*/
diff --git a/devel/horde-chora/files/patch-cvs.php b/devel/horde-chora/files/patch-cvs.php
deleted file mode 100644
index cbc547379172..000000000000
--- a/devel/horde-chora/files/patch-cvs.php
+++ /dev/null
@@ -1,11 +0,0 @@
---- cvs.php.orig Wed Jan 2 18:05:18 2002
-+++ cvs.php Sat Feb 16 20:29:37 2002
-@@ -176,7 +176,7 @@
- }
-
- $textURL= Chora::url('co', $where, array('r'=>$rev));
-- $commitDate = gmdate('jS F Y, g:ia', $lg->date);
-+ $commitDate = date('jS F Y, g:ia', $lg->date);
- $readableDate = CVSLib_File::readableTime($lg->date, true);
-
- $aid = $lg->queryAuthor();
diff --git a/devel/horde-chora/files/patch-history.php b/devel/horde-chora/files/patch-history.php
deleted file mode 100644
index 3a19258f2365..000000000000
--- a/devel/horde-chora/files/patch-history.php
+++ /dev/null
@@ -1,11 +0,0 @@
---- history.php.orig Wed Jan 2 18:05:19 2002
-+++ history.php Sat Feb 16 19:36:54 2002
-@@ -197,7 +197,7 @@
- $bg = isset($branchColours[$bgbr]) ? $branchColours[$bgbr] : 'white';
- $log = $fl->logs[$rev];
- $author = Chora::showAuthorName($log->queryAuthor());
-- $date = gmdate('jS M Y', $log->queryDate());
-+ $date = strftime('%e %b %Y', $log->queryDate());
- $lines = $log->queryChangedLines();
- include $registry->getTemplatePath() . '/history/rev.inc';
-
diff --git a/devel/horde-chora/files/patch-lib_CVSLib_Log.php b/devel/horde-chora/files/patch-lib_CVSLib_Log.php
deleted file mode 100644
index 6457e1c4045e..000000000000
--- a/devel/horde-chora/files/patch-lib_CVSLib_Log.php
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib/CVSLib/Log.php.orig Sat Aug 11 22:59:31 2001
-+++ lib/CVSLib/Log.php Sat Feb 16 19:39:47 2002
-@@ -45,7 +45,7 @@
- case CVSLIB_LOG_DATE:
- $line = array_shift($raw);
- if (preg_match("|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);\s+author:\s+(\S+);\s+state:\s+(\S+);(\s+lines:\s+([0-9\s+-]+))?|", $line, $parts)) {
-- $this->date = mktime($parts[4], $parts[5], $parts[6], $parts[2], $parts[3], $parts[1]);
-+ $this->date = gmmktime($parts[4], $parts[5], $parts[6], $parts[2], $parts[3], $parts[1]);
- $this->author = $parts[7];
- $this->state = $parts[8];
- $this->lines = isset($parts[10])?$parts[10]:'';