DilOS: build pack for tdelibs

Signed-off-by: Denis Kozadaev <denis@dilos.org>
pull/37/head
Denis Kozadaev 4 years ago committed by Slávek Banko
parent 94d1739465
commit 712f27962c

@ -0,0 +1,218 @@
# -*- mode: makefile; coding: utf-8 -*-
# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
# Copyright © 2019 TDE Team
# Description: A class for TDE packages; sets TDE environment variables, etc
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA.
ifndef _cdbs_bootstrap
_cdbs_scripts_path ?= /usr/lib/cdbs
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
_cdbs_class_path ?= /usr/share/cdbs/1/class
endif
ifndef _cdbs_class_debian-qt-kde
_cdbs_class_debian-qt-kde := 1
# for dh_icons
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4)
# Note: This _must_ be included before autotools.mk, or it won't work.
common-configure-arch common-configure-indep:: debian/stamp-cvs-make
debian/stamp-cvs-make:
ifndef _cdbs_class_cmake
cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
endif
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
endif
$(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
endif
touch debian/stamp-cvs-make
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
ifdef _cdbs_tarball_dir
DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
else
DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
endif
ifndef _cdbs_class_cmake
include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix)
endif
ifndef _cdbs_rules_patchsys_quilt
DEB_PATCHDIRS := debian/patches/common debian/patches
endif
export kde_cgidir = \$${libdir}/cgi-bin
export kde_confdir = \$${sysconfdir}/trinity
export kde_htmldir = \$${datadir}/doc/tde/HTML
DEB_KDE_ENABLE_FINAL := yes
DEB_INSTALL_DOCS_ALL :=
DEB_DH_MAKESHLIBS_ARGS_ALL := -V
DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib/$(DEB_HOST_MULTIARCH))
DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include"
DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches)))
cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
else
cdbs_kde_enable_final =
endif
endif
ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
cdbs_kde_enable_final =
cdbs_kde_enable_debug = --enable-debug=yes
else
cdbs_kde_enable_debug = --disable-debug
endif
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
cdbs_kde_enable_debug = --enable-debug=full
endif
DEB_BUILD_PARALLEL ?= true
cdbs_configure_flags += \
--with-qt-dir=/usr/share/qt3 \
--disable-rpath \
--with-xinerama \
$(cdbs_kde_enable_final) \
$(cdbs_kde_enable_debug)
# This is a convenience target for calling manually.
# It's not part of the build process.
buildprep: clean apply-patches
ifndef _cdbs_class_cmake
$(MAKE) -f admin/Makefile.common dist
endif
debian/rules clean
common-build-arch:: debian/stamp-man-pages
debian/stamp-man-pages:
if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
for f in $$(find debian/man -name '*.sgml'); do \
docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
done
for f in $$(find debian/man -name '*.man'); do \
soelim -I debian/man $$f \
> debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
done
touch debian/stamp-man-pages
common-binary-indep::
( set -e; \
tmpf=`mktemp debian/versions.XXXXXX`; \
perl debian/cdbs/versions.pl >$$tmpf; \
for p in $(DEB_INDEP_PACKAGES); do \
cat $$tmpf >>debian/$$p.substvars; \
done; \
rm -f $$tmpf )
common-binary-arch::
( set -e; \
tmpf=`mktemp debian/versions.XXXXXX`; \
perl debian/cdbs/versions.pl >$$tmpf; \
for p in $(DEB_ARCH_PACKAGES); do \
cat $$tmpf >>debian/$$p.substvars; \
done; \
rm -f $$tmpf )
# update multi-arch path in install files
ls -d debian/* | \
grep -E "(install|links)$$" | \
while read a; do \
[ -d $$a ] || [ -f $$a.arch ] || \
! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \
sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \
done
clean::
rm -rf debian/man/out
-rmdir debian/man
rm -f debian/stamp-man-pages
rm -rf debian/shlibs-check
# revert multi-arch path in install files
ls -d debian/* | \
grep -E "(install|links)$$" | \
while read a; do \
[ ! -f $$a.arch ] || \
mv $$a.arch $$a; \
done
$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi
if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
if test -e debian/$(cdbs_curpkg).lintian; then \
install -p -D -m644 debian/$(cdbs_curpkg).lintian \
debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
fi
if test -e debian/$(cdbs_curpkg).presubj; then \
install -p -D -m644 debian/$(cdbs_curpkg).presubj \
debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
fi
binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
set -e; \
for doc in `cd $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en; find . -name index.docbook`; do \
pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
echo Building $$pkg HTML docs...; \
mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
/usr/bin/meinproc $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en/$$pkg/index.docbook; \
done
for pkg in $(DOC_HTML_PRUNE) ; do \
rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
done
common-build-indep:: debian/stamp-kde-apidox
debian/stamp-kde-apidox:
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
touch $@
common-install-indep:: common-install-kde-apidox
common-install-kde-apidox::
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR))
cleanbuilddir::
-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
clean::
ifndef _cdbs_class_cmake
if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
cd $(DEB_SRCDIR); \
find . -name Makefile.in -print | \
xargs --no-run-if-empty rm -f; \
rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
configure configure.files configure.in stamp-h.in \
subdirs; \
fi
endif
rm -f debian/stamp-kde-apidox
rm -f debian/stamp-cvs-make
endif

@ -0,0 +1,19 @@
#!/usr/bin/env perl
use strict;
use warnings;
my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
my ($version3, $version3_next);
my ($version2, $version2_next);
($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
($version2 = $version3) =~ s/\.[^.]+$//;
($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
print "TDE-Version3=$version3\n";
print "TDE-Version2=$version2\n";
print "TDE-Next-Version3=$version3_next\n";
print "TDE-Next-Version2=$version2_next\n";

File diff suppressed because it is too large Load Diff

@ -0,0 +1,129 @@
Source: tdelibs-trinity
Section: libs
Priority: optional
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
XSBC-Original-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Uploaders: Adeodato Sim <dato@net.com.org.es>, Ana Beatriz Guerrero Lopez <ana@debian.org>, Daniel Schepler <schepler@debian.org>, Fathi Boudra <fboudra@free.fr>, Sune Vuorela <debian@pusling.com>
Build-Depends: cdbs (>= 0.4.41ubuntu2), debhelper (>= 7.0.50~), quilt, autotools-dev,
binutils (>= 2.14.90.0.7), binutils-dev [!solaris-any], docbook-to-man, gawk,
libart-2.0-dev (>= 4:14.0.0~), libarts1-trinity-dev (>= 1.5.0), libacl1-dev [!solaris-any],
libattr1-dev [!solaris-any], libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386 !solaris-any],
aspell, libaspell-dev, hspell, libbz2-dev, liblzma-dev, libcupsys2-dev | libcups2-dev,
libidn11-dev, libjasper-dev (>= 1.900.1), libkrb5-dev | heimdal-dev, libldap2-dev,
liblualib50-dev, libopenexr-dev (>= 1.2.2-4.1), libpcre3-dev,
libsasl2-dev, libxcomposite-dev, libdbus-1-tqt-dev,
libtiff-dev, libavahi-client-dev (>= 0.4), x11-xserver-utils,
libxml2-dev, libxml2-utils, libxslt1-dev, libavahi-tqt-dev,
sharutils, texinfo, libogg-dev, libtqtinterface-dev,
lsb-release, base-files, sudo, libr-dev [!solaris-any],
libudev-dev [!solaris-any], cmake, libltdl-dev, libmagic-dev, libpcsclite-dev,
opensc-pkcs11 | opensc (<< 0.13.0-5), libpkcs11-helper1-dev, libcryptsetup-dev [!solaris-any],
libiconv-dev [solaris-any]
Build-Depends-Indep: doxygen, libtqtinterface-doc, graphviz, gsfonts-x11
Standards-Version: 3.8.3
Package: tdelibs-trinity
Section: libs
Architecture: all
Replaces: kdelibs-trinity (<< 4:14.0.0~)
Breaks: kdelibs-trinity (<< 4:14.0.0~)
Provides: tdelibs
Depends: tdelibs14-trinity (>= ${source:Version}),
tdelibs-data-trinity (>= ${source:Version})
Description: core libraries from the official Trinity release
TDE (the Trinity Desktop Environment) is a powerful Open Source graphical
desktop environment for Unix workstations. It combines ease of use,
contemporary functionality, and outstanding graphical design with the
technological superiority of the Unix operating system.
.
This metapackage includes the core TDE libraries, binaries, and data,
needed by virtually all TDE applications. It does not include
development files.
Package: tdelibs-data-trinity
Section: libs
Architecture: all
Replaces: kdelibs-data-trinity (<< 4:14.0.0~)
Breaks: kdelibs-data-trinity (<< 4:14.0.0~)
Conflicts: kdebase-kio-plugins-trinity (<= 4:14.0.0~), ksysv-trinity (<< 4:14.0.6~)
Depends: hicolor-icon-theme
Provides: tdelibs-data
Description: core shared data for all TDE applications
This package contains all the architecture independent data files
commonly used by TDE applications. You need these data files to run
TDE applications.
.
This package is part of TDE, and a component of the TDE libraries module.
See the 'tde-trinity' and 'tdelibs-trinity' packages for more information.
Package: tdelibs14-trinity
Section: libs
Architecture: any
Replaces: kdelibs4c2a-kde3 (<< 4:14.0.0~), kdelibs4c2a-trinity (<< 4:14.0.0~), tdelibs4c2a-trinity, netpbm [solaris-any]
Breaks: kdelibs4c2a-kde3 (<< 4:14.0.0~), kdelibs4c2a-trinity (<< 4:14.0.0~), tdelibs4c2a-trinity
Depends: ${shlibs:Depends}, tdelibs-data-trinity,
tdelibs-data-trinity, libart-2.0-2 (>= 4:14.0.0~), perl, xbase-clients
Recommends: xdg-user-dirs, consolekit | systemd
Suggests: fam, perl-suid
Conflicts: tdelibs4-trinity, tdelibs4c2-trinity (>> 4:1.0.0), tdelibs-bin-trinity (<< 4:3.3.3), tdelibs4-trinity-dev (<< 4:3.5.7.dfsg.1-6)
Description: core libraries and binaries for all TDE applications
This package contains all the shared libraries and common core binaries
used by all TDE applications. You need these libraries and binaries to
run TDE applications.
.
Several scripts included in tdebase-bin, related to the handling of SMB
and NFS shares, require the perl-suid package to work properly.
.
This package is part of TDE, and a component of the TDE libraries module.
See the 'tde-trinity' and 'tdelibs-trinity' packages for more information.
Package: tdelibs14-trinity-dev
Section: libdevel
Architecture: any
Replaces: kdelibs4-trinity-dev (<< 4:14.0.0~)
Breaks: kdelibs4-trinity-dev (<< 4:14.0.0~)
Depends: tdelibs14-trinity (= ${source:Version}), libart-2.0-dev (>= 4:14.0.0~),
libarts1-trinity-dev (>= 1.5.0), ${libasound2-dev}, libacl1-dev [!solaris-any], libattr1-dev [!solaris-any],
libaspell-dev, hspell, libbz2-dev,
libidn11-dev, libjasper-dev (>= 1.900.1), libkrb5-dev | heimdal-dev,
libopenexr-dev (>= 1.2.2-3), libpcre3-dev, liblualib50-dev,
libsasl2-dev, libxcomposite-dev,
libtiff-dev, libxml2-dev, libxml2-utils, libxslt1-dev,
libavahi-client-dev (>= 0.4), libtqtinterface-dev,
libr-dev [!solaris-any], libudev-dev [!solaris-any], libdbus-1-tqt-dev, binutils-dev [!solaris-any]
Recommends: libcupsys2-dev | libcups2-dev
Provides: tdelibs-trinity-dev
Description: development files for the TDE core libraries
This package contains all the headers and other related files needed
to compile TDE applications, or develop applications which use the
core TDE libraries.
.
This package is part of TDE, and a component of the TDE libraries module.
See the 'tde-trinity' and 'tdelibs-trinity' packages for more information.
Package: tdelibs14-trinity-doc
Section: doc
Architecture: all
Replaces: kdelibs4-trinity-doc (<< 4:14.0.0~)
Breaks: kdelibs4-trinity-doc (<< 4:14.0.0~)
Provides: tdelibs-trinity-doc
Description: developer documentation for the TDE core libraries
This package contains documentation for the core TDE libraries, of
use more for developers creating applications which use the core
TDE libraries, than regular users.
.
This package is part of TDE, and a component of the TDE libraries module.
See the 'tde-trinity' and 'tdelibs-trinity' packages for more information.
Package: tdelibs-trinity-dbg
Section: libdevel
Architecture: linux-any
Replaces: kdelibs-trinity-dbg (<< 4:14.0.0~)
Breaks: kdelibs-trinity-dbg (<< 4:14.0.0~)
Priority: extra
Conflicts: tdelibs4-trinity-dbg, tdelibs4c2-trinity-dbg, tdelibs4c2a-trinity-dbg
Depends: tdelibs14-trinity (= ${source:Version}), libtqtinterface-dbg, libc6-dbg [amd64]
Description: debugging symbols for tdelibs
This package contains the debugging symbols associated with tdelibs.
They will automatically be used by gdb for debugging tdelibs-related
issues.

@ -0,0 +1,441 @@
This package was debianized by Christopher L Cheney <ccheney@debian.org> on
Tue, 16 Apr 2002 22:00:00 -0500.
It was downloaded from: http://www.kde.org/download
The upstream packaging has since moved to http://www.trinitydesktop.org
Upstream Authors: Kalle Dalheimer <kalle@kde.org> and many others.
© 2010-2011 Timothy Pearson <kb9vqf@pearsoncomputing.net> and many others.
License:
All programs are either under the BSD, GPL or LGPL licenses. On Debian
systems, the complete text of the BSD, GPL and LGPL licenses can be found
in the /usr/share/common-licenses/BSD, /usr/share/common-licenses/GPL and
/usr/share/common-licenses/LGPL files.
libartskde, interfaces, tdeabc, kate, tdecert, tdeconf_update, tdecore, kded, tdefx,
tdeprint, tdesu, tdeui, tdewidgets, tdehtml, kimgio, kinit, tdeio, tdeioslave, kjs,
tdeparts, ksmartcard, tdespell, kstyles, libtdemid, libtdescreensaver
------------------------------------------------------------------------------
LGPL
knotify, artsmessage, kab
-------------------------
GPL
dcop
----
BSD
--------------------
DocBook Documentation:
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.1 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover Texts,
and with no Back-Cover Texts.
A copy of the GNU Free Documentation License (Version 1.2) is
included below.
GNU Free Documentation License
Version 1.2, November 2002
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA, 02110-1301, USA.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
0. PREAMBLE
The purpose of this License is to make a manual, textbook, or other
functional and useful document "free" in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
This License is a kind of "copyleft", which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
1. APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The "Document", below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as "you". You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
A "Modified Version" of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
A "Secondary Section" is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall subject
(or to related matters) and contains nothing that could fall directly
within that overall subject. (Thus, if the Document is in part a
textbook of mathematics, a Secondary Section may not explain any
mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
The "Invariant Sections" are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
The "Cover Texts" are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
A "Transparent" copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not "Transparent" is called "Opaque".
Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification. Examples of
transparent image formats include PNG, XCF and JPG. Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.
The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as "Acknowledgements",
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
of such a section when you modify the Document means that it remains a
section "Entitled XYZ" according to this definition.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
3. COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History", Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications",
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
You may add a section Entitled "Endorsements", provided it contains
nothing but endorsements of your Modified Version by various
parties--for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
5. COMBINING DOCUMENTS
You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled "History"
in the various original documents, forming one section Entitled
"History"; likewise combine any sections Entitled "Acknowledgements",
and any sections Entitled "Dedications". You must delete all sections
Entitled "Endorsements".
6. COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
7. AGGREGATION WITH INDEPENDENT WORKS
A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an "aggregate" if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
8. TRANSLATION
Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
If a section in the Document is Entitled "Acknowledgements",
"Dedications", or "History", the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
9. TERMINATION
You may not copy, modify, sublicense, or distribute the Document except
as expressly provided for under this License. Any other attempt to
copy, modify, sublicense or distribute the Document is void, and will
automatically terminate your rights under this License. However,
parties who have received copies, or rights, from you under this
License will not have their licenses terminated so long as such
parties remain in full compliance.
10. FUTURE REVISIONS OF THIS LICENSE
The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License "or any later version" applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation.
ADDENDUM: How to use this License for your documents
To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
Copyright (c) YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled
"GNU Free Documentation License".
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the "with...Texts." line with this:
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.

File diff suppressed because it is too large Load Diff

@ -0,0 +1,299 @@
begin 644 cr128-device-computer.png
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
4W9=K2].M5;4`````245.1*Y"8((`
`
end

@ -0,0 +1,22 @@
begin 640 cr16-action-hibernate.png.uu
MB5!.1PT*&@H````-24A$4@```!`````0"`8````?\_]A````!F)+1T0`````
M``#Y0[M_````"7!(67,```L3```+$P$`FIP8```"]4E$050XRSV3RV]491C&
M?^_W?>><&3LSG:$W6YH60D$!$P.)FE:\+'2E;HSA?X#_PYTK%[`R)FZ-*Y"%
MT453\9**@5"!6D*D-V@Z=CK.Y9PYE^]UT99G^23/F_?)DY\T/OCR\['IN:LB
MM@[*"XD`@@@(`B+(H2\B%%FZO[.Q>LV-'C]UY<3LB?KQV@!GY3!M"`)'%`88
M:RC4H!BL,1AK40SK+5M7](H3,8VQ<LP;<Q4`RI'CU%25DY,5JF4'0"<N6-^-
M66_FY&JQ1O!X_G)1PZ@J29JSTTK(/2R<'V/^W`C&)SS9V.7I=HO0>MX\,\S%
MDQ&#04JSJV2%`(I37_"\-6!Z).#3=R:8'@FYL?B`W]?Z9*:"<R&-ZH"W7JFR
M\&J59)!Q\^Z`)"^AWN-4E6>ME'HEXNQ,A>]^7.'&GWU>JHWPX85C:)&S^#!F
M:[E/YAWOGQOFC\>;K#P+4/4854\Y"I@_/\K63HMO;^^RGU?)O>'2V1KSIR/B
M7I=F5[AU+V&O)YR9C.C%":J*\UZI54K,3@RQMO&<)WLAI2$HEQ01P1BAFWAZ
M5NAGGG^:!>/U"*-MO%><]QYK+"*"&(-U(3F&U%LX6)Y,#:DWX"V*@"J"'E4H
MB#/8;*;,3==YN1%@C,-:BP*JBA&#&,?XL&-VQ++U;\R@<'A?8-1[LD)8>M!A
M:JS&9PNC1('02RW+CV-^>[A'OPB)`LO'%TJ,#GE^?=3!NPI:%`<5G+,L/>KS
MRVJ?R^].$41M;M[+^&JQ!SYB8KS")Q=+?/1ZR.W[F]S9+N/"$H4_/&"MI9\*
MUWYH8<PQ+K_=X+W7"M;W0$28';6,#7E^OK_-UTL#?&D&\07^X(,<8RQ!&+#3
M$;[XOL.EM83YTP&3=0OJ67N:\,W?7>YL1.31#,X%^$&.]SDNC?NM?J_3L$&`
M46CWE%MW"WY:22B'BJ@G*2S>U'!!A$E3\BRCM;M-W/VOY7KMW>OKJ\M7@[!4
K/T#X"%]>S"AR1*D>>DJ:]/=[[>;U_P'29FB.5=SSF@````!)14Y$KD)@@@``
`
end

@ -0,0 +1,22 @@
begin 640 cr16-action-suspend.png.uu
MB5!.1PT*&@H````-24A$4@```!`````0"`8````?\_]A````!F)+1T0`````
M``#Y0[M_````"7!(67,```L3```+$P$`FIP8```"W4E$050XRU63NX\;51C%
M?_>[=V;LC>WU8]^LL@L;(=$B`=HH$C140(-0_H?D[X".BB*I$!(MHDJ4C@*%
MIT*@(""AE0)9]L%FC>U9V^/QS-S[43@"<8JC<[JC<W3,1^]W/KBRMWK36M-6
MY5\8`^:9,,;\IP$CAJ+PH]\.SFZYO1=6;NSN[K;G_CF,<0"(`1=%1"Y!K"#&
M(Z*(6*P51!2KAVU5O>%$3&=6K-+HO`*`B^HTE_=HM)['14T`?#5F-CVDFA]B
MI<*()>2!)/ZE(QJ4JLK)9V=`Q>K&57IK^^1SX?SL,</!$X+&+'=?)6F\3%',
M4=_'4*(*S@=EGOU%%&^SOO<N<7V;7W^^0Y9^3V.I)(X=\[1#L_L:S>Y5RB)G
M?G&7FLL)JCA5I<A/2>IM&NV7>/33YV3#._1Z2W37WZ2JE%GZ)=G@&&=+EKMO
M<#3\@8A'A*!("$J4U%G9V&<X..;\^#.:2R.$BE;O&DESG\EDAM$^^>@>1@<D
M2R^2YU-4%5$-U)(6EYH[I(,#8O,8P@#5\6(^(P0_P6A**'_'%W^0U-8H*T$U
MX$((6&<QQB!BB&.+2(658K$](%(BIL`*&!0%5`W!*^*]@LXH9D>T>U>(:ALX
M)UAKP>@BI@C.&ERRADUVF$V/<7:.#P$)JAA*QH/[M):W6-EZ#R,)UDR9I0\8
M//V.V&78**&V_#:!%<;#;VE<"GBON.`#UCJR]#[9Z!NV=J^3/HTH)W>9]C\F
M\=!87:?6>8>X^19'3[ZF;A]22QS>^V<=6(LA8WARB^ZVT-F\CB]?A^H0(P8;
M[Q!8Y>3/KYB//N'R9L![@_<!5_F`M4(419APQOCT0_+Q-:*E?6RT2:@@'QXP
M&7U*8AYR>:LB<H[*!RH?<%E6#,?CK!-%%A"4%)_>(T^_0*D3U&`EIY4$DMA1
MS(6RJ#@Y'7)Q,1NZ\_[T]H,?#V_6:E%[<5DP"^)_'M"%18$L*T;]OZ>W_P'N
3HF#O#V#U#`````!)14Y$KD)@@@``
`
end

@ -0,0 +1,22 @@
begin 644 cr16-device-computer.png
MB5!.1PT*&@H````-24A$4@```!`````0"`8````?\_]A````!F)+1T0`_P#_
M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0<$#`PNRAS7
MW````M-)1$%4.,NEDTU/7&48AJ_WXWR\,\P9J#BM`IE&0UG4SWXD0&H7MG'E
MPL#*3;=N^`]N^`']#?X"@RR,"S5!HQF"8ERHL304&.2C4^`,IV?.S/N>UP6$
MQ+HQ\=D\F^=Z<N>^<\/_'/%?CL;'QYMS<W,/PC`T`$((BJ+H+2TM?:XKE4J4
M)$DBA)#_1CW6.CL]/?W!PL+"I[5:30&494F>YWY[>WM(+RXN/KQSY[V[_ER-
MN$`![_'>$T51(J641T='&&.PUM+O]Y%2&GWOWOV/?OUCZTI<'Z5B8DS%8"J&
MK?8IWW[_A`_?'Z/HYKP6-Z@&)<88RK+$>X\0`BVDE)8`'80$L>'@F>/+KP[9
MWS_!9QEQM4HI!`>=4YJ-,_!,W-F62DF\&]!YVF6EU>;X5'+WS8#[,Z.4HU,\
MVCRB>W)"ECU'"HG6&BDE01`@I41**5%2L/K+7WSQS1[MG4-J8<[$\'->%8]Y
M_.<6>^U=K'4HK0B"X!\*M!`"*25O3<9<NQJ@*S5:/V^S=VC9V2]X=[).J`>4
MOB0]2<GS@BS+\.<&:X$@CF)*$?!RQ>#IL[43$L:>JV-5:D,&K4-*7S)R:80D
M&29-4](T/7O@G.N/-J^S^;2@T`(I/3=F7V$PL!1%GVX^8-`K>&-X0)IVZ72.
M\-[CG,-[C\JR+#2DH3K=[$PV=/7:Y2AJ1#E73(]A<>R.G_RT69?/#B<F+E]:
M_WU=^(%G8V.#(`A86UM;5>OKZS^NK'SW]<SL[*T;-V]>#\-(&U-!*4T0AB**
MXW2GW?[M]JW;KP^9(=GK]4B2!*44K59K50,N#,.\V6PVDR2)RK+$6HM2BEJM
M)I128^UVVSOG1#VIHY4FR[(+(R_*U&@TWIZ9F?EX:FKJG7J]/F*M=;N[NP>M
M5NL':^VC^?GY3Z24P\XYG'/D>6Z7EY<_>[&-$J@)(:KG.6=`%_!"B)>`6`AQ
<7A/OO?<G?P/W!TYCC"=.*`````!)14Y$KD)@@@``
`
end

@ -0,0 +1,33 @@
begin 640 cr22-action-hibernate.png.uu
MB5!.1PT*&@H````-24A$4@```!8````6"`8```#$M&P[````!F)+1T0`````
M``#Y0[M_````"7!(67,```L3```+$P$`FIP8```$WTE$050XRXV5RV]=U17&
M?VOO?<ZYKUS[^A';B=V0IK:K)A!0&T5U*"HTE$I,^@=TUK^AS)"0F+4SQ@QH
M1YU5BHA0*Z'P$'$AD*@0I6WL&*R$V''LQ/?ZGG///8^]&)P;TD&16-*6]FM]
MVGM]W](G<OJ5%SJ'%UYO3\R<04S`_PWE>X5JWGNP?>7ASIU7I?/B&Q^=.ON;
M%55%B@21_[DH!B,"QF+$(,9@1D-$JK4((@;$4$I(TN_Q^>K%RZ[=F3GC2\]2
MI\OR?/,QI@B($#A+LQY0"QV(4)20YN!U!&PJ8!'#E_=+/K\[1KLS<\8A$F@1
MLS`=,=8*T=&OZY'C^%R+'\ZUZ+0"PL"@"GGA>=C/V-Q)N;U74'B+,8(QAJ.3
MAAO;!8@$3A6\5PZ2@BC,4(79B3K/GIKBB=D6SL)PF).F&2)"&#@6INK,=2)F
MMF,^OMEG/PVQ5DB&`(*JXE!/Z3W=N,0YRY')!B_];);YZ09QDO+>OS:XL7E`
M/[.X(&)JO,&IXQV>/-YF<?X0D8.+G^W3RUHDF3PB$:>JI,.2M;LQC7K$\T\?
M9GZZP9WM/?[Z]R]8NV\)6],$08@I#3OW#.M[,3>W"W[]S#@_F&US]D<)%ZX>
MD&@;[Q55CU%55)7-G2$3[8B33[2)DY2W+ESCT]L1>7@8XP)^=7J<7YYL4A8Y
M^PFLKA>\?34FS3RGCD\RUTKI#W)4054QJ`=CJ-<"SIV<PEG#/U;_R^JMDMRV
MZ2:>(Q,1+SX]SOG38XS;?;I)29S!/]<R/KDU)`P#GCS6I-OM4VI58^-546!N
MLLG2?(MTF/'.QW?9S<;H#93>0#'&$-B*.-&<WL#3'PI[L7)Y+2,KX.AT$\H!
MA5?4>YRJ!X2)=L18,R`9#+G]H"0M0Q@H8BK=ZJ@#LP+B3"B,`,)7NR5I[CG4
M"&D$!>15:9UZCR`8Z[YM#FM#K'.H&+Q6XU%XA,(;K!>0QV<"H+ZJL?<8]1X1
MZ*=*+REIU$,69AH(8*S#6(L84R4B&!&,-1AC$;',=1RUP-!+,N+,(`)>2XSW
M'A%A]\!S:SNE%H6<?V:66N`QQF*-I52A5/#>4Y3Z+6@M-*PLAH0.-K[NTLOK
M"*!>*[D)D)?">]=[9(7GI;,+/+<<5F5QCO5[)=<V$CZYL<7Z3HES(8AP;BGD
M%\L!PRSG_2]V(9I`4;QZ;.W$RZ^-31[!!0$[/<^)V8BEHTT6YVKTDH*MGF%_
M('RZD?+AOQ-Z.DVS4>>Y'X?\;J7&9,OPX;7;_.UJ0=B>)QW$;&_^!Z=:C@AS
M]#-X\]V'3+<#?K)PB#_\ML;[-V)6UTNV>@9CFAR=<*PL!IQ;#&A&PO7U>_SY
MTGUH+6.L174D-^\]`,9:C+%\>;_DCQ<>\/OGVYQ=;/#R3\<X_Q2DA2((M0!"
M)PRSG$N?;?&72[OLF1.$M29(U1S^,;!B1^P;Z_AJ3_G3Q0-^?B+AV>608U,!
MA^H6@.UNQL;6`1]<W^?JG0#?6"(,ZXA4BE'U>"UQOBSR/!L&8@S6!J.7&P:%
MY=*:<'FC8*(^I!65X`OZ0]A/`[P[1C#6P!FIW&0$FO2[^++,79;&5Q[LW%E1
M((KJE6;ED2M4"??$`-6\LJ8,B$<V5NT##)(#[F[>)$OC*\+I5UX(:LW7@[!Q
F!N$[S/3[>JGFQ7!P)1_&KWX#>T1.!<^X[8@`````245.1*Y"8((`
`
end

@ -0,0 +1,32 @@
begin 640 cr22-action-suspend.png.uu
MB5!.1PT*&@H````-24A$4@```!8````6"`8```#$M&P[````!F)+1T0`````
M``#Y0[M_````"7!(67,```L3```+$P$`FIP8```$KTE$050XRXV5SX]<1Q''
M/]7=K]_\>#NSN_;N>KW>&(/B2.`<K8AU^&T($O\"-RZ(.]Q\BL(!;IPY`"?.
MB`C!Q0E2;+!1+`5D"=MQ'&77F]AK[\[LO)DW[T=5#F^R<``I=>E6=7=5=7^_
MWVKYV4_DV]M;*Z]O;`PN.R'A?YCQ^<R4ZN,GX]N[>X?7Y%=OK+SS_:N7=LR,
MZ4P`:7<).`%Q#N_`.8=SLA@=(H)S@LAG?HBA87P\Y<T_OW<C;*P/+JLJH]E%
M^H.73K*+""+@?4(2^X30002@!BT0T3:P<[A%DJ;\@.'@/3;6!I>#"$D^-=+>
M-C$=GEP\A"[9\`+9TA=)TA6<CV"&:D4Y/Z28?D@]_PCOZD5PAY,MZOPNXD@"
M9I@I=75,.4\!H]L[P^G-5\F6O@`2J*HY95$@(@0?Z?:W2;N;Y.,-)D=_)X8C
MQ'NP*2)@9@0U4&UHRA'>!WK96<YLOT8O.T<QRWGX_EL<'][%NPEI#/2RTZR<
MNL1@]666EE\$23EZ\B99=XS8M`71()@:35V0%_=)TQ[K6]^BEYWCV<$N_[SS
M>[S=9VTU$M.D!<Z>D#]_0#V_Q_+:]Q@LO\!T^@K'HS\PZ$\Q4U0-9V88QGSV
M(6EWE<'*5RB*G#NW?D/*/UA?K4BB8WGM._27OTE5-:!'U/E-\N=_1+7@U-HE
MBFJ3JIP`AIGAU%I:);'+Z3-7<"[P[[M_H9G=9)!5:#TB[9YE>?V[#->N<C19
MIJE'0$Z9_XWY\2V2)-(?O,QD,D*DP=1PI@IB]+--LN%%RK+@\:,_,<P.,!UC
M.E[P-B&$2%4)VHP1FV#-,\K)#;"2_F"+60&F-=J"9PB0=E9)XI#Y?$I3?40,
M!=8`7L"*]HH`E(CE"#4"--4C5`MBND3=]#`#4R.H6DNCX$[$$1-/\![G#">*
M$_V/<%"<U`@>)_S7FJ#:-@!5PZD:B&`ZH:G'Q-BCM[0-BV3>MY(%06`AX=;O
MO1#239SK4,['.,D!H5'%J2J"H/4!1?X^,>UPYMQ5U#J+PQZ1!FA05<SJDZ#.
M=XC]'9#(Z/`AW3A>%&DX4UM44S$^>`O5DNT+KQ&SKR^D[6GF#YB.[K"_>XNF
M?$",`1&(V162_M>HJCD'^V^SNM*J3DT):@H"W@>FHW>8'-YD<.H;;+_X8X[V
M(U+>P.H]1H]_SBQO.'\V)XD927^'SO(/$==C[^%U(N\R'*8\?5J@:H1&#:RM
M#)MP^/C7)'&-I>&7Z?1^2G[X-LWL)L[VZ6>.$+=(^CLD_2N(Z_/)_K]XNOM;
M7KH`WKFV8C6"-BVJ[;LYFO(#GN_^@L'&C^@-7V&X_@/0JY@5+7RN@TBDJN;L
M/[K.P>[O^-(+S^CWXDD#4E6"JF*`]Q[G6B98_8CC_5\R'7V5F+U*DI['AZ66
MQ?./.1X_Y.C)7TEXEXL7E&XG+OJW0]5H5`EUH]5\7B7."4GB\>XS.LV0^CKU
MX0WFMDIC&74-V(3$'W%^7>GU$D3"(JB@9HQ&4YI:JY#GY>W=O><[F-'MIHOO
M1D[&=O[)@L."\XY2'/FD%85(ZP<XGLRX=_\Q^;2\'29Y=>W>@V>O[^Z-+_-_
C/M//:V96S6;U[7Q:7?L4LF9'88KQ:!8`````245.1*Y"8((`
`
end

@ -0,0 +1,32 @@
begin 644 cr22-device-computer.png
MB5!.1PT*&@H````-24A$4@```!8````6"`8```#$M&P[````!F)+1T0`_P#_
M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0<$#`T:\K,2
M*```!)E)1$%4.,NUE<]K7444QS\S<W^^O+P?K7E)7N)+FT:,5:@5Z1]0NG41
MJ!LA[JH[%VX*;OP/"MVY;L%%%43!15.HN-*FB%I:,%9C:]K7ILW[<=_+S;WO
MWCLS+M($#8@B>&!F<89SYLSG?)D#_Y.)_Q(4AF%0K5:?$T(<C!=)DFSW^_VN
M\U\2+R\OO[>\O/RNUMK^V:^4DFMK:^OGSY]_WY%24BJ57"FE8ZW]YR<*H187
M%T^U6JWY(`@`L-9BK:4H"I12D[5:[92SM+2T].;9LV]7JI6*-<8"'-CV;==E
M1:/1>#F*(J(H(@Q#K+7D>8XQ!F,,0@C'.7?NW(<G7GWMQ$;[,=:"D!(AQ%^6
MM19C--98M#%8+*VYH]R_M\[X^#A[J(NB((HBA!`X]7JUNG[O`6OW.S2:4X2A
M3Q"&!&%`$/A(I;CXT3?H0O/6T@*YSNEWNTQ/Y2@I2=,4*27&&+36>[API!`(
M!&$I1!>:HM`4><Z]S9C/OMGAR4#@]@8<KGH8:]!%@>MY;&_'&&OP/`^EU#Z.
MO3XY4BJDE20[.[B^CU22QT\SC!WC]07%TPB^7S_"$V/9ZL0$KB5-4G9V=G"E
M^1,J`X"4<B^Q0%I)U.O1&>3<N.LR-UGBI:.2Q9;#2PA>;&H^_MKPP]HVK\P)
MMC8W.3I9)W`5I5)IGZ_6FC`,=Q,C!%+LWO+;QH"M[A@4AH5FB:@W0@C!*$ZH
MC'ID`T-G$XS6SWB*?;D514&69>1YOLM8()!2HAS%B842QYX7N&Z9<*S"[QN_
M,$P,M^\F;`T$IXX'!"%D688QANWMF+6U-:RU)$FR)[7=BH4`)25!$.#[/I6:
MAQ#0Z3_FJ^\2!CN28TV/(S,^C0D?08&4DD)K#M4KS,S.HK4FCF.R+*/=;C]#
MP:YV/=_##WQ\W\?S/0X==GFG66:K-^)!.R;-!-)U\90"P!@-8K=969:AM=[G
M+(3`R0M=S#[?I-8/04JD`B,@$Z!<R\28IC:ER;*"/,OIISF.#'%ECM:&1^U'
M=+H=RN7R?A,!5+5:FYV?:RY.5S15-4P/>XF9K0KGL#<2=3>EYB0<<A.J:MMX
MV=.XZ@RSZ9J0CB/EK?5;]+?Z**FX??OV7K7YU:M75]3JZNKJYY]_\>V53S[]
MZL<?;ST<&RLW)Z>F#DFEQ*[6!0A!OQ_I&S=6?[IT^?*E8\<6PI,G3\YN=;?(
MD@PI)$F2,#X^CK4V7UE965'&F-%P.%R?GY_W+UZ\^,'ITZ=?D%(*QW$HE\L$
M04">YS0:#7GFS)G)5JLU[ON^TVJUIAOU!F.E,0":S2:.XQ#'<7[]^O45N?=S
M>9Y7=1QG(LLR?-]'*<5H-")-4X(@(`@"1J.1<%UWP1@SD^<Y69[A>1Z52F5?
MQ\88`0BUE[C=;C^\>?/FDUZOUTB2I)2FJ4K3E#B.;:?3*>[<N3.X<N7*3Q<N
M7+A4J52&T]/3QZ,HLL/AT,1Q;),DL5F6L;FYN7WMVK4O#XX6J92:J=5JQ^OU
M^M$@".K66IDDR;#;[3X8#`8_&V-^G9B8F)F:FGH#*!T8`D11U-_8V+@J_L5,
@%,_^>/LW9P?-`O8/[J),6R)#IM@`````245.1*Y"8((`
`
end

@ -0,0 +1,53 @@
begin 640 cr32-action-hibernate.png.uu
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
D;]F+0#I(D^BBILFKP.G_`B`U"(\5I"I[`````$E%3D2N0F""
`
end

@ -0,0 +1,52 @@
begin 640 cr32-action-suspend.png.uu
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
AJQ(E:7X^R_0EX/1_`$:$W<%^=''7`````$E%3D2N0F""
`
end

@ -0,0 +1,50 @@
begin 644 cr32-device-computer.png
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
<#:#V/S\=_QN]U+"7_WN7V0````!)14Y$KD)@@@``
`
end

@ -0,0 +1,74 @@
begin 640 cr48-action-hibernate.png.uu
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
>VH\]_K__W.9_`!8LB/6BI+FI`````$E%3D2N0F""
`
end

@ -0,0 +1,75 @@
begin 640 cr48-action-suspend.png.uu
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
H30F^ZGBLK57QI&K\V>/_^]]M_@<(B5E4DA'"T@````!)14Y$KD)@@@``
`
end

@ -0,0 +1,84 @@
begin 644 cr48-device-computer.png
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
)`$E%3D2N0F""
`
end

@ -0,0 +1,118 @@
begin 644 cr64-device-computer.png
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
+````245.1*Y"8((`
`
end

@ -0,0 +1,238 @@
begin 644 crsc-device-computer.svgz
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
'<K;E&+P`````
`
end

@ -0,0 +1,19 @@
begin 644 launchpad.png
MB5!.1PT*&@H````-24A$4@```!`````0"`8````?\_]A````!F)+1T0`_P#_
M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0H%$#(2\:9)
MY@```CQ)1$%4.,N5D]]+4V$<QC_OV=G.W-AR.ZZQ3#%+,;&@"[6P+H*BNE&B
MJ,O`_H`HBH0@*,B\R(J"(.I"HB[R(HHN%+I+N\A@1771_(FDKC/GJC6W'7>V
MTT6;M(F97WAX^<+[?'@>>%_!.B=PZ:6EMMS6>J!./1I9-/QB/>9]-P;W'F]4
M>_=L\397J2X>OIV]*?^/T7.QGXXZWX63.]3N@'>#[+3;3"V>9C`T_VP5@$GS
M]<']]:K2\%%+CVZO4':>VN7KJ?2Z)$EQF+JNB^&)Z+O)6'ID!<#7]5R<:'Q]
MJ[T^<,9AE9C\OH13L5*ENG$Y'=FDKEOF8G'CZ:?Y<^'N=F,%P&.7C\B2:!J:
M>G,YD5'B59[JGK9M#7:WTV'HF8P\N_`K]^1#I&OH_*%A@&6`.54#N43GB';-
MU>P?"PFX`@@MN=&83C[0%5NM$IQ>H"^H71W^FN@M^&1SO,**H)5<H@DXW.(?
M"P`J$`=<?D=$EE*G>12\F_25>1QN1<K-]W0L)Y80U`.[@1H@"LP!X;QB@.$K
MB_8/C&8[J]TV*MW6AK\KRX#(7\ZLHA1P/YVEW,0DELJ&BP'"U#!%`;!4<F:`
M'\#[EDW..Y\CZ=D7H9^W2Q/H)0F,/,#([]^V]-T+U'E3[H'Q>%NXNWVF&"!E
M$V3ET@J%!!KP>#%CC[TZ>_#8G[;%(P#,&;=`MSI!J$!%7BH0%%NC7_[US&4`
ML3ENFE,DR*H9A"@DB&"QA-;Z)T693!.8\,I(P@4D1>V"OA;@-X&[W^ASVHPX
,`````$E%3D2N0F""
`
end

@ -0,0 +1,98 @@
#! /usr/bin/env perl
use strict;
use warnings;
use Getopt::Long;
sub printdate
{
printf ( "%04i", ( $_[5] + 1900 ) );
print "-";
printf ( "%02i", $_[4] + 1);
print "-";
printf ( "%02i", $_[3] );
print " ";
printf ( "%02i", $_[2] );
print ":";
printf ( "%02i", $_[1] );
print "+0000";
}
sub prepare
{
#warn "Running on Perl V5.8.x" if $^V ge v5.8.0;
binmode( STDOUT, ":utf8" ) if $^V ge v5.8.0;
my @now = gmtime();
print "#, fuzzy\n";
print "msgid \"\"\n";
print "msgstr \"\"\n";
print "\"Project-Id-Version: desktop files\\n\"\n";
print "\"Report-Msgid-Bugs-To: http://bugs.trinitydesktop.org\\n\"\n";
print "\"POT-Creation-Date: "; printdate( @now ); print "\\n\"\n";
print "\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\n";
print "\"Last-Translator: FULL NAME <EMAIL\@ADDRESS>\\n\"\n";
print "\"Language-Team: LANGUAGE <kde-i18n-doc\@kde.org>\\n\"\n";
print "\"MIME-Version: 1.0\\n\"\n";
print "\"Content-Type: text/plain; charset=UTF-8\\n\"\n";
print "\"Content-Transfer-Encoding: 8bit\\n\"\n";
print "\n\n";
}
sub processfiles
{
my ( $files, $basedir) = ( @_ );
for my $filename ( @$files )
{
chomp( $filename );
open( FH, "<", $filename ) or warn "Cannot open file $filename";
binmode( FH, ":utf8" ) if $^V ge v5.8.0;
#warn("Using $filename");
#my $regexp = qr{^(Name|Comment|Language|Keywords|About|Description|GenericName)=};
my $regexp = qr{^(Name|Comment|Language|Keywords|About|Description|GenericName|Query|ExtraNames|X-TDE-Submenu)=};
while( <FH> )
{
if ( m/$regexp/o )
{
my $msgid = $_;
chomp( $msgid );
$msgid =~ s/\\/\\\\/g;
$msgid =~ s/\"/\\\"/g;
if ($msgid =~ m/ +$/) {
$msgid =~ s/ +$//; # remove trailing spaces
print STDERR "ERROR: white space at the end of $msgid in $filename\n";
}
if ($msgid =~ m/\r+$/) {
$msgid =~ s/\r+$//; # remove trailing CR (Carriage Return)
print STDERR "ERROR: CR at the end of $msgid in $filename\n";
}
$filename =~ s,^$basedir/,,;
print "#: $filename:$.\n";
print "msgid \"$msgid\"\n";
print "msgstr \"\"\n";
print "\n";
}
}
close( FH );
}
}
my $onefilelist;
my $basedir;
GetOptions ( "file-list=s" => \$onefilelist,
"base-dir=s" => \$basedir
);
prepare;
open( FILELIST, $onefilelist ) or warn ( "Cannot open file list: $onefilelist" );
my @thislist = <FILELIST>;
processfiles( \@thislist, $basedir );
close( FILELIST );

@ -0,0 +1,44 @@
#! /usr/bin/env bash
filelist=$1
rm -f "$filelist"_* $filelist
touch $filelist
dir=.
find $dir -name "*.directory" -print | grep -v debian >> $filelist
find $dir -name "*.kdelnk" -print | grep -v debian >> $filelist
find $dir -name "*.desktop" -print | grep -v debian >> $filelist
find $dir -name "*.kimap" -print | grep -v debian >> $filelist
find $dir -name "*.themerc" -print | grep -v debian >> $filelist
find $dir -name "*.kcsrc" -print | grep -v debian >> $filelist
find $dir -name "*.setdlg" -print | grep -v debian >> $filelist
find $dir -name "index.theme" -print | grep -v debian >> $filelist
find $dir -name "eventsrc" -print | grep -v debian >> $filelist
find $dir -name "*.protocol" -print | grep -v debian >> $filelist
### TEMPORARY START: we do not have TDE modules
if true; then
find ./konqueror -name .svn -prune , -name "directory.*" -type f 2>/dev/null | grep -v debian >> $filelist
find ./kdesktop -name .svn -prune , -name "directory.*" -type f 2>/dev/null | grep -v debian >> $filelist
find ./drkonqi -name "*rc" -print 2>/dev/null | grep -v debian >> $filelist
find ./kimgio -name \*.kimgio -print 2>/dev/null | grep -v debian >> $filelist
find ./noatun -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist
find ./noatun-plugins -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist
for file in `cat ./kolf/courses.list 2>/dev/null`; do
cat ./kolf/$file 2>/dev/null | grep -v debian >> $filelist
done
find ./amor/data -name \*rc -print 2>/dev/null | grep -v debian >> $filelist
find ./tdeprint -name \*.print -print 2>/dev/null | grep -v debian >> $filelist
find . -name \*.kksrc -print 2>/dev/null | grep -v debian >> $filelist
find ./kopete -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist
find . -name \*.kdevtemplate -print 2>/dev/null | grep -v debian >> $filelist
fi
### TEMPORARY END: we do not have TDE modules
# Extract .directory files in template directories of KOffice
find . -name .directory|fgrep templates >> $filelist
sort -o $filelist -u $filelist

@ -0,0 +1,168 @@
#! /usr/bin/env python
import sys, string, codecs, os
# TODO: currently the 78 chars are *without* the quotes, while for Gettext it is *with* the quotes
# FIXME: it seems possible to get lines bigger than 80 characters.
max_length = 78
wrap_before = ['<h1>', '<h2>', '<h3>', '<h4>', '<h5>', '<h6>', '<p>', '<br>', '<br/>',
'<ol>', '<ul>', '<li>', '<table>', '<th>', '<tr>', '<td>', '<center>',
'<blockquote>', '<pre>', '<hr>', '<hr/>']
### TODO: try to support any charset, not only UTF-8 (so that it can be used outside TDE)
def splitit( start, message, outfile ):
# print start+"\""+message+"\"" # DEBUG
if len(start):
if len(message) + len(start) < max_length and \
string.find(message, '\\n') == -1:
outstr = '%s"%s"\n' % (start, message)
outfile.write(outstr.encode('utf-8'))
return
outfile.write(start)
outfile.write(u'""\n')
index = 0
mlen = len(message)
last_brace = 0
last_space = 0
last_comma = 0
while index < mlen:
if message[index] == r'n' and (index > 0 and message[index-1] == '\\') \
and (index < 2 or message[index-2] != '\\'):
outstr = '"%s"\n' % message[:index+1]
outfile.write(outstr.encode('utf-8'))
message = message[index+1:]
mlen -= index + 1
index = 0
last_brace = 0
last_space = 0
last_comma = 0
continue
elif message[index] == u'>':
last_brace = index
elif message[index] == u' ':
last_space = index
elif message[index] == u',':
last_comma = index
elif message[index] == u'<':
for s in wrap_before:
if index > 0 and message[index:].startswith(s):
outstr = '"%s"\n' % message[:index]
outfile.write(outstr.encode('utf-8'))
message = message[index:]
mlen -= index
index = 0
last_brace = 0
last_space = 0
last_comma = 0
continue
if index > max_length:
if last_brace > 50:
index = last_brace
while index < mlen - 1 and message[index+1] == ' ':
index += 1
elif last_space != 0:
index = last_space
elif last_comma != 0:
index = last_comma
else:
while index > 0 and message[index] == u'\\':
index = index - 1
outstr = '"%s"\n' % message[:index+1]
outfile.write(outstr.encode('utf-8'))
message = message[index+1:]
mlen -= index + 1
index = 0
last_brace = 0
last_space = 0
last_comma = 0
continue
index += 1
if len(message):
outstr = '"%s"\n' % message
outfile.write(outstr.encode('utf-8'))
if sys.hexversion >= 0x02030000:
# We have Python 2.3 or better
open_type="rU" # Open for read with "Universal Newline Support"
else:
# We have a Python older than 2.3
open_type="r" # Normal open for read
### TODO: even in the case of a parse error, the script could try to process the next file(s) instead of exiting.
for file in sys.argv[1:]:
orig_file = open(file, open_type)
new_file = open(file + ".new", 'w')
last=''
start=''
index=0
line=' '
while 1: # python 2.1 has no True ;)
line = orig_file.readline()
index += 1
if not line:
break
if line == '\n' or line[0] == '#':
splitit(start, last, new_file)
start = ''
last = ''
new_file.write(line)
continue
try:
line = string.strip(unicode(line, 'utf-8'))
except UnicodeError:
print file
if line[0] == '"' and line[-1:] == '"':
last += line[1:-1]
continue
# new message
splitit(start, last, new_file)
if line.startswith("msgid "):
start = "msgid "
last = string.lstrip(line[6:-1])[1:]
elif line.startswith("msgstr "):
start = "msgstr "
last = string.lstrip(line[7:-1])[1:]
elif line.startswith("msgctxt "):
start = "msgctxt "
last = string.lstrip(line[8:-1])[1:]
elif line.startswith("msgid_plural "):
start = "msgid_plural "
last = string.lstrip(line[13:-1])[1:]
elif line.startswith("msgstr["):
# For most languages, there will be only one digit
if line[8] == "]" and line[9] == " ":
if line[7].isdigit():
start = line[:10]
last = string.lstrip(line[10:-1])[1:]
else:
print file, "not-a-digit error for mgstr[] in line", index
orig_file.close()
new_file.close()
sys.exit(1)
else:
posdigit = 7 # The first digit is at position 7
while line[posdigit].isdigit():
posdigit += 1
if posdigit > 7 and line[posdigit] == "]" and line[posdigit+1] == " ":
posdigit += 2 # skip ] and the space
start = line[:posdigit]
last = string.lstrip(line[posdigit:-1])[1:]
else:
print file, "parse error after msgstr[ in line", index
orig_file.close()
new_file.close()
sys.exit(1)
else:
print file, "parsing error in line", index
orig_file.close()
new_file.close()
sys.exit(1)
splitit(start, last, new_file)
orig_file.close()
new_file.close()
os.rename(file + ".new", file)
# kate: space-indent off; indent-width 8; replace-tabs off;

@ -0,0 +1,401 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>ARTSMESSAGE</refentrytitle>">
<!ENTITY dhpackage "artsmessage">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Utility to display aRts error messages</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>-eiw</option></arg>
<arg><option><replaceable>message</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a utility to display aRts error messages.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>-e</option>, <option>--error</option>
</term>
<listitem>
<para>Display error message (default).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-i</option>, <option>--info</option>
</term>
<listitem>
<para>Display informational message.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-w</option>, <option>--warning</option>
</term>
<listitem>
<para>Display warning message.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,373 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>CUPSDCONF</refentrytitle>">
<!ENTITY dhpackage "cupsdconf">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>A CUPS configuration tool</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option><replaceable>file</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a CUPS configuration tool.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,60 @@
.TH CUPSDOPRINT 1 "Jun 2006" "Trinity Desktop Environment" "printing tool"
.SH NAME
cupsdoprint
\- TDE command line tool to print files via CUPS
.SH SYNOPSIS
.BR cupsdoprint \ [ \-H \ host[:port]]\ [ \-P \ dest]\ [ \-J \ name]\ [ \-o \ opt=value[,...]]
.RS 12
.RB [ \-U \ login[:password]]\ files...
.RE
.SH DESCRIPTION
\fBcupsdoprint\fP is a command line tool to print files using the CUPS printing system.
.sp 1
\fBcupsdoprint\fP does not support printing from stdin.
.sp 1
You can use \fBlpoptions \-l \-p Printername\fP to discover the options a certain printer supports.
.SH OPTIONS
.TP
.B \-?
show help options
.TP
.BR \-H \ host:port
cups host to print to
.TP
.BR \-J \ name
print job name
.br
default: "TDE Print System"
.TP
.BR \-o \ opt=value
options to use
.TP
.BR \-P \ dest
printer to use
.TP
.BR \-U \ login:password
login and password to use
.SS
.SH EXAMPLE
cupsdoprint \-P HPLaserJet4L \-H localhost:631 \-U john
.RS 12
\-o Copies=10,PageSize=A4 /tmp/file.ps
.RE
.sp 1
Prints 10 copies in format A4 of the file /tmp/file.ps as user john via localhost:631 on the printer HPLaserJet4L.
.SH SEE ALSO
.B www.linuxprinting.org
Information about printing under UNIX
.sp 1
.BR lp (1),\ lpr (1),\ lpoptions (1)
.SH AUTHORS
.nf
Michael Goffioul <tdeprint@swing.be>
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,194 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>October 13, 2004</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>DCOP</refentrytitle>">
<!ENTITY dhpackage "dcop">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Console DCOP client</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>options</replaceable></option></arg>
<arg><option><replaceable>application <optional><replaceable>function <optional><replaceable>arg1</replaceable></optional> <optional><replaceable>arg2</replaceable></optional> ... </replaceable></optional> </replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a console DCOP (Desktop Communications Protocol) client.</para>
</refsect1>
<refsect1>
<title>OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--all-sessions</option>
</term>
<listitem>
<para>Send to all sessions found. Only works with the --user and --all-users options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--all-users</option>
</term>
<listitem>
<para>Send the same DCOP call to all users with a running DCOP server. Only failed calls to existing DCOP servers will generate an error message. If no DCOP server is available at all, no error will be generated.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--list-sessions</option>
</term>
<listitem>
<para>List all active TDE session for a user or all users.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--pipe</option>
</term>
<listitem>
<para>Call DCOP for each line read from stdin.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>session</replaceable></option>
</term>
<listitem>
<para>Send to the given TDE session. This option can only be used in combination with the --user option.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--user <replaceable>user</replaceable></option>
</term>
<listitem>
<para>Connect to the given user's DCOP server. This option will ignore the values of the environment vars $DCOPSERVER and $ICEAUTHORITY, even if they are set. If the user has more than one open session, you must also use one of the --list-sessions, --session or --all-sessions command-line options.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>EXAMPLES</title>
<para><example>
<title>Return number of the current desktop, e.g. 2</title>
<blockquote><literallayout>
dcop twin KWinInterface currentDesktop
</literallayout></blockquote>
</example></para>
<para><example>
<title>Jump to the next dektop</title>
<blockquote><literallayout>
dcop twin KWinInterface nextDesktop
</literallayout></blockquote>
</example></para>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
<refsect1>
<title>SEE ALSO</title>
<para><application>kdcop</application>(1), <application>dcopserver</application>(1)</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,30 @@
.TH DCOPCLIENT 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
dcopclient
\- extracts the application id from a DCOP reference of a TDE service
.SH SYNOPSIS
.B dcopclient
.RI [ dcopref ]
.SH DESCRIPTION
\fBdcopclient\fP extracts the application id from a DCOP reference given in the form DCOPRef(application id,object id).
.SH EXAMPLES
.TP
.B Return application id of a DCOP reference to a Konqueror instance
APPID=`dcopclient 'DCOPRef(konqueror\-6140,
.br
.RS 26
konqueror\-mainwindow#1)'`
.SH SEE ALSO
.BR dcop (1),\ dcopfind (1),\ dcopobject (1),\ dcopquit (1),\ dcopref (1)
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,155 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Johannes</firstname>">
<!ENTITY dhsurname "<surname>Ranke</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>March 25, 2006</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>jranke@uni-bremen.de</email>">
<!ENTITY dhusername "Johannes Ranke">
<!ENTITY dhucpackage "<refentrytitle>DCOPFIND</refentrytitle>">
<!ENTITY dhpackage "dcopfind">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2006</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Find the DCOP reference of a TDE service</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option>-a</option></arg>
<arg><option>-l</option></arg>
<arg choice='req'><replaceable>service</replaceable></arg>
<arg><replaceable>object</replaceable></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para><command>&dhpackage;</command> returns a reference to the first
instance of the TDE service specified by
<replaceable>service</replaceable>. See also dcopstart, which starts a
service/application and immediately returns its reference.
</para>
</refsect1>
<refsect1>
<title>OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>-a</option>
</term>
<listitem>
<para>Print the application id. Without this argument, the
application id will be returned in the form
DCOPRef(application id,object id).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-l</option>
</term>
<listitem>
<para>If the object is not found, run dcopstart and try again.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show usage information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>EXAMPLES</title>
<para><example>
<title>Return reference to a Kate instance</title>
<blockquote><literallayout>
KATE=`dcopfind -a 'kate-*'`
</literallayout></blockquote>
</example></para>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername; &lt;&dhemail;&gt; for
the &debian; system (but may be used by others). Permission is granted
to copy, distribute and/or modify this document under the terms of the
&gnu; General Public License, Version 2 or any later version published by
the Free Software Foundation.</para>
<para>On Debian systems, the complete text of the GNU General Public
License can be found in /usr/share/common-licenses/GPL.</para>
</refsect1>
<refsect1>
<title>SEE ALSO</title>
<para><application>dcopstart</application>(1), <application>dcop</application>(1)</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,30 @@
.TH DCOPOBJECT 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
dcopobject
\- extracts the object id from a DCOP reference of a TDE service
.SH SYNOPSIS
.B dcopobject
.RI [ dcopref ]
.SH DESCRIPTION
\fBdcopobject\fP extracts the object id from a DCOP reference given in the form DCOPRef(application id,object id).
.SH EXAMPLES
.TP
.B Return object id of a DCOP reference to the main window object of a Konqueror instance
OBJID=`dcopobject 'DCOPRef(konqueror\-6140,
.br
.RS 26
konqueror\-mainwindow#1)'`
.SH SEE ALSO
.BR dcop (1),\ dcopclient (1),\ dcopfind (1),\ dcopquit (1),\ dcopref (1)
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,27 @@
.TH DCOPQUIT 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
dcopquit
\- terminates a TDE service
.SH SYNOPSIS
.B dcopquit
.RI [ applicationid ]
.SH DESCRIPTION
\fBdcopquit\fP terminates a TDE service via its DCOP application id. You can use \fBdcopclient\fP to extract the application id from a DCOP reference.
.SH EXAMPLES
.TP
.B Terminate Konqueror instance
dcopquit 'konqueror\-9270'
.SH SEE ALSO
.BR dcop (1),\ dcopclient (1),\ dcopstart (1)
.SH AUTHORS
.nf
Matthias Ettrich <ettrich@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,27 @@
.TH DCOPREF 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
dcopref
\- creates a DCOP reference of a TDE service from application id and object
.SH SYNOPSIS
.B dcopref
.RI [ dcopclient ]\ [ dcopobject ]
.SH DESCRIPTION
\fBdcopref\fP creates a DCOPRef from an application id and an object id.
.SH EXAMPLES
.TP
.B Create a DCOPRef from application id of a konqueror instance and its main window as object
DREF=`dcopref 'konqueror\-6140' 'konqueror\-mainwindow#1'`
.SH SEE ALSO
.BR dcop (1),\ dcopclient (1),\ dcopfind (1),\ dcopobject (1),\ dcopquit (1)
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,165 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>DCOPSERVER</refentrytitle>">
<!ENTITY dhpackage "dcopserver">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>TDE DCOP server</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option>--nofork<replaceable></replaceable></option></arg>
<arg><option>--nolocal<replaceable></replaceable></option></arg>
<arg><option>--nosid<replaceable></replaceable></option></arg>
<arg><option>--suicide<replaceable></replaceable></option></arg>
</cmdsynopsis>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option>--serverid<replaceable></replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is the server for TDE's Desktop Communications Protocol.</para>
</refsect1>
<refsect1>
<title>OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--nofork</option>
</term>
<listitem>
<para>Causes dcopserver not to fork off like a daemon, but run in the current process.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nolocal</option>
</term>
<listitem>
<para>Allow network clients to this dcopserver. Without this option, only local clients are allowed.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nosid</option>
</term>
<listitem>
<para>Do not create a new session for the program.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--serverid</option>
</term>
<listitem>
<para>Display the server ID of the running dcopserver.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--suicide</option>
</term>
<listitem>
<para>Tell dcopserver to automatically terminate if no transactions are made within 10 seconds.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,32 @@
.TH DCOPSERVER_SHUTDOWN 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
dcopserver_shutdown
\- shuts down the TDE DCOP service
.SH SYNOPSIS
.BR dcopserver_shutdown \ [ \-\-nokill \ |\ \-\-wait ]
.SH DESCRIPTION
\fBdcopserver_shutdown\fP shuts down the TDE DCOP service. When called without \fB\-\-nokill\fP the dcopserver will be terminated.
.SH OPTIONS
.TP
.B \-\-nokill
do not terminate DCOP server
.TP
.B \-\-wait
wait for dcopserver to terminate before returning from program
.SH SEE ALSO
.BR dcopserver (1)
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
Mario Weilguni <mweilguni@sime.com>
.br
Lubos Lunak <l.lunak@kde.org>
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,137 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Johannes</firstname>">
<!ENTITY dhsurname "<surname>Ranke</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>March 25, 2006</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>jranke@uni-bremen.de</email>">
<!ENTITY dhusername "Johannes Ranke">
<!ENTITY dhucpackage "<refentrytitle>DCOPSTART</refentrytitle>">
<!ENTITY dhpackage "dcopstart">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2006</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Start a TDE service and return its DCOP reference</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg choice='req'><replaceable>service</replaceable></arg>
<arg><replaceable>...</replaceable></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para><command>&dhpackage;</command> starts a TDE service (i.e. an application
that is registered in the TDE system of .desktop files) and returns its
reference for later use in shell scripts. If the service is not scriptable
via DCOP, dcopstart returns nothing, but starts the service.</para>
</refsect1>
<refsect1>
<title>OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show usage information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>EXAMPLES</title>
<para><example>
<title>Get the DCOP reference for a newly started konqueror instance</title>
<blockquote><literallayout>
KONQ_ID=$(dcopstart konqueror http://www.trinitydesktop.org)
</literallayout></blockquote>
</example></para>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername; &lt;&dhemail;&gt; for
the &debian; system (but may be used by others). Permission is granted
to copy, distribute and/or modify this document under the terms of the
&gnu; General Public License, Version 2 or any later version published by
the Free Software Foundation.</para>
<para>On Debian systems, the complete text of the GNU General Public
License can be found in /usr/share/common-licenses/GPL.</para>
</refsect1>
<refsect1>
<title>SEE ALSO</title>
<para><application>dcop</application>(1), <application>dcopfind</application>(1)</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,49 @@
.TH FILESHARESET 1 "Jun 2006" "Trinity Desktop Environment" "file share tool"
.SH NAME
fileshareset, filesharelist
\- add/remove/list NFS and Samba file shares
.SH SYNOPSIS
.BR fileshareset \ [ \-\-add ]\ [ \-\-remove ]\ \fIdir\fP
.sp 1
.BR filesharelist
.SH DESCRIPTION
\fBfileshareset\fP allows users to add or remove NFS and Samba file shares.
.sp 1
\fBfilesharelist\fP allows users to list NFS and Samba file shares.
.sp 1
Both commands are implemented as one single script.
.SH OPTIONS
(\fBfileshareset\fP only)
.SS Options:
.TP
.B \-\-add
add file share
.TP
.B \-\-remove
remove file share
.SS Arguments:
.TP
.I dir
directory to add/remove as file share
.SH FILES
.TP
.I /etc/security/fileshare.conf
main configuration file
.TP
.I /etc/exports
NFS shares
.TP
.I /etc/samba/smb.conf
Samba configuration file
.SH AUTHORS
.nf
MandrakeSoft <pixel@mandrakesoft.com>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,45 @@
.TH IMAGETOPS 1 "Jun 2006" "Trinity Desktop Environment" "Generic Image to PS Filter"
.SH NAME
imagetops
\- generic image to ps filter
.SH SYNOPSIS
.BR imagetops \ [ \-gray ]\ [ arguments\ for\ pnmtops ]
.RI [ filename ]
.SH DESCRIPTION
\fBimagetops\fP is a generic image to ps filter. It can be used as print filter in TDE.
.sp 1
\fBimagetops\fP works in two steps:
.IP " 1."
the given file is converted to PNM format by analyzing the file format and calling the appropriate conversion program.
.IP " 2."
the file in PNM format is converted to PS format by calling \fBpnmtops\fP.
.PP
The supported mime types are: jpeg, png, x\-png, bmp, x\-bmp, gif and tiff.
.sp 1
\fBimagetops\fP supports reading the parameters via stdin. A temporary file in \fI/tmp\fP is created then.
.SH OPTIONS
.SS Options:
.TP
.B \-gray
convert image to grayscale
.SS Arguments:
.TP
.B arguments for pnmtops
arguments passed to pnmtops
.TP
.I filename
image file to convert
.SH SEE ALSO
.BR bmptoppm (1),\ giftopnm (1),\ jpegtopnm (1),\ pngtopnm (1),\ ppmtopgm (1),\ pnmtops (1)
.SH AUTHORS
.nf
The KDE project
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,394 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KADDPRINTERWIZARD</refentrytitle>">
<!ENTITY dhpackage "kaddprinterwizard">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Start the add printer wizard</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--tdeconfig</option></arg>
<arg><option>--serverconfig</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> starts the add printer wizard.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--tdeconfig</option>
</term>
<listitem>
<para>Configure TDE Print.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--serverconfig</option>
</term>
<listitem>
<para>Configure print server.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,410 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KCOOKIEJAR</refentrytitle>">
<!ENTITY dhpackage "kcookiejar">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>HTTP Cookie Daemon</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--reload-config</option></arg>
<arg><option>--remove <replaceable>domain</replaceable></option></arg>
<arg><option>--remove-all</option></arg>
<arg><option>--shutdown</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a HTTP Cookie Daemon.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--reload-config</option>
</term>
<listitem>
<para>Reload configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--remove <replaceable>domain</replaceable></option>
</term>
<listitem>
<para>Remove cookies for domain.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--remove-all</option>
</term>
<listitem>
<para>Remove all cookies.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--shutdown</option>
</term>
<listitem>
<para>Shut down cookie jar.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,386 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KDED</refentrytitle>">
<!ENTITY dhpackage "kded">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>triggers Sycoca database updates when needed</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--check</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> triggers Sycoca database updates when needed.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--check</option>
</term>
<listitem>
<para>Check Sycoca database only once.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,374 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KDONTCHANGETHEHOSTNAME</refentrytitle>">
<!ENTITY dhpackage "kdontchangethehostname">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Informs TDE about a change in hostname</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option><replaceable>old</replaceable></option></arg>
<arg><option><replaceable>new</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> informs TDE about a change in hostname.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,26 @@
.TH KGRANTPTY 1 "Jun 2006" "Trinity Desktop Environment" "TDE internal"
.SH NAME
kgrantpty
\- TDE helper program to fix terminal permissions
.SH DESCRIPTION
!!! \fBkgrantpty\fP needs to be installed setuid root to function. !!!
.br
!!! It is not intended to be called from the command line. !!!
.sp 1
\fBkgrantpty\fP is a helper program for the TDE core libraries to fix terminal permissions.
.SH SEE ALSO
.BR pts (4)
.SH AUTHORS
.nf
Zack Weinberg <zack@rabi.phys.columbia.edu>
.br
Lars Doelle <lars.doelle@on\-line.de>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,372 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KINSTALLTHEME</refentrytitle>">
<!ENTITY dhpackage "kinstalltheme">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>TDE Tool to build a cache list of all pixmap themes installed</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a TDE tool to build a cache list of all pixmap themes installed.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,26 @@
.TH KPAC_DHCP_HELPER 1 "Jun 2006" "Trinity Desktop Environment" "TDE internal"
.SH NAME
kpac_dhcp_helper
\- TDE helper program for automatic proxy discovery via DHCP
.SH DESCRIPTION
!!! \fBkpac_dhcp_helper\fP needs to be installed setuid root to function. !!!
.br
!!! It is not intended to be called from the command line. !!!
.sp 1
\fBkpac_dhcp_helper\fP is a helper program for automatic proxy discovery via DHCP.
It makes use of \fBProxy Auto Configuration\fP (\fBPAC\fP) files and is used by \fBKonqueror\fP.
.SH SEE ALSO
.TP
.B http://l10n.kde.org/docs/admin/konqueror.html
TDE Administrators Guide, Chapter 7, Konqueror: Automatic Proxy Discovery
.SH AUTHORS
.nf
The KDE project
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,60 @@
.TH KSHELL 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
tdeinit_wrapper, kshell, kwrapper
\- start applications via tdeinit
.SH SYNOPSIS
\fBtdeinit_wrapper\fP application [arguments]
.sp 1
\fBkshell\fP application [arguments]
.sp 1
\fBkwrapper\fP application [arguments]
.SH DESCRIPTION
\fBtdeinit_wrapper\fP, \fBkshell\fP and \fBkwrapper\fP start applications via \fBtdeinit\fP.
.sp 1
\fBtdeinit_wrapper\fP simply passes application name and arguments to \fBtdeinit\fP.
.sp 1
\fBkshell\fP passes application name, arguments, complete environment and current working directory to \fBtdeinit\fP.
.sp 1
\fBkwrapper\fP tries to make the application look like it was actually started directly and not via \fBtdeinit\fP. Like \fBkshell\fP it passes application name, arguments, complete environment and current working directory to \fBtdeinit\fP.
.br
Additionally it
.IP " \-"
tries to redirect application output to the console from which \fBkwrapper\fP was started
.IP " \-"
waits for the application to finish (but does not return its return value)
.IP " \-"
passes most signals it gets to the process of the started application
.PP
The signal passing allows you to use Ctrl\-C to break the started application or Ctrl\-Z to stop it.
.sp 1
Note: With the use of \fBkwrapper\fP you will have one more process running and also the signal passing and output redirection may not work properly.
.SH OPTIONS
.TP
.B application
application to start
.TP
.B arguments
arguments of application to start
.SS
.SH SEE ALSO
.BR tdeinit (1)
.br
.SH AUTHORS
.nf
\fBkshell\fP:
.br
Oswald Buddenhagen <ossi@kde.org>
\fBkwrapper\fP and \fBtdeinit_wrapper\fP:
.br
Waldo Bastian <bastian@kde.org>
Mario Weilguni <mweilguni@sime.org>
Lubos Lunak <l.lunak@kde.org>
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,37 @@
.TH KSVGTOPNG 1 "Jun 2006" "Trinity Desktop Environment" "SVG to PNG Filter"
.SH NAME
ksvgtopng
\- svg to png filter
.SH SYNOPSIS
.B ksvgtopng
.I width height svgfilename outputfilename
.SH DESCRIPTION
\fBksvgtopng\fP converts image files from SVG format to PNG format.
.SH OPTIONS
.SS Arguments:
.TP
.I width
width of target image
.TP
.I height
height of target image
.TP
.I svgfilename
image file to convert
.TP
.I outputfilename
name of converted image file
.SH SEE ALSO
.BR imagetops (1)
.SH AUTHORS
.nf
The KDE project
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,168 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Javier</firstname>">
<!ENTITY dhsurname "<surname>Fernandez-Sanguino</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>25 January, 2005</date>">
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>jfs@debian.org</email>">
<!ENTITY dhusername "Javier Fernandez-Sanguino">
<!ENTITY dhucpackage "<refentrytitle>LNUSERTEMP</refentrytitle>">
<!ENTITY dhpackage "lnusertemp">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2005</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>tool to create TDE resources and symlinks to them</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>tmp|socket|cache</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is used to create TDE
resources in temporary directories and symlinks to them in
<envar>TDEHOME</envar>. The resource that needs to be created is
given as an argument and can be anyone of:</para>
<itemizedlist>
<listitem><para><emphasis>tmp</emphasis>: for the directory used
for storing temporary files. This directory should be preferably
on a local filesystem (available in KDE 2.x)</para> </listitem>
<listitem><para><emphasis>socket</emphasis>: for the directory
that holds temporary sockets. This directory needs to be on the
local filesystem (available in KDE 2.x)</para> </listitem>
<listitem><para><emphasis>cache</emphasis>: for the directory that
stores cached information such as the HTTP cache and favicons
(available since KDE 3.0)</para> </listitem>
</itemizedlist>
<para><command>&dhpackage;</command> will create the first two
resources in directories under <filename>/tmp</filename> (or
<envar>TDETMP</envar> if defined in the environment) and will use
<filename>/var/tmp</filename> (or <envar>TDEVARTMP</envar> if
defined in the environment) for the <emphasis>cache</emphasis>
resource (in order to survive system reboots). The temporary
directories created for resources are usually of the form
<filename>RESOURCE-USERNAME</filename>. The name might vary if
those filenames already exist and do not belong to the user for
which <command>&dhpackage;</command> is run, a temporary (unique)
name will be used if possible to prevent temporary symlink
attacks. </para>
<para><command>&dhpackage;</command> is usually called by the
<command>starttde</command> script.</para>
</refsect1>
<refsect1>
<title>EXIT VALUES</title>
<para><command>&dhpackage;</command> will return 0 if it can
create the resource and symlink to it, or if the resource already
exists and is properly symlinked it will return 1 if it cannot
create the link or if the symlink is pointing to an incorrect
location.</para>
</refsect1>
<refsect1>
<title>SEE ALSO</title>
<para>You can find more information on the TDE's usage of
temporary files in the Chapter <ulink
url="http://i18n.kde.org/doc/admin/temp-files.html"><citetitle>Temporary
and Other Files KDE Uses</citetitle></ulink> of the <ulink
url="http://i18n.kde.org/doc/admin/"><citetitle>The KDE
Administrators Guide</citetitle></ulink>. </para>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation. </para>
<para>
On Debian systems, the complete text of the GNU General
Public License can be found in
/usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,47 @@
.TH MAKE_DRIVER_DB_CUPS 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
make_driver_db_cups
\- create a printer database from ppd files
.SH SYNOPSIS
.B make_driver_db_cups
.RI [ db_directory ]\ [ output_filename ]
.SH DESCRIPTION
\fBmake_driver_db_cups\fP creates a printer database from PPD files. PPD files (Postscript Printer Description files) describe a specific printer. Nowadays they are also used for non\-Postscript printers.
.sp 1
\fBmake_driver_db_cups\fP prints all printer descriptions found in a given directory and all its subdirectories to stdout.
The first line gives the number of all found printers. Every printer description block consists of the items FILE, MANUFACTURER, MODELNAME, MODEL and DESCRIPTION.
The block is followed by the current block number.
.sp 1
If an output file is given \fBmake_driver_db_cups\fP suppresses all numbers.
.sp 1
The PPD files may be gzip compressed.
.SH OPTIONS
.SS Arguments:
.TP
.I db_directory
directory with ppd files
.TP
.I output_filename
write printer database into this file
.SH FILES
.TP
.I $TDEHOME/share/apps/tdeprint/printerdb_cups.txt
TDE printer database
.br
(if $TDEHOME is not set ~/.trinity is used)
.SH SEE ALSO
.BR make_driver_db_lpr (1)
.TP
.B www.linuxprinting.org
Information about printing under UNIX
.SH AUTHORS
.nf
The KDE project
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,39 @@
.TH MAKE_DRIVER_DB_LPR 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
make_driver_db_lpr
\- create a printer database from aps filter database and ifhp filter database.
.SH SYNOPSIS
.B make_driver_db_lpr
.RI [ db_directory ]\ [ output_filename ]
.SH DESCRIPTION
\fBmake_driver_db_lpr\fP creates a printer database from aps filter database and ifhp filter database. These databases contain descriptions of printers.
.sp 1
\fBmake_driver_db_lpr\fP prints all printer descriptions found in the filter databases to stdout.
The first line gives the number of all found printers. Every printer description block consists of the items FILE, MANUFACTURER, MODELNAME, MODEL and DESCRIPTION.
The block is followed by the current block number.
.sp 1
If an output file is given \fBmake_driver_db_lpr\fP suppresses all numbers.
.SH OPTIONS
.SS Arguments:
.TP
.I db_directory
directory with filter files
.TP
.I output_filename
write printer database into this file
.SH SEE ALSO
.BR make_driver_db_cups (1),\ ifhp (8)
.TP
.B www.linuxprinting.org
Information about printing under UNIX
.SH AUTHORS
.nf
The KDE project
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,162 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH MAKETDEWIDGETS 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
maketdewidgets
\- Builds Qt widget plugins from an ini style description file.
.SH SYNOPSIS
\fBmaketdewidgets\fP [Qt\-options] [TDE\-options] file
.SH DESCRIPTION
\fBmaketdewidgets\fP builds Qt widget plugins from an ini style description file.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.B file
Input file
.SS
.SS Options:
.TP
.B \-o <file>
Output file
.TP
.B \-n <plugin name>
Name of the plugin class to generate [WidgetsPlugin]
.TP
.B \-g <group>
Default widget group name to display in designer [Custom]
.TP
.B \-p <pixmap dir>
Embed pixmaps from a source directory
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH AUTHORS
.nf
Ian Reinhart Geiser <geiseri@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,427 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>MEINPROC</refentrytitle>">
<!ENTITY dhpackage "meinproc">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>TDE Translator for XML</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--cache <replaceable>file</replaceable></option></arg>
<arg><option>--check</option></arg>
<arg><option>--htdig</option></arg>
<arg><option>-o</option>, <option>--output <replaceable>file</replaceable></option></arg>
<arg><option>--stdout</option></arg>
<arg><option>--stylesheet <replaceable>xsl</replaceable></option></arg>
<arg><option><replaceable>xml</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> TDE Translator for XML</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--cache <replaceable>file</replaceable></option>
</term>
<listitem>
<para>Create a cache file for the document.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--check</option>
</term>
<listitem>
<para>Check the document for validity.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--htdig</option>
</term>
<listitem>
<para>Create a ht://dig compatible index.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-o</option>, <option>--output <replaceable>file</replaceable></option>
</term>
<listitem>
<para>Output whole document to file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--stdout</option>
</term>
<listitem>
<para>Output whole document to stdout.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--stylesheet <replaceable>xsl</replaceable></option>
</term>
<listitem>
<para>Stylesheet to use.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,24 @@
.TH PREPARETIPS 1 "Jun 2006" "Trinity Desktop Environment" "translation tool"
.SH NAME
preparetips
\- extract text from tips file
.SH SYNOPSIS
\fBpreparetips\fP
.SH DESCRIPTION
\fBpreparetips\fP is a script to extract the text from a tips file. It outputs the text so \fBxgettext\fP can add the tips to a PO file. PO files provide a human\-readable string format used for translations.
.sp 1
\fBpreparetips\fP looks for \fIdata/tips\-en\fP as tips file.
.SH SEE ALSO
.BR xgettext (1)
.SH AUTHORS
.nf
Matthias Kiefer <matthias.kiefer@gmx.de>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,442 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>TDE-CONFIG</refentrytitle>">
<!ENTITY dhpackage "tde-config">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>A little program to output installation paths</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--exec-prefix</option></arg>
<arg><option>--expandvars</option></arg>
<arg><option>--install <replaceable>type</replaceable></option></arg>
<arg><option>--localprefix</option></arg>
<arg><option>--path <replaceable>type</replaceable></option></arg>
<arg><option>--prefix</option></arg>
<arg><option>--types</option></arg>
<arg><option>--userpath <replaceable>type</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a little program to output installation paths.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--exec-prefix</option>
</term>
<listitem>
<para>Compiled in exec_prefix for TDE libraries.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--expandvars</option>
</term>
<listitem>
<para>Expand ${prefix} and ${exec_prefix} in output.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--install <replaceable>type</replaceable></option>
</term>
<listitem>
<para>Prefix to install resource files to.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--localprefix</option>
</term>
<listitem>
<para>Prefix in $HOME used to write files.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--path <replaceable>type</replaceable></option>
</term>
<listitem>
<para>Search path for resource type.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--prefix</option>
</term>
<listitem>
<para>Compiled in prefix for TDE libraries.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--types</option>
</term>
<listitem>
<para>Available TDE resource types.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--userpath <replaceable>type</replaceable></option>
</term>
<listitem>
<para>User path: desktop|autostart|trash|document.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,176 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH TDE\-MENU 1 "Jun 2006" "Trinity Desktop Environment" "TDE menu query tool"
.SH NAME
tde\-menu
\- TDE Menu query tool.
.SH SYNOPSIS
\fBtde\-menu\fP [Qt\-options] [TDE\-options] [options] <application\-id>
.SH DESCRIPTION
\fBtde\-menu\fP is a TDE menu query tool. It is used to find the menu in which a specific application is shown.
.br
The \fB\-\-highlight\fP option visually indicates the location of a specific application in the TDE menu.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.B <application\-id>
The id of the menu entry to locate
.SS Options:
.TP
.B \-\-utf8
Output data in UTF\-8 instead of local encoding
.TP
.B \-\-print\-menu\-id
Print menu\-id of the menu that contains
the application
.TP
.B \-\-print\-menu\-name
Print menu name (caption) of the menu that
contains the application
.TP
.B \-\-highlight
Highlight the entry in the menu
.TP
.B \-\-nocache\-update
Do not check if sycoca database is up to date
.SS
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH SEE ALSO
Full user documentation is available through the TDE Help Center. You can also enter the URL
.BR help:/tde\-menu/
directly into konqueror or you can run
.BR "`khelpcenter help:/tde\-menu/'"
from the command\-line.
.br
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,155 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KAB2KABC 1 "Jun 2006" "Trinity Desktop Environment" "Kab to Kabc converter"
.SH NAME
tdeab2tdeabc
\- TDE address book converter
.SH SYNOPSIS
\fBtdeab2tdeabc\fP [Qt\-options] [TDE\-options] [options]
.SH DESCRIPTION
\fBtdeab2tdeabc\fP converts a TDE address book from old Kab format to new Kabc format.
.SH OPTIONS
.SS Options:
.TP
.B \-\-disable\-autostart
Disable automatic startup on login
.TP
.B \-\-quiet
.TP
.B \-o, \-\-override
Override existing entries [1]
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH SEE ALSO
.BR kaddressbook (1)
.SH AUTHORS
.nf
Cornelius Schumacher <schumacher@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,402 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KBUILDSYCOCA</refentrytitle>">
<!ENTITY dhpackage "tdebuildsycoca">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Rebuilds the system configuration cache</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--checkstamps</option></arg>
<arg><option>--incremental</option></arg>
<arg><option>--nosignal</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> rebuilds the system configuration cache.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--checkstamps</option>
</term>
<listitem>
<para>Check file timestamps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--incremental</option>
</term>
<listitem>
<para>Incremental update.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nosignal</option>
</term>
<listitem>
<para>Don't signal applications.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,175 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KCMSHELL 1 "Jun 2006" "Trinity Desktop Environment" "tool to start single Trinity control modules"
.SH NAME
tdecmshell
\- tool to start single Trinity control modules
.SH SYNOPSIS
tdecmshell [Qt\-options] [TDE\-options] [options] module
.SH DESCRIPTION
\fBtdecmshell\fP is a tool to start single Trinity control modules.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.B module
Configuration module to open
.TP
.B \-\-lang <language>
Specify a particular language
.TP
.B \-\-embed <id>
Embeds the module with buttons in window with id <id>
.TP
.B \-\-embed\-proxy <id>
Embeds the module without buttons in window with id <id>
.TP
.B \-\-silent
Do not display main window
.SS Options:
.TP
.B \-\-list
List all possible modules
.SS
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH AUTHORS
.nf
Frans Englich <frans.englich@kde.org>
.br
Daniel Molkentin <molkentin@kde.org>
.br
Matthias Hoelzer\-Kluepfel <hoelzer@kde.org>
.br
Matthias Elter <elter@kde.org>
.br
Matthias Ettrich <ettrich@kde.org>
.br
Waldo Bastian <bastian@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,387 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KCONF_UPDATE</refentrytitle>">
<!ENTITY dhpackage "tdeconf_update">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>TDE Tool for updating user configuration files</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--check <replaceable>update-file</replaceable></option></arg>
<arg><option><replaceable>file</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a TDE Tool for updating user configuration files.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--check <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Check whether config file itself requires updating.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,167 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KCONFIG_COMPILER 1 "Jun 2006" "Trinity Desktop Environment" "programming tool"
.SH NAME
tdeconfig_compiler
\- TDE configuration compiler
.SH SYNOPSIS
\fBtdeconfig_compiler\fP [Qt\-options] [TDE\-options] [options]
.I file.kcfg file.kcfgc
.SH DESCRIPTION
\fBtdeconfig_compiler\fP generates C++ source code from two files. The first file (.kcfg) contains information about configuration options and the second file (.kcfgc) provides the code generation options.
.br
The generated source code contains a class based on \fBTDEConfigSkeleton\fP that provides an API to access the applications configuration data.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.I file.kcfg
Input kcfg XML file
.TP
.I file.kcfgc
Code generation options file
.SS Options:
.TP
.B \-d, \-\-directory <dir>
Directory to generate files in [.]
.SS
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH SEE ALSO
.TP
.B http://developer.kde.org
KDE Developer's Corner website
.SH AUTHORS
.nf
Cornelius Schumacher <schumacher@kde.org>
.br
Waldo Bastian <bastian@kde.org>
.br
Zack Rusin <zack@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,457 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>TDEFILE</refentrytitle>">
<!ENTITY dhpackage "tdefile">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>A commandline tool to read and modify metadata of files</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option><replaceable>options</replaceable></option></arg>
<arg><option><replaceable>files</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a commandline tool to read and modify metadata of files.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--av</option>, <option>--allValues</option>
</term>
<listitem>
<para>Prints all metadata values, available in the given file(s).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dialog</option>
</term>
<listitem>
<para>Opens a TDE properties dialog to allow viewing and modifying of metadata of the given file(s).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--getValue <replaceable>key</replaceable></option>
</term>
<listitem>
<para>Prints the value for 'key' of the given file(s). 'key' may also be a comma-separated list of keys.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--la</option>, <option>--listavailable</option>
</term>
<listitem>
<para>List all metadata keys which have a value in the given file(s).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--lp</option>, <option>--listpreferred <replaceable>mimetype</replaceable></option>
</term>
<listitem>
<para>List all preferred metadata keys of the given file(s). If mimetype is not specified, the mimetype of the given files is used.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ls</option>, <option>--listsupported <replaceable>mimetype</replaceable></option>
</term>
<listitem>
<para>List all supported metadata keys of the given file(s). If mimetype is not specified, the mimetype of the given files is used.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-m</option>, <option>--nomimetype</option>
</term>
<listitem>
<para>Print the mimetype of the given file(s).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--pv</option>, <option>--preferredValues</option>
</term>
<listitem>
<para>Prints the preferred metadata values, available in the given file(s).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-q</option>, <option>--quiet</option>
</term>
<listitem>
<para>Don't print a warning when more than one file was given and they don't have all the same mimetype.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--setValue <replaceable>key=value</replaceable></option>
</term>
<listitem>
<para>Attempts to set the value 'value' for the metadata key 'key' for the given file(s).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sm</option>, <option>--supportedMimetypes</option>
</term>
<listitem>
<para>Prints all mimetypes for which metadata support is available.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,163 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KHOTNEWSTUFF 1 "Jun 2006" "Trinity Desktop Environment" "TDE tool"
.SH NAME
tdehotnewstuff
\- TDE tool to test GHNS repositories
.SH SYNOPSIS
\fBtdehotnewstuff\fP [Qt\-options] [TDE\-options] [options] [providerlist]
.SH DESCRIPTION
\fBtdehotnewstuff\fP is a tool to test GHNS repositories. It calls the download dialog for arbitrary GHNS repositories and can apply filters given on the command line.
.sp 1
GHNS means "Get Hot New Stuff" and is a data sharing concept. It allows you to install new stuff like applets, plugins, data, sounds and wallpapers for instant use in your TDE applications.
.sp 1
GHNS consists of server installations to provide repositories and a client\-side framework to use them. In TDE the client-side framework is called \fBKHotNewStuff\fP.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.B providerlist
Provider list to use
.SS Options:
.TP
.B \-\-type <type>
Display only media of this type
.SS
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH SEE ALSO
.TP
.B http://kstuff.org
TDE\-specific GHNS home page
.TP
.B http://ghns.freedesktop.org
"Get Hot New Stuff" home page
.SH AUTHORS
.nf
Cornelius Schumacher <schumacher@kde.org>
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,48 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH TDEINIT 1 "Jun 2006" "Trinity Desktop Environment" "process launcher"
.SH NAME
tdeinit
\- TDE process launcher
.SH SYNOPSIS
\fBtdeinit\fP [options]
.SH DESCRIPTION
\fBtdeinit\fP is a process launcher similar to \fBinit\fP used for booting UNIX.
.sp 1
\fBtdeinit\fP is used to start all other TDE programs. It can start binary program files as well as tdeinit loadable modules (KLMs).
.sp 1
When \fBtdeinit\fP starts for the first time it launches \fBdcopserver\fP, \fBtdelauncher\fP, \fBkded\fP and some additional programs specified on its command line in the \fBstarttde\fP script (normally \fBkcminit\fP and \fBknotify\fP).
.sp 1
The \fBtdeinit\fP master process can be used to start additional TDE programs via \fBtdeinit_wrapper\fP, \fBkshell\fP and \fBkwrapper\fP.
.sp 1
KLMs are dynamic libraries that work like binary programs but can be started more efficiently.
Starting KLMs via \fBtdeinit\fP is much faster and more memory efficient because \fBtdeinit\fP is linked against all libraries a standard TDE application needs. To start a KLM \fBtdeinit\fP forks and loads the dynamic library.
.SH OPTIONS
.TP
.B \-\-no\-kded
Do not start kded
.TP
.B \-\-suicide
Terminate when no TDE applications are left running
.SS
.SH FILES
.TP
.I /usr/lib/trinity
directory with KLMs (tdeinit loadable modules)
.SH SEE ALSO
.BR dcopserver (1),\ kded (1),\ kcminit (1),\ tdeinit_wrapper (1),\ tdelauncher (1),\ kshell (1),\ kwrapper (1),\ starttde (1)
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
Mario Weilguni <mweilguni@sime.com>
.br
Lubos Lunak <l.lunak@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,22 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH TDEINIT_SHUTDOWN 1 "Jun 2006" "Trinity Desktop Environment" ""
.SH NAME
tdeinit_shutdown
\- shuts down tdeinit master process
.SH SYNOPSIS
\fBtdeinit_shutdown
.SH DESCRIPTION
\fBtdeinit_shutdown\fP shuts down tdeinit master process and terminates all processes spawned from it.
.SH SEE ALSO
.BR tdeinit (1)
.SH AUTHORS
.nf
The KDE project
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,386 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>TDEIO_HTTP_CACHE_CLEANER</refentrytitle>">
<!ENTITY dhpackage "tdeio_http_cache_cleaner">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>TDE HTTP cache maintenance tool</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--clear-all</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a TDE HTTP cache maintenance tool.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--clear-all</option>
</term>
<listitem>
<para>Empty the cache.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,372 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KIO_UISERVER</refentrytitle>">
<!ENTITY dhpackage "tdeio_uiserver">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>TDE Progress Information UI Server</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a TDE Progress Information UI Server.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,169 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KIOEXEC 1 "Jun 2006" "Trinity Desktop Environment" "network transparency support"
.SH NAME
tdeioexec, kfmexec
\- open remote files, watch modifications, ask for upload
.SH SYNOPSIS
\fBtdeioexec\fP [Qt\-options] [TDE\-options] [options] command [URLs]
.SH DESCRIPTION
\fBtdeioexec\fP offers network transparency to applications that only support local files.
.sp 1
\fBtdeioexec\fP downloads the remote file to a temporary location and starts a local application with the temporary file as argument. Then it waits for the application to be exited and offers re\-uploading of the modified temporary file.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.B command
Command to execute
.TP
.B URLs
URL(s) or local file(s) used for 'command'
.SS Options:
.TP
.B \-\-tempfiles
Treat URLs as local files and delete them afterwards
.TP
.B \-\-suggestedfilename <file name>
Suggested file name for the downloaded file
.SS
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH AUTHORS
.nf
David Faure <faure@kde.org>
.br
Stephan Kulow <coolo@kde.org>
.br
Bernhard Rosenkraenzer <bero@arklinux.org>
.br
Waldo Bastian <bastian@kde.org>
.br
Oswald Buddenhagen <ossi@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the authors directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,27 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KLAUNCHER 1 "Jun 2006" "Trinity Desktop Environment" "service activation daemon"
.SH NAME
tdelauncher
\- daemon for service activation in TDE
.SH DESCRIPTION
!!! \fBtdelauncher\fP is started automatically by tdeinit. It is not supposed to be started manually. !!!
.sp 1
\fBtdelauncher\fP is a daemon responsible for service activation in TDE. It operates closely together with the tdeinit master process to start new processes. TDE applications communicate with \fBtdelauncher\fP via DCOP to start new applications or services.
.sp 1
The error message "TDELauncher could not be reached via DCOP" either indicates a serious problem with the \fBdcopserver\fP or \fBtdelauncher\fP crashed.
.sp 1
Note: \fBtdelauncher\fP is not the "run command" dialog (Alt+F2)!
.SH SEE ALSO
.BR dcopserver (1),\ tdeinit (1)
.SH AUTHORS
.nf
Waldo Bastian <bastian@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,373 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KMAILSERVICE</refentrytitle>">
<!ENTITY dhpackage "tdemailservice">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>mail service</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option><replaceable>url</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a mail service.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,394 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KSENDBUGEMAIL</refentrytitle>">
<!ENTITY dhpackage "ksendbugemail">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>Sends a short bug report to submit@bugs.trinitydesktop.org</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option>--recipient <replaceable>argument</replaceable></option></arg>
<arg><option>--subject <replaceable>argument</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> sends a short bug report to submit@bugs.trinitydesktop.org</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>APP OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--recipient <replaceable>argument</replaceable></option>
</term>
<listitem>
<para>Recipient [submit@bugs.trinitydesktop.org]</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--subject <replaceable>argument</replaceable></option>
</term>
<listitem>
<para>Subject line.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,57 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KSTARTUPCONFIG 1 "Jun 2006" "Trinity Desktop Environment" "configuration options loader"
.SH NAME
tdestartupconfig, tdedostartupconfig
\- TDE configuration options loader
.SH SYNOPSIS
\fBtdestartupconfig\fP [$TDEHOME]
.sp 1
\fBtdedostartupconfig\fP
.SH DESCRIPTION
\fBtdestartupconfig\fP loads configuration options for use in \fBstarttde\fP. It saves loading time as there is no need to launch programs linked to TDE libraries. \fBstartupconfig\fP uses a cache of some Kconfig options that are updated by \fBtdedostartupconfig\fP. The cache is implemented as script file that is sourced and provides the options as shell variables.
.sp 1
The configuration options to load are stored in \fIstartupconfigkeys\fP as one option per line. They follow the format <file> <group> <key> <default>. A complete group is addressed as <file> [<group>]. The configuration options are processed in the specified order so the missing default values for groups can be specified as single options after the group option.
.sp 1
\fBtdestartupconfig\fP stores every line from \fIstartupconfigkeys\fP in \fIstartupconfigfiles\fP followed by the paths of all files relevant to the option. Lines with non\-existent files start with '!' in case they are created later. The list of files is terminated by a line starting with '*'.
.sp 1
If the timestamps of all relevant files are older than the timestamp of \fIstartupconfigfile\fP there is no need to update anything. Otherwise \fBtdedostartupconfig\fP is launched to create or update the necessary files.
.sp 1
\fBtdedostartupconfig\fP writes values of the options to \fIstartupconfig\fP. \fIstartupconfig\fP is a shell script that sets the values to shell variables. The variables are named <file>_<group>_<key>.
.sp 1
\fBNotes:\fP
.IP " \-"
the \fIkdeglobals\fP config file is not used as a dependency for other config files
.IP " \-"
do not use frequently changed config files since the checking is timestamp\-based
.IP " \-"
if \fBtdeconf_update\fP is used to update an option also touch the matching global config file to allow \fBtdestartupconfig\fP to see changes
.SH OPTIONS
.TP
.B $TDEHOME
TDE home directory, if different to ~/.trinity
.SS
.SH FILES
In case $TDEHOME is not set ~/.trinity is assumed.
.TP
.I $TDEHOME/share/config/startupconfig
script, sourced to set shell variables with configuration options
.TP
.I $TDEHOME/share/config/startupconfigfiles
configuration options and files they belong to
.TP
.I $TDEHOME/share/config/startupconfigkeys
configuration options to load
.SH SEE ALSO
.BR tdeconf_update (1),\ starttde (1)
.SH AUTHORS
.nf
Lubos Lunak <l.lunak@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,34 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH TDESU_STUB 1 "Jun 2006" "Trinity Desktop Environment" "TDE internal"
.SH NAME
tdesu_stub
\- used by TDE su
.SH DESCRIPTION
!!! \fBtdesu_stub\fP is for TDE internal use only !!!
.sp 1
TDE su executes \fBtdesu_stub\fP through su or ssh. The stub is running as the target user. After some information is sent via stdin and stdout the stub executes the target program.
.br
The information passed over are the X display, a X authentication cookie (if available), the PATH and the command to run.
.sp 1
TDE su uses a stub program because the X cookie is private information and therefore cannot be passed on the command line.
.SH SEE ALSO
.BR tdesu (1)
.sp 1
Full user documentation is available through the TDE Help Center. You can also enter the URL
.BR help:/tdesu/
directly into konqueror or you can run
.BR "`khelpcenter help:/tdesu/'"
from the command\-line.
.br
.SH AUTHORS
.nf
Geert Jansen <jansen@kde.org>
.br
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,373 @@
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!-- Process this file with docbook-to-man to generate an nroff manual
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
less'. A typical entry in a Makefile or Makefile.am is:
manpage.1: manpage.sgml
docbook-to-man $< > $@
The docbook-to-man binary is found in the docbook-to-man package.
Please remember that if you create the nroff version in one of the
debian/rules file targets (such as build), you will need to include
docbook-to-man in your Build-Depends control field.
-->
<!-- Fill in your name for FIRSTNAME and SURNAME. -->
<!ENTITY dhfirstname "<firstname>Chris</firstname>">
<!ENTITY dhsurname "<surname>Cheney</surname>">
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY dhdate "<date>November 6, 2002</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
<!ENTITY dhemail "<email>ccheney@debian.org</email>">
<!ENTITY dhusername "Chris Cheney">
<!ENTITY dhucpackage "<refentrytitle>KTELNETSERVICE</refentrytitle>">
<!ENTITY dhpackage "tdetelnetservice">
<!ENTITY debian "<productname>Debian</productname>">
<!ENTITY gnu "<acronym>GNU</acronym>">
]>
<refentry>
<refentryinfo>
<address>
&dhemail;
</address>
<author>
&dhfirstname;
&dhsurname;
</author>
<copyright>
<year>2002</year>
<holder>&dhusername;</holder>
</copyright>
&dhdate;
</refentryinfo>
<refmeta>
&dhucpackage;
&dhsection;
</refmeta>
<refnamediv>
<refname>&dhpackage;</refname>
<refpurpose>telnet service</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&dhpackage;</command>
<arg><option><replaceable>Qt-options</replaceable></option></arg>
<arg><option><replaceable>TDE-options</replaceable></option></arg>
<arg><option><replaceable>url</replaceable></option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>This manual page documents briefly the
<command>&dhpackage;</command> command.</para>
<para><command>&dhpackage;</command> is a telnet service.</para>
</refsect1>
<refsect1>
<title>GENERIC OPTIONS</title>
<para>This program follows the usual GNU command line syntax,
with long options starting with two dashes (`-'). A summary of
options is included below.</para>
<variablelist>
<varlistentry>
<term><option>--author</option>
</term>
<listitem>
<para>Show author information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help</option>
</term>
<listitem>
<para>Show help about options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-all</option>
</term>
<listitem>
<para>Show all options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-tde</option>
</term>
<listitem>
<para>Show TDE specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--help-qt</option>
</term>
<listitem>
<para>Show Qt specific options.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--license</option>
</term>
<listitem>
<para>Show license information.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>, <option>--version</option>
</term>
<listitem>
<para>Show version information.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>QT OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--bg</option>, <option>--background <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default background color and an application palette (light and dark shades are calculated).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--btn</option>, <option>--button <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default button color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--cmap</option>
</term>
<listitem>
<para>Causes the application to install a private color map on an 8-bit display.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--display <replaceable>displayname</replaceable></option>
</term>
<listitem>
<para>Use the X-server display 'displayname'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dograb</option>
</term>
<listitem>
<para>Running under a debugger can cause an implicit --nograb, use --dograb to override.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fg</option>, <option>--foreground <replaceable>color</replaceable></option>
</term>
<listitem>
<para>Sets the default foreground color.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--fn</option>, <option>--font <replaceable>fontname</replaceable></option>
</term>
<listitem>
<para>Defines the application font.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--im <replaceable>XIMserver</replaceable></option>
</term>
<listitem>
<para>Set XIM server.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--inputstyle <replaceable>inputstyle</replaceable></option>
</term>
<listitem>
<para>Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--name <replaceable>name</replaceable></option>
</term>
<listitem>
<para>Sets the application name.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--ncols <replaceable>count</replaceable></option>
</term>
<listitem>
<para>Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nograb</option>
</term>
<listitem>
<para>Tells Qt to never grab the mouse or the keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--noxim</option>
</term>
<listitem>
<para>Disable XIM.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--reverse</option>
</term>
<listitem>
<para>Mirrors the whole layout of widgets.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--session <replaceable>sessionId</replaceable></option>
</term>
<listitem>
<para>Restore the application for the given 'sessionId'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--sync</option>
</term>
<listitem>
<para>Switches to synchronous mode for debugging.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--title <replaceable>title</replaceable></option>
</term>
<listitem>
<para>Sets the application title (caption).</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--visual TrueColor</option>
</term>
<listitem>
<para>Forces the application to use a TrueColor visual on an 8-bit display.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>TDE OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>--caption <replaceable>caption</replaceable></option>
</term>
<listitem>
<para>Use 'caption' as name in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--config <replaceable>filename</replaceable></option>
</term>
<listitem>
<para>Use alternative configuration file.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--dcopserver <replaceable>server</replaceable></option>
</term>
<listitem>
<para>Use the DCOP Server specified by 'server'.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--geometry <replaceable>geometry</replaceable></option>
</term>
<listitem>
<para>Sets the client geometry of the main widget.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--icon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the application icon.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--miniicon <replaceable>icon</replaceable></option>
</term>
<listitem>
<para>Use 'icon' as the icon in the titlebar.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--nocrashhandler</option>
</term>
<listitem>
<para>Disable crash handler, to get core dumps.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--style <replaceable>style</replaceable></option>
</term>
<listitem>
<para>Sets the application GUI style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--waitforwm</option>
</term>
<listitem>
<para>Waits for a WM_NET compatible windowmanager.</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by &dhusername;
&lt;&dhemail;&gt; for the &debian; system (but may be used by
others). Permission is granted to copy, distribute and/or
modify this document under the terms of the &gnu; General Public
License, Version 2 or any later version published by the Free
Software Foundation.
</para>
<para>On Debian systems, the complete text of the GNU General
Public License can be found in /usr/share/common-licenses/GPL.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

@ -0,0 +1,162 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KTRADERTEST 1 "Jun 2006" "Trinity Desktop Environment" "A TDETrader testing tool"
.SH NAME
tdetradertest
\- A TDETrader testing tool
.SH SYNOPSIS
\fBtdetradertest\fP [Qt\-options] [TDE\-options] query [genericServiceType] [constraint] [preference]
.SH DESCRIPTION
\fBtdetradertest\fP is a command line tool to run trader queries.
.sp 1
TDETrader uses .desktop files to store information on Servicetypes and services. It provides a way to query all TDE services (applications and components) that match a specific set of requirements.
.sp 1
A query to TDETrader results in a list of services.
.sp 1
For example, \fBtdetradertest image/jpeg\fP shows a list of image manipulation programs.
.SH OPTIONS
.SS
.SS Arguments:
.TP
.B query
the query
.TP
.B genericServiceType
Application (default), or KParts/ReadOnlyPart
.TP
.B constraint
constraint
.TP
.B preference
preference
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SH AUTHORS
.nf
David Faure <faure@kde.org>
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,159 @@
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
.TH KUNITTESTMODRUNNER 1 "Jun 2006" "Trinity Desktop Environment" "KUnitTest modules runner"
.SH NAME
tdeunittestmodrunner
\- a TDE command\-line application to run KUnitTest modules
.SH SYNOPSIS
\fBtdeunittestmodrunner\fP [Qt\-options] [TDE\-options] [options]
.SH DESCRIPTION
\fBtdeunittestmodrunner\fP is a command\-line application to run KUnitTest modules.
It loads all tdeunittest_*.la modules in the current directory. The exit code is the number of unexpected failures.
.SH OPTIONS
.SS Options:
.TP
.BR \-\-query \ [ regexp ]
Only run modules whose filenames match the regexp. [^tdeunittest_.*\.la$]
.TP
.BR \-\-folder \ [ folder ]
Only run tests modules which are found in the folder. Use the query option to select modules. [.]
.TP
.B \-\-enable\-dbgcap
Disables debug capturing. You typically use this option when you use the GUI.
.SS Generic options:
.TP
.B \-\-help
Show help about options
.TP
.B \-\-help\-qt
Show Qt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
.TP
.B \-\-help\-all
Show all options
.TP
.B \-\-author
Show author information
.TP
.B \-v, \-\-version
Show version information
.TP
.B \-\-license
Show license information
.TP
.B \-\-
End of options
.SS
.SS Qt options:
.TP
.B \-\-display <displayname>
Use the X\-server display 'displayname'
.TP
.B \-\-session <sessionId>
Restore the application for the given 'sessionId'
.TP
.B \-\-cmap
Causes the application to install a private color
map on an 8\-bit display
.TP
.B \-\-ncols <count>
Limits the number of colors allocated in the color
cube on an 8\-bit display, if the application is
using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
tells Qt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
\-nograb, use \-dograb to override
.TP
.B \-\-sync
switches to synchronous mode for debugging
.TP
.B \-\-fn, \-\-font <fontname>
defines the application font
.TP
.B \-\-bg, \-\-background <color>
sets the default background color and an
application palette (light and dark shades are
calculated)
.TP
.B \-\-fg, \-\-foreground <color>
sets the default foreground color
.TP
.B \-\-btn, \-\-button <color>
sets the default button color
.TP
.B \-\-name <name>
sets the application name
.TP
.B \-\-title <title>
sets the application title (caption)
.TP
.B \-\-visual TrueColor
forces the application to use a TrueColor visual on
an 8\-bit display
.TP
.B \-\-inputstyle <inputstyle>
sets XIM (X Input Method) input style. Possible
values are onthespot, overthespot, offthespot and
root
.TP
.B \-\-im <XIM server>
set XIM server
.TP
.B \-\-noxim
disable XIM
.TP
.B \-\-reverse
mirrors the whole layout of widgets
.SS
.SS TDE options:
.TP
.B \-\-caption <caption>
Use 'caption' as name in the titlebar
.TP
.B \-\-icon <icon>
Use 'icon' as the application icon
.TP
.B \-\-miniicon <icon>
Use 'icon' as the icon in the titlebar
.TP
.B \-\-config <filename>
Use alternative configuration file
.TP
.B \-\-dcopserver <server>
Use the DCOP Server specified by 'server'
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager
.TP
.B \-\-style <style>
sets the application GUI style
.TP
.B \-\-geometry <geometry>
sets the client geometry of the main widget \- see man X for the argument format
.SS
.SH SEE ALSO
.BR tdeunittestguimodrunner (1)
.sp 1
.TP
.BR http://www.trinitydesktop.org/development.php
KDE Developers's Corner website
.SH AUTHORS
.nf
Jeroen Wijnhout <Jeroen.Wijnhout@kdemail.net>
.br
.fi
Please use http://bugs.trinitydesktop.org to report bugs, do not mail the author directly.
.PP
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the \fBDebian\fP Project (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
.PP
On \fBDebian\fP systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.

@ -0,0 +1,11 @@
The following files are not installed in any binary package.
This is deliberate.
/etc/xdg/menus/applications.menu
- we install a renamed copy of this file (tde-applications.menu)
to avoid conflicts with GNOME. See debian/rules.
/usr/share/icons/hicolor/index.theme
- This is shipped as part of the hicolor-icon-theme package,
which GNOME and TDE depend on. Shipping this ourselves would
result in file conflicts.

@ -0,0 +1,374 @@
Index: tdelibs/CMakeLists.txt
===================================================================
--- tdelibs.orig/CMakeLists.txt
+++ tdelibs/CMakeLists.txt
@@ -188,7 +188,7 @@ check_include_file( "ctype.h" HAVE_CTYPE
check_include_file( "dirent.h" HAVE_DIRENT_H )
check_include_file( "dld.h" HAVE_DLD_H )
check_include_file( "dlfcn.h" HAVE_DLFCN_H )
-check_include_file( "dl.h" HAVE_DL_H )
+check_include_file( "sys/dl.h" HAVE_DL_H )
check_include_file( "float.h" HAVE_FLOAT_H )
check_include_file( "fstab.h" HAVE_FSTAB_H )
check_include_file( "ieeefp.h" HAVE_IEEEFP_H )
@@ -224,7 +224,9 @@ check_include_file( "sys/dir.h" HAVE_SYS
check_include_file( "sys/filio.h" HAVE_SYS_FILIO_H )
check_include_file( "sys/mman.h" HAVE_SYS_MMAN_H )
check_include_file( "sys/mntent.h" HAVE_SYS_MNTENT_H )
+tde_save_and_set( CMAKE_REQUIRED_FLAGS "-include stdio.h" )
check_include_file( "sys/mnttab.h" HAVE_SYS_MNTTAB_H )
+tde_restore( CMAKE_REQUIRED_FLAGS )
check_include_file( "sys/mount.h" HAVE_SYS_MOUNT_H )
if( NOT HAVE_SYS_MOUNT_H )
find_path( SYS_MOUNT_PATH "sys/mount.h" )
@@ -247,6 +249,13 @@ if( NOT HAVE_SYS_UCRED_H )
set( HAVE_SYS_UCRED_H "1" )
endif( )
endif( )
+check_include_file( "ucred.h" HAVE_UCRED_H )
+if( NOT HAVE_UCRED_H )
+ find_path( UCRED_PATH "ucred.h" )
+ if( UCRED_PATH )
+ set( HAVE_UCRED_H "1" )
+ endif( )
+endif( )
check_include_file( "sys/xattr.h" HAVE_SYS_XATTR_H )
check_include_file( "termios.h" HAVE_TERMIOS_H )
check_include_file( "termio.h" HAVE_TERMIO_H )
@@ -328,9 +337,11 @@ check_symbol_exists( S_ISSOCK "sys/stat.
check_symbol_exists( gethostbyname2 "netdb.h" HAVE_GETHOSTBYNAME2 )
check_symbol_exists( gethostbyname2_r "netdb.h" HAVE_GETHOSTBYNAME2_R )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_symbol_exists( gethostbyname_r "netdb.h" HAVE_GETHOSTBYNAME_R )
check_symbol_exists( gai_strerror "sys/types.h;sys/socket.h;netdb.h" HAVE_GAI_STRERROR )
check_symbol_exists( getaddrinfo "sys/types.h;sys/socket.h;netdb.h" HAVE_GETADDRINFO )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_symbol_exists( backtrace "execinfo.h" HAVE_BACKTRACE )
check_cxx_source_compiles( "#include <cxxabi.h>
int main() { abi::__cxa_demangle(0, 0, 0, 0); return 0; }"
@@ -346,7 +357,7 @@ check_symbol_exists( ffs "string.h
check_symbol_exists( asprintf "stdio.h" HAVE_ASPRINTF_PROTO )
check_symbol_exists( vasprintf "stdio.h" HAVE_VASPRINTF_PROTO )
check_symbol_exists( snprintf "stdio.h" HAVE_SNPRINTF_PROTO )
-check_symbol_exists( vsnprintf "stdarg.h" HAVE_VSNPRINTF_PROTO )
+check_symbol_exists( vsnprintf "stdio.h;stdarg.h" HAVE_VSNPRINTF_PROTO )
check_symbol_exists( strvercmp "string.h" HAVE_STRVERCMP_PROTO )
@@ -374,22 +385,32 @@ if( HAVE_GETMNTINFO )
}"
GETMNTINFO_USES_STATVFS )
endif( HAVE_GETMNTINFO )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( getnameinfo HAVE_GETNAMEINFO )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( getpagesize HAVE_GETPAGESIZE )
check_function_exists( getpeereid HAVE_GETPEEREID )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( getpeername HAVE_GETPEERNAME )
check_function_exists( getprotobyname_r HAVE_GETPROTOBYNAME_R )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( getpt HAVE_GETPT )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( getservbyname_r HAVE_GETSERVBYNAME_R )
check_function_exists( getservbyport_r HAVE_GETSERVBYPORT_R )
check_function_exists( getsockname HAVE_GETSOCKNAME )
check_function_exists( getsockopt HAVE_GETSOCKOPT )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( gettimeofday HAVE_GETTIMEOFDAY )
check_function_exists( grantpt HAVE_GRANTPT )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( if_nametoindex HAVE_IF_NAMETOINDEX )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( index HAVE_INDEX)
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( inet_ntop HAVE_INET_NTOP )
check_function_exists( inet_pton HAVE_INET_PTON )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( setfsent HAVE_SETFSENT )
check_function_exists( setgroups HAVE_SETGROUPS )
check_function_exists( setlocale HAVE_SETLOCALE )
@@ -398,10 +419,16 @@ check_function_exists( setpriority HAVE_
check_function_exists( isnan HAVE_FUNC_ISNAN )
check_function_exists( _finite HAVE_FUNC__FINITE )
check_function_exists( finite HAVE_FUNC_FINITE )
-check_function_exists( isinf HAVE_FUNC_ISINF )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES m )
+check_symbol_exists( isinf "math.h" HAVE_FUNC_ISINF )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( freeaddrinfo HAVE_FREEADDRINFO )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( strtoll HAVE_STRTOLL )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES socket nsl )
check_function_exists( socket HAVE_SOCKET )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( strfmon HAVE_STRFMON )
check_function_exists( stpcpy HAVE_STPCPY )
check_function_exists( readdir_r HAVE_READDIR_R )
@@ -417,7 +444,9 @@ check_function_exists( _getpty HAVE__GET
check_function_exists( __argz_count HAVE___ARGZ_COUNT )
check_function_exists( __argz_next HAVE___ARGZ_NEXT )
check_function_exists( __argz_stringify HAVE___ARGZ_STRINGIFY )
+tde_save_and_set( CMAKE_REQUIRED_LIBRARIES sendfile socket nsl)
check_function_exists( sendfile HAVE_SENDFILE )
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
check_function_exists( rindex HAVE_RINDEX )
check_function_exists( putenv HAVE_PUTENV )
check_function_exists( poll HAVE_POLL )
Index: tdelibs/dcop/CMakeLists.txt
===================================================================
--- tdelibs.orig/dcop/CMakeLists.txt
+++ tdelibs/dcop/CMakeLists.txt
@@ -49,7 +49,7 @@ set( ${target}_SRCS
tde_add_library( ${target} SHARED AUTOMOC
SOURCES ${${target}_SRCS}
VERSION 14.0.0
- LINK kICE-static ${TQT_LIBRARIES}
+ LINK kICE-static ${TQT_LIBRARIES} socket nsl
DESTINATION ${LIB_INSTALL_DIR}
)
Index: tdelibs/tdecore/network/kresolver_p.h
===================================================================
--- tdelibs.orig/tdecore/network/kresolver_p.h
+++ tdelibs/tdecore/network/kresolver_p.h
@@ -48,7 +48,7 @@ extern TQMutex getXXbyYYmutex;
#endif
/* some systems have the functions, but don't declare them */
-#ifndef __OpenBSD__
+#if !defined(__OpenBSD__) && !defined(__dilos__)
#if defined(HAVE_GETSERVBYNAME_R) && !HAVE_DECL_GETSERVBYNAME_R
extern "C" {
struct servent;
Index: tdelibs/tdecore/kdebug.cpp
===================================================================
--- tdelibs.orig/tdecore/kdebug.cpp
+++ tdelibs/tdecore/kdebug.cpp
@@ -753,7 +753,7 @@ TQString formatBacktrace(void *addr) {
// NOTE: if somebody would compile for some non-linux-glibc platform
// check if dladdr function is avalible there
Dl_info info;
- dladdr(func.addr, &info); // obtain information about the function.
+ dladdr((void *)func.addr, &info); // obtain information about the function.
func.fileName = info.dli_fname;
func.base = info.dli_fbase;
Index: tdelibs/tdecore/netsupp.cpp
===================================================================
--- tdelibs.orig/tdecore/netsupp.cpp
+++ tdelibs/tdecore/netsupp.cpp
@@ -44,6 +44,7 @@
#endif
#undef CLOBBER_IN6
#include "netsupp.h"
+#include "ksockaddr.h"
#if defined(__hpux) || defined(_HPUX_SOURCE)
extern int h_errno;
Index: tdelibs/tdecore/ksimpledirwatch.cpp
===================================================================
--- tdelibs.orig/tdecore/ksimpledirwatch.cpp
+++ tdelibs/tdecore/ksimpledirwatch.cpp
@@ -57,7 +57,11 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/syscall.h>
+#if defined(__dilos__)
+#include <sys/filio.h>
+#else /* !__dilos__ */
#include <linux/types.h>
+#endif /* __dilos__ */
// Linux kernel headers are documented to not compile
#define _S390_BITOPS_H
#include <sys/inotify.h>
Index: tdelibs/cmake/modules/TDEMacros.cmake
===================================================================
--- tdelibs.orig/cmake/modules/TDEMacros.cmake
+++ tdelibs/cmake/modules/TDEMacros.cmake
@@ -833,7 +833,7 @@ macro( tde_add_library _arg_target )
# set embedded archives
if( _embed )
- list( INSERT _link 0 -Wl,-whole-archive ${_embed} -Wl,-no-whole-archive )
+ list( INSERT _link 0 -Wl,-zallextract ${_embed} -Wl,-zdefaultextract )
endif( _embed )
# set link libraries
@@ -1875,11 +1875,11 @@ macro( tde_setup_architecture_flags )
set( LINKER_IMMEDIATE_BINDING_FLAGS "" CACHE INTERNAL "" FORCE )
endif( )
- check_cxx_compiler_flag( -fPIE HAVE_PIE_SUPPORT )
- if( HAVE_PIE_SUPPORT )
- set( TDE_PIE_CFLAGS -fPIE )
- set( TDE_PIE_LDFLAGS -pie )
- endif( HAVE_PIE_SUPPORT )
+# check_cxx_compiler_flag( -fPIE HAVE_PIE_SUPPORT )
+# if( HAVE_PIE_SUPPORT )
+# set( TDE_PIE_CFLAGS -fPIE )
+# set( TDE_PIE_LDFLAGS -pie )
+# endif( HAVE_PIE_SUPPORT )
endmacro( )
Index: tdelibs/tdecore/CMakeLists.txt
===================================================================
--- tdelibs.orig/tdecore/CMakeLists.txt
+++ tdelibs/tdecore/CMakeLists.txt
@@ -138,7 +138,7 @@ tde_add_library( ${target} SHARED AUTOMO
EMBED tdecorenetwork-static ${TDEHW_LIB}
LINK ltdlc-static ${KDESVGICONS} DCOP-shared tdefx-shared ${ZLIB_LIBRARIES}
${LIBIDN_LIBRARIES} ${XCOMPOSITE_LIBRARIES} ICE SM ${GAMIN_LIBRARIES}
- ${LIBBFD_LIBRARIES} ${LIB_UTIL}
+ ${LIBBFD_LIBRARIES} ${LIB_UTIL} -lresolv
DEPENDENCIES dcopidl dcopidl2cpp
DESTINATION ${LIB_INSTALL_DIR}
)
Index: tdelibs/tdeio/tdeio/kdirwatch.cpp
===================================================================
--- tdelibs.orig/tdeio/tdeio/kdirwatch.cpp
+++ tdelibs/tdeio/tdeio/kdirwatch.cpp
@@ -69,7 +69,11 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/syscall.h>
+#if defined(__dilos__)
+#include <sys/filio.h>
+#else /* !__dilos__ */
#include <linux/types.h>
+#endif /* __dilos__ */
// Linux kernel headers are documented to not compile
#define _S390_BITOPS_H
#include <sys/inotify.h>
Index: tdelibs/tdeio/misc/kpac/CMakeLists.txt
===================================================================
--- tdelibs.orig/tdeio/misc/kpac/CMakeLists.txt
+++ tdelibs/tdeio/misc/kpac/CMakeLists.txt
@@ -62,5 +62,6 @@ set( target kpac_dhcp_helper )
# FIXME on Gentoo this binary is not suided
tde_add_executable( ${target} SETUID
SOURCES kpac_dhcp_helper.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
Index: tdelibs/tdeinit/CMakeLists.txt
===================================================================
--- tdelibs.orig/tdeinit/CMakeLists.txt
+++ tdelibs/tdeinit/CMakeLists.txt
@@ -51,6 +51,7 @@ set( target tdeinit_wrapper )
tde_add_executable( ${target}
SOURCES wrapper.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
@@ -61,6 +62,7 @@ set( target kshell )
tde_add_executable( ${target}
SOURCES shell.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
@@ -71,6 +73,7 @@ set( target tdeinit_shutdown )
tde_add_executable( ${target}
SOURCES wrapper.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
@@ -81,6 +84,7 @@ set( target lnusertemp )
tde_add_executable( ${target}
SOURCES lnusertemp.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
@@ -91,6 +95,7 @@ set( target kwrapper )
tde_add_executable( ${target}
SOURCES kwrapper.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
@@ -138,6 +143,7 @@ endif( TDEINIT_SETUID )
tde_add_executable( ${target} ${_setuid}
SOURCES start_tdeinit.c
+ LINK socket nsl
DESTINATION ${BIN_INSTALL_DIR}
)
Index: tdelibs/tdehtml/misc/knsplugininstaller.cpp
===================================================================
--- tdelibs.orig/tdehtml/misc/knsplugininstaller.cpp
+++ tdelibs/tdehtml/misc/knsplugininstaller.cpp
@@ -42,6 +42,9 @@
#include <tqtextstream.h>
#include <sys/utsname.h>
+#ifdef USE_SOLARIS
+#include <sys/systeminfo.h>
+#endif /* USE_SOLARIS */
// Use 6031 for debugging (render_frame)
#define DEBUG_NUMBER 6031
@@ -154,10 +157,14 @@ bool KNSPluginInstallEngine::loadXmlConf
bool KNSPluginInstallEngine::findPlugin()
{
-
+#ifdef USE_SOLARIS
+ struct utsname sysinfo;
+#else /* !USE_SOLARIS */
// get system infos
// TODO/FIX : correct this to work with x86-64 machines
utsname sysinfo;
+#endif /* USE_SOLARIS */
+
if(uname(&sysinfo))
return false;
TQString sysname(sysinfo.sysname);
Index: tdelibs/tdeioslave/file/file.cc
===================================================================
--- tdelibs.orig/tdeioslave/file/file.cc
+++ tdelibs/tdeioslave/file/file.cc
@@ -1448,13 +1448,10 @@ void FileProtocol::mount( bool _ro, cons
// mount giving device + mountpoint + fstype
#if defined(__svr4__) && defined(__sun__) // MARCO for Solaris 8 and I
// believe this is true for SVR4 in general
- buffer.sprintf( "%s -F %s %s %s %s 2>%s"
- mountProg.latin1()
- fstype.data()
- _ro ? "-oro" : ""
- dev.data()
- point.data()
- tmp );
+ buffer.sprintf( "%s -F %s %s %s %s 2>%s",
+ mountProg.latin1(), fstype.data(),
+ _ro ? "-oro" : "", dev.data(),
+ point.data(), tmp);
#elif defined(__OpenBSD__)
buffer.sprintf( "%s %s %s -t %s %s %s 2>%s", "tdesu", mountProg.latin1(), readonly.data(),
fstype.data(), dev.data(), point.data(), tmp );
Index: tdelibs/tdeio/kssl/kopenssl.cc
===================================================================
--- tdelibs.orig/tdeio/kssl/kopenssl.cc
+++ tdelibs/tdeio/kssl/kopenssl.cc
@@ -348,6 +348,9 @@ TDEConfig *cfg;
#ifdef _AIX
<< "/opt/freeware/lib/"
#endif
+ #ifdef __dilos__
+ << "/" SYSTEM_LIBDIR KDELIBSUFF
+ #endif /* __dilos__ */
<< "/usr/" SYSTEM_LIBDIR "/"
<< "/usr/ssl/" SYSTEM_LIBDIR "/"
<< "/usr/local/" SYSTEM_LIBDIR "/"

@ -0,0 +1,15 @@
#!/bin/sh -e
# Removes non-free files from the source tree. Must be done before
# creating the orig.tar.gz.
TOPLEVEL="$1"
if [ "$TOPLEVEL" = "" ]; then
echo "Please provide the toplevel directory as the argument."
exit 1
else
rm -f $TOPLEVEL/tdeioslave/http/kcookiejar/rfc*
fi
exit 0

@ -0,0 +1,178 @@
#! /usr/bin/make -f
# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function
# Also include the main Trinity path
ifeq ("$(LD_LIBRARY_PATH)", "")
LD_LIBRARY_PATH=/usr/lib:debian/tmp/usr/lib
else
LD_LIBRARY_PATH += :/usr/lib:debian/tmp/usr/lib
endif
export LD_LIBRARY_PATH
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/cmake.mk
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
include debian/cdbs/debian-tde.mk
DEB_KDE_APIDOX := yes
version=Debian Package $(DEB_VERSION)
DEB_OPT_FLAG += -DDEBIAN_VERSION=$(DEB_VERSION)
export CPPFLAGS+= -D__dilos__ -D__EXTENSIONS__ -DUSE_SOLARIS -D_XPG4_2
LD_LIBRARY_PATH=/usr/lib/$(DEB_HOST_MULTIARCH)/libfakeroot:$(PWD)/$(DEB_BUILDDIR)/dcop:$(PWD)/$(DEB_BUILDDIR)/tdeio:$(PWD)/$(DEB_BUILDDIR)/tdeui:$(PWD)/$(DEB_BUILDDIR)/tdefx:$(PWD)/$(DEB_BUILDDIR)/tdesu:$(PWD)/$(DEB_BUILDDIR)/tdewallet/client:$(PWD)/$(DEB_BUILDDIR)/tdecore
export LD_LIBRARY_PATH
DEB_CMAKE_EXTRA_FLAGS := \
-DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)" \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCONFIG_INSTALL_DIR="/etc/trinity" \
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
-DCMAKE_LIBRARY_PATH="/usr/lib" \
-DCMAKE_INCLUDE_PATH="/usr/include" \
-DCMAKE_VERBOSE_MAKEFILE="ON" \
-DCMAKE_SKIP_RPATH="ON" \
-DWITH_GCC_VISIBILITY="ON" \
-DWITH_LIBART="ON" \
-DWITH_LIBIDN="ON" \
-DWITH_TIFF="ON" \
-DWITH_JASPER="ON" \
-DWITH_OPENEXR="ON" \
-DWITH_AVAHI="ON" \
-DWITH_ASPELL="ON" \
-DWITH_HSPELL="ON" \
-DWITH_ELFICON="OFF" \
-DWITH_TDEHWLIB="OFF" \
-DWITH_TDEHWLIB_DAEMONS="OFF" \
-DWITH_LOGINDPOWER="ON" \
-DWITH_UPOWER="ON" \
-DWITH_CONSOLEKIT="ON" \
-DWITH_NETWORK_MANAGER_BACKEND="ON" \
-DWITH_LZMA="ON" \
-DWITH_XRANDR="ON" \
-DWITH_XCOMPOSITE="ON" \
-DWITH_MITSHM="ON" \
-DWITH_PCSC="ON" \
-DWITH_PKCS="ON" \
-DWITH_CRYPTSETUP="OFF" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_C_COMPILER=gcc \
-DWITH_ALSA="OFF"
DEB_MAKE_CHECK_TARGET = check
DEB_FIXPERMS_EXCLUDE := \
usr/bin/fileshareset \
usr/bin/kgrantpty \
usr/bin/kpac_dhcp_helper \
usr/bin/start_tdeinit
# ctfconvert does not work with C++ objects, skip them all
DEB_DH_STRIP_ARGS := --dbg-package=tdelibs-trinity-dbg \
-Xlibtdentlm.so.0.0.0 -Xlibtdednssd.so.1.0.0 -Xlibkjs.so.1.2.0 \
-Xlibtdesu.so.14.0.0 -Xlibtdeinit_tdelauncher.so \
-Xlibkatepartinterfaces.so.0.0.0 -Xlibtdeprint.so.14.0.0 \
-Xlibtdescript.so.0.0.0 -Xlibtdeabc_file.so.1.0.0 -Xlibtdeui.so.14.0.0 \
-Xlibtdesasl.so.1.2.0 -Xlibnetworkstatus.so.0.0.0 -Xlibtdeinit_kded.so \
-Xlibtdeinit_cupsdconf.so -Xlibtdemdi2.so.1.0.0 -Xlibtdeinit_tdeio_uiserver.so \
-Xlibtdeabc_net.so.1.0.0 -Xlibtdecore.so.14.0.0 -Xlibtdemdi.so.1.0.0 \
-Xlibtdeprint_management.so.14.0.0 -Xlibconnectionmanager.so.0.0.0 \
-XlibDCOP.so.14.0.0 -Xlibtdetexteditor.so.0.0.0 -Xlibtdeutils.so.1.2.0 \
-Xlibtdescreensaver.so.14.0.0 -Xlibtdeinit_dcopserver.so \
-Xlibtdeabc_ldaptdeio.so.1.0.0 -Xlibtdehtml.so.14.0.0 \
-Xlibtdewalletclient.so.1.0.1 -Xlibtdeinit_kaddprinterwizard.so \
-Xlibartskde.so.1.2.0 -Xlibtdeparts.so.2.1.0 -Xlibtdeabc.so.1.2.0 \
-Xlibtdemid.so.0.0.95 -Xlibkjava.so.1.0.0 -Xlibtdemediaplayer.so.0.0.0 \
-Xlibvcard.so.0.0.0 -Xlibtdenewstuff.so.1.0.0 -Xlibtdeinit_tdeconf_update.so \
-Xlibtderesources.so.1.2.0 -Xlibtdeunittest.so.1.0.0 -Xlibtdersync.so.0.0.1 \
-Xlibtdeabc_dir.so.1.0.0 -Xlibtdeio.so.14.0.0 -Xlibtdeinit_tdecmshell.so \
-Xlibtdeinit_tdebuildsycoca.so -Xlibtderandr.so.0.0.95 \
-Xlibtdeinit_tdeio_http_cache_cleaner.so -Xlibtdespell.so.14.0.0 \
-Xlibtdespell2.so.1.0.0 -Xlibtdewalletbackend.so.1.0.0 -Xlibtdefx.so.14.0.0 \
-Xlibtdeimproxy.so.0.0.0 -Xlibtdeinit_kcookiejar.so -Xlibtdefakes.so.14.0.0 \
-Xtrinity/tdetexteditor_docwordcompletion.so -Xtrinity/kded_kcookiejar.so \
-Xtrinity/tdeio_iso.so -Xtrinity/libkatepart.so -Xtrinity/libtdehtmlpart.so \
-Xtrinity/kimg_tga.so -Xtrinity/tdeio_help.so -Xtrinity/tdeprint_rlpr.so \
-Xtrinity/tdespell_hspell.so -Xtrinity/kbzip2filter.so -Xtrinity/kimg_tiff.so \
-Xtrinity/libtdeprint_management_module.so -Xtrinity/tdetexteditor_isearch.so \
-Xtrinity/tdeio_uiserver.so -Xtrinity/tdeprint_lpr.so -Xtrinity/kimg_psd.so \
-Xtrinity/kimg_ico.so -Xtrinity/tdefileaudiopreview.so -Xtrinity/kimg_pcx.so \
-Xtrinity/tdetexteditor_insertfile.so -Xtrinity/tdehtmlimagepart.so \
-Xtrinity/kded_kpasswdserver.so -Xtrinity/tdeprint_lpdunix.so \
-Xtrinity/tdeio_file.so -Xtrinity/tdeio_ftp.so -Xtrinity/cupsdconf.so \
-Xtrinity/tdeabc_ldaptdeio.so -Xtrinity/tdeprint_ext.so \
-Xtrinity/tdeio_http_cache_cleaner.so -Xtrinity/kxzfilter.so \
-Xtrinity/kjavaappletviewer.so -Xtrinity/tdespell_ispell.so \
-Xtrinity/tdespell_aspell.so -Xtrinity/tdecmshell.so -Xtrinity/kimg_xcf.so \
-Xtrinity/kded_kssld.so -Xtrinity/tdeabcformat_binary.so \
-Xtrinity/kded_proxyscout.so -Xtrinity/tdetexteditor_kdatatool.so \
-Xtrinity/knotify.so -Xtrinity/tdeprint_cups.so -Xtrinity/kimg_exr.so \
-Xtrinity/tdeio_ghelp.so -Xtrinity/kcookiejar.so -Xtrinity/kded_tdeprintd.so \
-Xtrinity/kcm_tderesources.so -Xtrinity/kded_tdewalletd.so -Xtrinity/kded.so \
-Xtrinity/libtdemultipart.so -Xtrinity/tdeconf_update.so \
-Xtrinity/libshellscript.so -Xtrinity/kimg_jp2.so \
-Xtrinity/kded_kdetrayproxy.so -Xtrinity/tdeabc_dir.so -Xtrinity/tdeio_http.so \
-Xtrinity/tdelauncher.so -Xtrinity/libtdecertpart.so -Xtrinity/kimg_dds.so \
-Xtrinity/kimg_xview.so -Xtrinity/tdeabc_net.so -Xtrinity/tdeio_metainfo.so \
-Xtrinity/dcopserver.so -Xtrinity/tdestyle_plastik_config.so \
-Xtrinity/kaddprinterwizard.so -Xtrinity/kimg_eps.so \
-Xtrinity/tdebuildsycoca.so -Xtrinity/tdeprint_tool_escputil.so \
-Xtrinity/tdestyle_highcontrast_config.so -Xtrinity/kimg_hdr.so \
-Xtrinity/kimg_rgb.so -Xtrinity/kgzipfilter.so -Xtrinity/tdeabc_file.so \
-Xtrinity/plugins/styles/light.so -Xtrinity/plugins/styles/highcontrast.so \
-Xtrinity/plugins/styles/kthemestyle.so -Xtrinity/plugins/styles/plastik.so \
-Xtrinity/plugins/styles/highcolor.so -Xtrinity/plugins/styles/asteroid.so \
-Xtrinity/plugins/styles/keramik.so -Xtrinity/plugins/designer/tdewidgets.so \
-Xdcop -Xtdeab2tdeabc -Xkpac_dhcp_helper -Xtdeconf_update -Xartsmessage \
-Xkcookiejar -Xstart_tdeinit -Xtdeio_uiserver -Xkgrantpty -Xdcopobject \
-Xtdebuildsycoca -Xkinstalltheme -Xtdetradertest -Xcupsdoprint \
-Xtdeinit_wrapper -Xmake_driver_db_cups -Xtdeioexec -Xtdedostartupconfig \
-Xtdemailservice -Xtdehotnewstuff -Xkaddprinterwizard -Xtdestartupconfig \
-Xkdetcompmgr -Xtdeioslave -Xtde-config -Xtdetelnetservice -Xkshell -Xmeinproc \
-Xdcopserver -Xtdefile -Xtdeiso_info -Xtde-menu -Xdcopclient -Xlnusertemp \
-Xdcopstart -Xdcopref -Xkwrapper -Xtdelauncher -Xkdontchangethehostname \
-Xcupsdconf -Xkded -Xtdesendbugmail -Xtdecmshell.real -Xtdeinit -Xtdesu_stub \
-Xtdeinit_shutdown -Xtdeio_http_cache_cleaner -Xstart_tdeinit_wrapper \
-Xdcopfind -Xmake_driver_db_lpr -Xdcopquit -Xdcopserver_shutdown \
-Xtdeconfig_compiler -Xmaketdewidgets -Xksvgtopng -Xdcopidl2cpp \
-Xtdeunittestmodrunner -Xdcopidl
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
&& echo xz || echo bzip2)
binary-install/tdelibs-data-trinity::
install -p -D -m644 kded/tde-applications.menu debian/tdelibs-data-trinity/usr/etc/xdg/menus/tde-applications.menu
# install -p -D -m644 debian/trinitylibs.conf debian/tdelibs-data-trinity/etc/ld.so.conf.d/trinitylibs.conf
# uudecode -o debian/tdelibs-data-trinity/usr/share/apps/tdeui/pics/abouttde.png debian/icons/abouttde-kubuntu.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/16x16/devices/computer.png debian/icons/cr16-device-computer.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/22x22/devices/computer.png debian/icons/cr22-device-computer.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/32x32/devices/computer.png debian/icons/cr32-device-computer.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/48x48/devices/computer.png debian/icons/cr48-device-computer.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/64x64/devices/computer.png debian/icons/cr64-device-computer.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/128x128/devices/computer.png debian/icons/cr128-device-computer.png.uu
# uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/scalable/devices/computer.svgz debian/icons/crsc-device-computer.svgz.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/16x16/actions/hibernate.png debian/icons/cr16-action-hibernate.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/22x22/actions/hibernate.png debian/icons/cr16-action-hibernate.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/32x32/actions/hibernate.png debian/icons/cr16-action-hibernate.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/48x48/actions/hibernate.png debian/icons/cr16-action-hibernate.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/16x16/actions/suspend.png debian/icons/cr16-action-suspend.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/22x22/actions/suspend.png debian/icons/cr16-action-suspend.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/32x32/actions/suspend.png debian/icons/cr16-action-suspend.png.uu
uudecode -o debian/tdelibs-data-trinity/usr/share/icons/crystalsvg/48x48/actions/suspend.png debian/icons/cr16-action-suspend.png.uu
###
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
binary-predeb/tdelibs14-trinity-dev::
ifeq (linux,$(DEB_HOST_ARCH_OS))
echo "libasound2-trinity-dev=libasound2-trinity-dev" >> debian/tdelibs14-trinity-dev.substvars
endif
binary-install/tdelibs14-trinity::
mv debian/tmp/usr/bin/tdecmshell debian/tmp/usr/bin/tdecmshell.real
install -p -D -m755 debian/tmp/usr/bin/tdecmshell.real debian/tdelibs14-trinity/usr/bin/tdecmshell.real
install -p -D -m755 debian/tdecmshell debian/tdelibs14-trinity/usr/bin/tdecmshell

@ -0,0 +1,6 @@
# Use xz instead of gzip
compression = "xz"
compression-level = 9
# Don't run differences
diff-ignore = .*

@ -0,0 +1,6 @@
#!/bin/sh
export XDG_CONFIG_DIRS=/etc/xdg
export XDG_DATA_DIRS=/usr/share
${0}.real "$@"

File diff suppressed because it is too large Load Diff

@ -0,0 +1 @@
/etc/ssl/certs/ca-certificates.crt usr/share/apps/kssl/ca-bundle.crt

@ -0,0 +1,27 @@
#!/bin/sh -e
if [ "${BASEDIR:=/}" = "/" ]; then
BASEDIR=""
fi
FILE="/etc/xdg/menus/applications.menu"
MD5SUM332="3750f06e08cfd048952f4cd82b97652c"
MD5SUM340="ea26be9e934fb23c04b0b1409706bace"
case "$1" in
upgrade|install)
# ldconfig
;;
abort-upgrade)
;;
*)
;;
esac
#DEBHELPER#
exit 0

@ -0,0 +1,23 @@
#!/bin/sh -e
FILE="/etc/xdg/menus/applications.menu"
MD5SUM332="3750f06e08cfd048952f4cd82b97652c"
MD5SUM340="ea26be9e934fb23c04b0b1409706bace"
case "$1" in
remove)
# ldconfig
;;
abort-upgrade)
;;
*)
;;
esac
#DEBHELPER#
exit 0

@ -0,0 +1,38 @@
#!/bin/sh -e
FILE="/etc/xdg/menus/applications.menu"
MD5SUM332="3750f06e08cfd048952f4cd82b97652c"
MD5SUM340="ea26be9e934fb23c04b0b1409706bace"
case "$1" in
upgrade)
rm -f /etc/trinity/colors/40\ Colors
rm -f /etc/trinity/colors/Royal
rm -f /etc/trinity/colors/Web
rm -f /etc/trinity/tdetexteditor_autobookmarkerrc
[ -f "$FILE" ] || exit 0
MD5SUMOLD=`md5sum $FILE | awk '{print $1}'`
if dpkg --compare-versions "$2" lt "4:3.4.0-0pre5"; then
if [ "$MD5SUM332" = "$MD5SUMOLD" ] || [ "$MD5SUM340" = "$MD5SUMOLD" ]; then
rm -f "$FILE"
fi
fi
;;
install)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0

@ -0,0 +1,16 @@
Reporting bugs for TDE packages
-------------------------------
TDE does not support beeing upgraded while running. If you do so, you may
encounter weird bugs (empty menus or configuration dialogs e.g.), and even
crashes.
If you recently upgraded tdelibs and/or tdebase packages, please consider:
* exiting your current TDE session.
* ensuring that no more TDE process is still running, especially the processes
named (list beeing non-limitative): dcopserver, kded, ksmserver...
* log in TDE again.
Then try to reproduce you bug. If it's not reproducible, then please do not
report it.

@ -0,0 +1,848 @@
debian/tmp/usr/bin/checkXML
debian/tmp/usr/bin/dcopidl
debian/tmp/usr/bin/dcopidl2cpp
debian/tmp/usr/bin/dcopidlng
debian/tmp/usr/bin/tdeconfig_compiler
debian/tmp/usr/bin/ksvgtopng
debian/tmp/usr/bin/tdeunittestmodrunner
debian/tmp/usr/bin/maketdewidgets
debian/tmp/usr/bin/preparetips
debian/tmp/usr/include/arts/artskde.h
debian/tmp/usr/include/arts/kartsdispatcher.h
debian/tmp/usr/include/arts/kartsfloatwatch.h
debian/tmp/usr/include/arts/kartsserver.h
debian/tmp/usr/include/arts/kaudiomanagerplay.h
debian/tmp/usr/include/arts/kaudioplaystream.h
debian/tmp/usr/include/arts/kaudiorecordstream.h
debian/tmp/usr/include/arts/kplayobjectfactory.h
debian/tmp/usr/include/arts/kplayobject.h
debian/tmp/usr/include/arts/kvideowidget.h
debian/tmp/usr/include/dcopclient.h
debian/tmp/usr/include/dcopobject.h
debian/tmp/usr/include/dcopref.h
debian/tmp/usr/include/dcopstub.h
debian/tmp/usr/include/dcoptypes.h
debian/tmp/usr/include/dnssd/domainbrowser.h
debian/tmp/usr/include/dnssd/publicservice.h
debian/tmp/usr/include/dnssd/query.h
debian/tmp/usr/include/dnssd/remoteservice.h
debian/tmp/usr/include/dnssd/servicebase.h
debian/tmp/usr/include/dnssd/servicebrowser.h
debian/tmp/usr/include/dnssd/settings.h
debian/tmp/usr/include/dom/css_rule.h
debian/tmp/usr/include/dom/css_stylesheet.h
debian/tmp/usr/include/dom/css_value.h
debian/tmp/usr/include/dom/dom2_events.h
debian/tmp/usr/include/dom/dom2_range.h
debian/tmp/usr/include/dom/dom2_traversal.h
debian/tmp/usr/include/dom/dom2_views.h
debian/tmp/usr/include/dom/dom_core.h
debian/tmp/usr/include/dom/dom_doc.h
debian/tmp/usr/include/dom/dom_element.h
debian/tmp/usr/include/dom/dom_exception.h
debian/tmp/usr/include/dom/dom_html.h
debian/tmp/usr/include/dom/dom_misc.h
debian/tmp/usr/include/dom/dom_node.h
debian/tmp/usr/include/dom/dom_string.h
debian/tmp/usr/include/dom/dom_text.h
debian/tmp/usr/include/dom/dom_xml.h
debian/tmp/usr/include/dom/html_base.h
debian/tmp/usr/include/dom/html_block.h
debian/tmp/usr/include/dom/html_document.h
debian/tmp/usr/include/dom/html_element.h
debian/tmp/usr/include/dom/html_form.h
debian/tmp/usr/include/dom/html_head.h
debian/tmp/usr/include/dom/html_image.h
debian/tmp/usr/include/dom/html_inline.h
debian/tmp/usr/include/dom/html_list.h
debian/tmp/usr/include/dom/html_misc.h
debian/tmp/usr/include/dom/html_object.h
debian/tmp/usr/include/dom/html_table.h
debian/tmp/usr/include/fixx11h.h
debian/tmp/usr/include/tdeabc/addressbook.h
debian/tmp/usr/include/tdeabc/addresseedialog.h
debian/tmp/usr/include/tdeabc/addressee.h
debian/tmp/usr/include/tdeabc/addresseelist.h
debian/tmp/usr/include/tdeabc/address.h
debian/tmp/usr/include/tdeabc/addresslineedit.h
debian/tmp/usr/include/tdeabc/agent.h
debian/tmp/usr/include/tdeabc/distributionlistdialog.h
debian/tmp/usr/include/tdeabc/distributionlisteditor.h
debian/tmp/usr/include/tdeabc/distributionlist.h
debian/tmp/usr/include/tdeabc/errorhandler.h
debian/tmp/usr/include/tdeabc/field.h
debian/tmp/usr/include/tdeabc/formatfactory.h
debian/tmp/usr/include/tdeabc/format.h
debian/tmp/usr/include/tdeabc/formatplugin.h
debian/tmp/usr/include/tdeabc/geo.h
debian/tmp/usr/include/tdeabc/key.h
debian/tmp/usr/include/tdeabc/ldapclient.h
debian/tmp/usr/include/tdeabc/ldapconfigwidget.h
debian/tmp/usr/include/tdeabc/ldapurl.h
debian/tmp/usr/include/tdeabc/ldifconverter.h
debian/tmp/usr/include/tdeabc/ldif.h
debian/tmp/usr/include/tdeabc/lock.h
debian/tmp/usr/include/tdeabc/locknull.h
debian/tmp/usr/include/tdeabc/phonenumber.h
debian/tmp/usr/include/tdeabc/picture.h
debian/tmp/usr/include/tdeabc/plugin.h
debian/tmp/usr/include/tdeabc/resourcedir.h
debian/tmp/usr/include/tdeabc/resourcefile.h
debian/tmp/usr/include/tdeabc/resource.h
debian/tmp/usr/include/tdeabc/resourceldaptdeio.h
debian/tmp/usr/include/tdeabc/resourceselectdialog.h
debian/tmp/usr/include/tdeabc/secrecy.h
debian/tmp/usr/include/tdeabc/sortmode.h
debian/tmp/usr/include/tdeabc/sound.h
debian/tmp/usr/include/tdeabc/stdaddressbook.h
debian/tmp/usr/include/tdeabc/timezone.h
debian/tmp/usr/include/tdeabc/vcardconverter.h
debian/tmp/usr/include/tdeabc/vcardformat.h
debian/tmp/usr/include/tdeabc/vcardformatplugin.h
debian/tmp/usr/include/tdeabc/vcard.h
debian/tmp/usr/include/tdeabc/vcardline.h
debian/tmp/usr/include/tdeabc/vcardparser.h
debian/tmp/usr/include/tdeaboutapplication.h
debian/tmp/usr/include/tdeaboutdata.h
debian/tmp/usr/include/tdeaboutdialog.h
debian/tmp/usr/include/tdeabouttde.h
debian/tmp/usr/include/tdeaccelgen.h
debian/tmp/usr/include/tdeaccel.h
debian/tmp/usr/include/tdeaccelmanager.h
debian/tmp/usr/include/kacl.h
debian/tmp/usr/include/tdeactionclasses.h
debian/tmp/usr/include/tdeactioncollection.h
debian/tmp/usr/include/tdeaction.h
debian/tmp/usr/include/tdeactionselector.h
debian/tmp/usr/include/tdeactionshortcutlist.h
debian/tmp/usr/include/kactivelabel.h
debian/tmp/usr/include/kallocator.h
debian/tmp/usr/include/kanimwidget.h
debian/tmp/usr/include/kapp.h
debian/tmp/usr/include/tdeapplication.h
debian/tmp/usr/include/karchive.h
debian/tmp/usr/include/kar.h
debian/tmp/usr/include/karrowbutton.h
debian/tmp/usr/include/kasyncio.h
debian/tmp/usr/include/kate/document.h
debian/tmp/usr/include/kate/view.h
debian/tmp/usr/include/kaudioplayer.h
debian/tmp/usr/include/kauthicon.h
debian/tmp/usr/include/kautomount.h
debian/tmp/usr/include/kbookmarkbar.h
debian/tmp/usr/include/kbookmarkdombuilder.h
debian/tmp/usr/include/kbookmarkdrag.h
debian/tmp/usr/include/kbookmarkexporter.h
debian/tmp/usr/include/kbookmark.h
debian/tmp/usr/include/kbookmarkimporter_crash.h
debian/tmp/usr/include/kbookmarkimporter.h
debian/tmp/usr/include/kbookmarkimporter_ie.h
debian/tmp/usr/include/kbookmarkimporter_kde1.h
debian/tmp/usr/include/kbookmarkimporter_ns.h
debian/tmp/usr/include/kbookmarkimporter_opera.h
debian/tmp/usr/include/kbookmarkmanager.h
debian/tmp/usr/include/kbookmarkmenu.h
debian/tmp/usr/include/kbookmarknotifier.h
debian/tmp/usr/include/kbufferedio.h
debian/tmp/usr/include/kbufferedsocket.h
debian/tmp/usr/include/kbugreport.h
debian/tmp/usr/include/kbuttonbox.h
debian/tmp/usr/include/kcalendarsystemfactory.h
debian/tmp/usr/include/kcalendarsystem.h
debian/tmp/usr/include/kcatalogue.h
debian/tmp/usr/include/kcharselect.h
debian/tmp/usr/include/kcharsets.h
debian/tmp/usr/include/kclientsocketbase.h
debian/tmp/usr/include/kclipboard.h
debian/tmp/usr/include/tdecmdlineargs.h
debian/tmp/usr/include/kcmenumngr.h
debian/tmp/usr/include/tdecmodulecontainer.h
debian/tmp/usr/include/tdecmodule.h
debian/tmp/usr/include/tdecmoduleinfo.h
debian/tmp/usr/include/tdecmoduleloader.h
debian/tmp/usr/include/tdecmoduleproxy.h
debian/tmp/usr/include/kcmultidialog.h
debian/tmp/usr/include/kcolorbtn.h
debian/tmp/usr/include/kcolorbutton.h
debian/tmp/usr/include/kcolorcombo.h
debian/tmp/usr/include/kcolordialog.h
debian/tmp/usr/include/kcolordlg.h
debian/tmp/usr/include/kcolordrag.h
debian/tmp/usr/include/kcombiview.h
debian/tmp/usr/include/kcombobox.h
debian/tmp/usr/include/kcommand.h
debian/tmp/usr/include/tdecompletionbox.h
debian/tmp/usr/include/kcompletion.h
debian/tmp/usr/include/tdeconfigbackend.h
debian/tmp/usr/include/tdeconfigbase.h
debian/tmp/usr/include/tdeconfigdata.h
debian/tmp/usr/include/tdeconfigdialog.h
debian/tmp/usr/include/tdeconfigdialogmanager.h
debian/tmp/usr/include/tdeconfig.h
debian/tmp/usr/include/tdeconfigskeleton.h
debian/tmp/usr/include/kcpuinfo.h
debian/tmp/usr/include/kcrash.h
debian/tmp/usr/include/kcursor.h
debian/tmp/usr/include/kcustommenueditor.h
debian/tmp/usr/include/kdatagramsocket.h
debian/tmp/usr/include/kdatastream.h
debian/tmp/usr/include/kdatatool.h
debian/tmp/usr/include/kdatepicker.h
debian/tmp/usr/include/kdatepik.h
debian/tmp/usr/include/kdatetbl.h
debian/tmp/usr/include/kdatetimewidget.h
debian/tmp/usr/include/kdatewidget.h
debian/tmp/usr/include/kdcopactionproxy.h
debian/tmp/usr/include/kdcoppropertyproxy.h
debian/tmp/usr/include/kdcopservicestarter.h
debian/tmp/usr/include/kdebugclasses.h
debian/tmp/usr/include/kdebug.h
debian/tmp/usr/include/kdedmodule.h
debian/tmp/usr/include/kde_file.h
#[!solaris-any] debian/tmp/usr/include/tdebacklightdevice.h
#[!solaris-any] debian/tmp/usr/include/tdebatterydevice.h
#[!solaris-any] debian/tmp/usr/include/tdecpudevice.h
#[!solaris-any] debian/tmp/usr/include/tdecryptographiccarddevice.h
#[!solaris-any] debian/tmp/usr/include/tdeeventdevice.h
#[!solaris-any] debian/tmp/usr/include/tdegenericdevice.h
#[!solaris-any] debian/tmp/usr/include/tdehardwaredevices.h
#[!solaris-any] debian/tmp/usr/include/tdehwcommontypes.h
#[!solaris-any] debian/tmp/usr/include/tdeinputdevice.h
#[!solaris-any] debian/tmp/usr/include/tdemainspowerdevice.h
#[!solaris-any] debian/tmp/usr/include/tdemonitordevice.h
#[!solaris-any] debian/tmp/usr/include/tdenetworkconnections.h
#[!solaris-any] debian/tmp/usr/include/tdenetworkdevice.h
#[!solaris-any] debian/tmp/usr/include/tderootsystemdevice.h
#[!solaris-any] debian/tmp/usr/include/tdesensordevice.h
#[!solaris-any] debian/tmp/usr/include/tdestoragedevice.h
debian/tmp/usr/include/tdelibs_export.h
debian/tmp/usr/include/kdemacros.h
debian/tmp/usr/include/tde.pot
debian/tmp/usr/include/tdeprint/driver.h
debian/tmp/usr/include/tdeprint/kiconselectaction.h
debian/tmp/usr/include/tdeprint/kmjob.h
debian/tmp/usr/include/tdeprint/kmjobmanager.h
debian/tmp/usr/include/tdeprint/kmjobviewer.h
debian/tmp/usr/include/tdeprint/kmmainview.h
debian/tmp/usr/include/tdeprint/kmmanager.h
debian/tmp/usr/include/tdeprint/kmobject.h
debian/tmp/usr/include/tdeprint/kmprinter.h
debian/tmp/usr/include/tdeprint/kmprinterpage.h
debian/tmp/usr/include/tdeprint/kmtimer.h
debian/tmp/usr/include/tdeprint/kpreloadobject.h
debian/tmp/usr/include/tdeprint/kprintdialog.h
debian/tmp/usr/include/tdeprint/kprintdialogpage.h
debian/tmp/usr/include/tdeprint/lpr/lprhandler.h
debian/tmp/usr/include/tdeprint/lpr/lprsettings.h
debian/tmp/usr/include/tdeprint/lpr/printcapentry.h
debian/tmp/usr/include/kdesktopfile.h
debian/tmp/usr/include/tdesu/client.h
debian/tmp/usr/include/tdesu/defaults.h
debian/tmp/usr/include/tdesu/kcookie.h
debian/tmp/usr/include/tdesu/tdesu_pty.h
debian/tmp/usr/include/tdesu/process.h
debian/tmp/usr/include/tdesu/pty.h
debian/tmp/usr/include/tdesu/ssh.h
debian/tmp/usr/include/tdesu/stub.h
debian/tmp/usr/include/tdesu/su.h
debian/tmp/usr/include/kde_terminal_interface.h
debian/tmp/usr/include/tdeversion.h
debian/tmp/usr/include/kdialogbase.h
debian/tmp/usr/include/kdialog.h
debian/tmp/usr/include/kdirlister.h
debian/tmp/usr/include/kdirnotify.h
debian/tmp/usr/include/kdirnotify_stub.h
debian/tmp/usr/include/tdediroperator.h
debian/tmp/usr/include/kdirselectdialog.h
debian/tmp/usr/include/kdirsize.h
debian/tmp/usr/include/kdirwatch.h
debian/tmp/usr/include/kdiskfreesp.h
debian/tmp/usr/include/kdockwidget.h
debian/tmp/usr/include/kdockwindow.h
debian/tmp/usr/include/kdrawutil.h
debian/tmp/usr/include/kdualcolorbtn.h
debian/tmp/usr/include/kdualcolorbutton.h
debian/tmp/usr/include/keditcl.h
debian/tmp/usr/include/keditlistbox.h
debian/tmp/usr/include/kedittoolbar.h
debian/tmp/usr/include/tdeemailsettings.h
debian/tmp/usr/include/kencodingfiledialog.h
debian/tmp/usr/include/kextendedsocket.h
debian/tmp/usr/include/kextsock.h
debian/tmp/usr/include/tdefiledetailview.h
debian/tmp/usr/include/tdefiledialog.h
debian/tmp/usr/include/tdefilefiltercombo.h
debian/tmp/usr/include/tdefilefilter.h
debian/tmp/usr/include/tdefile.h
debian/tmp/usr/include/tdefileiconview.h
debian/tmp/usr/include/tdefileitem.h
debian/tmp/usr/include/tdefilemetainfo.h
debian/tmp/usr/include/tdefilepreview.h
debian/tmp/usr/include/tdefilesharedlg.h
debian/tmp/usr/include/tdefileshare.h
debian/tmp/usr/include/tdefiletreebranch.h
debian/tmp/usr/include/tdefiletreeview.h
debian/tmp/usr/include/tdefiletreeviewitem.h
debian/tmp/usr/include/tdefileview.h
debian/tmp/usr/include/kfilterbase.h
debian/tmp/usr/include/kfilterdev.h
debian/tmp/usr/include/kfinddialog.h
debian/tmp/usr/include/kfind.h
debian/tmp/usr/include/tdefontcombo.h
debian/tmp/usr/include/tdefontdialog.h
debian/tmp/usr/include/tdefontrequester.h
debian/tmp/usr/include/kgenericfactory.h
debian/tmp/usr/include/kgenericfactory.tcc
debian/tmp/usr/include/kglobalaccel.h
debian/tmp/usr/include/tdeglobal.h
debian/tmp/usr/include/tdeglobalsettings.h
debian/tmp/usr/include/kguiitem.h
debian/tmp/usr/include/khelpmenu.h
debian/tmp/usr/include/khexedit/byteseditinterface.h
debian/tmp/usr/include/khexedit/charcolumninterface.h
debian/tmp/usr/include/khexedit/clipboardinterface.h
debian/tmp/usr/include/khexedit/valuecolumninterface.h
debian/tmp/usr/include/khexedit/zoominterface.h
debian/tmp/usr/include/tdehtmldefaults.h
debian/tmp/usr/include/tdehtml_events.h
debian/tmp/usr/include/tdehtml_part.h
debian/tmp/usr/include/tdehtml_settings.h
debian/tmp/usr/include/tdehtmlview.h
debian/tmp/usr/include/khttpproxysocketdevice.h
debian/tmp/usr/include/kicondialog.h
debian/tmp/usr/include/kiconeffect.h
debian/tmp/usr/include/kiconloader.h
debian/tmp/usr/include/kicontheme.h
debian/tmp/usr/include/kiconview.h
debian/tmp/usr/include/kiconviewsearchline.h
debian/tmp/usr/include/kidna.h
debian/tmp/usr/include/kimageeffect.h
debian/tmp/usr/include/kimagefilepreview.h
debian/tmp/usr/include/kimageio.h
debian/tmp/usr/include/kimiface.h
debian/tmp/usr/include/tdeimproxy.h
debian/tmp/usr/include/tdeimproxyiface.h
debian/tmp/usr/include/kinputdialog.h
debian/tmp/usr/include/kinstance.h
debian/tmp/usr/include/tdeio/authinfo.h
debian/tmp/usr/include/tdeiobuffer.h
debian/tmp/usr/include/tdeio/chmodjob.h
debian/tmp/usr/include/tdeio/connection.h
debian/tmp/usr/include/tdeio/davjob.h
debian/tmp/usr/include/tdeio/defaultprogress.h
debian/tmp/usr/include/tdeio/file.h
debian/tmp/usr/include/tdeio/forwardingslavebase.h
debian/tmp/usr/include/tdeio/global.h
debian/tmp/usr/include/tdeio/http.h
debian/tmp/usr/include/tdeio/http_slave_defaults.h
debian/tmp/usr/include/tdeio/ioslave_defaults.h
debian/tmp/usr/include/tdeio/jobclasses.h
debian/tmp/usr/include/tdeio/job.h
debian/tmp/usr/include/tdeio/tdesasl.h
debian/tmp/usr/include/tdeio/kmdbase.h
debian/tmp/usr/include/tdeio/kmdcodec.h
debian/tmp/usr/include/tdeio/tdentlm.h
debian/tmp/usr/include/tdeio/metainfojob.h
debian/tmp/usr/include/tdeio/netaccess.h
debian/tmp/usr/include/tdeio/observer.h
debian/tmp/usr/include/tdeio/passdlg.h
debian/tmp/usr/include/tdeio/paste.h
debian/tmp/usr/include/tdeio/previewjob.h
debian/tmp/usr/include/tdeio/progressbase.h
debian/tmp/usr/include/tdeio/renamedlg.h
debian/tmp/usr/include/tdeio/scheduler.h
debian/tmp/usr/include/tdeio/sessiondata.h
debian/tmp/usr/include/tdeio/skipdlg.h
debian/tmp/usr/include/tdeio/slavebase.h
debian/tmp/usr/include/tdeio/slaveconfig.h
debian/tmp/usr/include/tdeio/slave.h
debian/tmp/usr/include/tdeio/slaveinterface.h
debian/tmp/usr/include/tdeio/statusbarprogress.h
debian/tmp/usr/include/tdeio/tcpslavebase.h
debian/tmp/usr/include/tdeio/tdelficon.h
debian/tmp/usr/include/tdeio/thumbcreator.h
debian/tmp/usr/include/tdeio/uiserver.h
debian/tmp/usr/include/tdeio/uiserver_stub.h
debian/tmp/usr/include/kipc.h
debian/tmp/usr/include/kjanuswidget.h
debian/tmp/usr/include/kjs/completion.h
debian/tmp/usr/include/kjs/function.h
debian/tmp/usr/include/kjs/global.h
debian/tmp/usr/include/kjs/identifier.h
debian/tmp/usr/include/kjs/interpreter.h
debian/tmp/usr/include/kjs/list.h
debian/tmp/usr/include/kjs/lookup.h
debian/tmp/usr/include/kjs/object.h
debian/tmp/usr/include/kjs/operations.h
debian/tmp/usr/include/kjs/property_map.h
debian/tmp/usr/include/kjs/reference.h
debian/tmp/usr/include/kjs/reference_list.h
debian/tmp/usr/include/kjs/scope_chain.h
debian/tmp/usr/include/kjs/simple_number.h
debian/tmp/usr/include/kjs/types.h
debian/tmp/usr/include/kjs/ustring.h
debian/tmp/usr/include/kjs/value.h
debian/tmp/usr/include/kkeybutton.h
debian/tmp/usr/include/kkeydialog.h
debian/tmp/usr/include/kkeynative.h
debian/tmp/usr/include/klanguagebutton.h
debian/tmp/usr/include/klargefile.h
debian/tmp/usr/include/kled.h
debian/tmp/usr/include/klibloader.h
debian/tmp/usr/include/klineeditdlg.h
debian/tmp/usr/include/klineedit.h
debian/tmp/usr/include/tdelistbox.h
debian/tmp/usr/include/tdelistview.h
debian/tmp/usr/include/tdelistviewsearchline.h
debian/tmp/usr/include/tdelocale.h
debian/tmp/usr/include/klockfile.h
debian/tmp/usr/include/kmacroexpander.h
debian/tmp/usr/include/tdemainwindow.h
debian/tmp/usr/include/tdemainwindowiface.h
debian/tmp/usr/include/kmanagerselection.h
debian/tmp/usr/include/kmdcodec.h
debian/tmp/usr/include/tdemdichildarea.h
debian/tmp/usr/include/tdemdichildfrmcaption.h
debian/tmp/usr/include/tdemdichildfrm.h
debian/tmp/usr/include/tdemdichildview.h
debian/tmp/usr/include/tdemdidefines.h
debian/tmp/usr/include/tdemdi/global.h
debian/tmp/usr/include/tdemdiiterator.h
debian/tmp/usr/include/tdemdilistiterator.h
debian/tmp/usr/include/tdemdimainfrm.h
debian/tmp/usr/include/tdemdi/mainwindow.h
debian/tmp/usr/include/tdemdinulliterator.h
debian/tmp/usr/include/tdemdi/tabwidget.h
debian/tmp/usr/include/tdemditaskbar.h
debian/tmp/usr/include/tdemdi/toolviewaccessor.h
debian/tmp/usr/include/tdemditoolviewaccessor.h
debian/tmp/usr/include/tdemediaplayer/playerdcopobject.h
debian/tmp/usr/include/tdemediaplayer/player.h
debian/tmp/usr/include/tdemediaplayer/view.h
debian/tmp/usr/include/tdemenubar.h
debian/tmp/usr/include/tdemessagebox.h
debian/tmp/usr/include/kmimemagic.h
debian/tmp/usr/include/kmimesourcefactory.h
debian/tmp/usr/include/kmimetypechooser.h
debian/tmp/usr/include/kmimetype.h
debian/tmp/usr/include/kmimetyperesolver.h
debian/tmp/usr/include/kmountpoint.h
debian/tmp/usr/include/tdemulticastsocketdevice.h
debian/tmp/usr/include/tdemulticastsocket.h
debian/tmp/usr/include/tdemultipledrag.h
debian/tmp/usr/include/tdemultitabbar.h
debian/tmp/usr/include/knetworkinterface.h
debian/tmp/usr/include/tdenewstuff/downloaddialog.h
debian/tmp/usr/include/tdenewstuff/engine.h
debian/tmp/usr/include/tdenewstuff/entry.h
debian/tmp/usr/include/tdenewstuff/knewstuffbutton.h
debian/tmp/usr/include/tdenewstuff/knewstuffgeneric.h
debian/tmp/usr/include/tdenewstuff/knewstuff.h
debian/tmp/usr/include/tdenewstuff/knewstuffsecure.h
debian/tmp/usr/include/tdenewstuff/providerdialog.h
debian/tmp/usr/include/tdenewstuff/provider.h
debian/tmp/usr/include/tdenewstuff/uploaddialog.h
debian/tmp/usr/include/knfsshare.h
debian/tmp/usr/include/knotifyclient.h
debian/tmp/usr/include/knotifydialog.h
debian/tmp/usr/include/knotifywidgetbase.h
debian/tmp/usr/include/knuminput.h
debian/tmp/usr/include/knumvalidator.h
debian/tmp/usr/include/kopenssl.h
debian/tmp/usr/include/kopenwith.h
debian/tmp/usr/include/kpalette.h
debian/tmp/usr/include/kpanelapplet.h
debian/tmp/usr/include/kpanelappmenu.h
debian/tmp/usr/include/kpanelextension.h
debian/tmp/usr/include/kpanelmenu.h
debian/tmp/usr/include/tdeparts/browserextension.h
debian/tmp/usr/include/tdeparts/browserinterface.h
debian/tmp/usr/include/tdeparts/browserrun.h
debian/tmp/usr/include/tdeparts/componentfactory.h
debian/tmp/usr/include/tdeparts/dockmainwindow.h
debian/tmp/usr/include/tdeparts/event.h
debian/tmp/usr/include/tdeparts/factory.h
debian/tmp/usr/include/tdeparts/genericfactory.h
debian/tmp/usr/include/tdeparts/historyprovider.h
debian/tmp/usr/include/tdeparts/mainwindow.h
debian/tmp/usr/include/tdeparts/part.h
debian/tmp/usr/include/tdeparts/partmanager.h
debian/tmp/usr/include/tdeparts/plugin.h
debian/tmp/usr/include/tdeparts/statusbarextension.h
debian/tmp/usr/include/kpassdlg.h
debian/tmp/usr/include/kpassivepopup.h
debian/tmp/usr/include/kpixmapeffect.h
debian/tmp/usr/include/kpixmap.h
debian/tmp/usr/include/kpixmapio.h
debian/tmp/usr/include/kpixmapprovider.h
debian/tmp/usr/include/kpixmapregionselectordialog.h
debian/tmp/usr/include/kpixmapregionselectorwidget.h
debian/tmp/usr/include/kpixmapsplitter.h
debian/tmp/usr/include/kplugininfo.h
debian/tmp/usr/include/kpluginselector.h
debian/tmp/usr/include/tdepopupmenu.h
debian/tmp/usr/include/kpreviewwidgetbase.h
debian/tmp/usr/include/kprintaction.h
debian/tmp/usr/include/kprinter.h
debian/tmp/usr/include/kprocctrl.h
debian/tmp/usr/include/kprocess.h
debian/tmp/usr/include/kprocio.h
debian/tmp/usr/include/kprogress.h
debian/tmp/usr/include/kprogressbox.h
debian/tmp/usr/include/kpropertiesdialog.h
debian/tmp/usr/include/kpropsdlg.h
debian/tmp/usr/include/kprotocolinfo.h
debian/tmp/usr/include/tdeprotocolmanager.h
debian/tmp/usr/include/kpty.h
debian/tmp/usr/include/kpushbutton.h
debian/tmp/usr/include/krandomsequence.h
debian/tmp/usr/include/tderecentdocument.h
debian/tmp/usr/include/kregexpeditorinterface.h
debian/tmp/usr/include/kregexp.h
debian/tmp/usr/include/kremoteencoding.h
debian/tmp/usr/include/kreplacedialog.h
debian/tmp/usr/include/kreplace.h
debian/tmp/usr/include/kresolver.h
debian/tmp/usr/include/tdepassivepopupstack.h
debian/tmp/usr/include/tderesources/configdialog.h
debian/tmp/usr/include/tderesources/configpage.h
debian/tmp/usr/include/tderesources/configwidget.h
debian/tmp/usr/include/tderesources/factory.h
debian/tmp/usr/include/tderesources/manager.h
debian/tmp/usr/include/tderesources/manageriface.h
debian/tmp/usr/include/tderesources/managerimpl.h
debian/tmp/usr/include/tderesources/resource.h
debian/tmp/usr/include/tderesources/selectdialog.h
debian/tmp/usr/include/krestrictedline.h
debian/tmp/usr/include/kreverseresolver.h
debian/tmp/usr/include/krfcdate.h
debian/tmp/usr/include/krootpixmap.h
debian/tmp/usr/include/krootprop.h
debian/tmp/usr/include/kruler.h
debian/tmp/usr/include/krun.h
debian/tmp/usr/include/ksambashare.h
debian/tmp/usr/include/ksavefile.h
debian/tmp/usr/include/kscan.h
debian/tmp/usr/include/ksconfig.h
debian/tmp/usr/include/tdescreensaver.h
debian/tmp/usr/include/tdescreensaver_vroot.h
debian/tmp/usr/include/kscrollview.h
debian/tmp/usr/include/tdeselect.h
debian/tmp/usr/include/kseparator.h
debian/tmp/usr/include/kserversocket.h
debian/tmp/usr/include/kservicegroup.h
debian/tmp/usr/include/kservice.h
debian/tmp/usr/include/kservicetype.h
debian/tmp/usr/include/ksettings/componentsdialog.h
debian/tmp/usr/include/ksettings/dialog.h
debian/tmp/usr/include/ksettings/dispatcher.h
debian/tmp/usr/include/ksettings/pluginpage.h
debian/tmp/usr/include/ksharedpixmap.h
debian/tmp/usr/include/ksharedptr.h
debian/tmp/usr/include/kshellcompletion.h
debian/tmp/usr/include/kshell.h
debian/tmp/usr/include/tdeshortcutdialog.h
debian/tmp/usr/include/tdeshortcut.h
debian/tmp/usr/include/tdeshortcutlist.h
debian/tmp/usr/include/kshred.h
debian/tmp/usr/include/ksimpleconfig.h
debian/tmp/usr/include/ksmimecrypto.h
debian/tmp/usr/include/ksockaddr.h
debian/tmp/usr/include/tdesocketaddress.h
debian/tmp/usr/include/tdesocketbase.h
debian/tmp/usr/include/tdesocketdevice.h
debian/tmp/usr/include/ksock.h
debian/tmp/usr/include/ksocks.h
debian/tmp/usr/include/ksockssocketdevice.h
debian/tmp/usr/include/ksortablevaluelist.h
debian/tmp/usr/include/kspeech.h
debian/tmp/usr/include/kspeechsink.h
debian/tmp/usr/include/tdespell2/backgroundchecker.h
debian/tmp/usr/include/tdespell2/broker.h
debian/tmp/usr/include/tdespell2/configdialog.h
debian/tmp/usr/include/tdespell2/configwidget.h
debian/tmp/usr/include/tdespell2/defaultdictionary.h
debian/tmp/usr/include/tdespell2/dialog.h
debian/tmp/usr/include/tdespell2/dictionary.h
debian/tmp/usr/include/tdespell2/filter.h
debian/tmp/usr/include/tdespell2/highlighter.h
debian/tmp/usr/include/tdespell2/settings.h
debian/tmp/usr/include/tdespelldlg.h
debian/tmp/usr/include/tdespell.h
debian/tmp/usr/include/ksplashscreen.h
debian/tmp/usr/include/ksqueezedtextlabel.h
debian/tmp/usr/include/ksslall.h
debian/tmp/usr/include/ksslcertchain.h
debian/tmp/usr/include/ksslcertdlg.h
debian/tmp/usr/include/ksslcertificatecache.h
debian/tmp/usr/include/ksslcertificatefactory.h
debian/tmp/usr/include/ksslcertificate.h
debian/tmp/usr/include/ksslcertificatehome.h
debian/tmp/usr/include/ksslconfig.h
debian/tmp/usr/include/ksslconnectioninfo.h
debian/tmp/usr/include/kssl.h
debian/tmp/usr/include/ksslinfodlg.h
debian/tmp/usr/include/ksslkeygen.h
debian/tmp/usr/include/ksslpeerinfo.h
debian/tmp/usr/include/ksslpemcallback.h
debian/tmp/usr/include/ksslpkcs12.h
debian/tmp/usr/include/ksslpkcs7.h
debian/tmp/usr/include/ksslsession.h
debian/tmp/usr/include/ksslsettings.h
debian/tmp/usr/include/ksslsigners.h
debian/tmp/usr/include/ksslutils.h
debian/tmp/usr/include/ksslx509map.h
debian/tmp/usr/include/ksslx509v3.h
debian/tmp/usr/include/kstandarddirs.h
debian/tmp/usr/include/tdestartupinfo.h
debian/tmp/usr/include/kstaticdeleter.h
debian/tmp/usr/include/kstatusbar.h
debian/tmp/usr/include/tdestdaccel.h
debian/tmp/usr/include/kstdaction.h
debian/tmp/usr/include/kstddirs.h
debian/tmp/usr/include/kstdguiitem.h
debian/tmp/usr/include/kstreamsocket.h
debian/tmp/usr/include/kstringhandler.h
debian/tmp/usr/include/kstringvalidator.h
debian/tmp/usr/include/tdestyle.h
debian/tmp/usr/include/ksvgiconengine.h
debian/tmp/usr/include/kswitchlanguagedialog.h
debian/tmp/usr/include/tdesycocaentry.h
debian/tmp/usr/include/tdesycoca.h
debian/tmp/usr/include/tdesycocatype.h
debian/tmp/usr/include/ksyntaxhighlighter.h
debian/tmp/usr/include/ksystemtray.h
debian/tmp/usr/include/ktabbar.h
debian/tmp/usr/include/ktabctl.h
debian/tmp/usr/include/ktabwidget.h
debian/tmp/usr/include/ktar.h
debian/tmp/usr/include/ktempdir.h
debian/tmp/usr/include/tdetempfile.h
debian/tmp/usr/include/ktextbrowser.h
debian/tmp/usr/include/ktextedit.h
debian/tmp/usr/include/tdetexteditor/blockselectioninterface.h
debian/tmp/usr/include/tdetexteditor/clipboardinterface.h
debian/tmp/usr/include/tdetexteditor/codecompletioninterface.h
debian/tmp/usr/include/tdetexteditor/configinterfaceextension.h
debian/tmp/usr/include/tdetexteditor/configinterface.h
debian/tmp/usr/include/tdetexteditor/cursorinterface.h
debian/tmp/usr/include/tdetexteditor/document.h
debian/tmp/usr/include/tdetexteditor/documentinfo.h
debian/tmp/usr/include/tdetexteditor/dynwordwrapinterface.h
debian/tmp/usr/include/tdetexteditor/editinterfaceext.h
debian/tmp/usr/include/tdetexteditor/editinterface.h
debian/tmp/usr/include/tdetexteditor/editorchooser.h
debian/tmp/usr/include/tdetexteditor/editor.h
debian/tmp/usr/include/tdetexteditor/encodinginterface.h
debian/tmp/usr/include/tdetexteditor/highlightinginterface.h
debian/tmp/usr/include/tdetexteditor/markinterfaceextension.h
debian/tmp/usr/include/tdetexteditor/markinterface.h
debian/tmp/usr/include/tdetexteditor/plugin.h
debian/tmp/usr/include/tdetexteditor/popupmenuinterface.h
debian/tmp/usr/include/tdetexteditor/printinterface.h
debian/tmp/usr/include/tdetexteditor/searchinterface.h
debian/tmp/usr/include/tdetexteditor/selectionextdcopinterface.h
debian/tmp/usr/include/tdetexteditor/selectioninterfaceext.h
debian/tmp/usr/include/tdetexteditor/selectioninterface.h
debian/tmp/usr/include/tdetexteditor/sessionconfiginterface.h
debian/tmp/usr/include/tdetexteditor/templateinterface.h
debian/tmp/usr/include/tdetexteditor/texthintinterface.h
debian/tmp/usr/include/tdetexteditor/undointerface.h
debian/tmp/usr/include/tdetexteditor/variableinterface.h
debian/tmp/usr/include/tdetexteditor/viewcursorinterface.h
debian/tmp/usr/include/tdetexteditor/view.h
debian/tmp/usr/include/tdetexteditor/viewstatusmsginterface.h
debian/tmp/usr/include/tdetexteditor/wordwrapinterface.h
debian/tmp/usr/include/ktimewidget.h
debian/tmp/usr/include/ktimezones.h
debian/tmp/usr/include/ktimezonewidget.h
debian/tmp/usr/include/ktip.h
debian/tmp/usr/include/tdetoolbarbutton.h
debian/tmp/usr/include/tdetoolbar.h
debian/tmp/usr/include/tdetoolbarlabelaction.h
debian/tmp/usr/include/tdetoolbarradiogroup.h
debian/tmp/usr/include/ktrader.h
debian/tmp/usr/include/ktypelist.h
debian/tmp/usr/include/kuniqueapp.h
debian/tmp/usr/include/kuniqueapplication.h
debian/tmp/usr/include/tdeunittest/module.h
debian/tmp/usr/include/tdeunittest/runner.h
debian/tmp/usr/include/tdeunittest/tester.h
debian/tmp/usr/include/kunload.h
debian/tmp/usr/include/kurifilter.h
debian/tmp/usr/include/kurlbar.h
debian/tmp/usr/include/kurlcombobox.h
debian/tmp/usr/include/kurlcompletion.h
debian/tmp/usr/include/kurldrag.h
debian/tmp/usr/include/kurl.h
debian/tmp/usr/include/kurllabel.h
debian/tmp/usr/include/kurlpixmapprovider.h
debian/tmp/usr/include/kurlrequesterdlg.h
debian/tmp/usr/include/kurlrequester.h
debian/tmp/usr/include/kuser.h
debian/tmp/usr/include/kuserprofile.h
debian/tmp/usr/include/kvmallocator.h
debian/tmp/usr/include/tdewallet.h
debian/tmp/usr/include/tdewallettypes.h
debian/tmp/usr/include/twindowinfo.h
debian/tmp/usr/include/twindowlistmenu.h
debian/tmp/usr/include/twin.h
debian/tmp/usr/include/twinmodule.h
debian/tmp/usr/include/kwizard.h
debian/tmp/usr/include/kwordwrap.h
debian/tmp/usr/include/kxerrorhandler.h
debian/tmp/usr/include/kxmessages.h
debian/tmp/usr/include/kxmlguibuilder.h
debian/tmp/usr/include/kxmlguiclient.h
debian/tmp/usr/include/kxmlguifactory.h
debian/tmp/usr/include/kxmlgui.h
debian/tmp/usr/include/kzip.h
debian/tmp/usr/include/libtderandr/ktimerdialog.h
debian/tmp/usr/include/libtderandr/libtderandr.h
debian/tmp/usr/include/libtderandr/lowlevel_randr.h
debian/tmp/usr/include/libtderandr/randr.h
debian/tmp/usr/include/libtdersync/tdersync.h
debian/tmp/usr/include/libtdemid/alsaout.h
debian/tmp/usr/include/libtdemid/dattypes.h
debian/tmp/usr/include/libtdemid/deviceman.h
debian/tmp/usr/include/libtdemid/fmout.h
debian/tmp/usr/include/libtdemid/gusout.h
debian/tmp/usr/include/libtdemid/libtdemid.h
debian/tmp/usr/include/libtdemid/midfile.h
debian/tmp/usr/include/libtdemid/midimapper.h
debian/tmp/usr/include/libtdemid/midiout.h
debian/tmp/usr/include/libtdemid/midispec.h
debian/tmp/usr/include/libtdemid/midistat.h
debian/tmp/usr/include/libtdemid/mt32togm.h
debian/tmp/usr/include/libtdemid/notearray.h
debian/tmp/usr/include/libtdemid/player.h
debian/tmp/usr/include/libtdemid/synthout.h
debian/tmp/usr/include/libtdemid/track.h
debian/tmp/usr/include/libtdemid/voiceman.h
debian/tmp/usr/include/netwm_def.h
debian/tmp/usr/include/netwm.h
debian/tmp/usr/include/qxembed.h
debian/tmp/usr/include/renamedlgplugin.h
debian/tmp/usr/include/scriptclientinterface.h
debian/tmp/usr/include/scriptinterface.h
debian/tmp/usr/include/scriptmanager.h
debian/tmp/usr/include/networkstatuscommon.h
debian/tmp/usr/include/networkstatusiface.h
debian/tmp/usr/include/networkstatusindicator.h
debian/tmp/usr/include/connectionmanager.h
debian/tmp/usr/include/serviceiface.h
debian/tmp/usr/include/provideriface.h
#debian/tmp/usr/include/kdemm
debian/tmp/usr/lib/*/libnetworkstatus.la
debian/tmp/usr/lib/*/libnetworkstatus.so
debian/tmp/usr/lib/*/libconnectionmanager.la
debian/tmp/usr/lib/*/libconnectionmanager.so
#debian/tmp/usr/lib/*/libkdemm.la
#debian/tmp/usr/lib/*/libkdemm.so
debian/tmp/usr/lib/*/libartskde.la
debian/tmp/usr/lib/*/libartskde.so
debian/tmp/usr/lib/*/libDCOP.la
debian/tmp/usr/lib/*/libDCOP.so
debian/tmp/usr/lib/*/libtdeabc_dir.la
debian/tmp/usr/lib/*/libtdeabc_dir.so
debian/tmp/usr/lib/*/libtdeabc_file.la
debian/tmp/usr/lib/*/libtdeabc_file.so
debian/tmp/usr/lib/*/libtdeabc_net.la
debian/tmp/usr/lib/*/libtdeabc_net.so
debian/tmp/usr/lib/*/libtdeabc.la
debian/tmp/usr/lib/*/libtdeabc_ldaptdeio.la
debian/tmp/usr/lib/*/libtdeabc_ldaptdeio.so
debian/tmp/usr/lib/*/libtdeabc.so
debian/tmp/usr/lib/*/libkatepartinterfaces.la
debian/tmp/usr/lib/*/libkatepartinterfaces.so
debian/tmp/usr/lib/*/libtdecore.la
debian/tmp/usr/lib/*/libtdecore.so
debian/tmp/usr/lib/*/libtdefakes.la
debian/tmp/usr/lib/*/libtdefakes_nonpic.a
debian/tmp/usr/lib/*/libtdefakes_pic.a
debian/tmp/usr/lib/*/libtdefakes.so
debian/tmp/usr/lib/*/libtdefx.la
debian/tmp/usr/lib/*/libtdefx.so
debian/tmp/usr/lib/*/libtdeinit_cupsdconf.la
debian/tmp/usr/lib/*/libtdeinit_dcopserver.la
debian/tmp/usr/lib/*/libtdeinit_kaddprinterwizard.la
debian/tmp/usr/lib/*/libtdeinit_tdebuildsycoca.la
debian/tmp/usr/lib/*/libtdeinit_tdecmshell.la
debian/tmp/usr/lib/*/libtdeinit_tdeconf_update.la
debian/tmp/usr/lib/*/libtdeinit_kcookiejar.la
debian/tmp/usr/lib/*/libtdeinit_kded.la
debian/tmp/usr/lib/*/libtdeinit_tdeio_http_cache_cleaner.la
debian/tmp/usr/lib/*/libtdeinit_tdeio_uiserver.la
debian/tmp/usr/lib/*/libtdeinit_tdelauncher.la
debian/tmp/usr/lib/*/libtdeprint.la
debian/tmp/usr/lib/*/libtdeprint_management.la
debian/tmp/usr/lib/*/libtdeprint_management.so
debian/tmp/usr/lib/*/libtdeprint.so
debian/tmp/usr/lib/*/libtdesasl.la
debian/tmp/usr/lib/*/libtdesasl.so
debian/tmp/usr/lib/*/libtdesu.la
debian/tmp/usr/lib/*/libtdesu.so
debian/tmp/usr/lib/*/libtdeui.la
debian/tmp/usr/lib/*/libtdeui.so
debian/tmp/usr/lib/*/libtdednssd.la
debian/tmp/usr/lib/*/libtdednssd.so
debian/tmp/usr/lib/*/libtdehtml.la
debian/tmp/usr/lib/*/libtdehtml.so
debian/tmp/usr/lib/*/libtdeimproxy.la
debian/tmp/usr/lib/*/libtdeimproxy.so
debian/tmp/usr/lib/*/libtdeio.la
debian/tmp/usr/lib/*/libtdeio.so
debian/tmp/usr/lib/*/libkjava.la
debian/tmp/usr/lib/*/libkjava.so
debian/tmp/usr/lib/*/libkjs.la
debian/tmp/usr/lib/*/libkjs.so
debian/tmp/usr/lib/*/libtdemdi2.la
debian/tmp/usr/lib/*/libtdemdi2.so
debian/tmp/usr/lib/*/libtdemdi.la
debian/tmp/usr/lib/*/libtdemdi.so
debian/tmp/usr/lib/*/libtdemediaplayer.la
debian/tmp/usr/lib/*/libtdemediaplayer.so
debian/tmp/usr/lib/*/libtdemid.la
debian/tmp/usr/lib/*/libtdemid.so
debian/tmp/usr/lib/*/libtdenewstuff.la
debian/tmp/usr/lib/*/libtdenewstuff.so
debian/tmp/usr/lib/*/libtdentlm.la
debian/tmp/usr/lib/*/libtdentlm.so
debian/tmp/usr/lib/*/libtdeparts.la
debian/tmp/usr/lib/*/libtdeparts.so
debian/tmp/usr/lib/*/libtderandr.la
debian/tmp/usr/lib/*/libtderandr.so
debian/tmp/usr/lib/*/libtdersync.la
debian/tmp/usr/lib/*/libtdersync.so
debian/tmp/usr/lib/*/libtderesources.la
debian/tmp/usr/lib/*/libtderesources.so
debian/tmp/usr/lib/*/libtdescreensaver.la
debian/tmp/usr/lib/*/libtdescreensaver.so
debian/tmp/usr/lib/*/libtdescript.la
debian/tmp/usr/lib/*/libtdescript.so
debian/tmp/usr/lib/*/libtdespell2.la
debian/tmp/usr/lib/*/libtdespell2.so
debian/tmp/usr/lib/*/libtdespell.la
debian/tmp/usr/lib/*/libtdespell.so
debian/tmp/usr/lib/*/libtdetexteditor.la
debian/tmp/usr/lib/*/libtdetexteditor.so
debian/tmp/usr/lib/*/libtdeunittest.la
debian/tmp/usr/lib/*/libtdeunittest.so
debian/tmp/usr/lib/*/libtdeutils.la
debian/tmp/usr/lib/*/libtdeutils.so
debian/tmp/usr/lib/*/libtdewalletbackend.la
debian/tmp/usr/lib/*/libtdewalletbackend.so
debian/tmp/usr/lib/*/libtdewalletclient.la
debian/tmp/usr/lib/*/libtdewalletclient.so
debian/tmp/usr/lib/*/libvcard.la
debian/tmp/usr/lib/*/libvcard.so
debian/tmp/usr/share/cmake
debian/tmp/usr/lib/*/pkgconfig/tdelibs.pc

@ -0,0 +1,5 @@
./debian/man/tdeconfig_compiler-trinity.1
./debian/man/ksvgtopng-trinity.1
./debian/man/tdeunittestmodrunner-trinity.1
./debian/man/maketdewidgets-trinity.1
./debian/man/preparetips-trinity.1

@ -0,0 +1 @@
debian/tmp/usr/share/doc/tde/HTML/en/tdelibs-apidocs/*

@ -0,0 +1,329 @@
debian/tmp/usr/bin/artsmessage
debian/tmp/usr/bin/cupsdconf
debian/tmp/usr/bin/cupsdoprint
debian/tmp/usr/bin/dcop
debian/tmp/usr/bin/dcopclient
debian/tmp/usr/bin/dcopfind
debian/tmp/usr/bin/dcopobject
debian/tmp/usr/bin/dcopquit
debian/tmp/usr/bin/dcopref
debian/tmp/usr/bin/dcopserver
debian/tmp/usr/bin/dcopserver_shutdown
debian/tmp/usr/bin/dcopstart
debian/tmp/usr/bin/filesharelist
debian/tmp/usr/bin/fileshareset
debian/tmp/usr/bin/imagetops
debian/tmp/usr/bin/tdeab2tdeabc
debian/tmp/usr/bin/kaddprinterwizard
debian/tmp/usr/bin/tdebuildsycoca
debian/tmp/usr/bin/tdeconf_update
debian/tmp/usr/bin/kcookiejar
debian/tmp/usr/bin/tde-config
debian/tmp/usr/bin/kded
debian/tmp/usr/bin/tdeinit
debian/tmp/usr/bin/tdeinit_shutdown
debian/tmp/usr/bin/tdeinit_wrapper
#[!solaris-any] debian/tmp/usr/bin/tde_dbus_hardwarecontrol
debian/tmp/usr/bin/kdetcompmgr
debian/tmp/usr/bin/tde-menu
debian/tmp/usr/bin/tdesu_stub
debian/tmp/usr/bin/kdontchangethehostname
debian/tmp/usr/bin/tdedostartupconfig
debian/tmp/usr/bin/tdefile
debian/tmp/usr/bin/kfmexec
debian/tmp/usr/bin/kgrantpty
debian/tmp/usr/bin/tdehotnewstuff
debian/tmp/usr/bin/kinstalltheme
debian/tmp/usr/bin/tdeioexec
debian/tmp/usr/bin/tdeio_http_cache_cleaner
debian/tmp/usr/bin/tdeioslave
debian/tmp/usr/bin/tdeio_uiserver
debian/tmp/usr/bin/tdelauncher
debian/tmp/usr/bin/tdemailservice
debian/tmp/usr/bin/kpac_dhcp_helper
debian/tmp/usr/bin/tdesendbugmail
debian/tmp/usr/bin/kshell
debian/tmp/usr/bin/tdestartupconfig
debian/tmp/usr/bin/tdetelnetservice
debian/tmp/usr/bin/tdetradertest
debian/tmp/usr/bin/kwrapper
debian/tmp/usr/bin/lnusertemp
debian/tmp/usr/bin/make_driver_db_cups
debian/tmp/usr/bin/make_driver_db_lpr
debian/tmp/usr/bin/meinproc
#[!solaris-any] debian/tmp/usr/bin/tdelfeditor
debian/tmp/usr/bin/tdeiso_info
debian/tmp/usr/bin/start_tdeinit
debian/tmp/usr/bin/start_tdeinit_wrapper
debian/tmp/usr/lib/*/trinity/cupsdconf.la
debian/tmp/usr/lib/*/trinity/cupsdconf.so
debian/tmp/usr/lib/*/trinity/dcopserver.la
debian/tmp/usr/lib/*/trinity/dcopserver.so
debian/tmp/usr/lib/*/trinity/tdeabc_dir.la
debian/tmp/usr/lib/*/trinity/tdeabc_dir.so
debian/tmp/usr/lib/*/trinity/tdeabc_file.la
debian/tmp/usr/lib/*/trinity/tdeabc_file.so
debian/tmp/usr/lib/*/trinity/tdeabc_net.la
debian/tmp/usr/lib/*/trinity/tdeabc_net.so
debian/tmp/usr/lib/*/trinity/tdeabcformat_binary.la
debian/tmp/usr/lib/*/trinity/tdeabcformat_binary.so
debian/tmp/usr/lib/*/trinity/tdeabc_ldaptdeio.la
debian/tmp/usr/lib/*/trinity/tdeabc_ldaptdeio.so
debian/tmp/usr/lib/*/trinity/kaddprinterwizard.la
debian/tmp/usr/lib/*/trinity/kaddprinterwizard.so
debian/tmp/usr/lib/*/trinity/tdebuildsycoca.la
debian/tmp/usr/lib/*/trinity/tdebuildsycoca.so
debian/tmp/usr/lib/*/trinity/kbzip2filter.la
debian/tmp/usr/lib/*/trinity/kbzip2filter.so
debian/tmp/usr/lib/*/trinity/kcm_tderesources.la
debian/tmp/usr/lib/*/trinity/kcm_tderesources.so
debian/tmp/usr/lib/*/trinity/tdecmshell.la
debian/tmp/usr/lib/*/trinity/tdecmshell.so
debian/tmp/usr/lib/*/trinity/tdeconf_update.la
debian/tmp/usr/lib/*/trinity/tdeconf_update.so
debian/tmp/usr/lib/*/trinity/kcookiejar.la
debian/tmp/usr/lib/*/trinity/kcookiejar.so
debian/tmp/usr/lib/*/trinity/kded_kcookiejar.la
debian/tmp/usr/lib/*/trinity/kded_kcookiejar.so
debian/tmp/usr/lib/*/trinity/kded_tdeprintd.la
debian/tmp/usr/lib/*/trinity/kded_tdeprintd.so
debian/tmp/usr/lib/*/trinity/kded_kdetrayproxy.la
debian/tmp/usr/lib/*/trinity/kded_kdetrayproxy.so
debian/tmp/usr/lib/*/trinity/kded_kpasswdserver.la
debian/tmp/usr/lib/*/trinity/kded_kpasswdserver.so
debian/tmp/usr/lib/*/trinity/kded_kssld.la
debian/tmp/usr/lib/*/trinity/kded_kssld.so
debian/tmp/usr/lib/*/trinity/kded_tdewalletd.la
debian/tmp/usr/lib/*/trinity/kded_tdewalletd.so
debian/tmp/usr/lib/*/trinity/kded.la
debian/tmp/usr/lib/*/trinity/kded_proxyscout.la
debian/tmp/usr/lib/*/trinity/kded_proxyscout.so
debian/tmp/usr/lib/*/trinity/kded.so
debian/tmp/usr/lib/*/trinity/tdeprint_cups.la
debian/tmp/usr/lib/*/trinity/tdeprint_cups.so
debian/tmp/usr/lib/*/trinity/tdeprint_ext.la
debian/tmp/usr/lib/*/trinity/tdeprint_ext.so
debian/tmp/usr/lib/*/trinity/tdeprint_lpdunix.la
debian/tmp/usr/lib/*/trinity/tdeprint_lpdunix.so
debian/tmp/usr/lib/*/trinity/tdeprint_lpr.la
debian/tmp/usr/lib/*/trinity/tdeprint_lpr.so
debian/tmp/usr/lib/*/trinity/tdeprint_rlpr.la
debian/tmp/usr/lib/*/trinity/tdeprint_rlpr.so
debian/tmp/usr/lib/*/trinity/tdeprint_tool_escputil.la
debian/tmp/usr/lib/*/trinity/tdeprint_tool_escputil.so
debian/tmp/usr/lib/*/trinity/tdefileaudiopreview.la
debian/tmp/usr/lib/*/trinity/tdefileaudiopreview.so
debian/tmp/usr/lib/*/trinity/kgzipfilter.la
debian/tmp/usr/lib/*/trinity/kgzipfilter.so
debian/tmp/usr/lib/*/trinity/tdehtmlimagepart.la
debian/tmp/usr/lib/*/trinity/tdehtmlimagepart.so
debian/tmp/usr/lib/*/trinity/kimg_dds.la
debian/tmp/usr/lib/*/trinity/kimg_dds.so
debian/tmp/usr/lib/*/trinity/kimg_eps.la
debian/tmp/usr/lib/*/trinity/kimg_eps.so
debian/tmp/usr/lib/*/trinity/kimg_exr.la
debian/tmp/usr/lib/*/trinity/kimg_exr.so
debian/tmp/usr/lib/*/trinity/kimg_hdr.la
debian/tmp/usr/lib/*/trinity/kimg_hdr.so
debian/tmp/usr/lib/*/trinity/kimg_ico.la
debian/tmp/usr/lib/*/trinity/kimg_ico.so
debian/tmp/usr/lib/*/trinity/kimg_jp2.la
debian/tmp/usr/lib/*/trinity/kimg_jp2.so
debian/tmp/usr/lib/*/trinity/kimg_pcx.la
debian/tmp/usr/lib/*/trinity/kimg_pcx.so
debian/tmp/usr/lib/*/trinity/kimg_psd.la
debian/tmp/usr/lib/*/trinity/kimg_psd.so
debian/tmp/usr/lib/*/trinity/kimg_rgb.la
debian/tmp/usr/lib/*/trinity/kimg_rgb.so
debian/tmp/usr/lib/*/trinity/kimg_tga.la
debian/tmp/usr/lib/*/trinity/kimg_tga.so
debian/tmp/usr/lib/*/trinity/kimg_tiff.la
debian/tmp/usr/lib/*/trinity/kimg_tiff.so
debian/tmp/usr/lib/*/trinity/kimg_xcf.la
debian/tmp/usr/lib/*/trinity/kimg_xcf.so
debian/tmp/usr/lib/*/trinity/kimg_xview.la
debian/tmp/usr/lib/*/trinity/kimg_xview.so
debian/tmp/usr/lib/*/trinity/tdeio_file.la
debian/tmp/usr/lib/*/trinity/tdeio_file.so
debian/tmp/usr/lib/*/trinity/tdeio_ftp.la
debian/tmp/usr/lib/*/trinity/tdeio_ftp.so
debian/tmp/usr/lib/*/trinity/tdeio_ghelp.la
debian/tmp/usr/lib/*/trinity/tdeio_ghelp.so
debian/tmp/usr/lib/*/trinity/tdeio_help.la
debian/tmp/usr/lib/*/trinity/tdeio_help.so
debian/tmp/usr/lib/*/trinity/tdeio_http_cache_cleaner.la
debian/tmp/usr/lib/*/trinity/tdeio_http_cache_cleaner.so
debian/tmp/usr/lib/*/trinity/tdeio_http.la
debian/tmp/usr/lib/*/trinity/tdeio_http.so
debian/tmp/usr/lib/*/trinity/tdeio_iso.la
debian/tmp/usr/lib/*/trinity/tdeio_iso.so
debian/tmp/usr/lib/*/trinity/tdeio_metainfo.la
debian/tmp/usr/lib/*/trinity/tdeio_metainfo.so
debian/tmp/usr/lib/*/trinity/tdeio_uiserver.la
debian/tmp/usr/lib/*/trinity/tdeio_uiserver.so
debian/tmp/usr/lib/*/trinity/kjavaappletviewer.la
debian/tmp/usr/lib/*/trinity/kjavaappletviewer.so
debian/tmp/usr/lib/*/trinity/tdelauncher.la
debian/tmp/usr/lib/*/trinity/tdelauncher.so
debian/tmp/usr/lib/*/trinity/knotify.la
debian/tmp/usr/lib/*/trinity/knotify.so
debian/tmp/usr/lib/*/trinity/tdespell_aspell.la
debian/tmp/usr/lib/*/trinity/tdespell_aspell.so
debian/tmp/usr/lib/*/trinity/tdespell_hspell.la
debian/tmp/usr/lib/*/trinity/tdespell_hspell.so
debian/tmp/usr/lib/*/trinity/tdespell_ispell.la
debian/tmp/usr/lib/*/trinity/tdespell_ispell.so
debian/tmp/usr/lib/*/trinity/tdestyle_highcontrast_config.la
debian/tmp/usr/lib/*/trinity/tdestyle_highcontrast_config.so
debian/tmp/usr/lib/*/trinity/tdestyle_plastik_config.la
debian/tmp/usr/lib/*/trinity/tdestyle_plastik_config.so
debian/tmp/usr/lib/*/trinity/tdetexteditor_docwordcompletion.la
debian/tmp/usr/lib/*/trinity/tdetexteditor_docwordcompletion.so
debian/tmp/usr/lib/*/trinity/tdetexteditor_insertfile.la
debian/tmp/usr/lib/*/trinity/tdetexteditor_insertfile.so
debian/tmp/usr/lib/*/trinity/tdetexteditor_isearch.la
debian/tmp/usr/lib/*/trinity/tdetexteditor_isearch.so
debian/tmp/usr/lib/*/trinity/tdetexteditor_kdatatool.la
debian/tmp/usr/lib/*/trinity/tdetexteditor_kdatatool.so
debian/tmp/usr/lib/*/trinity/kxzfilter.la
debian/tmp/usr/lib/*/trinity/kxzfilter.so
debian/tmp/usr/lib/*/trinity/libkatepart.la
debian/tmp/usr/lib/*/trinity/libkatepart.so
debian/tmp/usr/lib/*/trinity/libtdecertpart.la
debian/tmp/usr/lib/*/trinity/libtdecertpart.so
debian/tmp/usr/lib/*/trinity/libtdeprint_management_module.la
debian/tmp/usr/lib/*/trinity/libtdeprint_management_module.so
debian/tmp/usr/lib/*/trinity/libtdehtmlpart.la
debian/tmp/usr/lib/*/trinity/libtdehtmlpart.so
debian/tmp/usr/lib/*/trinity/libtdemultipart.la
debian/tmp/usr/lib/*/trinity/libtdemultipart.so
debian/tmp/usr/lib/*/trinity/libshellscript.la
debian/tmp/usr/lib/*/trinity/libshellscript.so
debian/tmp/usr/lib/*/trinity/plugins/designer/tdewidgets.la
debian/tmp/usr/lib/*/trinity/plugins/designer/tdewidgets.so
debian/tmp/usr/lib/*/trinity/plugins/styles/asteroid.la
debian/tmp/usr/lib/*/trinity/plugins/styles/asteroid.so
debian/tmp/usr/lib/*/trinity/plugins/styles/highcolor.la
debian/tmp/usr/lib/*/trinity/plugins/styles/highcolor.so
debian/tmp/usr/lib/*/trinity/plugins/styles/highcontrast.la
debian/tmp/usr/lib/*/trinity/plugins/styles/highcontrast.so
debian/tmp/usr/lib/*/trinity/plugins/styles/keramik.la
debian/tmp/usr/lib/*/trinity/plugins/styles/keramik.so
debian/tmp/usr/lib/*/trinity/plugins/styles/kthemestyle.la
debian/tmp/usr/lib/*/trinity/plugins/styles/kthemestyle.so
debian/tmp/usr/lib/*/trinity/plugins/styles/light.la
debian/tmp/usr/lib/*/trinity/plugins/styles/light.so
debian/tmp/usr/lib/*/trinity/plugins/styles/plastik.la
debian/tmp/usr/lib/*/trinity/plugins/styles/plastik.so
debian/tmp/usr/lib/*/libartskde.so.1
debian/tmp/usr/lib/*/libartskde.so.1.2.0
debian/tmp/usr/lib/*/libDCOP.so.14
debian/tmp/usr/lib/*/libDCOP.so.14.0.0
debian/tmp/usr/lib/*/libtdeabc_dir.so.1
debian/tmp/usr/lib/*/libtdeabc_dir.so.1.0.0
debian/tmp/usr/lib/*/libtdeabc_file.so.1
debian/tmp/usr/lib/*/libtdeabc_file.so.1.0.0
debian/tmp/usr/lib/*/libtdeabc_ldaptdeio.so.1
debian/tmp/usr/lib/*/libtdeabc_ldaptdeio.so.1.0.0
debian/tmp/usr/lib/*/libtdeabc_net.so.1
debian/tmp/usr/lib/*/libtdeabc_net.so.1.0.0
debian/tmp/usr/lib/*/libnetworkstatus.so.0
debian/tmp/usr/lib/*/libnetworkstatus.so.0.0.0
debian/tmp/usr/lib/*/libconnectionmanager.so.0
debian/tmp/usr/lib/*/libconnectionmanager.so.0.0.0
#debian/tmp/usr/lib/*/libkdemm.so.0
#debian/tmp/usr/lib/*/libkdemm.so.0.0.0
debian/tmp/usr/lib/*/libtdeabc.so.1
debian/tmp/usr/lib/*/libtdeabc.so.1.2.0
debian/tmp/usr/lib/*/libkatepartinterfaces.so.0
debian/tmp/usr/lib/*/libkatepartinterfaces.so.0.0.0
debian/tmp/usr/lib/*/libtdecore.so.14
debian/tmp/usr/lib/*/libtdecore.so.14.0.0
debian/tmp/usr/lib/*/libtdefakes.so.14
debian/tmp/usr/lib/*/libtdefakes.so.14.0.0
debian/tmp/usr/lib/*/libtdefx.so.14
debian/tmp/usr/lib/*/libtdefx.so.14.0.0
debian/tmp/usr/lib/*/libtdeinit_cupsdconf.so
debian/tmp/usr/lib/*/libtdeinit_dcopserver.so
debian/tmp/usr/lib/*/libtdeinit_kaddprinterwizard.so
debian/tmp/usr/lib/*/libtdeinit_tdebuildsycoca.so
debian/tmp/usr/lib/*/libtdeinit_tdecmshell.so
debian/tmp/usr/lib/*/libtdeinit_tdeconf_update.so
debian/tmp/usr/lib/*/libtdeinit_kcookiejar.so
debian/tmp/usr/lib/*/libtdeinit_kded.so
debian/tmp/usr/lib/*/libtdeinit_tdeio_http_cache_cleaner.so
debian/tmp/usr/lib/*/libtdeinit_tdeio_uiserver.so
debian/tmp/usr/lib/*/libtdeinit_tdelauncher.so
debian/tmp/usr/lib/*/libtdeprint_management.so.14
debian/tmp/usr/lib/*/libtdeprint_management.so.14.0.0
debian/tmp/usr/lib/*/libtdeprint.so.14
debian/tmp/usr/lib/*/libtdeprint.so.14.0.0
debian/tmp/usr/lib/*/libtdesasl.so.1
debian/tmp/usr/lib/*/libtdesasl.so.1.2.0
debian/tmp/usr/lib/*/libtdesu.so.14
debian/tmp/usr/lib/*/libtdesu.so.14.0.0
debian/tmp/usr/lib/*/libtdeui.so.14
debian/tmp/usr/lib/*/libtdeui.so.14.0.0
debian/tmp/usr/lib/*/libtdednssd.so.1
debian/tmp/usr/lib/*/libtdednssd.so.1.0.0
debian/tmp/usr/lib/*/libtdehtml.so.14
debian/tmp/usr/lib/*/libtdehtml.so.14.0.0
debian/tmp/usr/lib/*/libtdeimproxy.so.0
debian/tmp/usr/lib/*/libtdeimproxy.so.0.0.0
debian/tmp/usr/lib/*/libtdeio.so.14
debian/tmp/usr/lib/*/libtdeio.so.14.0.0
debian/tmp/usr/lib/*/libkjava.so.1
debian/tmp/usr/lib/*/libkjava.so.1.0.0
debian/tmp/usr/lib/*/libkjs.so.1
debian/tmp/usr/lib/*/libkjs.so.1.2.0
debian/tmp/usr/lib/*/libtdemdi2.so.1
debian/tmp/usr/lib/*/libtdemdi2.so.1.0.0
debian/tmp/usr/lib/*/libtdemdi.so.1
debian/tmp/usr/lib/*/libtdemdi.so.1.0.0
debian/tmp/usr/lib/*/libtdemediaplayer.so.0
debian/tmp/usr/lib/*/libtdemediaplayer.so.0.0.0
debian/tmp/usr/lib/*/libtdemid.so.0
debian/tmp/usr/lib/*/libtdemid.so.0.0.95
debian/tmp/usr/lib/*/libtdenewstuff.so.1
debian/tmp/usr/lib/*/libtdenewstuff.so.1.0.0
debian/tmp/usr/lib/*/libtdentlm.so.0
debian/tmp/usr/lib/*/libtdentlm.so.0.0.0
debian/tmp/usr/lib/*/libtdeparts.so.2
debian/tmp/usr/lib/*/libtdeparts.so.2.1.0
debian/tmp/usr/lib/*/libtderandr.so.0
debian/tmp/usr/lib/*/libtderandr.so.0.0.95
debian/tmp/usr/lib/*/libtdersync.so.0
debian/tmp/usr/lib/*/libtdersync.so.0.0.1
debian/tmp/usr/lib/*/libtderesources.so.1
debian/tmp/usr/lib/*/libtderesources.so.1.2.0
debian/tmp/usr/lib/*/libtdescreensaver.so.14
debian/tmp/usr/lib/*/libtdescreensaver.so.14.0.0
debian/tmp/usr/lib/*/libtdescript.so.0
debian/tmp/usr/lib/*/libtdescript.so.0.0.0
debian/tmp/usr/lib/*/libtdespell2.so.1
debian/tmp/usr/lib/*/libtdespell2.so.1.0.0
debian/tmp/usr/lib/*/libtdespell.so.14
debian/tmp/usr/lib/*/libtdespell.so.14.0.0
debian/tmp/usr/lib/*/libtdetexteditor.so.0
debian/tmp/usr/lib/*/libtdetexteditor.so.0.0.0
debian/tmp/usr/lib/*/libtdeunittest.so.1
debian/tmp/usr/lib/*/libtdeunittest.so.1.0.0
debian/tmp/usr/lib/*/libtdeutils.so.1
debian/tmp/usr/lib/*/libtdeutils.so.1.2.0
debian/tmp/usr/lib/*/libtdewalletbackend.so.1
debian/tmp/usr/lib/*/libtdewalletbackend.so.1.0.0
debian/tmp/usr/lib/*/libtdewalletclient.so.1
debian/tmp/usr/lib/*/libtdewalletclient.so.1.0.1
debian/tmp/usr/lib/*/libvcard.so.0
debian/tmp/usr/lib/*/libvcard.so.0.0.0
#[!solaris-any] debian/tmp/usr/share/services/tdefile_elf.desktop
#[!solaris-any] debian/tmp/usr/lib/*/trinity/tdefile_elf.so
#[!solaris-any] debian/tmp/usr/lib/*/trinity/tdefile_elf.la
#[!solaris-any] debian/tmp/usr/share/apps/tdehwlib/deviceclasses/*
#[!solaris-any] debian/tmp/usr/share/apps/tdehwlib/pnpdev/*
#[!solaris-any] debian/tmp/etc/dbus-1/system.d/org.trinitydesktop.hardwarecontrol.conf
#[!solaris-any] debian/tmp/usr/share/dbus-1/system-services/org.trinitydesktop.hardwarecontrol.service

@ -0,0 +1,15 @@
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_kaddprinterwizard.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_cupsdconf.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_dcopserver.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_tdecmshell.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_tdeio_http_cache_cleaner.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_tdebuildsycoca.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_kded.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_kcookiejar.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_tdelauncher.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_tdeconf_update.so
tdelibs14-trinity binary: no-shlibs-control-file usr/lib/libtdeinit_tdeio_uiserver.so
tdelibs14-trinity binary: setuid-binary usr/bin/fileshareset 4755 root/root
tdelibs14-trinity binary: setuid-binary usr/bin/kgrantpty 4755 root/root
tdelibs14-trinity binary: setuid-binary usr/bin/kpac_dhcp_helper 4755 root/root
tdelibs14-trinity binary: setuid-binary usr/bin/start_tdeinit 4755 root/root

@ -0,0 +1,46 @@
debian/man/out/artsmessage-trinity.1
debian/man/out/cupsdconf-trinity.1
debian/man/out/dcop-trinity.1
debian/man/out/dcopfind-trinity.1
debian/man/out/dcopserver-trinity.1
debian/man/out/dcopstart-trinity.1
debian/man/out/kaddprinterwizard-trinity.1
debian/man/out/tdebuildsycoca-trinity.1
debian/man/out/tdeconf_update-trinity.1
debian/man/out/kcookiejar-trinity.1
debian/man/out/tde-config-trinity.1
debian/man/out/kded-trinity.1
debian/man/out/kdontchangethehostname-trinity.1
debian/man/out/tdefile-trinity.1
debian/man/out/kinstalltheme-trinity.1
debian/man/out/tdeio_http_cache_cleaner-trinity.1
debian/man/out/tdeio_uiserver-trinity.1
debian/man/out/tdemailservice-trinity.1
debian/man/out/tdesendbugmail-trinity.1
debian/man/out/tdetelnetservice-trinity.1
debian/man/out/lnusertemp-trinity.1
debian/man/out/meinproc-trinity.1
./debian/man/tdeinit-trinity.1
./debian/man/cupsdoprint-trinity.1
./debian/man/dcopclient-trinity.1
./debian/man/dcopobject-trinity.1
./debian/man/dcopquit-trinity.1
./debian/man/dcopref-trinity.1
./debian/man/dcopserver_shutdown-trinity.1
./debian/man/fileshareset-trinity.1
./debian/man/imagetops-trinity.1
./debian/man/tdeab2tdeabc-trinity.1
./debian/man/tdecmshell-trinity.1
./debian/man/tdeinit_shutdown-trinity.1
./debian/man/tde-menu-trinity.1
./debian/man/tdesu_stub-trinity.1
./debian/man/kgrantpty-trinity.1
./debian/man/tdehotnewstuff-trinity.1
./debian/man/tdeioexec-trinity.1
./debian/man/tdelauncher-trinity.1
./debian/man/kpac_dhcp_helper-trinity.1
./debian/man/kshell-trinity.1
./debian/man/tdestartupconfig-trinity.1
./debian/man/tdetradertest-trinity.1
./debian/man/make_driver_db_cups-trinity.1
./debian/man/make_driver_db_lpr-trinity.1

@ -0,0 +1,18 @@
#!/bin/sh -e
case "$1" in
upgrade|install)
;;
abort-upgrade)
;;
*)
;;
esac
#DEBHELPER#
exit 0

@ -0,0 +1,16 @@
Reporting bugs for TDE packages
-------------------------------
TDE does not support beeing upgraded while running. If you do so, you may
encounter weird bugs (empty menus or configuration dialogs e.g.), and even
crashes.
If you recently upgraded tdelibs and/or tdebase packages, please consider:
* exiting your current TDE session.
* ensuring that no more TDE process is still running, especially the processes
named (list beeing non-limitative): dcopserver, kded, ksmserver...
* log in TDE again.
Then try to reproduce you bug. If it's not reproducible, then please do not
report it.

@ -0,0 +1,2 @@
/usr/lib/64/
/usr/lib/64/trinity/
Loading…
Cancel
Save