[commits] Horde branch master updated. d6becad64ca0a03e563fb73b53282ce89168cbc5

Jan Schneider jan at horde.org
Thu Dec 8 18:58:14 UTC 2011


The branch "master" has been updated.
The following is a summary of the commits.

from: 5928ae5db9dad9ebce58262c6df85a17743df4db

500d5d8 Close STDERR stream even if there are no errors.
743bfa1 Check if resource too.
c55030b Simplify, use streams, use NUL separators.
317f0ce Split out quicklog functionality.
d087e28 Set initialized flag before running the actual intialization.
27ad1a4 Add tests for only listing revisions of a certain branch.
0f75d10 Fix listing revisions of a certain branch.
4119165 Don't default to any branch, sort by date.
3f06fd2 Bump cache version.
385430a Only add empty entry if we have branches.
07bdc69 There is only one _init for all drivers.
6cbb0be quicklog parameter is not longer used.
9c5a84f Set $defaultActs again, to hide default parameters from URLs.
4fe2787 Fix parse error.
3184262 Fix catching non-existant files.
8754e41 Use runCommand().
f34fad5 Fix and test patchset functionality.
d6becad Merge branch 'horde_vcs-tests'

-----------------------------------------------------------------------

commit 500d5d849a5b4c8eef55f7a0a028f827cad46120
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 5 16:13:44 2011 +0100

    Close STDERR stream even if there are no errors.
    
    There is still some weird delay/timeout in the stream_get_contents() call.

 framework/Vcs/lib/Horde/Vcs/Git.php |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/500d5d849a5b4c8eef55f7a0a028f827cad46120

-----------------------------------------------------------------------

commit 743bfa11b5690f219478ba8cf51224b5162432b7
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 5 19:12:59 2011 +0100

    Check if resource too.

 framework/Vcs/lib/Horde/Vcs/Git.php |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/743bfa11b5690f219478ba8cf51224b5162432b7

-----------------------------------------------------------------------

commit c55030b0803cff4d035c3ebbd47e1dfd4f75e69a
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 14:04:50 2011 +0100

    Simplify, use streams, use NUL separators.

 framework/Vcs/lib/Horde/Vcs/Log/Git.php |   88 +++++++++----------------------
 1 files changed, 25 insertions(+), 63 deletions(-)

http://git.horde.org/horde-git/-/commit/c55030b0803cff4d035c3ebbd47e1dfd4f75e69a

-----------------------------------------------------------------------

commit 317f0ce86c75ac6b0834b0ca2914dfc2a9b7d02f
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:03:51 2011 +0100

    Split out quicklog functionality.

 framework/Vcs/lib/Horde/Vcs/File/Base.php     |   14 +---
 framework/Vcs/lib/Horde/Vcs/File/Cvs.php      |    8 +-
 framework/Vcs/lib/Horde/Vcs/File/Git.php      |  115 ++++++++++---------------
 framework/Vcs/lib/Horde/Vcs/File/Rcs.php      |   68 ++++++++++++++-
 framework/Vcs/lib/Horde/Vcs/File/Svn.php      |   92 +++++++++++++++++---
 framework/Vcs/lib/Horde/Vcs/Log/Svn.php       |   34 ++------
 framework/Vcs/lib/Horde/Vcs/QuickLog/Base.php |  115 +++++++++++++++++++++++++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Cvs.php  |   17 ++++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Git.php  |   45 ++++++++++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Rcs.php  |   17 ++++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Svn.php  |   18 ++++
 framework/Vcs/package.xml                     |   26 +++---
 framework/Vcs/test/Horde/Vcs/CvsTest.php      |   28 ++++++-
 framework/Vcs/test/Horde/Vcs/GitTest.php      |   32 ++++++-
 framework/Vcs/test/Horde/Vcs/RcsTest.php      |   15 +++-
 framework/Vcs/test/Horde/Vcs/SvnTest.php      |   15 +++-
 16 files changed, 510 insertions(+), 149 deletions(-)
 create mode 100644 framework/Vcs/lib/Horde/Vcs/QuickLog/Base.php
 create mode 100644 framework/Vcs/lib/Horde/Vcs/QuickLog/Cvs.php
 create mode 100644 framework/Vcs/lib/Horde/Vcs/QuickLog/Git.php
 create mode 100644 framework/Vcs/lib/Horde/Vcs/QuickLog/Rcs.php
 create mode 100644 framework/Vcs/lib/Horde/Vcs/QuickLog/Svn.php

http://git.horde.org/horde-git/-/commit/317f0ce86c75ac6b0834b0ca2914dfc2a9b7d02f

-----------------------------------------------------------------------

commit d087e28958676a87aea9531fb6b64a254234126f
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:20:41 2011 +0100

    Set initialized flag before running the actual intialization.
    
    This protects against infinite loops if one method inside the initialization
    triggers an _init() call too.

 framework/Vcs/lib/Horde/Vcs/File/Base.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/d087e28958676a87aea9531fb6b64a254234126f

-----------------------------------------------------------------------

commit 27ad1a4cbd7e3cebc43af9abb2634ae0d62e0558
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:27:53 2011 +0100

    Add tests for only listing revisions of a certain branch.

 framework/Vcs/test/Horde/Vcs/CvsTest.php |   18 ++++++++++++++++++
 framework/Vcs/test/Horde/Vcs/GitTest.php |   30 ++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/27ad1a4cbd7e3cebc43af9abb2634ae0d62e0558

-----------------------------------------------------------------------

commit 0f75d10d29020e2962e14c91c1e48e47a2a425c2
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:28:22 2011 +0100

    Fix listing revisions of a certain branch.

 framework/Vcs/lib/Horde/Vcs/File/Cvs.php |    1 +
 framework/Vcs/lib/Horde/Vcs/File/Rcs.php |    7 +++++--
 2 files changed, 6 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/0f75d10d29020e2962e14c91c1e48e47a2a425c2

-----------------------------------------------------------------------

commit 41191658e1d0904c7f5616669c1fc64905f6cc32
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:29:02 2011 +0100

    Don't default to any branch, sort by date.

 chora/browsefile.php |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/41191658e1d0904c7f5616669c1fc64905f6cc32

-----------------------------------------------------------------------

commit 3f06fd2b88458b0dcec82449e28bca8139b0ed4e
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:29:49 2011 +0100

    Bump cache version.

 framework/Vcs/lib/Horde/Vcs/Base.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/3f06fd2b88458b0dcec82449e28bca8139b0ed4e

-----------------------------------------------------------------------

commit 385430a784ad3322469db7cb16ec7295585b7344
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:33:06 2011 +0100

    Only add empty entry if we have branches.

 chora/browsefile.php |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/385430a784ad3322469db7cb16ec7295585b7344

-----------------------------------------------------------------------

commit 07bdc69831cccadf3a1b0aca4d020417014be510
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:42:48 2011 +0100

    There is only one _init for all drivers.

 framework/Vcs/lib/Horde/Vcs/File/Base.php |   20 ++++++--------------
 framework/Vcs/lib/Horde/Vcs/File/Cvs.php  |    2 +-
 framework/Vcs/lib/Horde/Vcs/File/Git.php  |   10 +++++-----
 framework/Vcs/lib/Horde/Vcs/File/Rcs.php  |    1 -
 4 files changed, 12 insertions(+), 21 deletions(-)

http://git.horde.org/horde-git/-/commit/07bdc69831cccadf3a1b0aca4d020417014be510

-----------------------------------------------------------------------

commit 6cbb0be94b80e32b69c4a11e2dbd04d33a7a882e
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:47:24 2011 +0100

    quicklog parameter is not longer used.

 chora/browsedir.php                            |    3 ++-
 framework/Vcs/lib/Horde/Vcs/Base.php           |    2 --
 framework/Vcs/lib/Horde/Vcs/Directory/Base.php |    1 -
 framework/Vcs/lib/Horde/Vcs/Directory/Cvs.php  |    1 -
 framework/Vcs/lib/Horde/Vcs/Directory/Git.php  |    4 +---
 framework/Vcs/lib/Horde/Vcs/Directory/Rcs.php  |    4 +---
 framework/Vcs/lib/Horde/Vcs/Directory/Svn.php  |    5 +----
 framework/Vcs/lib/Horde/Vcs/File/Base.php      |    9 ---------
 framework/Vcs/lib/Horde/Vcs/File/Svn.php       |    4 ----
 9 files changed, 5 insertions(+), 28 deletions(-)

http://git.horde.org/horde-git/-/commit/6cbb0be94b80e32b69c4a11e2dbd04d33a7a882e

-----------------------------------------------------------------------

commit 9c5a84f360d7f8fbfbd94309a07306e58cd1ddff
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 17:50:06 2011 +0100

    Set $defaultActs again, to hide default parameters from URLs.

 chora/lib/Application.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/9c5a84f360d7f8fbfbd94309a07306e58cd1ddff

-----------------------------------------------------------------------

commit 4fe2787108c70853fba66c13b64209a874e2fc51
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 18:07:03 2011 +0100

    Fix parse error.

 framework/Vcs/lib/Horde/Vcs/Directory/Git.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/4fe2787108c70853fba66c13b64209a874e2fc51

-----------------------------------------------------------------------

commit 31842627e9ca87c30b89d68ab50d3990ddcb8507
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 18:10:02 2011 +0100

    Fix catching non-existant files.

 framework/Vcs/lib/Horde/Vcs/File/Git.php |   18 +++++++++---------
 framework/Vcs/test/Horde/Vcs/GitTest.php |    6 +++++-
 2 files changed, 14 insertions(+), 10 deletions(-)

http://git.horde.org/horde-git/-/commit/31842627e9ca87c30b89d68ab50d3990ddcb8507

-----------------------------------------------------------------------

commit 8754e419c3e98e70527338d7655a3cc1b3599fff
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 18:15:27 2011 +0100

    Use runCommand().

 framework/Vcs/lib/Horde/Vcs/Log/Git.php      |   11 ++++++-----
 framework/Vcs/lib/Horde/Vcs/Patchset/Git.php |    7 ++++---
 2 files changed, 10 insertions(+), 8 deletions(-)

http://git.horde.org/horde-git/-/commit/8754e419c3e98e70527338d7655a3cc1b3599fff

-----------------------------------------------------------------------

commit f34fad5a8182866374597a9dadf2c2de98273cb1
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 19:55:43 2011 +0100

    Fix and test patchset functionality.

 chora/app/views/_logMessage.html.php          |   23 +++++++-------
 chora/browsefile.php                          |    2 +-
 chora/patchsets.php                           |   13 +++-----
 chora/templates/checkout/checkout.inc         |    2 +-
 chora/templates/diff/header.inc               |    2 +-
 chora/templates/patchsets/ps_single.inc       |    2 +-
 framework/Vcs/lib/Horde/Vcs/Log/Base.php      |   14 +++++++++
 framework/Vcs/lib/Horde/Vcs/Patchset/Base.php |    2 +
 framework/Vcs/lib/Horde/Vcs/Patchset/Cvs.php  |    7 +++-
 framework/Vcs/lib/Horde/Vcs/Patchset/Git.php  |    6 ++--
 framework/Vcs/lib/Horde/Vcs/Patchset/Svn.php  |   20 ++++---------
 framework/Vcs/test/Horde/Vcs/CvsTest.php      |   39 +++++++++++++++++++++---
 framework/Vcs/test/Horde/Vcs/GitTest.php      |   36 ++++++++++++++++++++++-
 framework/Vcs/test/Horde/Vcs/SvnTest.php      |   38 +++++++++++++++++++++++-
 14 files changed, 155 insertions(+), 51 deletions(-)

http://git.horde.org/horde-git/-/commit/f34fad5a8182866374597a9dadf2c2de98273cb1

-----------------------------------------------------------------------

commit d6becad64ca0a03e563fb73b53282ce89168cbc5
Merge: 5928ae5 f34fad5
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 8 19:57:43 2011 +0100

    Merge branch 'horde_vcs-tests'
    
    Conflicts:
    	framework/Vcs/package.xml

 chora/app/views/_logMessage.html.php           |   23 ++---
 chora/browsedir.php                            |    3 +-
 chora/browsefile.php                           |    8 +-
 chora/lib/Application.php                      |    2 +-
 chora/patchsets.php                            |   13 +--
 chora/templates/checkout/checkout.inc          |    2 +-
 chora/templates/diff/header.inc                |    2 +-
 chora/templates/patchsets/ps_single.inc        |    2 +-
 framework/Vcs/lib/Horde/Vcs/Base.php           |    4 +-
 framework/Vcs/lib/Horde/Vcs/Directory/Base.php |    1 -
 framework/Vcs/lib/Horde/Vcs/Directory/Cvs.php  |    1 -
 framework/Vcs/lib/Horde/Vcs/Directory/Git.php  |    4 +-
 framework/Vcs/lib/Horde/Vcs/Directory/Rcs.php  |    4 +-
 framework/Vcs/lib/Horde/Vcs/Directory/Svn.php  |    5 +-
 framework/Vcs/lib/Horde/Vcs/File/Base.php      |   43 ++-------
 framework/Vcs/lib/Horde/Vcs/File/Cvs.php       |    9 +-
 framework/Vcs/lib/Horde/Vcs/File/Git.php       |  125 ++++++++++--------------
 framework/Vcs/lib/Horde/Vcs/File/Rcs.php       |   74 +++++++++++++-
 framework/Vcs/lib/Horde/Vcs/File/Svn.php       |   92 +++++++++++++++---
 framework/Vcs/lib/Horde/Vcs/Git.php            |    6 +-
 framework/Vcs/lib/Horde/Vcs/Log/Base.php       |   14 +++
 framework/Vcs/lib/Horde/Vcs/Log/Git.php        |   99 ++++++-------------
 framework/Vcs/lib/Horde/Vcs/Log/Svn.php        |   34 +------
 framework/Vcs/lib/Horde/Vcs/Patchset/Base.php  |    2 +
 framework/Vcs/lib/Horde/Vcs/Patchset/Cvs.php   |    7 +-
 framework/Vcs/lib/Horde/Vcs/Patchset/Git.php   |   13 ++-
 framework/Vcs/lib/Horde/Vcs/Patchset/Svn.php   |   20 +---
 framework/Vcs/lib/Horde/Vcs/QuickLog/Base.php  |  115 ++++++++++++++++++++++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Cvs.php   |   17 +++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Git.php   |   45 +++++++++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Rcs.php   |   17 +++
 framework/Vcs/lib/Horde/Vcs/QuickLog/Svn.php   |   18 ++++
 framework/Vcs/package.xml                      |   16 +++-
 framework/Vcs/test/Horde/Vcs/CvsTest.php       |   83 ++++++++++++++--
 framework/Vcs/test/Horde/Vcs/GitTest.php       |  104 +++++++++++++++++++-
 framework/Vcs/test/Horde/Vcs/RcsTest.php       |   15 +++-
 framework/Vcs/test/Horde/Vcs/SvnTest.php       |   53 +++++++++-
 37 files changed, 782 insertions(+), 313 deletions(-)

http://git.horde.org/horde-git/-/commit/d6becad64ca0a03e563fb73b53282ce89168cbc5




More information about the commits mailing list