From b6b755b2bfa540700123b4aaa479eb9c0ea67849 Mon Sep 17 00:00:00 2001 From: sfradel Date: Sat, 16 Mar 2013 10:42:59 +0200 Subject: [PATCH 01/12] div class="media-body" nesting fix --- lib/comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/comments.php b/lib/comments.php index 5131fe2..aae0736 100644 --- a/lib/comments.php +++ b/lib/comments.php @@ -51,7 +51,7 @@ class Roots_Walker_Comment extends Walker_Comment { call_user_func($args['end-callback'], $comment, $args, $depth); return; } - echo "\n"; + echo "\n"; } } From 0acc7f381327b051255b2fbb97f526973b917dcb Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 17 Mar 2013 19:02:03 -0500 Subject: [PATCH 02/12] hNews consistency --- templates/content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/content.php b/templates/content.php index 1510053..f80a4c0 100644 --- a/templates/content.php +++ b/templates/content.php @@ -8,7 +8,7 @@
>
-

+

From 35f5c5b6b8c27fabfebc8a9c8803da6db5b50e37 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 24 Mar 2013 16:40:45 -0500 Subject: [PATCH 03/12] Fix #722 - Add comment ID --- lib/comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/comments.php b/lib/comments.php index aae0736..e8c5ba5 100644 --- a/lib/comments.php +++ b/lib/comments.php @@ -28,7 +28,7 @@ class Roots_Walker_Comment extends Walker_Comment { extract($args, EXTR_SKIP); ?> -
  • > +
  • >

    From b6e4e922785da53d1856a9005a7f6a40f351e330 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 24 Mar 2013 17:07:23 -0500 Subject: [PATCH 04/12] Fix #720 - Re-organize archives template - Move posts exists check and post navigation to index.php - templates/content.php now only contains the post that's pulled in from index.php - Specific post format templates now properly work --- index.php | 24 +++++++++++++++++++---- templates/content.php | 44 +++++++++++-------------------------------- 2 files changed, 31 insertions(+), 37 deletions(-) diff --git a/index.php b/index.php index 7d33b88..6fb01ee 100644 --- a/index.php +++ b/index.php @@ -1,5 +1,21 @@ - \ No newline at end of file + + +
    + +
    + + + + + + + +max_num_pages > 1) : ?> + + diff --git a/templates/content.php b/templates/content.php index f80a4c0..8476cb3 100644 --- a/templates/content.php +++ b/templates/content.php @@ -1,34 +1,12 @@ - -
    - +
    > +
    +

    + +
    +
    +
    - - - - -
    > -
    -

    - -
    -
    - -
    -
    -
  • ','
  • ','
  • '); ?> -
    -
    - - -max_num_pages > 1) : ?> - - +
    +
  • ','
  • ','
  • '); ?> +
    +
    From 06c03489bb325c05719ada9ae6751532fe9258d3 Mon Sep 17 00:00:00 2001 From: Matt Ross Date: Thu, 28 Mar 2013 22:47:17 -0300 Subject: [PATCH 05/12] changed is_dropdown evaluation is_dropdown can evaluate to true even if max_depth is 0. This is the WordPress default and implies that dropdowns are enabled. --- lib/nav.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nav.php b/lib/nav.php index b4b516e..51b4b17 100644 --- a/lib/nav.php +++ b/lib/nav.php @@ -38,7 +38,7 @@ class Roots_Nav_Walker extends Walker_Nav_Menu { } function display_element($element, &$children_elements, $max_depth, $depth = 0, $args, &$output) { - $element->is_dropdown = ((!empty($children_elements[$element->ID]) && (($depth + 1) < $max_depth))); + $element->is_dropdown = ((!empty($children_elements[$element->ID] ) && (($depth + 1 ) < $max_depth || ( $max_depth === 0 )))); if ($element->is_dropdown) { if ($depth === 0) { From 37e5423b77cfe5ffefa968a9fd9d8227a28da23b Mon Sep 17 00:00:00 2001 From: Joel Kuczmarski Date: Fri, 22 Mar 2013 05:00:05 -0500 Subject: [PATCH 06/12] add comment template --- lib/comments.php | 17 ++--------------- templates/comment.php | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 15 deletions(-) create mode 100644 templates/comment.php diff --git a/lib/comments.php b/lib/comments.php index e8c5ba5..c5c8d11 100644 --- a/lib/comments.php +++ b/lib/comments.php @@ -28,21 +28,8 @@ class Roots_Walker_Comment extends Walker_Comment { extract($args, EXTR_SKIP); ?> -
  • > - -
    -

    - - - - comment_approved == '0') : ?> -
    - -
    - - - - $depth, 'max_depth' => $args['max_depth']))); ?> +
  • > + +
    +

    + + + + comment_approved == '0') : ?> +
    + +
    + + + + $depth, 'max_depth' => $args['max_depth']))); ?> From 47763e95bb661998877b86005311dd020187413c Mon Sep 17 00:00:00 2001 From: Foxaii Date: Wed, 3 Apr 2013 01:18:53 +0200 Subject: [PATCH 07/12] Added missing collapse class. The collapsed navbar does not increase height to accomodate dropdowns without it. --- templates/header-top-navbar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/header-top-navbar.php b/templates/header-top-navbar.php index 31398f8..3d5494d 100644 --- a/templates/header-top-navbar.php +++ b/templates/header-top-navbar.php @@ -9,7 +9,7 @@ -