Strip Down
70
.bzrignore
@ -1,70 +0,0 @@
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
*.bz2
|
||||
compile
|
||||
config.h
|
||||
config.h.in
|
||||
config.log
|
||||
config.status
|
||||
configure
|
||||
depcomp
|
||||
gnome-doc-utils.make
|
||||
*.gz
|
||||
INSTALL
|
||||
install-sh
|
||||
Makefile
|
||||
Makefile.in
|
||||
missing
|
||||
mkinstalldirs
|
||||
stamp-h
|
||||
stamp-h1
|
||||
stamp-h.in
|
||||
zenity.spec
|
||||
data/Makefile
|
||||
data/Makefile.in
|
||||
help/C/Makefile
|
||||
help/C/Makefile.in
|
||||
help/C/omf_timestamp
|
||||
help/C/zenity-C.omf.out
|
||||
help/es/.xml2po.mo
|
||||
help/es/zenity.xml
|
||||
help/fr/.xml2po.mo
|
||||
help/fr/zenity.xml
|
||||
help/sr/*.in
|
||||
help/sr/Makefile
|
||||
help/sr/*.out
|
||||
help/sr/omf_timestamp
|
||||
help/uk/.xml2po.mo
|
||||
help/uk/zenity.xml
|
||||
help/Makefile
|
||||
help/Makefile.in
|
||||
help/zenity-*.omf
|
||||
po/*.gmo
|
||||
po/*.mo
|
||||
po/*.pot
|
||||
po/Makefile
|
||||
po/Makefile.in
|
||||
po/Makefile.in.in
|
||||
po/POTFILES
|
||||
po/cat-id-tbl.c
|
||||
po/stamp-cat-id
|
||||
po/po2tbl.sed
|
||||
po/po2tbl.sed.in
|
||||
po/messages
|
||||
po/missing
|
||||
po/stamp-it
|
||||
src/zenity.gladep
|
||||
src/zenity
|
||||
src/Makefile.in
|
||||
src/Makefile
|
||||
src/gdialog
|
||||
help/zenity.pot
|
||||
src/.deps
|
||||
help/*/.xml2po.mo
|
||||
help/bg/zenity.xml
|
||||
help/de/zenity.xml
|
||||
help/en_GB/zenity.xml
|
||||
help/fi/zenity.xml
|
||||
help/oc/zenity.xml
|
||||
help/ru/zenity.xml
|
||||
help/sv/zenity.xml
|
22
.cvsignore
@ -1,22 +0,0 @@
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
*.bz2
|
||||
compile
|
||||
config.h
|
||||
config.h.in
|
||||
config.log
|
||||
config.status
|
||||
configure
|
||||
depcomp
|
||||
gnome-doc-utils.make
|
||||
*.gz
|
||||
INSTALL
|
||||
install-sh
|
||||
Makefile
|
||||
Makefile.in
|
||||
missing
|
||||
mkinstalldirs
|
||||
stamp-h
|
||||
stamp-h1
|
||||
stamp-h.in
|
||||
zenity.spec
|
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
.vscode
|
||||
build
|
||||
CMakeLists.txt.user
|
||||
*.autosave
|
@ -1,11 +0,0 @@
|
||||
variables:
|
||||
DEPENDENCIES: gettext gettext-devel gcc redhat-rpm-config meson libtool git
|
||||
gtk3-devel yelp-tools
|
||||
|
||||
build_fedora_33:
|
||||
image: fedora:33
|
||||
before_script:
|
||||
- dnf install -y --nogpgcheck $DEPENDENCIES
|
||||
script:
|
||||
- meson --buildtype=debug build
|
||||
- ninja -v -C build
|
38
CMakeLists.txt
Normal file
@ -0,0 +1,38 @@
|
||||
cmake_minimum_required(VERSION 3.13.0)
|
||||
|
||||
# Start Project
|
||||
project(zenity)
|
||||
|
||||
# PIC
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
|
||||
|
||||
# Warnings
|
||||
add_compile_options(-Wall -Wextra -Werror -Wpointer-arith -Wnull-dereference -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare)
|
||||
add_link_options(-Wl,--no-undefined)
|
||||
add_definitions(-D_GNU_SOURCE)
|
||||
set(CMAKE_C_STANDARD 99)
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
# GTK+
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(GTK3 REQUIRED IMPORTED_TARGET "gtk+-3.0>=3.16.0")
|
||||
pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET "glib-2.0>=2.43.4")
|
||||
link_libraries(PkgConfig::GTK3 PkgConfig::GLIB)
|
||||
|
||||
# X11
|
||||
find_package(X11 REQUIRED)
|
||||
link_libraries(${X11_LIBRARIES})
|
||||
|
||||
# Build
|
||||
add_custom_command(
|
||||
OUTPUT ".gresource.c"
|
||||
COMMAND glib-compile-resources
|
||||
ARGS "--target" "${CMAKE_BINARY_DIR}/.gresource.c" "--generate-source" "--sourcedir" "${CMAKE_SOURCE_DIR}/src" "${CMAKE_SOURCE_DIR}/src/.gresource.xml"
|
||||
DEPENDS "src/.gresource.xml" "src/zenity.ui"
|
||||
)
|
||||
add_executable(zenity src/entry.c src/tree.c src/option.c src/util.c src/main.c "${CMAKE_BINARY_DIR}/.gresource.c")
|
||||
target_compile_definitions(zenity PRIVATE "-DG_LOG_DOMAIN=\"Zenity\"")
|
||||
|
||||
# Install
|
||||
install(TARGETS zenity DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
||||
install(FILES src/zenity.ui DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/zenity")
|
@ -1,2 +0,0 @@
|
||||
Makefile
|
||||
Makefile.in
|
@ -1,13 +0,0 @@
|
||||
install_man('zenity.1')
|
||||
|
||||
install_data(
|
||||
['zenity.png',
|
||||
'zenity-calendar.png',
|
||||
'zenity-list.png',
|
||||
'zenity-file.png',
|
||||
'zenity-progress.png',
|
||||
'zenity-text.png',
|
||||
'zenity-scale.png',
|
||||
'zenity-entry.png',
|
||||
'zenity-notification.png']
|
||||
)
|
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 256 B |
Before Width: | Height: | Size: 898 B |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 240 B |
Before Width: | Height: | Size: 3.4 KiB |
421
data/zenity.1
@ -1,421 +0,0 @@
|
||||
.TH ZENITY 1 "December 2011"
|
||||
.SH NAME
|
||||
zenity \- display GTK+ dialogs
|
||||
.SH SYNOPSIS
|
||||
.B zenity
|
||||
.RI [ options ]
|
||||
.SH DESCRIPTION
|
||||
\fBzenity\fP is a program that will display GTK+ dialogs, and return
|
||||
(either in the return code, or on standard output) the users
|
||||
input. This allows you to present information, and ask for information
|
||||
from the user, from all manner of shell scripts.
|
||||
.PP
|
||||
For example, \fBzenity \-\-question\fP will return either 0, 1 or 5,
|
||||
depending on whether the user pressed \fIOK\fP, \fICancel\fP or timeout
|
||||
has been reached. \fBzenity --entry\fP will output on standard output
|
||||
what the user typed into the text entry field.
|
||||
.PP
|
||||
Comprehensive documentation is available in the GNOME Help Browser.
|
||||
.SH OPTIONS
|
||||
This program follows the usual GNU command line syntax, with long
|
||||
options starting with two dashes (`-').
|
||||
|
||||
.PP
|
||||
Dialog options
|
||||
|
||||
.TP
|
||||
.B \-\-calendar
|
||||
Display calendar dialog
|
||||
.TP
|
||||
.B \-\-entry
|
||||
Display text entry dialog
|
||||
.TP
|
||||
.B \-\-error
|
||||
Display error dialog
|
||||
.TP
|
||||
.B \-\-file\-selection
|
||||
Display file selection dialog
|
||||
.TP
|
||||
.B \-\-info
|
||||
Display info dialog
|
||||
.TP
|
||||
.B \-\-list
|
||||
Display list dialog
|
||||
.TP
|
||||
.B \-\-notification
|
||||
Display notification
|
||||
.TP
|
||||
.B \-\-progress
|
||||
Display progress indication dialog
|
||||
.TP
|
||||
.B \-\-question
|
||||
Display question dialog
|
||||
.TP
|
||||
.B \-\-text-info
|
||||
Display text information dialog
|
||||
.TP
|
||||
.B \-\-warning
|
||||
Display warning dialog
|
||||
.TP
|
||||
.B \-\-scale
|
||||
Display scale dialog
|
||||
.TP
|
||||
.B \-\-color-selection
|
||||
Display color selection dialog
|
||||
.TP
|
||||
.B \-\-password
|
||||
Display password dialog
|
||||
.TP
|
||||
.B \-\-forms
|
||||
Display forms dialog
|
||||
|
||||
.PP
|
||||
General options
|
||||
|
||||
.TP
|
||||
.B \-\-title=TITLE
|
||||
Set the dialog title
|
||||
.TP
|
||||
.B \-\-window-icon=ICONPATH
|
||||
Set the window icon with the path to an image. Alternatively, one of the four stock icons can be used: 'error', 'info', 'question' or 'warning'
|
||||
.TP
|
||||
.B \-\-icon-name=ICONNAME
|
||||
The name of the icon to display on the dialog to override the default stock icons
|
||||
.TP
|
||||
.B \-\-width=WIDTH
|
||||
Set the dialog width
|
||||
.TP
|
||||
.B \-\-height=HEIGHT
|
||||
Set the dialog height
|
||||
.TP
|
||||
.B \-\-timeout=TIMEOUT
|
||||
Set the dialog timeout in seconds
|
||||
.PP
|
||||
Calendar options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-day=INT
|
||||
Set the calendar day
|
||||
.TP
|
||||
.B \-\-month=INT
|
||||
Set the calendar month
|
||||
.TP
|
||||
.B \-\-year=INT
|
||||
Set the calendar year
|
||||
.TP
|
||||
.B \-\-date-format=PATTERN
|
||||
Set the format for the returned date. The default depends on the user locale or be set with the strftime style. For example %A %d/%m/%y
|
||||
|
||||
.PP
|
||||
Text entry options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-entry-text=STRING
|
||||
Set the entry text
|
||||
.TP
|
||||
.B \-\-hide-text
|
||||
Hide the entry text
|
||||
|
||||
.PP
|
||||
Error options
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-no\-wrap
|
||||
Do not enable text wrapping
|
||||
.TP
|
||||
.B \-\-no\-markup
|
||||
Do not enable pango markup
|
||||
|
||||
.PP
|
||||
File selection options
|
||||
.TP
|
||||
.B \-\-filename=FILENAME
|
||||
Set the file or directory to be selected by default
|
||||
.TP
|
||||
.B \-\-multiple
|
||||
Allow selection of multiple filenames in file selection dialog
|
||||
.TP
|
||||
.B \-\-directory
|
||||
Activate directory-only selection
|
||||
.TP
|
||||
.B \-\-save
|
||||
Activate save mode
|
||||
.TP
|
||||
.B \-\-separator=SEPARATOR
|
||||
Specify separator character when returning multiple filenames
|
||||
.TP
|
||||
.B \-\-confirm\-overwrite
|
||||
Confirm file selection if filename already exists
|
||||
.TP
|
||||
.B \-\-file\-filter=NAME | PATTERN1 PATTERN2
|
||||
Sets a filename filter
|
||||
|
||||
|
||||
.PP
|
||||
Info options
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-no\-wrap
|
||||
Do not enable text wrapping
|
||||
.TP
|
||||
.B \-\-no\-markup
|
||||
Do not enable pango markup
|
||||
|
||||
.PP
|
||||
List options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-column=STRING
|
||||
Set the column header
|
||||
.TP
|
||||
.B \-\-checklist
|
||||
Use check boxes for first column
|
||||
.TP
|
||||
.B \-\-radiolist
|
||||
Use radio buttons for first column
|
||||
.TP
|
||||
.B \-\-separator=STRING
|
||||
Set output separator character
|
||||
.TP
|
||||
.B \-\-multiple
|
||||
Allow multiple rows to be selected
|
||||
.TP
|
||||
.B \-\-editable
|
||||
Allow changes to text
|
||||
.TP
|
||||
.B \-\-print-column=NUMBER
|
||||
Specify what column to print to standard output. The default is to return
|
||||
the first column. 'ALL' may be used to print all columns.
|
||||
.TP
|
||||
.B \-\-hide\-column=NUMBER
|
||||
Hide a specific column
|
||||
.TP
|
||||
.B \-\-hide\-header
|
||||
Hides the column headers
|
||||
|
||||
.PP
|
||||
Notification options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the notification text
|
||||
.TP
|
||||
.B \-\-listen
|
||||
Listen for commands on stdin. Commands include 'message', 'tooltip', 'icon', and 'visible' separated by a colon. For example, 'message: Hello world', 'visible: false', or 'icon: /path/to/icon'. The icon command also accepts the four stock icon: 'error', 'info', 'question', and 'warning'
|
||||
|
||||
.PP
|
||||
Progress options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-percentage=INT
|
||||
Set initial percentage
|
||||
.TP
|
||||
.B \-\-auto\-close
|
||||
Close dialog when 100% has been reached
|
||||
.TP
|
||||
.B \-\-auto\-kill
|
||||
Kill parent process if cancel button is pressed
|
||||
.TP
|
||||
.B \-\-pulsate
|
||||
Pulsate progress bar
|
||||
.TP
|
||||
.B \-\-no\-cancel
|
||||
Hides the cancel button
|
||||
|
||||
.PP
|
||||
Question options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-no\-wrap
|
||||
Do not enable text wrapping
|
||||
.TP
|
||||
.B \-\-no\-markup
|
||||
Do not enable pango markup
|
||||
.TP
|
||||
.B \-\-ok\-label
|
||||
Set the text of the OK button
|
||||
.TP
|
||||
.B \-\-cancel\-label
|
||||
Set the text of the cancel button
|
||||
|
||||
.PP
|
||||
Text options
|
||||
|
||||
.TP
|
||||
.B \-\-filename=FILENAME
|
||||
Open file
|
||||
.TP
|
||||
.B \-\-editable
|
||||
Allow changes to text
|
||||
.TP
|
||||
.B \-\-checkbox=TEXT
|
||||
Enable a checkbox for use like a 'I read and accept the terms.'
|
||||
.TP
|
||||
.B \-\-ok\-label
|
||||
Set the text of the OK button
|
||||
.TP
|
||||
.B \-\-cancel\-label
|
||||
Set the text of the cancel button
|
||||
|
||||
.PP
|
||||
Warning options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-no\-wrap
|
||||
Do not enable text wrapping
|
||||
.TP
|
||||
.B \-\-no\-markup
|
||||
Do not enable pango markup
|
||||
|
||||
.PP
|
||||
Scale options
|
||||
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-value=VALUE
|
||||
Set initial value
|
||||
.TP
|
||||
.B \-\-min\-value=VALUE
|
||||
Set minimum value
|
||||
.TP
|
||||
.B \-\-max\-value=VALUE
|
||||
Set maximum value
|
||||
.TP
|
||||
.B \-\-step=VALUE
|
||||
Set step size
|
||||
.TP
|
||||
.B \-\-print\-partial
|
||||
Print partial values
|
||||
.TP
|
||||
.B \-\-hide\-value
|
||||
Hide value
|
||||
|
||||
.PP
|
||||
Color selection options
|
||||
|
||||
.TP
|
||||
.B \-\-color=VALUE
|
||||
Set the initial color
|
||||
.TP
|
||||
.B \-\-show\-palette
|
||||
Show the palette
|
||||
|
||||
.PP
|
||||
Password dialog options
|
||||
|
||||
.TP
|
||||
.B \-\-username
|
||||
Display the username field
|
||||
|
||||
.PP
|
||||
Forms dialog options
|
||||
|
||||
.TP
|
||||
.B \-\-add\-entry=FIELDNAME
|
||||
Add a new Entry in forms dialog
|
||||
.TP
|
||||
.B \-\-add\-password=FIELDNAME
|
||||
Add a new Password Entry in forms dialog
|
||||
.TP
|
||||
.B \-\-add\-calendar=FIELDNAME
|
||||
Add a new Calendar in forms dialog
|
||||
.TP
|
||||
.B \-\-text=STRING
|
||||
Set the dialog text
|
||||
.TP
|
||||
.B \-\-separator=STRING
|
||||
Set output separator character
|
||||
.TP
|
||||
.B \-\-forms\-date-format=PATTERN
|
||||
Set the format for the returned date. The default depends on the user locale or be set with the strftime style. For example %A %d/%m/%y
|
||||
|
||||
.PP
|
||||
Miscellaneous options
|
||||
|
||||
.TP
|
||||
.B \-?, \-\-help
|
||||
Show summary of options.
|
||||
.TP
|
||||
.B \-\-about
|
||||
Display an about dialog.
|
||||
.TP
|
||||
.B \-\-version
|
||||
Show version of program.
|
||||
|
||||
.PP
|
||||
Also the standard GTK+ options are accepted. For more information about the GTK+ options, execute following command.
|
||||
.IP
|
||||
zenity \-\-help\-gtk
|
||||
|
||||
.SH ENVIRONMENT
|
||||
|
||||
Normally, zenity detects the terminal window from which it was launched and
|
||||
keeps itself above that window. This behavior can be disabled by unsetting the
|
||||
WINDOWID environment variable.
|
||||
|
||||
.SH EXAMPLES
|
||||
|
||||
Display a file selector with the title \fISelect a file to
|
||||
remove\fP. The file selected is returned on standard output.
|
||||
.IP
|
||||
zenity \-\-title="Select a file to remove" \-\-file-selection
|
||||
.PP
|
||||
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 is returned on standard output.
|
||||
.IP
|
||||
zenity \-\-title "Select Host" \-\-entry \-\-text "Select the host you would like to flood-ping"
|
||||
.PP
|
||||
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)
|
||||
if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected.
|
||||
.IP
|
||||
zenity \-\-question \-\-title "Alert" \-\-text "Microsoft Windows has been found! Would you like to remove it?"
|
||||
.PP
|
||||
Show the search results in a list dialog with the title \fISearch Results\fP
|
||||
and the text \fIFinding all header files...\fP.
|
||||
.IP
|
||||
find . \-name '*.h' | zenity \-\-list \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files"
|
||||
.PP
|
||||
Show a notification in the message tray
|
||||
.IP
|
||||
zenity \-\-notification \-\-window-icon=update.png \-\-text "System update necessary!"
|
||||
.PP
|
||||
Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected
|
||||
.IP
|
||||
zenity \-\-list \-\-checklist \-\-column "Buy" \-\-column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste
|
||||
.PP
|
||||
Display a progress dialog while searching for all the postscript files in your home directory
|
||||
.P
|
||||
find $HOME \-name '*.ps' | zenity \-\-progress \-\-pulsate
|
||||
.SH AUTHOR
|
||||
\fBZenity\fP was written by Glynn Foster <glynn.foster@sun.com>.
|
||||
.P
|
||||
This manual page was written by Ross Burton <ross@burtonini.com>.
|
||||
|
||||
.SH SEE ALSO
|
||||
\fBdialog\fP(1)
|
BIN
data/zenity.png
Before Width: | Height: | Size: 2.3 KiB |
@ -1,3 +0,0 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
zenity-*.omf
|
@ -1,4 +0,0 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
omf_timestamp
|
||||
zenity-C.omf.out
|
@ -1,69 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="calendar">
|
||||
<info>
|
||||
<link type="guide" xref="index#dialogs"/>
|
||||
<desc>Use the <cmd>--calendar</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Calendar Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--calendar</cmd> option to create a calendar dialog. Zenity returns the selected date to standard output. If no date is specified on the command line, the dialog uses the current date.
|
||||
</p>
|
||||
<p>
|
||||
The calendar dialog supports the following options:
|
||||
</p>
|
||||
|
||||
<terms>
|
||||
|
||||
<item>
|
||||
<title><cmd>--text</cmd>=<var>text</var></title>
|
||||
<p>Specifies the text that is displayed in the calendar dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--day</cmd>=<var>day</var></title>
|
||||
<p>Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--month</cmd>=<var>month</var></title>
|
||||
<p>Specifies the month that is selected in the calendar dialog. month must be a number between 1 and 12 inclusive.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--year</cmd>=<var>year</var></title>
|
||||
<p>Specifies the year that is selected in the calendar dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--date-format</cmd>=<var>format</var></title>
|
||||
<p>Specifies the format that is returned from the calendar dialog after date selection. The default format depends on your locale. Format must be a format that is acceptable to the <cmd>strftime</cmd> function, for example <var>%A %d/%m/%y</var>.</p>
|
||||
</item>
|
||||
|
||||
</terms>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create a calendar dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
if zenity --calendar \
|
||||
--title="Select a Date" \
|
||||
--text="Click on a date to select that date." \
|
||||
--day=10 --month=8 --year=2004
|
||||
then echo $?
|
||||
else echo "No date selected"
|
||||
fi
|
||||
</code>
|
||||
|
||||
|
||||
<figure>
|
||||
<title>Calendar Dialog Example</title>
|
||||
<desc>Zenity calendar dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-calendar-screenshot.png"/>
|
||||
</figure>
|
||||
</page>
|
@ -1,56 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="color-selection">
|
||||
<info>
|
||||
<link type="guide" xref="index#dialogs"/>
|
||||
<desc>Use the <cmd>--color-selection</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Color Selection Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--color-selection</cmd> option to create a color selection dialog.
|
||||
</p>
|
||||
<p>
|
||||
The color selection dialog supports the following options:
|
||||
</p>
|
||||
|
||||
<terms>
|
||||
|
||||
<item>
|
||||
<title><cmd>--color</cmd>=<var>VALUE</var></title>
|
||||
<p>Set the initial color.(ex: #FF0000)</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--show-palette</cmd></title>
|
||||
<p>Show the palette.</p>
|
||||
</item>
|
||||
|
||||
</terms>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create a color selection dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/sh
|
||||
|
||||
COLOR=`zenity --color-selection --show-palette`
|
||||
|
||||
case $? in
|
||||
0)
|
||||
echo "You selected $COLOR.";;
|
||||
1)
|
||||
echo "No color selected.";;
|
||||
-1)
|
||||
echo "An unexpected error has occurred.";;
|
||||
esac
|
||||
</code>
|
||||
|
||||
<figure>
|
||||
<title>Color Selection Dialog Example</title>
|
||||
<desc><app>Zenity</app> color selection dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-colorselection-screenshot.png"/>
|
||||
</figure>
|
||||
|
||||
</page>
|
@ -1,58 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="entry">
|
||||
<info>
|
||||
<link type="guide" xref="index#dialogs"/>
|
||||
<desc>Use the <cmd>--entry</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Text Entry Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--entry</cmd> option to create a text entry dialog. <app>Zenity</app> returns the contents of the text entry to standard output.
|
||||
</p>
|
||||
<p>
|
||||
The text entry dialog supports the following options:
|
||||
</p>
|
||||
|
||||
<terms>
|
||||
|
||||
<item>
|
||||
<title><cmd>--text</cmd>=<var>text</var></title>
|
||||
<p>Specifies the text that is displayed in the text entry dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--entry-text</cmd>=<var>text</var></title>
|
||||
<p>Specifies the text that is displayed in the entry field of the text entry dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--hide-text</cmd></title>
|
||||
<p>Hides the text in the entry field of the text entry dialog.</p>
|
||||
</item>
|
||||
|
||||
</terms>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create a text entry dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/sh
|
||||
|
||||
if zenity --entry \
|
||||
--title="Add new profile" \
|
||||
--text="Enter name of new profile:" \
|
||||
--entry-text "NewProfile"
|
||||
then echo $?
|
||||
else echo "No name entered"
|
||||
fi
|
||||
</code>
|
||||
|
||||
|
||||
<figure>
|
||||
<title>Text Entry Dialog Example</title>
|
||||
<desc><app>Zenity</app> text entry dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-entry-screenshot.png"/>
|
||||
</figure>
|
||||
</page>
|
@ -1,31 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="error">
|
||||
<info>
|
||||
<link type="guide" xref="message"/>
|
||||
<desc>Use the <cmd>--error</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Error Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--error</cmd> option to create an error dialog.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create an error dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/bash
|
||||
|
||||
zenity --error \
|
||||
--text="Could not find /var/log/syslog."
|
||||
</code>
|
||||
|
||||
|
||||
<figure>
|
||||
<title>Error Dialog Example</title>
|
||||
<desc><app>Zenity</app> error dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-error-screenshot.png"/>
|
||||
</figure>
|
||||
</page>
|
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,71 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="file-selection">
|
||||
<info>
|
||||
<link type="guide" xref="index#dialogs"/>
|
||||
<desc>Use the <cmd>--file-selection</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>File Selection Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--file-selection</cmd> option to create a file selection dialog. <app>Zenity</app> returns the selected files or directories to standard
|
||||
output. The default mode of the file selection dialog is open.
|
||||
</p>
|
||||
<p>
|
||||
The file selection dialog supports the following options:
|
||||
</p>
|
||||
|
||||
<terms>
|
||||
|
||||
<item>
|
||||
<title><cmd>--filename</cmd>=<var>filename</var></title>
|
||||
<p>Specifies the file or directory that is selected in the file selection dialog when the dialog is first shown.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--multiple</cmd></title>
|
||||
<p>Allows the selection of multiple filenames in the file selection dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--directory</cmd></title>
|
||||
<p>Allows only selection of directories in the file selection dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--save</cmd></title>
|
||||
<p>Set the file selection dialog into save mode.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--separator</cmd>=<var>separator</var></title>
|
||||
<p>Specifies the string that is used to divide the returned list of filenames.</p>
|
||||
</item>
|
||||
|
||||
</terms>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create a file selection dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/sh
|
||||
|
||||
FILE=`zenity --file-selection --title="Select a File"`
|
||||
|
||||
case $? in
|
||||
0)
|
||||
echo "\"$FILE\" selected.";;
|
||||
1)
|
||||
echo "No file selected.";;
|
||||
-1)
|
||||
echo "An unexpected error has occurred.";;
|
||||
esac
|
||||
</code>
|
||||
|
||||
<figure>
|
||||
<title>File Selection Dialog Example</title>
|
||||
<desc><app>Zenity</app> file selection dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-fileselection-screenshot.png"/>
|
||||
</figure>
|
||||
</page>
|
@ -1,84 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="forms">
|
||||
<info>
|
||||
<link type="guide" xref="index#dialogs"/>
|
||||
<desc>Use the <cmd>--forms</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Forms Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--forms</cmd> option to create a forms dialog.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The forms dialog supports the following options:
|
||||
</p>
|
||||
|
||||
<terms>
|
||||
|
||||
<item>
|
||||
<title><cmd>--add-entry</cmd>=<var>FieldName</var></title>
|
||||
<p>Add a new Entry in forms dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>--add-password<cmd></cmd>=<var>FieldName</var></title>
|
||||
<p>Add a new Password Entry in forms dialog. (Hide text)</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--add-calendar</cmd>=<var>FieldName</var></title>
|
||||
<p>Add a new Calendar in forms dialog.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--text</cmd>=<var>TEXT</var></title>
|
||||
<p>Set the dialog text.</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--separator</cmd>=<var>SEPARATOR</var></title>
|
||||
<p>Set output separator character. (Default: | )</p>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title><cmd>--forms-date-format</cmd>=<var>PATTERN</var></title>
|
||||
<p>Set the format for the returned date. The default format depends on your locale. format must be a Format that is acceptable to the <cmd>strftime</cmd> function, for example <var>%A %d/%m/%y</var>.</p>
|
||||
</item>
|
||||
|
||||
</terms>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create a forms dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/sh
|
||||
|
||||
zenity --forms --title="Add Friend" \
|
||||
--text="Enter information about your friend." \
|
||||
--separator="," \
|
||||
--add-entry="First Name" \
|
||||
--add-entry="Family Name" \
|
||||
--add-entry="Email" \
|
||||
--add-calendar="Birthday" >> addr.csv
|
||||
|
||||
case $? in
|
||||
0)
|
||||
echo "Friend added.";;
|
||||
1)
|
||||
echo "No friend added."
|
||||
;;
|
||||
-1)
|
||||
echo "An unexpected error has occurred."
|
||||
;;
|
||||
esac
|
||||
</code>
|
||||
|
||||
<figure>
|
||||
<title>Forms Dialog Example</title>
|
||||
<desc><app>Zenity</app> forms dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-forms-screenshot.png"/>
|
||||
</figure>
|
||||
</page>
|
@ -1,31 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="guide"
|
||||
id="index">
|
||||
<info>
|
||||
<credit type="author">
|
||||
<name>Sun Java Desktop System Documentation Team</name>
|
||||
</credit>
|
||||
<credit type="author">
|
||||
<name>Glynn Foster</name>
|
||||
</credit>
|
||||
<credit type="editor">
|
||||
<name>Nicholas Curran</name>
|
||||
<email></email>
|
||||
</credit>
|
||||
<credit type="editor">
|
||||
<name>Yasumichi Akahoshi</name>
|
||||
<email>yasumichi@vinelinux.org</email>
|
||||
</credit>
|
||||
<!--
|
||||
<license>
|
||||
<p>GNU Free Documentation License (GFDL)</p>
|
||||
</license>
|
||||
-->
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Zenity Manual</title>
|
||||
<!--links type="topic" groups="dialogs" /-->
|
||||
<section id="dialogs" style="2column">
|
||||
<title>Dialogs</title>
|
||||
</section>
|
||||
</page>
|
@ -1,31 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="info">
|
||||
<info>
|
||||
<link type="guide" xref="message"/>
|
||||
<desc>Use the <cmd>--info</cmd> option.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Info Dialog</title>
|
||||
<p>
|
||||
Use the <cmd>--info</cmd> option to create an information dialog.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The following example script shows how to create an information dialog:
|
||||
</p>
|
||||
|
||||
<code>
|
||||
#!/bin/bash
|
||||
|
||||
zenity --info \
|
||||
--text="Merge complete. Updated 3 of 10 files."
|
||||
</code>
|
||||
|
||||
|
||||
<figure>
|
||||
<title>Information Dialog Example</title>
|
||||
<desc><app>Zenity</app> information dialog example</desc>
|
||||
<media type="image" mime="image/png" src="figures/zenity-information-screenshot.png"/>
|
||||
</figure>
|
||||
</page>
|
@ -1,35 +0,0 @@
|
||||
<page xmlns="http://projectmallard.org/1.0/"
|
||||
type="topic"
|
||||
id="intro">
|
||||
<info>
|
||||
<link type="guide" xref="index"/>
|
||||
<desc><app>Zenity</app> enables you to create the various types of simple dialog.</desc>
|
||||
<include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude" />
|
||||
</info>
|
||||
<title>Introduction</title>
|
||||
<p>
|
||||
<app>Zenity</app> enables you to create the following types of simple dialog:
|
||||
</p>
|
||||
|
||||
<list>
|
||||
<item><p>Calendar</p></item>
|
||||
<item><p>File selection</p></item>
|
||||
<item><p>Forms</p></item>
|
||||
<item><p>List</p></item>
|
||||
<item><p>Notification icon</p></item>
|
||||
<item><p>Message</p>
|
||||
<list>
|
||||
<item><p>Error</p></item>
|
||||
<item><p>Information</p></item>
|
||||
<item><p>Question</p></item>
|
||||
<item><p>Warning</p></item>
|
||||
</list>
|
||||
</item>
|
||||
<item><p>Password entry</p></item>
|
||||
<item><p>Progress</p></item>
|
||||
<item><p>Text entry</p></item>
|
||||
<item><p>Text information</p></item>
|
||||
<item><p>Scale</p></item>
|
||||
<item><p>Color selection</p></item>
|
||||
</list>
|
||||
</page>
|
@ -1,88 +0,0 @@
|
||||
Zenity Manual V2.0
|
||||
|
||||
------------------------
|
||||
SUMMARY OF CHANGES
|
||||
------------------------
|
||||
|
||||
Created by: Breda McColgan
|
||||
Date: July 2004
|
||||
Manual version: 2.0
|
||||
|
||||
------------------------
|
||||
SCREENSHOT INSTRUCTIONS
|
||||
------------------------
|
||||
|
||||
To create the screenshots, perform the following steps:
|
||||
1. Create a directory called /tmp/l10n_scripts.
|
||||
2. Copy the scripts to the /tmp/l10n_scripts directory.
|
||||
3. Edit the appropriate script (see below)
|
||||
to replace the English text with the localised text, where applicable.
|
||||
4. Ensure that all scripts are executable.
|
||||
If necessary, run the following command:
|
||||
chmod +x <script-name>
|
||||
5. Run the script from the /tmp/l10n_scripts directory, as follows:
|
||||
cd /tmp/l10n_scripts
|
||||
. ./<script-name>
|
||||
|
||||
|
||||
zenity-calendar-screenshot.png
|
||||
==============================
|
||||
|
||||
<script-name> = calendar.sh
|
||||
|
||||
|
||||
zenity-entry-screenshot.png
|
||||
===========================
|
||||
|
||||
<script-name> = text_entry.sh
|
||||
|
||||
|
||||
|
||||
zenity-error-screenshot.png
|
||||
===========================
|
||||
|
||||
<script-name> = error.sh
|
||||
|
||||
|
||||
zenity-fileselection-screenshot.png
|
||||
===================================
|
||||
|
||||
<script-name> = file_sel.sh
|
||||
|
||||
|
||||
zenity-information-screenshot.png
|
||||
=================================
|
||||
|
||||
<script-name> = info.sh
|
||||
|
||||
|
||||
zenity-list-screenshot.png
|
||||
==========================
|
||||
|
||||
<script-name> = list.sh
|
||||
|
||||
|
||||
zenity-progress-screenshot.png
|
||||
==============================
|
||||
|
||||
<script-name> = progress.sh
|
||||
|
||||
|
||||
zenity-question-screenshot.png
|
||||
==============================
|
||||
|
||||
<script-name> = question.sh
|
||||
|
||||
|
||||
zenity-text-screenshot.png
|
||||
==========================
|
||||
|
||||
<script-name> = text_info.sh
|
||||
Select cvs.txt from the File Selector dialog.
|
||||
Resize the window so that only the text appears -- no blank space.
|
||||
|
||||
|
||||
zenity-warning-screenshot.png
|
||||
=============================
|
||||
|
||||
<script-name> = warning.sh
|
@ -1,10 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
if zenity --calendar \
|
||||
--title="Select a Date" \
|
||||
--text="Click on a date to select that date." \
|
||||
--day=10 --month=8 --year=2004
|
||||
then echo $?
|
||||
else echo "No date selected"
|
||||
fi
|
||||
|
@ -1,51 +0,0 @@
|
||||
Getting the most out of CVS in GNOME
|
||||
====================================
|
||||
|
||||
Introductory Beginnings-
|
||||
|
||||
Current Versions System, CVS, is a powerful
|
||||
method of allowing many developers
|
||||
to work on the same source code. It is used
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
zenity --error \
|
||||
--text="Could not find /var/log/syslog."
|
@ -1,13 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
FILE=`zenity --file-selection --title="Select a File"`
|
||||
|
||||
case $? in
|
||||
0)
|
||||
echo "\"$FILE\" selected.";;
|
||||
1)
|
||||
echo "No file selected.";;
|
||||
-1)
|
||||
echo "No file selected.";;
|
||||
esac
|
||||
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
zenity --info \
|
||||
--text="Merge complete. Updated 3 of 10 files."
|
@ -1,8 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
zenity --list \
|
||||
--title="Choose the Bugs You Wish to View" \
|
||||
--column="Bug Number" --column="Severity" --column="Description" \
|
||||
992383 Normal "GtkTreeView crashes on multiple selections" \
|
||||
293823 High "GNOME Dictionary does not handle proxy" \
|
||||
393823 Critical "Menu editing does not work in GNOME 2.0"
|
@ -1,5 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
/gnome/head/cvs/zenity/src/zenity --notification \
|
||||
--window-icon="info" \
|
||||
--text="There are system updates necessary!"
|
@ -1,18 +0,0 @@
|
||||
#!/bin/sh
|
||||
(
|
||||
echo "10" ; sleep 1
|
||||
echo "# Updating mail logs" ; sleep 1
|
||||
echo "20" ; sleep 1
|
||||
echo "# Resetting cron jobs" ; sleep 1
|
||||
echo "50" ; sleep 1
|
||||
echo "This line will just be ignored" ; sleep 1
|
||||
echo "75" ; sleep 1
|
||||
echo "# Rebooting system" ; sleep 1
|
||||
echo "100" ; sleep 1
|
||||
) |
|
||||
zenity --progress --title="Update System Logs" --text="Scanning mail logs..." --percentage=0
|
||||
|
||||
if [ "$?" = -1 ] ; then
|
||||
zenity --error --text="Update cancelled."
|
||||
fi
|
||||
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
zenity --question \
|
||||
--text="Are you sure you wish to proceed?"
|
@ -1,11 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
if zenity --entry \
|
||||
--title="Add an Entry" \
|
||||
--text="Enter your _password:" \
|
||||
--entry-text "password" \
|
||||
--hide-text
|
||||
then echo $?
|
||||
else echo "No password entered"
|
||||
fi
|
||||
|
@ -1,17 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
FILE=`zenity --file-selection \
|
||||
--title="Select a File"`
|
||||
|
||||
case $? in
|
||||
0)
|
||||
zenity --text-info \
|
||||
--title=$FILE \
|
||||
--filename=$FILE \
|
||||
--editable 2>/tmp/tmp.txt;;
|
||||
1)
|
||||
echo "No file selected.";;
|
||||
-1)
|
||||
echo "No file selected.";;
|
||||
esac
|
||||
|
@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
zenity --warning \
|
||||
--text="Disconnect the power cable to avoid electrical shock."
|
@ -1,79 +0,0 @@
|
||||
<license xmlns="http://projectmallard.org/1.0/"
|
||||
href="https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt">
|
||||
|
||||
<p>This work is licensed under a
|
||||
<link href="https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt">GNU Free
|
||||
Documentation License Version 1.1</link> or any later version.</p>
|
||||
|
||||
<p>
|
||||
Permission is granted to copy, distribute and/or modify this
|
||||
document under the terms of the GNU Free Documentation
|
||||
License (GFDL), Version 1.1 or any later version published
|
||||
by the Free Software Foundation with no Invariant Sections,
|
||||
no Front-Cover Texts, and no Back-Cover Texts. You can find
|
||||
a copy of the GFDL at this
|
||||
<link href="https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt">link</link>.
|
||||
</p>
|
||||
<p> This manual is part of a collection of GNOME manuals
|
||||
distributed under the GFDL. If you want to distribute this
|
||||
manual separately from the collection, you can do so by
|
||||
adding a copy of the license to the manual, as described in
|
||||
section 6 of the license.
|
||||