From: Michael Wood <michael.g.wood@intel.com>
To: toaster@yoctoproject.org
Subject: Re: [review-request] adamian/20150515_fix_table_header
Date: Fri, 15 May 2015 17:52:58 +0100 [thread overview]
Message-ID: <5556246A.6090606@intel.com> (raw)
In-Reply-To: <CAJ2CSBuVEYFzG5jrRLNQ0du+LvYhXR+Ny0x5MbFY9NX7i_4=_g@mail.gmail.com>
This wouldn't be valid html as it'll do:
<thead id="tableheader">
<th>dog</th>
</thead>
When it should be
<thead id="tableheader">
<tr>
<th>dog</th>
</tr>
</thead>
Just put an empty <th> in the <tr> that should be valid then.
diff --git a/bitbake/lib/toaster/toastergui/templates/toastertable.html
b/bitbake/lib/toaster/toastergui/templates/toastertable.html
index 598d295..d68d093 100644
--- a/bitbake/lib/toaster/toastergui/templates/toastertable.html
+++ b/bitbake/lib/toaster/toastergui/templates/toastertable.html
@@ -93,6 +93,7 @@
<!-- The actual table -->
<table class="table table-bordered table-hover tablesorter"
id="{{table_name}}">
<thead>
+ <tr><th></th></tr>
</thead>
<tbody></tbody>
</table>
Michael
On 15/05/15 14:45, Damian, Alexandru wrote:
> Hi,
>
> This patch brings back table header in the toastertable - based pages.
>
> Can you please review ?
>
> Thank you,
> Alex
>
> --
> Alex Damian
> Yocto Project
> SSG / OTC
>
>
next prev parent reply other threads:[~2015-05-15 16:53 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-15 13:45 [review-request] adamian/20150515_fix_table_header Damian, Alexandru
2015-05-15 16:52 ` Michael Wood [this message]
2015-05-21 9:47 ` Damian, Alexandru
-- strict thread matches above, loose matches on Subject: below --
2015-05-19 15:27 Damian, Alexandru
2015-05-19 16:31 ` Michael Wood
2015-05-20 13:38 ` Damian, Alexandru
2015-05-21 10:12 ` Damian, Alexandru
2015-05-21 10:23 ` Barros Pena, Belen
2015-05-21 10:27 ` Barros Pena, Belen
2015-05-21 10:25 ` Michael Wood
2015-05-21 10:43 ` Damian, Alexandru
2015-05-29 13:58 ` Damian, Alexandru
2015-06-01 13:43 ` Paul Eggleton
2015-06-01 13:49 ` Damian, Alexandru
2015-06-01 15:33 ` Paul Eggleton
2015-06-02 9:11 ` Damian, Alexandru
2015-06-02 11:32 ` Damian, Alexandru
2015-06-03 11:50 ` Michael Wood
2015-06-03 14:33 ` Damian, Alexandru
2015-05-19 16:36 ` Barros Pena, Belen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5556246A.6090606@intel.com \
--to=michael.g.wood@intel.com \
--cc=toaster@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.