Repository: qpid-dispatch Updated Branches: refs/heads/master 68e71edc5 -> 717c49d1b
DISPATCH-304 - Fix the location to which the PNG images are copied Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/717c49d1 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/717c49d1 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/717c49d1 Branch: refs/heads/master Commit: 717c49d1b283b65a973eaf22dd0ea81290759faf Parents: 68e71ed Author: Ganesh Murthy <[email protected]> Authored: Tue May 3 10:31:15 2016 -0400 Committer: Ganesh Murthy <[email protected]> Committed: Tue May 3 10:31:15 2016 -0400 ---------------------------------------------------------------------- doc/CMakeLists.txt | 2 +- doc/book/console_operation.rst | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/717c49d1/doc/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index c4cf2eb..556b2cf 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -79,7 +79,7 @@ if(BUILD_DOCS) # Copy the images. Don't use configure_file since it truncates .png files at 1st ^Z character file(GLOB_RECURSE PNG_SRC RELATIVE ${src} *.png) foreach(file ${PNG_SRC}) - EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src}/${file} ${bin}) + EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src}/${file} ${bin}/${file}) endforeach() # Generate files from management schema http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/717c49d1/doc/book/console_operation.rst ---------------------------------------------------------------------- diff --git a/doc/book/console_operation.rst b/doc/book/console_operation.rst index 33e0446..a374bd9 100644 --- a/doc/book/console_operation.rst +++ b/doc/book/console_operation.rst @@ -36,19 +36,19 @@ Overview page On the overview page, aggregate information about routers, addresses, and connections is displayed. -.. image:: /console_overview.png +.. image:: console_overview.png Topology page ------------- This page displays the router network in a graphical form showing how the routers are connected and information about the individual routers and links. -.. image:: /console_topology.png +.. image:: console_topology.png Router entity details page -------------------------- -.. image:: /console_entity.png +.. image:: console_entity.png Displays detailed information about entities such as routers, links, addresses, memory. @@ -57,14 +57,14 @@ Numeric attributes can be graphed by clicking on the graph icon. Charts page ----------- -.. image:: /console_charts.png +.. image:: console_charts.png This page displays graphs of numeric values that are on the entity details page. Schema page ----------- -.. image:: /console_schema.png +.. image:: console_schema.png This page displays the json schema that is used to manage the router network. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
