escaped "-"s; they're supposed to be minus signs, not hyphens.

* data/zenity.1: escaped "-"s; they're supposed to be minus signs, not hyphens.
This commit is contained in:
Guilherme de S. Pastore 2005-09-21 14:38:02 +00:00
parent a3fa7022c7
commit 51a7c9d389
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2005-09-21 Guilherme de S. Pastore <gpastore@cvs.gnome.org>
* data/zenity.1: escaped "-"s; they're supposed to be
minus signs, not hyphens.
2005-09-17 Lucas Rocha <lucasr@cvs.gnome.org> 2005-09-17 Lucas Rocha <lucasr@cvs.gnome.org>
* TODO: add a Zenity wiki page reference. * TODO: add a Zenity wiki page reference.

View File

@ -10,7 +10,7 @@ zenity \- display GTK+ dialogs
input. This allows you to present information, and ask for information input. This allows you to present information, and ask for information
from the user, from all manner of shell scripts. from the user, from all manner of shell scripts.
.PP .PP
For example, \fBzenity --question\fP will return either 0 or 1, For example, \fBzenity \-\-question\fP will return either 0 or 1,
depending on whether the user pressed \fIOK\fP or \fICancel\fP. \fBzenity depending on whether the user pressed \fIOK\fP or \fICancel\fP. \fBzenity
--entry\fP will output on standard output what the user typed into the --entry\fP will output on standard output what the user typed into the
text entry field. text entry field.
@ -221,36 +221,36 @@ Also the standard GTK+ options are accepted.
Display a file selector with the title \fISelect a file to Display a file selector with the title \fISelect a file to
remove\fP. The file selected is returned on standard output. remove\fP. The file selected is returned on standard output.
.IP .IP
zenity --title="Select a file to remove" --file-selection zenity \-\-title="Select a file to remove" \-\-file-selection
.PP .PP
Display a text entry dialog with the title \fISelect Host\fP and the Display a text entry dialog with the title \fISelect Host\fP and the
text \fISelect the host you would like to flood-ping\fP. The entered text \fISelect the host you would like to flood-ping\fP. The entered
text is returned on standard output. text is returned on standard output.
.IP .IP
zenity --title "Select Host" --entry --text "Select the host you would like to flood-ping" zenity \-\-title "Select Host" \-\-entry \-\-text "Select the host you would like to flood-ping"
.PP .PP
Display a dialog, asking \fIMicrosoft Windows has been found! Would Display a dialog, asking \fIMicrosoft Windows has been found! Would
you like to remove it?\fP. The return code will be 0 (true in shell) you like to remove it?\fP. The return code will be 0 (true in shell)
if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected. if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected.
.IP .IP
zenity --question --title "Alert" --text "Microsoft Windows has been found! Would you like to remove it?" zenity \-\-question \-\-title "Alert" \-\-text "Microsoft Windows has been found! Would you like to remove it?"
.PP .PP
Show the search results in a list dialog with the title \fISearch Results\fP Show the search results in a list dialog with the title \fISearch Results\fP
and the text \fIFinding all header files...\fP. and the text \fIFinding all header files...\fP.
.IP .IP
find . -name '*.h' | zenity --title "Search Results" --text "Finding all header files.." --column "Files" find . \-name '*.h' | zenity \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files"
.PP .PP
Show an icon in the notification area Show an icon in the notification area
.IP .IP
zenity --notification --window-icon=update.png --text "System update necessary!" zenity \-\-notification \-\-window-icon=update.png \-\-text "System update necessary!"
.PP .PP
Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected
.IP .IP
zenity --list --checklist --column "Buy" --column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste zenity \-\-list \-\-checklist \-\-column "Buy" \-\-column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste
.PP .PP
Display a progress dialog while searching for all the postscript files in your home directory Display a progress dialog while searching for all the postscript files in your home directory
.P .P
find `echo $HOME` '*.ps' | zenity --progress --pulsate find `echo $HOME` '*.ps' | zenity \-\-progress \-\-pulsate
.SH AUTHOR .SH AUTHOR
\fBZenity\fP was written by Glynn Foster <glynn.foster@sun.com>. \fBZenity\fP was written by Glynn Foster <glynn.foster@sun.com>.
.P .P