qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/6] QMP: re-organize documentation
@ 2013-09-11 20:52 Luiz Capitulino
  2013-09-11 20:52 ` [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp Luiz Capitulino
                   ` (5 more replies)
  0 siblings, 6 replies; 21+ messages in thread
From: Luiz Capitulino @ 2013-09-11 20:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

The QMP dir is storing QMP docs and scripts. This series moves the scripts to
scripts/qmp/ and the docs to docs/qmp/. Also, the docs are updated.

Luiz Capitulino (6):
  QMP: add scripts/qmp
  QMP: fix qmp-commands.txt generation path
  QMP: QMP/ -> docs/qmp/
  QMP: Update README file
  QMP: Update qmp-spec.txt
  QMP: qmp-events.txt: minor fixes

 Makefile                   |   6 +-
 QMP/README                 |  88 ---------
 QMP/qemu-ga-client         | 299 ----------------------------
 QMP/qmp                    | 126 ------------
 QMP/qmp-events.txt         | 480 ---------------------------------------------
 QMP/qmp-shell              | 286 ---------------------------
 QMP/qmp-spec.txt           | 282 --------------------------
 QMP/qmp.py                 | 190 ------------------
 QMP/qom-fuse               | 138 -------------
 QMP/qom-get                |  67 -------
 QMP/qom-list               |  64 ------
 QMP/qom-set                |  64 ------
 docs/qmp/README            |  87 ++++++++
 docs/qmp/qmp-events.txt    | 480 +++++++++++++++++++++++++++++++++++++++++++++
 docs/qmp/qmp-spec.txt      | 273 ++++++++++++++++++++++++++
 scripts/qmp/qemu-ga-client | 299 ++++++++++++++++++++++++++++
 scripts/qmp/qmp            | 126 ++++++++++++
 scripts/qmp/qmp-shell      | 286 +++++++++++++++++++++++++++
 scripts/qmp/qmp.py         | 190 ++++++++++++++++++
 scripts/qmp/qom-fuse       | 138 +++++++++++++
 scripts/qmp/qom-get        |  67 +++++++
 scripts/qmp/qom-list       |  64 ++++++
 scripts/qmp/qom-set        |  64 ++++++
 23 files changed, 2077 insertions(+), 2087 deletions(-)
 delete mode 100644 QMP/README
 delete mode 100755 QMP/qemu-ga-client
 delete mode 100755 QMP/qmp
 delete mode 100644 QMP/qmp-events.txt
 delete mode 100755 QMP/qmp-shell
 delete mode 100644 QMP/qmp-spec.txt
 delete mode 100644 QMP/qmp.py
 delete mode 100755 QMP/qom-fuse
 delete mode 100755 QMP/qom-get
 delete mode 100755 QMP/qom-list
 delete mode 100755 QMP/qom-set
 create mode 100644 docs/qmp/README
 create mode 100644 docs/qmp/qmp-events.txt
 create mode 100644 docs/qmp/qmp-spec.txt
 create mode 100755 scripts/qmp/qemu-ga-client
 create mode 100755 scripts/qmp/qmp
 create mode 100755 scripts/qmp/qmp-shell
 create mode 100644 scripts/qmp/qmp.py
 create mode 100755 scripts/qmp/qom-fuse
 create mode 100755 scripts/qmp/qom-get
 create mode 100755 scripts/qmp/qom-list
 create mode 100755 scripts/qmp/qom-set

-- 
1.8.1.4

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [Qemu-devel] [PATCH v2 0/6] QMP: re-organize documentation
@ 2013-09-13 18:11 Luiz Capitulino
  2013-09-13 18:11 ` [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp Luiz Capitulino
  0 siblings, 1 reply; 21+ messages in thread
From: Luiz Capitulino @ 2013-09-13 18:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

The QMP dir is storing QMP docs and scripts. This series moves the scripts to
scripts/qmp/ and the docs to docs/qmp/. Also, the docs are updated.

v2

 - Set git diff.renames to true
 - Fix trailing whitespaces
 - Other minor fixes

Luiz Capitulino (6):
  QMP: add scripts/qmp
  QMP: fix qmp-commands.txt generation path
  QMP: QMP/ -> docs/qmp/
  QMP: Update README file
  QMP: Update qmp-spec.txt
  QMP: qmp-events.txt: alphabetical order fix and other minor changes

 Makefile                            |  6 +--
 QMP/README                          | 88 -------------------------------------
 docs/qmp/README                     | 87 ++++++++++++++++++++++++++++++++++++
 {QMP => docs/qmp}/qmp-events.txt    | 34 +++++++-------
 {QMP => docs/qmp}/qmp-spec.txt      | 65 ++++++++++++---------------
 {QMP => scripts/qmp}/qemu-ga-client |  0
 {QMP => scripts/qmp}/qmp            |  0
 {QMP => scripts/qmp}/qmp-shell      |  2 +-
 {QMP => scripts/qmp}/qmp.py         |  2 +-
 {QMP => scripts/qmp}/qom-fuse       |  0
 {QMP => scripts/qmp}/qom-get        |  0
 {QMP => scripts/qmp}/qom-list       |  0
 {QMP => scripts/qmp}/qom-set        |  0
 13 files changed, 137 insertions(+), 147 deletions(-)
 delete mode 100644 QMP/README
 create mode 100644 docs/qmp/README
 rename {QMP => docs/qmp}/qmp-events.txt (99%)
 rename {QMP => docs/qmp}/qmp-spec.txt (82%)
 rename {QMP => scripts/qmp}/qemu-ga-client (100%)
 rename {QMP => scripts/qmp}/qmp (100%)
 rename {QMP => scripts/qmp}/qmp-shell (99%)
 rename {QMP => scripts/qmp}/qmp.py (99%)
 rename {QMP => scripts/qmp}/qom-fuse (100%)
 rename {QMP => scripts/qmp}/qom-get (100%)
 rename {QMP => scripts/qmp}/qom-list (100%)
 rename {QMP => scripts/qmp}/qom-set (100%)

-- 
1.8.1.4

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

end of thread, other threads:[~2013-09-13 18:20 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-11 20:52 [Qemu-devel] [PATCH 0/6] QMP: re-organize documentation Luiz Capitulino
2013-09-11 20:52 ` [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp Luiz Capitulino
2013-09-11 22:08   ` Eric Blake
2013-09-11 22:13     ` Eric Blake
2013-09-13 17:52       ` Luiz Capitulino
2013-09-11 20:52 ` [Qemu-devel] [PATCH 2/6] QMP: fix qmp-commands.txt generation path Luiz Capitulino
2013-09-11 22:09   ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 3/6] QMP: QMP/ -> docs/qmp/ Luiz Capitulino
2013-09-11 22:15   ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 4/6] QMP: Update README file Luiz Capitulino
2013-09-11 23:13   ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 5/6] QMP: Update qmp-spec.txt Luiz Capitulino
2013-09-11 23:27   ` Eric Blake
2013-09-13 17:54     ` Luiz Capitulino
2013-09-13 18:00       ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 6/6] QMP: qmp-events.txt: minor fixes Luiz Capitulino
2013-09-11 23:30   ` Eric Blake
2013-09-13 18:01     ` Luiz Capitulino
2013-09-13 18:16       ` Eric Blake
2013-09-13 18:20         ` Luiz Capitulino
  -- strict thread matches above, loose matches on Subject: below --
2013-09-13 18:11 [Qemu-devel] [PATCH v2 0/6] QMP: re-organize documentation Luiz Capitulino
2013-09-13 18:11 ` [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp Luiz Capitulino

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).