| 1 |
From 06d234dcf80ee5aafc9ae4f6fae71409aac2e33c Mon Sep 17 00:00:00 2001
|
| 2 |
From: Alexandre Rostovtsev <tetromino@gentoo.org>
|
| 3 |
Date: Sat, 14 Jan 2012 23:33:24 -0500
|
| 4 |
Subject: [PATCH] tools/gvnccapture: unbreak pod syntax
|
| 5 |
|
| 6 |
For pod, the presence or absence of leading whitespace is significant.
|
| 7 |
|
| 8 |
https://bugzilla.gnome.org/show_bug.cgi?id=667943
|
| 9 |
---
|
| 10 |
tools/gvnccapture.c | 72 +++++++++++++++++++++++++-------------------------
|
| 11 |
1 files changed, 36 insertions(+), 36 deletions(-)
|
| 12 |
|
| 13 |
diff --git a/tools/gvnccapture.c b/tools/gvnccapture.c
|
| 14 |
index a44f012..c3fbd46 100644
|
| 15 |
--- a/tools/gvnccapture.c
|
| 16 |
+++ b/tools/gvnccapture.c
|
| 17 |
@@ -19,68 +19,68 @@
|
| 18 |
*/
|
| 19 |
|
| 20 |
/*
|
| 21 |
- =head1 NAME
|
| 22 |
+=head1 NAME
|
| 23 |
|
| 24 |
- gvnccapture - VNC screenshot capture
|
| 25 |
+gvnccapture - VNC screenshot capture
|
| 26 |
|
| 27 |
- =head1 SYNOPSIS
|
| 28 |
+=head1 SYNOPSIS
|
| 29 |
|
| 30 |
- gvnccapture [OPTION]... [HOST][:DISPLAY] FILENAME
|
| 31 |
+gvnccapture [OPTION]... [HOST][:DISPLAY] FILENAME
|
| 32 |
|
| 33 |
- =head1 DESCRIPTION
|
| 34 |
+=head1 DESCRIPTION
|
| 35 |
|
| 36 |
- Capture a screenshot of the VNC desktop at HOST:DISPLAY saving to the
|
| 37 |
- image file FILENAME. If HOST is omitted it defaults to "localhost",
|
| 38 |
- if :DISPLAY is omitted, it defaults to ":1". FILENAME must end in a
|
| 39 |
- known image format extension (eg ".png", ".jpeg"). Supported options
|
| 40 |
- are
|
| 41 |
+Capture a screenshot of the VNC desktop at HOST:DISPLAY saving to the
|
| 42 |
+image file FILENAME. If HOST is omitted it defaults to "localhost",
|
| 43 |
+if :DISPLAY is omitted, it defaults to ":1". FILENAME must end in a
|
| 44 |
+known image format extension (eg ".png", ".jpeg"). Supported options
|
| 45 |
+are
|
| 46 |
|
| 47 |
- =over 4
|
| 48 |
+=over 4
|
| 49 |
|
| 50 |
- =item --help, -?
|
| 51 |
+=item --help, -?
|
| 52 |
|
| 53 |
- Display command line help information
|
| 54 |
+Display command line help information
|
| 55 |
|
| 56 |
- =item --quiet, -q
|
| 57 |
+=item --quiet, -q
|
| 58 |
|
| 59 |
- Do not display information on the console when capturing the screenshot,
|
| 60 |
- with the exception of any password prompt.
|
| 61 |
+Do not display information on the console when capturing the screenshot,
|
| 62 |
+with the exception of any password prompt.
|
| 63 |
|
| 64 |
- =item --debug, -d
|
| 65 |
+=item --debug, -d
|
| 66 |
|
| 67 |
- Display verbose debugging information on the console
|
| 68 |
+Display verbose debugging information on the console
|
| 69 |
|
| 70 |
- =back
|
| 71 |
+=back
|
| 72 |
|
| 73 |
- =head1 EXIT STATUS
|
| 74 |
+=head1 EXIT STATUS
|
| 75 |
|
| 76 |
- The exit status is 0 upon successful screen capture, otherwise
|
| 77 |
- it is a non-zero integer
|
| 78 |
+The exit status is 0 upon successful screen capture, otherwise
|
| 79 |
+it is a non-zero integer
|
| 80 |
|
| 81 |
- =head1 EXAMPLES
|
| 82 |
+=head1 EXAMPLES
|
| 83 |
|
| 84 |
- # gvnccapture localhost:1 desktop.png
|
| 85 |
- Password:
|
| 86 |
- Connected to localhost:1
|
| 87 |
- Saved display to desktop.png
|
| 88 |
+ # gvnccapture localhost:1 desktop.png
|
| 89 |
+ Password:
|
| 90 |
+ Connected to localhost:1
|
| 91 |
+ Saved display to desktop.png
|
| 92 |
|
| 93 |
- =head1 AUTHORS
|
| 94 |
+=head1 AUTHORS
|
| 95 |
|
| 96 |
- Daniel P. Berrange <dan@berrange.com>
|
| 97 |
+Daniel P. Berrange <dan@berrange.com>
|
| 98 |
|
| 99 |
- =head1 COPYRIGHT
|
| 100 |
+=head1 COPYRIGHT
|
| 101 |
|
| 102 |
- Copyright (C) 2010 Daniel P. Berrange <dan@berrange.com>.
|
| 103 |
+Copyright (C) 2010 Daniel P. Berrange <dan@berrange.com>.
|
| 104 |
|
| 105 |
- License LGPLv2+: GNU Lesser GPL version 2 or later <http://gnu.org/licenses/gpl.html>.
|
| 106 |
+License LGPLv2+: GNU Lesser GPL version 2 or later <http://gnu.org/licenses/gpl.html>.
|
| 107 |
|
| 108 |
- This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
|
| 109 |
+This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
|
| 110 |
|
| 111 |
- =head1 SEE ALSO
|
| 112 |
+=head1 SEE ALSO
|
| 113 |
|
| 114 |
- vinagre(1)
|
| 115 |
+vinagre(1)
|
| 116 |
|
| 117 |
- =cut
|
| 118 |
+=cut
|
| 119 |
*/
|
| 120 |
|
| 121 |
#include <config.h>
|
| 122 |
--
|
| 123 |
1.7.8.3
|
| 124 |
|