[commits] Horde branch master updated. 67b9597b6f7c008a764f166ad12f9113fcf48238
Chuck Hagenbuch
chuck at horde.org
Sun Nov 14 04:37:34 UTC 2010
The branch "master" has been updated.
The following is a summary of the commits.
from: ad4432df85306a715da38a69f22f98b3c4917618
7e58715 "Pretty" does not describe a mime type
75431e4 Autoload Helpers
c2f6c0f Encapsulate HTML diff generation in a view helper
67b9597 First try at CSS-layout diffs instead of table. Some nice gradient touches; a few rough edges.
-----------------------------------------------------------------------
commit 7e587153b506a2ce12572a59efdbac4eee98c5e1
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Sat Nov 13 11:52:04 2010 -0500
"Pretty" does not describe a mime type
chora/app/views/file/html.html.php | 20 ++++++++++++++++++++
chora/app/views/file/pretty.html.php | 20 --------------------
chora/browsedir.php | 2 +-
chora/lib/Renderer/File/Html.php | 33 +++++++++++++++++++++++++++++++++
chora/lib/Renderer/File/Pretty.php | 33 ---------------------------------
5 files changed, 54 insertions(+), 54 deletions(-)
create mode 100644 chora/app/views/file/html.html.php
delete mode 100644 chora/app/views/file/pretty.html.php
create mode 100644 chora/lib/Renderer/File/Html.php
delete mode 100644 chora/lib/Renderer/File/Pretty.php
http://git.horde.org/co.php/chora/app/views/file/html.html.php?rt=horde-git&r=7e587153b506a2ce12572a59efdbac4eee98c5e1
http://git.horde.org/diff.php/chora/app/views/file/pretty.html.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=7e587153b506a2ce12572a59efdbac4eee98c5e1
http://git.horde.org/diff.php/chora/browsedir.php?rt=horde-git&r1=b769c8e0b964acde4ff044ff8fcbca0eda5fb684&r2=7e587153b506a2ce12572a59efdbac4eee98c5e1
http://git.horde.org/co.php/chora/lib/Renderer/File/Html.php?rt=horde-git&r=7e587153b506a2ce12572a59efdbac4eee98c5e1
http://git.horde.org/diff.php/chora/lib/Renderer/File/Pretty.php?rt=horde-git&r1=f4c308509eccafff991b0093d793a02dc0502c14&r2=7e587153b506a2ce12572a59efdbac4eee98c5e1
-----------------------------------------------------------------------
commit 75431e498e6517b1d56b3f3fba412fe4fd753fc6
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Sat Nov 13 21:37:49 2010 -0500
Autoload Helpers
framework/Core/lib/Horde/Registry.php | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
http://git.horde.org/diff.php/framework/Core/lib/Horde/Registry.php?rt=horde-git&r1=075aa65cfb84aba07e9986be3039531067c6ff8a&r2=75431e498e6517b1d56b3f3fba412fe4fd753fc6
-----------------------------------------------------------------------
commit c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Sat Nov 13 13:57:57 2010 -0500
Encapsulate HTML diff generation in a view helper
chora/app/helpers/Diff.php | 86 +++++++++++++++++++++++++++++++++
chora/app/views/diff/added.html.php | 4 ++
chora/app/views/diff/caption.html.php | 7 +++
chora/app/views/diff/change.html.php | 20 ++++++++
chora/app/views/diff/context.html.php | 4 ++
chora/app/views/diff/diff.html.php | 24 +++++++++
chora/app/views/diff/removed.html.php | 4 ++
chora/diff.php | 77 ++---------------------------
chora/templates/diff/header.inc | 40 +++++++++++++++
chora/templates/diff/hr/add.inc | 4 --
chora/templates/diff/hr/change.inc | 20 --------
chora/templates/diff/hr/empty.inc | 5 --
chora/templates/diff/hr/footer.inc | 2 -
chora/templates/diff/hr/header.inc | 67 -------------------------
chora/templates/diff/hr/nochange.inc | 5 --
chora/templates/diff/hr/remove.inc | 4 --
chora/templates/diff/hr/row.inc | 8 ---
chora/themes/screen.css | 71 +++++++++++++--------------
18 files changed, 229 insertions(+), 223 deletions(-)
create mode 100644 chora/app/helpers/Diff.php
create mode 100644 chora/app/views/diff/added.html.php
create mode 100644 chora/app/views/diff/caption.html.php
create mode 100644 chora/app/views/diff/change.html.php
create mode 100644 chora/app/views/diff/context.html.php
create mode 100644 chora/app/views/diff/diff.html.php
create mode 100644 chora/app/views/diff/removed.html.php
create mode 100644 chora/templates/diff/header.inc
delete mode 100644 chora/templates/diff/hr/add.inc
delete mode 100644 chora/templates/diff/hr/change.inc
delete mode 100644 chora/templates/diff/hr/empty.inc
delete mode 100644 chora/templates/diff/hr/footer.inc
delete mode 100644 chora/templates/diff/hr/header.inc
delete mode 100644 chora/templates/diff/hr/nochange.inc
delete mode 100644 chora/templates/diff/hr/remove.inc
delete mode 100644 chora/templates/diff/hr/row.inc
http://git.horde.org/co.php/chora/app/helpers/Diff.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/app/views/diff/added.html.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/app/views/diff/caption.html.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/app/views/diff/change.html.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/app/views/diff/context.html.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/app/views/diff/diff.html.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/app/views/diff/removed.html.php?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/diff.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/co.php/chora/templates/diff/header.inc?rt=horde-git&r=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/add.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/change.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/empty.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/footer.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/header.inc?rt=horde-git&r1=b6856e81f7cd943c20c58d2c9a1410a542af7138&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/nochange.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/remove.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/templates/diff/hr/row.inc?rt=horde-git&r1=4e075b9b5e26ea7d3de59ef5bad793a6a0161c03&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
http://git.horde.org/diff.php/chora/themes/screen.css?rt=horde-git&r1=f4c308509eccafff991b0093d793a02dc0502c14&r2=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549
-----------------------------------------------------------------------
commit 67b9597b6f7c008a764f166ad12f9113fcf48238
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Sat Nov 13 23:26:10 2010 -0500
First try at CSS-layout diffs instead of table. Some nice gradient touches; a few rough edges.
chora/app/views/diff/added.html.php | 8 +++---
chora/app/views/diff/change.html.php | 21 ++++++--------
chora/app/views/diff/context.html.php | 8 +++---
chora/app/views/diff/diff.html.php | 17 +++++------
chora/app/views/diff/removed.html.php | 8 +++---
chora/themes/screen.css | 47 +++++++++++++++++++++++----------
6 files changed, 62 insertions(+), 47 deletions(-)
http://git.horde.org/diff.php/chora/app/views/diff/added.html.php?rt=horde-git&r1=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549&r2=67b9597b6f7c008a764f166ad12f9113fcf48238
http://git.horde.org/diff.php/chora/app/views/diff/change.html.php?rt=horde-git&r1=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549&r2=67b9597b6f7c008a764f166ad12f9113fcf48238
http://git.horde.org/diff.php/chora/app/views/diff/context.html.php?rt=horde-git&r1=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549&r2=67b9597b6f7c008a764f166ad12f9113fcf48238
http://git.horde.org/diff.php/chora/app/views/diff/diff.html.php?rt=horde-git&r1=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549&r2=67b9597b6f7c008a764f166ad12f9113fcf48238
http://git.horde.org/diff.php/chora/app/views/diff/removed.html.php?rt=horde-git&r1=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549&r2=67b9597b6f7c008a764f166ad12f9113fcf48238
http://git.horde.org/diff.php/chora/themes/screen.css?rt=horde-git&r1=c2f6c0fc56e1a6b9f4ac53981a4d025614b9b549&r2=67b9597b6f7c008a764f166ad12f9113fcf48238
More information about the commits
mailing list