All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] Improvements to pybootchartgui
@ 2013-11-15 17:08 Peter Kjellerstedt
  2013-11-15 17:08 ` [PATCH 01/14] pybootchartgui: Import pybootchartgui 0.14.5 Peter Kjellerstedt
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Peter Kjellerstedt @ 2013-11-15 17:08 UTC (permalink / raw)
  To: openembedded-core

This corrects and improves pybootchartgui. It starts by importing the
relevant parts for pybootchartgui from the latest version (0.14.5) of
bootchart2 from "https://github.com/mmeeks/bootchart". It then corrects
a couple of problems (e.g., X scaling, X offset of the chart, and header
height), and finally adds a couple of improvements (e.g., disable
irrelevant options, draw a lot less ticks, and use "Show more" to show
all processes).

//Peter

The following changes since commit 4fdc3d77d4a875b7236536bf78849a4d1f6a7449:

  kbd: Fix stdarg related errors on uclibc (2013-11-08 17:31:36 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib pkj/pybootchartgui
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/pybootchartgui

Peter Kjellerstedt (14):
  pybootchartgui: Import pybootchartgui 0.14.5
  pybootchartgui: Make the horizontal scaling stay within bounds
  pybootchartgui: Set the initial state of "Show more" correctly
  pybootchartgui: Correct the X offset for the chart
  pybootchartgui: Use correct header height
  pybootchartgui: Avoid having overlapping process bars
  pybootchartgui: No need to do a double list comprehension over files
  pybootchartgui: Disable options that do not make sense
  pybootchartgui: Draw a lot less ticks
  pybootchartgui: Make "Show more" show all processes
  pybootchartgui: Make bars without a specified color white
  pybootchartgui: Reorder the legend to match the task execution order
  pybootchartgui: Add a color for the package_write_* tasks
  pybootchartgui: Add option --minutes to show time in minutes

 scripts/pybootchartgui/AUTHORS                     |  10 +-
 scripts/pybootchartgui/COPYING                     | 912 +++++++--------------
 scripts/pybootchartgui/MAINTAINERS                 |   3 +
 scripts/pybootchartgui/NEWS                        | 204 +++++
 .../pybootchartgui/{README => README.pybootchart}  |  19 +-
 scripts/pybootchartgui/pybootchartgui.py           |  16 +
 scripts/pybootchartgui/pybootchartgui/batch.py     |  53 +-
 scripts/pybootchartgui/pybootchartgui/draw.py      | 763 +++++++++++++----
 scripts/pybootchartgui/pybootchartgui/gui.py       | 597 ++++++++------
 scripts/pybootchartgui/pybootchartgui/main.py      |  79 +-
 scripts/pybootchartgui/pybootchartgui/main.py.in   | 183 +++++
 scripts/pybootchartgui/pybootchartgui/parsing.py   | 796 ++++++++++++++----
 .../pybootchartgui/pybootchartgui/process_tree.py  | 126 +--
 scripts/pybootchartgui/pybootchartgui/samples.py   | 226 +++--
 .../pybootchartgui/tests/parser_test.py            |  82 +-
 .../pybootchartgui/tests/process_tree_test.py      |  30 +-
 16 files changed, 2623 insertions(+), 1476 deletions(-)
 create mode 100644 scripts/pybootchartgui/MAINTAINERS
 create mode 100644 scripts/pybootchartgui/NEWS
 rename scripts/pybootchartgui/{README => README.pybootchart} (61%)
 mode change 100644 => 120000 scripts/pybootchartgui/pybootchartgui/main.py
 create mode 100644 scripts/pybootchartgui/pybootchartgui/main.py.in

-- 
1.8.4



^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2013-11-19 12:16 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-15 17:08 [PATCH 00/14] Improvements to pybootchartgui Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 01/14] pybootchartgui: Import pybootchartgui 0.14.5 Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 02/14] pybootchartgui: Make the horizontal scaling stay within bounds Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 03/14] pybootchartgui: Set the initial state of "Show more" correctly Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 04/14] pybootchartgui: Correct the X offset for the chart Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 05/14] pybootchartgui: Use correct header height Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 06/14] pybootchartgui: Avoid having overlapping process bars Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 07/14] pybootchartgui: No need to do a double list comprehension over files Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 08/14] pybootchartgui: Disable options that do not make sense Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 09/14] pybootchartgui: Draw a lot less ticks Peter Kjellerstedt
2013-11-15 17:08 ` [PATCH 10/14] pybootchartgui: Make "Show more" show all processes Peter Kjellerstedt
2013-11-15 17:09 ` [PATCH 11/14] pybootchartgui: Make bars without a specified color white Peter Kjellerstedt
2013-11-15 17:09 ` [PATCH 12/14] pybootchartgui: Reorder the legend to match the task execution order Peter Kjellerstedt
2013-11-15 17:09 ` [PATCH 13/14] pybootchartgui: Add a color for the package_write_* tasks Peter Kjellerstedt
2013-11-15 17:09 ` [PATCH 14/14] pybootchartgui: Add option --minutes to show time in minutes Peter Kjellerstedt
2013-11-15 23:24 ` [PATCH 00/14] Improvements to pybootchartgui Burton, Ross
2013-11-19 12:16   ` Peter Kjellerstedt

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.