diff --git a/cmake/modules/FindXSLTPROC.cmake b/cmake/modules/FindXSLTPROC.cmake index 2afc803926..f1b721ab81 100644 --- a/cmake/modules/FindXSLTPROC.cmake +++ b/cmake/modules/FindXSLTPROC.cmake @@ -68,8 +68,8 @@ MACRO(XML2HTML _guide _mode _xmlsources _gfxsources) -E make_directory ${_outdir}/${_gfxdir}/toolbar COMMAND cp ${CMAKE_CURRENT_SOURCE_DIR}/${_gfxdir}/*.* ${_outdir}/${_gfxdir}/ -# COMMAND cp -# ${CMAKE_CURRENT_SOURCE_DIR}/common_graphics/*.* ${_outdir}/${_gfxdir}/ + COMMAND cp + ${CMAKE_CURRENT_SOURCE_DIR}/common_graphics/*.* ${_outdir}/${_gfxdir}/ COMMAND cp ${CMAKE_CURRENT_SOURCE_DIR}/${_gfxdir}/toolbar/*.* ${_outdir}/${_gfxdir}/toolbar/ COMMAND cmake @@ -80,12 +80,11 @@ MACRO(XML2HTML _guide _mode _xmlsources _gfxsources) --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path ${_gfxdir}/ -# --stringparam admon.graphics.extension .svg + --stringparam admon.graphics.extension .svg --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet -# --output ${_output} ${_STYLESHEET} ${_source} COMMAND chmod @@ -119,8 +118,8 @@ MACRO(XML2PDF _output _sources _stylesheet _paper) --stringparam img.src.path ${CMAKE_CURRENT_SOURCE_DIR}/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 -# --stringparam admon.graphics.path ${CMAKE_CURRENT_SOURCE_DIR}/common_graphics/ -# --stringparam admon.graphics.extension .svg + --stringparam admon.graphics.path ${CMAKE_CURRENT_SOURCE_DIR}/common_graphics/ + --stringparam admon.graphics.extension .svg --nonet --output ${_output}.fo ${_stylesheet} diff --git a/debian/rules b/debian/rules index 8a7d9fd2cd..50842c52e3 100755 --- a/debian/rules +++ b/debian/rules @@ -25,7 +25,7 @@ override_dh_auto_build: # create menu icon convert image/wsicon32.png image/wsicon32.xpm # fix links in documentation - sed -i "s|$(CURDIR)/docbook|..|" obj-*/docbook/ws*g_html_chunked/* + sed -i "s|$(CURDIR)/docbook|..|" obj-*/docbook/ws*g_html_chunked/*.html override_dh_strip: dh_strip --dbg-package=wireshark-dbg diff --git a/docbook/CMakeLists.txt b/docbook/CMakeLists.txt index 0bc6d572b7..e3c99fbccf 100644 --- a/docbook/CMakeLists.txt +++ b/docbook/CMakeLists.txt @@ -25,6 +25,12 @@ find_package( XSLTPROC ) find_package( XMLLINT ) find_package( ASCIIDOC ) +set(COMMON_GRAPHICS + common_graphics/note.svg + common_graphics/tip.svg + common_graphics/warning.svg +) + set(WSUG_FILES wsug_src/WSUG_app_files.xml wsug_src/WSUG_app_howitworks.xml @@ -149,9 +155,6 @@ set(WSUG_GRAPHICS wsug_graphics/ws-time-reference.png wsug_graphics/ws-tools-menu.png wsug_graphics/ws-view-menu.png - wsug_graphics/note.png - wsug_graphics/tip.png - wsug_graphics/warning.png wsug_graphics/toolbar/autoscroll_24.png wsug_graphics/toolbar/capture_filter_24.png wsug_graphics/toolbar/capture_interfaces_24.png @@ -185,6 +188,7 @@ set(WSUG_GRAPHICS wsug_graphics/toolbar/stock_zoom_1_24.png wsug_graphics/toolbar/stock_zoom_in_24.png wsug_graphics/toolbar/stock_zoom_out_24.png + ${COMMON_GRAPHICS} ) set(WSDG_FILES @@ -210,9 +214,7 @@ set(WSDG_GRAPHICS wsdg_graphics/ws-function-blocks.dia wsdg_graphics/ws-function-blocks.png wsdg_graphics/ws-logo.png - wsdg_graphics/note.png - wsdg_graphics/tip.png - wsdg_graphics/warning.png + ${COMMON_GRAPHICS} ) # user-guide.xml must be first in the list diff --git a/docbook/Makefile.am b/docbook/Makefile.am index 2ab4929106..8e3cfffca2 100644 --- a/docbook/Makefile.am +++ b/docbook/Makefile.am @@ -112,14 +112,11 @@ wsug_html/index.html: $(WSUG_SOURCE) wsluarm @ echo --- WSUG - HTML SINGLE PAGE --- mkdir -p wsug_html/wsug_graphics/toolbar cp $(srcdir)/wsug_graphics/*.* wsug_html/wsug_graphics + cp $(srcdir)/common_graphics/*.* wsug_html/wsug_graphics cp $(srcdir)/wsug_graphics/toolbar/* wsug_html/wsug_graphics/toolbar cp $(srcdir)/ws.css wsug_html - $(XSLTPROC) --stringparam base.dir wsug_html/ --stringparam use.id.as.filename 1 \ - --stringparam admon.graphics 1 --stringparam admon.graphics.path wsug_graphics/ \ - --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 \ - --stringparam html.stylesheet ws.css \ - --path .:wsluarm_src \ - --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< > $@ + $(XSLTPROC) --stringparam base.dir wsug_html/ $(COMMON_XSLTPROC_ARGS) \ + --path .:wsluarm_src $(SINGLE_XSLTPROC_ARGS) $< > $@ -chmod -R og+rX wsug_html # create html chunked page files @@ -129,14 +126,12 @@ wsug_html_chunked/index.html: $(WSUG_SOURCE) wsluarm @ echo --- WSUG - HTML CHUNKED --- mkdir -p wsug_html_chunked/wsug_graphics/toolbar cp $(srcdir)/wsug_graphics/*.* wsug_html_chunked/wsug_graphics + cp $(srcdir)/common_graphics/*.* wsug_html_chunked/wsug_graphics cp $(srcdir)/wsug_graphics/toolbar/* wsug_html_chunked/wsug_graphics/toolbar cp $(srcdir)/ws.css wsug_html_chunked - $(XSLTPROC) --stringparam base.dir wsug_html_chunked/ --stringparam use.id.as.filename 1 \ - --stringparam admon.graphics 1 --stringparam admon.graphics.path wsug_graphics/ \ - --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 \ - --stringparam html.stylesheet ws.css \ + $(XSLTPROC) --stringparam base.dir wsug_html_chunked/ $(COMMON_XSLTPROC_ARGS) \ --path .:wsluarm_src \ - --nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl $< + $(CHUNKED_XSLTPROC_ARGS) $< -chmod -R og+rX wsug_html_chunked # create pdf file (through XSL-FO), portrait pages on US letter paper @@ -199,13 +194,11 @@ wsdg_html/index.html: $(WSDG_SOURCE) @ echo --- WSDG - HTML SINGLE PAGE --- mkdir -p wsdg_html/wsdg_graphics/toolbar cp $(srcdir)/wsdg_graphics/*.* wsdg_html/wsdg_graphics + cp $(srcdir)/common_graphics/*.* wsdg_html/wsdg_graphics cp $(srcdir)/wsdg_graphics/toolbar/* wsdg_html/wsdg_graphics/toolbar/ cp $(srcdir)/ws.css wsdg_html - $(XSLTPROC) --stringparam base.dir wsdg_html/ --stringparam use.id.as.filename 1 \ - --stringparam admon.graphics 1 --stringparam admon.graphics.path wsdg_graphics/ \ - --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 \ - --stringparam html.stylesheet ws.css \ - --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< > $@ + $(XSLTPROC) --stringparam base.dir wsdg_html/ $(COMMON_XSLTPROC_ARGS) \ + $(SINGLE_XSLTPROC_ARGS) $< > $@ -chmod -R og+rX wsdg_html # create html chunked page files @@ -215,13 +208,11 @@ wsdg_html_chunked/index.html: $(WSDG_SOURCE) @ echo --- WSDG - HTML CHUNKED --- mkdir -p wsdg_html_chunked/wsdg_graphics/toolbar cp $(srcdir)/wsdg_graphics/*.* wsdg_html_chunked/wsdg_graphics + cp $(srcdir)/common_graphics/*.* wsdg_html_chunked/wsdg_graphics cp $(srcdir)/wsdg_graphics/toolbar/* wsdg_html_chunked/wsdg_graphics/toolbar/ cp $(srcdir)/ws.css wsdg_html_chunked - $(XSLTPROC) --stringparam base.dir wsdg_html_chunked/ --stringparam use.id.as.filename 1 \ - --stringparam admon.graphics 1 --stringparam admon.graphics.path wsdg_graphics/ \ - --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 \ - --stringparam html.stylesheet ws.css \ - --nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl $< + $(XSLTPROC) --stringparam base.dir wsdg_html_chunked/ $(COMMON_XSLTPROC_ARGS) \ + $(CHUNKED_XSLTPROC_ARGS) $< -chmod -R og+rX wsdg_html_chunked # create pdf file (through XSL-FO), portrait pages on US letter paper diff --git a/docbook/Makefile.common b/docbook/Makefile.common index da34e9f5a7..03b9df0cc3 100644 --- a/docbook/Makefile.common +++ b/docbook/Makefile.common @@ -1,4 +1,5 @@ # + WSUG_FILES = \ wsug_src/WSUG_app_files.xml \ wsug_src/WSUG_app_howitworks.xml \ @@ -134,9 +135,6 @@ WSUG_GRAPHICS = \ wsug_graphics/ws-tools-menu.png \ wsug_graphics/ws-time-reference.png \ wsug_graphics/ws-view-menu.png \ - wsug_graphics/note.png \ - wsug_graphics/tip.png \ - wsug_graphics/warning.png \ wsug_graphics/toolbar/autoscroll_24.png \ wsug_graphics/toolbar/capture_filter_24.png \ wsug_graphics/toolbar/capture_interfaces_24.png \ @@ -196,11 +194,13 @@ WSDG_GRAPHICS = \ wsdg_graphics/ws-function-blocks.dia \ wsdg_graphics/ws-function-blocks.png \ wsdg_graphics/ws-logo.png \ - wsdg_graphics/note.png \ - wsdg_graphics/tip.png \ - wsdg_graphics/warning.png \ wsdg_graphics/toolbar/dummy.dummy +COMMON_GRAPHICS = \ + common_graphics/note.svg \ + common_graphics/tip.svg \ + common_graphics/warning.svg + # user-guide.xml must be first in the list (to match $<) WSUG_DIST = \ user-guide.xml \ @@ -209,7 +209,8 @@ WSUG_DIST = \ custom_layer_pdf.xsl \ Makefile.common \ $(WSUG_FILES) \ - $(WSUG_GRAPHICS) + $(WSUG_GRAPHICS) \ + $(COMMON_GRAPHICS) WSUG_SOURCE = $(WSUG_DIST) $(WSUG_GENERATED_SOURCE) @@ -220,7 +221,8 @@ WSDG_DIST = \ custom_layer_pdf.xsl \ Makefile.common \ $(WSDG_FILES) \ - $(WSDG_GRAPHICS) + $(WSDG_GRAPHICS) \ + $(COMMON_GRAPHICS) WSDG_SOURCE = $(WSDG_GENERATED_SOURCE) $(WSDG_DIST) @@ -275,3 +277,21 @@ WSLUA_MODULES = \ $(top_srcdir)/epan/wslua/wslua_file.c \ $(top_srcdir)/epan/wslua/wslua_dir.c \ $(top_srcdir)/epan/wslua/wslua_util.c + +COMMON_XSLTPROC_ARGS = \ + --stringparam use.id.as.filename 1 \ + --stringparam admon.graphics 1 \ + --stringparam admon.graphics.path common_graphics/ \ + --stringparam admon.graphics.extension .svg \ + --stringparam section.autolabel 1 \ + --stringparam section.label.includes.component.label 1 \ + --stringparam html.stylesheet ws.css + +SINGLE_XSLTPROC_ARGS = \ + --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl + +CHUNKED_XSLTPROC_ARGS = \ + --nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl + +HTMLHELP_XSLTPROC_ARGS = \ + --nonet http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl diff --git a/docbook/Makefile.nmake b/docbook/Makefile.nmake index eb3e9c32ff..0a55ffa326 100644 --- a/docbook/Makefile.nmake +++ b/docbook/Makefile.nmake @@ -103,9 +103,11 @@ wsug_html\index.html: $(WSUG_SOURCE) wsluarm @ echo --- WSUG - HTML SINGLE PAGE --- if not exist wsug_html\wsug_graphics\toolbar md wsug_html\wsug_graphics\toolbar cp wsug_graphics/*.* wsug_html/wsug_graphics + cp common_graphics/*.* wsug_html/wsug_graphics cp wsug_graphics/toolbar/* wsug_html/wsug_graphics/toolbar cp ws.css wsug_html - $(XSLTPROC) --stringparam base.dir wsug_html/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path wsug_graphics/ --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl user-guide.xml > $@ + $(XSLTPROC) --stringparam base.dir wsug_html/ $(COMMON_XSLTPROC_ARGS) \ + $(SINGLE_XSLTPROC_ARGS) user-guide.xml > $@ -chmod -R og+rX wsug_html # create html chunked page files @@ -115,9 +117,11 @@ wsug_html_chunked\index.html: $(WSUG_SOURCE) wsluarm @ echo --- WSUG - HTML CHUNKED --- if not exist wsug_html_chunked\wsug_graphics\toolbar md wsug_html_chunked\wsug_graphics\toolbar cp wsug_graphics/*.* wsug_html_chunked/wsug_graphics + cp common_graphics/*.* wsug_html_chunked/wsug_graphics cp wsug_graphics/toolbar/* wsug_html_chunked/wsug_graphics/toolbar cp ws.css wsug_html_chunked - $(XSLTPROC) --stringparam base.dir wsug_html_chunked/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path wsug_graphics/ --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl user-guide.xml + $(XSLTPROC) --stringparam base.dir wsug_html_chunked/ $(COMMON_XSLTPROC_ARGS) \ + $(CHUNKED_XSLTPROC_ARGS) user-guide.xml -chmod -R og+rX wsug_html_chunked # create pdf file (through XSL-FO), portrait pages on US letter paper (the default) @@ -141,9 +145,11 @@ user-guide.chm: $(WSUG_SOURCE) wsluarm !ifdef HHC_EXE @ echo --- WSUG - MICROSOFT HTML HELP --- if not exist wsug_chm\wsug_graphics\toolbar md wsug_chm\wsug_graphics\toolbar - -cp wsug_graphics/*.* wsug_chm/wsug_graphics/ - -cp wsug_graphics/toolbar/* wsug_chm/wsug_graphics/toolbar/ - $(XSLTPROC) --stringparam base.dir wsug_chm/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path wsug_graphics/ --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl user-guide.xml + -cp wsug_graphics/*.* wsug_chm/wsug_graphics + -cp common_graphics/*.* wsug_chm/wsug_graphics + -cp wsug_graphics/toolbar/* wsug_chm/wsug_graphics/toolbar + $(XSLTPROC) --stringparam base.dir wsug_chm/ $(COMMON_XSLTPROC_ARGS) \ + $(HTMLHELP_XSLTPROC_ARGS) user-guide.xml -$(HHC_EXE) htmlhelp.hhp -mv htmlhelp.chm $@ -rm -r htmlhelp.hhp @@ -183,10 +189,12 @@ wsdg_html\index.html: $(WSDG_SOURCE) @ echo --- WSDG - HTML SINGLE PAGE --- if not exist wsdg_html\wsdg_graphics md wsdg_html\wsdg_graphics if not exist wsdg_html\wsdg_graphics\toolbar md wsdg_html\wsdg_graphics\toolbar - cp wsdg_graphics/*.* wsdg_html/wsdg_graphics/ - cp wsdg_graphics/toolbar/* wsdg_html/wsdg_graphics/toolbar/ + cp wsdg_graphics/*.* wsdg_html/wsdg_graphics + cp common_graphics/*.* wsdg_html/wsdg_graphics + cp wsdg_graphics/toolbar/* wsdg_html/wsdg_graphics/toolbar cp ws.css wsdg_html - $(XSLTPROC) --stringparam base.dir wsdg_html/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path wsdg_graphics/ --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl developer-guide.xml > $@ + $(XSLTPROC) --stringparam base.dir wsdg_html/ $(COMMON_XSLTPROC_ARGS) \ + $(SINGLE_XSLTPROC_ARGS) developer-guide.xml > $@ -chmod -R og+rX wsdg_html # create html chunked page files @@ -196,11 +204,12 @@ wsdg_html_chunked\index.html: $(WSDG_SOURCE) @ echo --- WSDG - HTML CHUNKED --- if not exist wsdg_html_chunked\wsdg_graphics md wsdg_html_chunked\wsdg_graphics if not exist wsdg_html_chunked\wsdg_graphics\toolbar md wsdg_html_chunked\wsdg_graphics\toolbar - cp wsdg_graphics/*.* wsdg_html_chunked/wsdg_graphics/ - cp wsdg_graphics/toolbar/* wsdg_html_chunked/wsdg_graphics/toolbar/ + cp wsdg_graphics/*.* wsdg_html_chunked/wsdg_graphics + cp common_graphics/*.* wsdg_html_chunked/wsdg_graphics + cp wsdg_graphics/toolbar/* wsdg_html_chunked/wsdg_graphics/toolbar cp ws.css wsdg_html_chunked - $(XSLTPROC) --stringparam base.dir wsdg_html_chunked/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path wsdg_graphics/ --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl developer-guide.xml - -chmod -R og+rX wsdg_html_chunked + $(XSLTPROC) --stringparam base.dir wsdg_html_chunked/ $(COMMON_XSLTPROC_ARGS) \ + $(CHUNKED_XSLTPROC_ARGS) developer-guide.xml # create pdf file (through XSL-FO), portrait pages on US letter paper (the default) # you will get lot's of errors, but that's ok @@ -224,9 +233,11 @@ developer-guide.chm: $(WSDG_SOURCE) @ echo --- WSDG - MICROSOFT HTML HELP --- if not exist wsdg_chm\wsdg_graphics md wsdg_chm\wsdg_graphics if not exist wsdg_chm\wsdg_graphics\toolbar md wsdg_chm\wsdg_graphics\toolbar - cp wsdg_graphics/*.* wsdg_chm/wsdg_graphics/ - cp wsdg_graphics/toolbar/* wsdg_chm/wsdg_graphics/toolbar/ - $(XSLTPROC) --stringparam base.dir wsdg_chm/ --stringparam use.id.as.filename 1 --stringparam admon.graphics 1 --stringparam admon.graphics.path wsdg_graphics/ --stringparam section.autolabel 1 --stringparam section.label.includes.component.label 1 --stringparam html.stylesheet ws.css --nonet http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl developer-guide.xml + cp wsdg_graphics/*.* wsdg_chm/wsdg_graphics + cp common_graphics/*.* wsdg_chm/wsdg_graphics + cp wsdg_graphics/toolbar/* wsdg_chm/wsdg_graphics/toolbar + $(XSLTPROC) --stringparam base.dir wsdg_chm/ $(COMMON_XSLTPROC_ARGS) \ + $(HTMLHELP_XSLTPROC_ARGS) developer-guide.xml -$(HHC_EXE) htmlhelp.hhp -mv htmlhelp.chm $@ -rm -r htmlhelp.hhp diff --git a/docbook/common_graphics/note.svg b/docbook/common_graphics/note.svg new file mode 100644 index 0000000000..5d9fae792c --- /dev/null +++ b/docbook/common_graphics/note.svg @@ -0,0 +1,113 @@ + + + + + + + + + + image/svg+xml + + + Original font: DejaVu Serif + + + + + + + + + + + + + + diff --git a/docbook/common_graphics/tip.svg b/docbook/common_graphics/tip.svg new file mode 100644 index 0000000000..f53622313a --- /dev/null +++ b/docbook/common_graphics/tip.svg @@ -0,0 +1,110 @@ + + + + + + + + + + image/svg+xml + + + + Original font: DejaVu Serif + + + + + + + + + + + + + + diff --git a/docbook/common_graphics/warning.svg b/docbook/common_graphics/warning.svg new file mode 100644 index 0000000000..0c822fa2ee --- /dev/null +++ b/docbook/common_graphics/warning.svg @@ -0,0 +1,101 @@ + + + + + + + + + + image/svg+xml + + + + Original font: DejaVu Serif + + + + + + + + + + + diff --git a/docbook/custom_layer_pdf.xsl b/docbook/custom_layer_pdf.xsl index 44421e390e..b6b6ba0bd8 100644 --- a/docbook/custom_layer_pdf.xsl +++ b/docbook/custom_layer_pdf.xsl @@ -15,7 +15,7 @@ wsug_graphics/ - + diff --git a/docbook/wsdg_graphics/note.png b/docbook/wsdg_graphics/note.png deleted file mode 100644 index 3a20ba7b4f..0000000000 Binary files a/docbook/wsdg_graphics/note.png and /dev/null differ diff --git a/docbook/wsdg_graphics/tip.png b/docbook/wsdg_graphics/tip.png deleted file mode 100644 index 2cb772353c..0000000000 Binary files a/docbook/wsdg_graphics/tip.png and /dev/null differ diff --git a/docbook/wsdg_graphics/warning.png b/docbook/wsdg_graphics/warning.png deleted file mode 100644 index ffb7588080..0000000000 Binary files a/docbook/wsdg_graphics/warning.png and /dev/null differ diff --git a/docbook/wsug_graphics/note.png b/docbook/wsug_graphics/note.png deleted file mode 100644 index 3a20ba7b4f..0000000000 Binary files a/docbook/wsug_graphics/note.png and /dev/null differ diff --git a/docbook/wsug_graphics/tip.png b/docbook/wsug_graphics/tip.png deleted file mode 100644 index 2cb772353c..0000000000 Binary files a/docbook/wsug_graphics/tip.png and /dev/null differ diff --git a/docbook/wsug_graphics/warning.png b/docbook/wsug_graphics/warning.png deleted file mode 100644 index ffb7588080..0000000000 Binary files a/docbook/wsug_graphics/warning.png and /dev/null differ diff --git a/docbook/wsug_src/WSUG_chapter_use.asciidoc b/docbook/wsug_src/WSUG_chapter_use.asciidoc index 5243efbd91..5faed769d3 100644 --- a/docbook/wsug_src/WSUG_chapter_use.asciidoc +++ b/docbook/wsug_src/WSUG_chapter_use.asciidoc @@ -325,10 +325,10 @@ Enabling colorization will slow down the display of new packets while capturing Resizing may take a significant amount of time, especially if a large capture file is loaded. |menu:Displayed Columns[] | |This menu items folds out with a list of all configured columns. These columns can now be shown or hidden in the packet list. -|menu:Expand Subtrees[] |kbd:[Shift+࢐]|This menu item expands the currently selected subtree in the packet details tree. -|menu:Collapse Subtrees[] |kbd:[Shift+ࢎ]|This menu item collapses the currently selected subtree in the packet details tree. -|menu:Expand All[] |kbd:[Ctrl+࢐] |Wireshark keeps a list of all the protocol subtrees that are expanded, and uses it to ensure that the correct subtrees are expanded when you display a packet. This menu item expands all subtrees in all packets in the capture. -|menu:Collapse All[] |kbd:[Ctrl+ࢎ] |This menu item collapses the tree view of all packets in the capture list. +|menu:Expand Subtrees[] |kbd:[Shift+→]|This menu item expands the currently selected subtree in the packet details tree. +|menu:Collapse Subtrees[] |kbd:[Shift+←]|This menu item collapses the currently selected subtree in the packet details tree. +|menu:Expand All[] |kbd:[Ctrl+→] |Wireshark keeps a list of all the protocol subtrees that are expanded, and uses it to ensure that the correct subtrees are expanded when you display a packet. This menu item expands all subtrees in all packets in the capture. +|menu:Collapse All[] |kbd:[Ctrl+←] |This menu item collapses the tree view of all packets in the capture list. |menu:Colorize Conversation[] | |This menu item brings up a submenu that allows you to color packets in the packet list pane based on the addresses of the currently selected packet. This makes it easy to distinguish packets belonging to different conversations. <>. |menu:Colorize Conversation[Color 1-10] | |These menu items enable one of the ten temporary color filters based on the currently selected conversation. |menu:Colorize Conversation[Reset coloring] | |This menu item clears all temporary coloring rules. @@ -851,4 +851,4 @@ unexpected results. For a detailed description, see ++++++++++++++++++++++++++++++++++++++ -++++++++++++++++++++++++++++++++++++++ \ No newline at end of file +++++++++++++++++++++++++++++++++++++++