From f80a720a885274a9db74c607f382d40e323c72e6 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Sat, 14 Feb 2015 10:18:26 -0800 Subject: WSUG and image updates. Update the protocol hierarchy, conversation, and endpoint sections of the User's Guide. When everything is an admonition nothing stands out. Make a series of "NOTE"s plain old paragraphs. Scale the new conversation and endpoint images to fit the page width. This looks funny in my browser but I'm not sure about the best way to fix it. Move image/compress-pngs to the tools directory. Use it to reduce the size of the WSUG and WSDG images. Fixup traffic table column names and window titles. Change-Id: I674342ed901fc64563b384ee5e1f35413736cb19 Reviewed-on: https://code.wireshark.org/review/7122 Reviewed-by: Gerald Combs --- image/compress-pngs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 image/compress-pngs (limited to 'image') diff --git a/image/compress-pngs b/image/compress-pngs deleted file mode 100755 index 3872363672..0000000000 --- a/image/compress-pngs +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -FILE_LIST_CMD="find . -type f -name \"*.png\"" - -if [ -n "$1" ] ; then - FILE_LIST_CMD="echo $1" -fi - -bash -c "$FILE_LIST_CMD" | while read PNG_FILE ; do - echo Compressing $PNG_FILE - hash optipng 2>/dev/null && optipng -o3 -quiet "$PNG_FILE" - hash advpng 2>/dev/null && advpng -z -4 "$PNG_FILE" - hash advdef 2>/dev/null && advdef -z -4 "$PNG_FILE" - hash pngcrush 2>/dev/null && pngcrush -q -ow -brute "$PNG_FILE" -done -- cgit v1.2.3