[commits] Horde-Hatchery branch master updated. 590615e4a17c384c81b6cf843a782d902f5161ea

Michael M Slusarz slusarz at horde.org
Wed Jan 28 05:04:01 UTC 2009


The branch master has been updated
       via  590615e4a17c384c81b6cf843a782d902f5161ea (commit)
       via  c20cf5a369f077635620af3b574efa76182db051 (commit)
      from  ee6ff322e0a8a5aa91dbffd0bda962ce51427d03 (commit)

-----------------------------------------------------------------------
commit 590615e4a17c384c81b6cf843a782d902f5161ea
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Jan 27 16:48:45 2009 -0700

    More work on Horde_Vcs.
    
    Remove Horde_Vcs_Diff class.
    Fix some issues relating to paths.
    Clean up patchset generation.
    Clean up caching/directory browsing.
    Various phpdoc cleanup.
    Make this code more correctly OO - now down to only 1 main class
    (Horde_Vcs) and 4 subclasses (Horde_Vcs_File, Horde_Vcs_Directory,
    Horde_Vcs_Log, and Horde_Vcs_Patchset).

 chora/annotate.php                  |    2 +-
 chora/browse.php                    |   15 +-
 chora/co.php                        |    8 +-
 chora/diff.php                      |    6 +-
 chora/history.php                   |   15 +-
 chora/lib/Chora.php                 |   18 +-
 chora/lib/base.php                  |    7 -
 chora/patchsets.php                 |    4 +-
 chora/stats.php                     |    2 +-
 chora/templates/log/footer.inc      |    2 +-
 framework/Vcs/lib/Horde/Vcs.php     |  905 +++++++++++++++++--------------
 framework/Vcs/lib/Horde/Vcs/Cvs.php |  385 ++++++--------
 framework/Vcs/lib/Horde/Vcs/Git.php |  270 ++++------
 framework/Vcs/lib/Horde/Vcs/Rcs.php |   59 ++-
 framework/Vcs/lib/Horde/Vcs/Svn.php |  228 +++++----
 15 files changed, 991 insertions(+), 935 deletions(-)

http://git.horde.org/diff.php/chora/annotate.php?rt=horde-hatchery&r1=abc2535ea6f8b5cf3860b4630329b854a946e385&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/browse.php?rt=horde-hatchery&r1=abc2535ea6f8b5cf3860b4630329b854a946e385&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/co.php?rt=horde-hatchery&r1=abc2535ea6f8b5cf3860b4630329b854a946e385&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/diff.php?rt=horde-hatchery&r1=abc2535ea6f8b5cf3860b4630329b854a946e385&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/history.php?rt=horde-hatchery&r1=abc2535ea6f8b5cf3860b4630329b854a946e385&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/lib/Chora.php?rt=horde-hatchery&r1=28a4bb38e253fd441f255e3f5908b348aa624efc&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/lib/base.php?rt=horde-hatchery&r1=cacd96365dced53417dc2a963d0a795b1a3bb4c0&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/patchsets.php?rt=horde-hatchery&r1=28a4bb38e253fd441f255e3f5908b348aa624efc&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/stats.php?rt=horde-hatchery&r1=28a4bb38e253fd441f255e3f5908b348aa624efc&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/chora/templates/log/footer.inc?rt=horde-hatchery&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/framework/Vcs/lib/Horde/Vcs.php?rt=horde-hatchery&r1=bf496881894089aa861cecd26c0701c68f39accd&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/framework/Vcs/lib/Horde/Vcs/Cvs.php?rt=horde-hatchery&r1=bf496881894089aa861cecd26c0701c68f39accd&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/framework/Vcs/lib/Horde/Vcs/Git.php?rt=horde-hatchery&r1=abc2535ea6f8b5cf3860b4630329b854a946e385&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/framework/Vcs/lib/Horde/Vcs/Rcs.php?rt=horde-hatchery&r1=bf496881894089aa861cecd26c0701c68f39accd&r2=590615e4a17c384c81b6cf843a782d902f5161ea
http://git.horde.org/diff.php/framework/Vcs/lib/Horde/Vcs/Svn.php?rt=horde-hatchery&r1=bf496881894089aa861cecd26c0701c68f39accd&r2=590615e4a17c384c81b6cf843a782d902f5161ea

-----------------------------------------------------------------------
commit c20cf5a369f077635620af3b574efa76182db051
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Jan 27 12:35:05 2009 -0700

    Fix sentinels

 imp/docs/CHANGES       |    2 +-
 jeta/docs/CHANGES      |    2 +-
 kronolith/docs/CHANGES |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/diff.php/imp/docs/CHANGES?rt=horde-hatchery&r1=ee6ff322e0a8a5aa91dbffd0bda962ce51427d03&r2=c20cf5a369f077635620af3b574efa76182db051
http://git.horde.org/diff.php/jeta/docs/CHANGES?rt=horde-hatchery&r1=e505eea958fab18af0db600ae904bfbe04c7cd54&r2=c20cf5a369f077635620af3b574efa76182db051
http://git.horde.org/diff.php/kronolith/docs/CHANGES?rt=horde-hatchery&r1=1ae5be0e17efe3368e15cddab0e6e3f683a3a767&r2=c20cf5a369f077635620af3b574efa76182db051




More information about the commits mailing list