Comparar commits
1 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| 5afd6881fd |
+1
-6
@@ -5,14 +5,9 @@ CHANGES IN CUPS V1.6.3
|
||||
|
||||
- The configure script now prefers Clang over GCC.
|
||||
- Fixed a compile problem on AIX (STR #4307)
|
||||
- Fixed several ipptool test files that used old STATUS names.
|
||||
- Kerberos credentials could get truncated when printing to a shared
|
||||
printer.
|
||||
- Printing using "ipps" URIs was not encrypted.
|
||||
- Insecure ICC profiles prevented installation of user profiles for a
|
||||
printer on OS X.
|
||||
- Added more USB quirks for the libusb-based backend (STR #4311,
|
||||
<rdar://problem/13736470>)
|
||||
- Added more USB quirks for the libusb-based backend (STR #4311)
|
||||
- The Russian web interface templates were broken (STR #4310)
|
||||
- The scheduler no longer tries to do Kerberos authentication over the
|
||||
loopback interface.
|
||||
|
||||
@@ -1,13 +1,9 @@
|
||||
CHANGES-IPPTOOL.txt - 2013-05-02
|
||||
CHANGES-IPPTOOL.txt - 2013-04-18
|
||||
--------------------------------
|
||||
|
||||
This file provides a list of changes to the ipptool binary distribution posted
|
||||
on cups.org.
|
||||
|
||||
2013-05-02
|
||||
|
||||
- Fixed several ipptool test files that used old STATUS names.
|
||||
|
||||
|
||||
2013-04-18
|
||||
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
IPPTOOL.txt - 2013-05-02
|
||||
IPPTOOL.txt - 2013-04-18
|
||||
------------------------
|
||||
|
||||
See the file CHANGES-IPPTOOL.txt for a list of changes to this software.
|
||||
@@ -57,7 +57,7 @@ STANDARD TEST FILES
|
||||
get-notifications.test Shows events for an ippget
|
||||
subscription.
|
||||
get-printer-attributes.test Shows printer attributes
|
||||
get-subscriptions.test Shows a list of subscriptions
|
||||
get-subscription.test Shows a list of subscriptions
|
||||
ipp-1.1.test IPP/1.1 conformance test suite
|
||||
ipp-2.0.test IPP/2.0 conformance test suite
|
||||
ipp-2.1.test IPP/2.1 conformance test suite
|
||||
|
||||
+1
-1
@@ -431,7 +431,7 @@ main(int argc, /* I - Number of command-line args */
|
||||
if (!port)
|
||||
port = IPP_PORT; /* Default to port 631 */
|
||||
|
||||
if (!strcmp(scheme, "https") || !strcmp(scheme, "ipps"))
|
||||
if (!strcmp(scheme, "https"))
|
||||
cupsSetEncryption(HTTP_ENCRYPT_ALWAYS);
|
||||
else
|
||||
cupsSetEncryption(HTTP_ENCRYPT_IF_REQUESTED);
|
||||
|
||||
+1
-13
@@ -667,19 +667,7 @@ walk_cb(const char *oid, /* I - OID */
|
||||
int datalen, /* I - Length of data */
|
||||
void *context) /* I - Context (unused) */
|
||||
{
|
||||
char temp[80];
|
||||
if (datalen > (sizeof(temp) - 1))
|
||||
{
|
||||
memcpy(temp, data, sizeof(temp) - 1);
|
||||
temp[sizeof(temp) - 1] = '\0';
|
||||
}
|
||||
else
|
||||
{
|
||||
memcpy(temp, data, datalen);
|
||||
temp[datalen] = '\0';
|
||||
}
|
||||
|
||||
printf("CUPS_SC_CMD_SNMP_WALK %s, %d bytes (%s)\n", oid, datalen, temp);
|
||||
printf("CUPS_SC_CMD_SNMP_WALK %s, %d bytes (%s)\n", oid, datalen, data);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -230,7 +230,6 @@ static const struct quirk_printer_struct quirk_printers[] = {
|
||||
{ 0x04a9, 0x3256, USBLP_QUIRK_BLACKLIST }, /* Canon SELPHY CP810 */
|
||||
{ 0x04a9, 0x30F5, USBLP_QUIRK_BLACKLIST }, /* Canon SELPHY CP500 */
|
||||
{ 0x04a9, 0x31AF, USBLP_QUIRK_BLACKLIST }, /* Canon SELPHY ES3 */
|
||||
{ 0x04a9, 0x31DD, USBLP_QUIRK_BLACKLIST }, /* Canon SELPHY CP780 */
|
||||
/* MISSING PIDs: CP520, CP530, CP790 */
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# "$Id$"
|
||||
# "$Id: mime.types 9871 2011-08-06 06:34:46Z mike $"
|
||||
#
|
||||
# Base MIME types file for CUPS.
|
||||
#
|
||||
@@ -170,5 +170,5 @@ application/vnd.cups-raw (string(0,<1B>E) + !string(2,<1B>%0B)) \
|
||||
application/octet-stream
|
||||
|
||||
#
|
||||
# End of "$Id$".
|
||||
# End of "$Id: mime.types 9871 2011-08-06 06:34:46Z mike $".
|
||||
#
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-common.m4 10945 2013-04-09 19:44:01Z mike $"
|
||||
dnl
|
||||
dnl Common configuration stuff for CUPS.
|
||||
dnl
|
||||
@@ -459,5 +459,5 @@ esac
|
||||
AC_SUBST(BUILDDIRS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-common.m4 10945 2013-04-09 19:44:01Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-compiler.m4 10853 2013-01-31 16:27:05Z mike $"
|
||||
dnl
|
||||
dnl Compiler stuff for CUPS.
|
||||
dnl
|
||||
@@ -291,5 +291,5 @@ case $uname in
|
||||
esac
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-compiler.m4 10853 2013-01-31 16:27:05Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-defaults.m4 10709 2012-11-26 18:25:58Z mike $"
|
||||
dnl
|
||||
dnl Default cupsd configuration settings for CUPS.
|
||||
dnl
|
||||
@@ -400,5 +400,5 @@ AC_SUBST(CUPS_WEBIF)
|
||||
AC_DEFINE_UNQUOTED(CUPS_DEFAULT_WEBIF, $CUPS_DEFAULT_WEBIF)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-defaults.m4 10709 2012-11-26 18:25:58Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-directories.m4 10945 2013-04-09 19:44:01Z mike $"
|
||||
dnl
|
||||
dnl Directory stuff for CUPS.
|
||||
dnl
|
||||
@@ -427,5 +427,5 @@ AC_DEFINE_UNQUOTED(CUPS_STATEDIR, "$CUPS_STATEDIR")
|
||||
AC_SUBST(CUPS_STATEDIR)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-directories.m4 10945 2013-04-09 19:44:01Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-dnssd.m4 10471 2012-05-16 22:57:03Z mike $"
|
||||
dnl
|
||||
dnl DNS Service Discovery (aka Bonjour) stuff for CUPS.
|
||||
dnl
|
||||
@@ -72,5 +72,5 @@ AC_SUBST(DNSSDLIBS)
|
||||
AC_SUBST(DNSSD_BACKEND)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-dnssd.m4 10471 2012-05-16 22:57:03Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-gssapi.m4 10784 2013-01-08 16:19:32Z mike $"
|
||||
dnl
|
||||
dnl GSSAPI/Kerberos library detection for CUPS.
|
||||
dnl
|
||||
@@ -158,5 +158,5 @@ AC_SUBST(CUPS_DEFAULT_GSSSERVICENAME)
|
||||
AC_DEFINE_UNQUOTED(CUPS_DEFAULT_GSSSERVICENAME, "$CUPS_DEFAULT_GSSSERVICENAME")
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-gssapi.m4 10784 2013-01-08 16:19:32Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-largefile.m4 9771 2011-05-12 05:21:56Z mike $"
|
||||
dnl
|
||||
dnl Large file support stuff for CUPS.
|
||||
dnl
|
||||
@@ -48,5 +48,5 @@ fi
|
||||
AC_CHECK_FUNC(strtoll, AC_DEFINE(HAVE_STRTOLL))
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-largefile.m4 9771 2011-05-12 05:21:56Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-launchd.m4 8983 2010-02-13 02:20:23Z mike $"
|
||||
dnl
|
||||
dnl launchd stuff for CUPS.
|
||||
dnl
|
||||
@@ -39,5 +39,5 @@ AC_SUBST(DEFAULT_LAUNCHD_CONF)
|
||||
AC_SUBST(LAUNCHDLIBS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-launchd.m4 8983 2010-02-13 02:20:23Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-libtool.m4 9771 2011-05-12 05:21:56Z mike $"
|
||||
dnl
|
||||
dnl Libtool stuff for CUPS.
|
||||
dnl
|
||||
@@ -35,5 +35,5 @@ if test x$LIBTOOL != x; then
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-libtool.m4 9771 2011-05-12 05:21:56Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-manpages.m4 10632 2012-10-01 04:07:51Z mike $"
|
||||
dnl
|
||||
dnl Manpage stuff for CUPS.
|
||||
dnl
|
||||
@@ -78,5 +78,5 @@ AC_SUBST(MAN8EXT)
|
||||
AC_SUBST(MAN8DIR)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-manpages.m4 10632 2012-10-01 04:07:51Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-network.m4 9771 2011-05-12 05:21:56Z mike $"
|
||||
dnl
|
||||
dnl Networking stuff for CUPS.
|
||||
dnl
|
||||
@@ -70,5 +70,5 @@ AC_CHECK_HEADERS(AppleTalk/at_proto.h,AC_DEFINE(HAVE_APPLETALK_AT_PROTO_H),,
|
||||
[#include <netat/appletalk.h>])
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-network.m4 9771 2011-05-12 05:21:56Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-opsys.m4 10735 2012-12-07 21:40:34Z mike $"
|
||||
dnl
|
||||
dnl Operating system stuff for CUPS.
|
||||
dnl
|
||||
@@ -35,5 +35,5 @@ case "$uname" in
|
||||
esac
|
||||
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-opsys.m4 10735 2012-12-07 21:40:34Z mike $"
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-pam.m4 10424 2012-04-23 17:26:57Z mike $"
|
||||
dnl
|
||||
dnl PAM stuff for CUPS.
|
||||
dnl
|
||||
@@ -98,5 +98,5 @@ AC_SUBST(PAMMOD)
|
||||
AC_SUBST(PAMMODAUTH)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-pam.m4 10424 2012-04-23 17:26:57Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-poll.m4 9771 2011-05-12 05:21:56Z mike $"
|
||||
dnl
|
||||
dnl Select/poll stuff for CUPS.
|
||||
dnl
|
||||
@@ -18,5 +18,5 @@ AC_CHECK_FUNC(epoll_create, AC_DEFINE(HAVE_EPOLL))
|
||||
AC_CHECK_FUNC(kqueue, AC_DEFINE(HAVE_KQUEUE))
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-poll.m4 9771 2011-05-12 05:21:56Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-scripting.m4 9927 2011-08-27 09:28:30Z mike $"
|
||||
dnl
|
||||
dnl Scripting configuration stuff for CUPS.
|
||||
dnl
|
||||
@@ -85,5 +85,5 @@ if test "x$CUPS_PYTHON" != x; then
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-scripting.m4 9927 2011-08-27 09:28:30Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-sharedlibs.m4 10632 2012-10-01 04:07:51Z mike $"
|
||||
dnl
|
||||
dnl Shared library support for CUPS.
|
||||
dnl
|
||||
@@ -234,5 +234,5 @@ AC_SUBST(IMGLIBS)
|
||||
AC_SUBST(EXPORT_LDFLAGS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-sharedlibs.m4 10632 2012-10-01 04:07:51Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-ssl.m4 10734 2012-12-07 21:33:22Z mike $"
|
||||
dnl
|
||||
dnl OpenSSL/GNUTLS stuff for CUPS.
|
||||
dnl
|
||||
@@ -157,5 +157,5 @@ EXPORT_SSLLIBS="$SSLLIBS"
|
||||
AC_SUBST(EXPORT_SSLLIBS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-ssl.m4 10734 2012-12-07 21:33:22Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl "$Id$"
|
||||
dnl "$Id: cups-threads.m4 9771 2011-05-12 05:21:56Z mike $"
|
||||
dnl
|
||||
dnl Threading stuff for CUPS.
|
||||
dnl
|
||||
@@ -50,5 +50,5 @@ fi
|
||||
AC_SUBST(PTHREAD_FLAGS)
|
||||
|
||||
dnl
|
||||
dnl End of "$Id$".
|
||||
dnl End of "$Id: cups-threads.m4 9771 2011-05-12 05:21:56Z mike $".
|
||||
dnl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-array.header 9771 2011-05-12 05:21:56Z mike $"
|
||||
|
||||
Array API header for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-array.shtml 9727 2011-04-28 21:20:12Z mike $"
|
||||
|
||||
Array API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-cups.header 9771 2011-05-12 05:21:56Z mike $"
|
||||
|
||||
CUPS API header for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-cups.shtml 9727 2011-04-28 21:20:12Z mike $"
|
||||
|
||||
API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filedir.header 9771 2011-05-12 05:21:56Z mike $"
|
||||
|
||||
File and Directory API header for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filedir.shtml 9727 2011-04-28 21:20:12Z mike $"
|
||||
|
||||
File and directory API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filter.header 9771 2011-05-12 05:21:56Z mike $"
|
||||
|
||||
Filter and backend programming header for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filter.shtml 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Filter and backend programming introduction for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-httpipp.header 9771 2011-05-12 05:21:56Z mike $"
|
||||
|
||||
HTTP and IPP API header for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-httpipp.shtml 10388 2012-03-26 21:15:41Z mike $"
|
||||
|
||||
HTTP and IPP API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-ppd.header 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
PPD API header for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-ppd.shtml 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
PPD API introduction for CUPS.
|
||||
|
||||
|
||||
+2
-23
@@ -1184,40 +1184,24 @@ appleLangDefault(void)
|
||||
{
|
||||
if (getenv("SOFTWARE") != NULL && (lang = getenv("LANG")) != NULL)
|
||||
{
|
||||
DEBUG_printf(("3appleLangDefault: Using LANG=%s", lang));
|
||||
strlcpy(cg->language, lang, sizeof(cg->language));
|
||||
return (cg->language);
|
||||
}
|
||||
else if ((bundle = CFBundleGetMainBundle()) != NULL &&
|
||||
(bundleList = CFBundleCopyBundleLocalizations(bundle)) != NULL)
|
||||
{
|
||||
DEBUG_puts("3appleLangDefault: Getting localizationList from bundle.");
|
||||
|
||||
localizationList =
|
||||
CFBundleCopyPreferredLocalizationsFromArray(bundleList);
|
||||
|
||||
CFRelease(bundleList);
|
||||
}
|
||||
else
|
||||
{
|
||||
DEBUG_puts("3appleLangDefault: Getting localizationList from preferences.");
|
||||
|
||||
localizationList =
|
||||
CFPreferencesCopyAppValue(CFSTR("AppleLanguages"),
|
||||
kCFPreferencesCurrentApplication);
|
||||
}
|
||||
|
||||
if (localizationList)
|
||||
{
|
||||
|
||||
#ifdef DEBUG
|
||||
if (CFGetTypeID(localizationList) == CFArrayGetTypeID())
|
||||
DEBUG_printf(("3appleLangDefault: Got localizationList, %d entries.",
|
||||
(int)CFArrayGetCount(localizationList)));
|
||||
else
|
||||
DEBUG_puts("3appleLangDefault: Got localizationList but not an array.");
|
||||
#endif /* DEBUG */
|
||||
|
||||
if (CFGetTypeID(localizationList) == CFArrayGetTypeID() &&
|
||||
CFArrayGetCount(localizationList) > 0)
|
||||
{
|
||||
@@ -1235,7 +1219,7 @@ appleLangDefault(void)
|
||||
kCFStringEncodingASCII);
|
||||
CFRelease(localeName);
|
||||
|
||||
DEBUG_printf(("3appleLangDefault: cg->language=\"%s\"",
|
||||
DEBUG_printf(("9appleLangDefault: cg->language=\"%s\"",
|
||||
cg->language));
|
||||
|
||||
/*
|
||||
@@ -1249,7 +1233,7 @@ appleLangDefault(void)
|
||||
{
|
||||
if (!strcmp(cg->language, apple_language_locale[i].language))
|
||||
{
|
||||
DEBUG_printf(("3appleLangDefault: mapping \"%s\" to \"%s\"...",
|
||||
DEBUG_printf(("9appleLangDefault: mapping \"%s\" to \"%s\"...",
|
||||
cg->language, apple_language_locale[i].locale));
|
||||
strlcpy(cg->language, apple_language_locale[i].locale,
|
||||
sizeof(cg->language));
|
||||
@@ -1267,8 +1251,6 @@ appleLangDefault(void)
|
||||
if (!strchr(cg->language, '.'))
|
||||
strlcat(cg->language, ".UTF-8", sizeof(cg->language));
|
||||
}
|
||||
else
|
||||
DEBUG_puts("3appleLangDefault: Unable to get localeName.");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1280,10 +1262,7 @@ appleLangDefault(void)
|
||||
*/
|
||||
|
||||
if (!cg->language[0])
|
||||
{
|
||||
DEBUG_puts("3appleLangDefault: Defaulting to en_US.");
|
||||
strlcpy(cg->language, "en_US.UTF-8", sizeof(cg->language));
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
+213
-213
@@ -1,213 +1,213 @@
|
||||
UTF-8 encoded sample plain-text file
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
|
||||
Markus Kuhn [ˈmaʳkʊs kuːn] <mkuhn@acm.org> — 2002-07-25
|
||||
|
||||
|
||||
The ASCII compatible UTF-8 encoding used in this plain-text file
|
||||
is defined in Unicode, ISO 10646-1, and RFC 2279.
|
||||
|
||||
|
||||
Using Unicode/UTF-8, you can write in emails and source code things such as
|
||||
|
||||
Mathematics and sciences:
|
||||
|
||||
∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ⎧⎡⎛┌─────┐⎞⎤⎫
|
||||
⎪⎢⎜│a²+b³ ⎟⎥⎪
|
||||
∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β), ⎪⎢⎜│───── ⎟⎥⎪
|
||||
⎪⎢⎜⎷ c₈ ⎟⎥⎪
|
||||
ℕ ⊆ ℕ₀ ⊂ ℤ ⊂ ℚ ⊂ ℝ ⊂ ℂ, ⎨⎢⎜ ⎟⎥⎬
|
||||
⎪⎢⎜ ∞ ⎟⎥⎪
|
||||
⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (⟦A⟧ ⇔ ⟪B⟫), ⎪⎢⎜ ⎲ ⎟⎥⎪
|
||||
⎪⎢⎜ ⎳aⁱ-bⁱ⎟⎥⎪
|
||||
2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm ⎩⎣⎝i=1 ⎠⎦⎭
|
||||
|
||||
Linguistics and dictionaries:
|
||||
|
||||
ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn
|
||||
Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]
|
||||
|
||||
APL:
|
||||
|
||||
((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈
|
||||
|
||||
Nicer typography in plain text files:
|
||||
|
||||
╔══════════════════════════════════════════╗
|
||||
║ ║
|
||||
║ • ‘single’ and “double” quotes ║
|
||||
║ ║
|
||||
║ • Curly apostrophes: “We’ve been here” ║
|
||||
║ ║
|
||||
║ • Latin-1 apostrophe and accents: '´` ║
|
||||
║ ║
|
||||
║ • ‚deutsche‘ „Anführungszeichen“ ║
|
||||
║ ║
|
||||
║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║
|
||||
║ ║
|
||||
║ • ASCII safety test: 1lI|, 0OD, 8B ║
|
||||
║ ╭─────────╮ ║
|
||||
║ • the euro symbol: │ 14.95 € │ ║
|
||||
║ ╰─────────╯ ║
|
||||
╚══════════════════════════════════════════╝
|
||||
|
||||
Combining characters:
|
||||
|
||||
STARGΛ̊TE SG-1, a = v̇ = r̈, a⃑ ⊥ b⃑
|
||||
|
||||
Greek (in Polytonic):
|
||||
|
||||
The Greek anthem:
|
||||
|
||||
Σὲ γνωρίζω ἀπὸ τὴν κόψη
|
||||
τοῦ σπαθιοῦ τὴν τρομερή,
|
||||
σὲ γνωρίζω ἀπὸ τὴν ὄψη
|
||||
ποὺ μὲ βία μετράει τὴ γῆ.
|
||||
|
||||
᾿Απ᾿ τὰ κόκκαλα βγαλμένη
|
||||
τῶν ῾Ελλήνων τὰ ἱερά
|
||||
καὶ σὰν πρῶτα ἀνδρειωμένη
|
||||
χαῖρε, ὦ χαῖρε, ᾿Ελευθεριά!
|
||||
|
||||
From a speech of Demosthenes in the 4th century BC:
|
||||
|
||||
Οὐχὶ ταὐτὰ παρίσταταί μοι γιγνώσκειν, ὦ ἄνδρες ᾿Αθηναῖοι,
|
||||
ὅταν τ᾿ εἰς τὰ πράγματα ἀποβλέψω καὶ ὅταν πρὸς τοὺς
|
||||
λόγους οὓς ἀκούω· τοὺς μὲν γὰρ λόγους περὶ τοῦ
|
||||
τιμωρήσασθαι Φίλιππον ὁρῶ γιγνομένους, τὰ δὲ πράγματ᾿
|
||||
εἰς τοῦτο προήκοντα, ὥσθ᾿ ὅπως μὴ πεισόμεθ᾿ αὐτοὶ
|
||||
πρότερον κακῶς σκέψασθαι δέον. οὐδέν οὖν ἄλλο μοι δοκοῦσιν
|
||||
οἱ τὰ τοιαῦτα λέγοντες ἢ τὴν ὑπόθεσιν, περὶ ἧς βουλεύεσθαι,
|
||||
οὐχὶ τὴν οὖσαν παριστάντες ὑμῖν ἁμαρτάνειν. ἐγὼ δέ, ὅτι μέν
|
||||
ποτ᾿ ἐξῆν τῇ πόλει καὶ τὰ αὑτῆς ἔχειν ἀσφαλῶς καὶ Φίλιππον
|
||||
τιμωρήσασθαι, καὶ μάλ᾿ ἀκριβῶς οἶδα· ἐπ᾿ ἐμοῦ γάρ, οὐ πάλαι
|
||||
γέγονεν ταῦτ᾿ ἀμφότερα· νῦν μέντοι πέπεισμαι τοῦθ᾿ ἱκανὸν
|
||||
προλαβεῖν ἡμῖν εἶναι τὴν πρώτην, ὅπως τοὺς συμμάχους
|
||||
σώσομεν. ἐὰν γὰρ τοῦτο βεβαίως ὑπάρξῃ, τότε καὶ περὶ τοῦ
|
||||
τίνα τιμωρήσεταί τις καὶ ὃν τρόπον ἐξέσται σκοπεῖν· πρὶν δὲ
|
||||
τὴν ἀρχὴν ὀρθῶς ὑποθέσθαι, μάταιον ἡγοῦμαι περὶ τῆς
|
||||
τελευτῆς ὁντινοῦν ποιεῖσθαι λόγον.
|
||||
|
||||
Δημοσθένους, Γ´ ᾿Ολυνθιακὸς
|
||||
|
||||
Georgian:
|
||||
|
||||
From a Unicode conference invitation:
|
||||
|
||||
გთხოვთ ახლავე გაიაროთ რეგისტრაცია Unicode-ის მეათე საერთაშორისო
|
||||
კონფერენციაზე დასასწრებად, რომელიც გაიმართება 10-12 მარტს,
|
||||
ქ. მაინცში, გერმანიაში. კონფერენცია შეჰკრებს ერთად მსოფლიოს
|
||||
ექსპერტებს ისეთ დარგებში როგორიცაა ინტერნეტი და Unicode-ი,
|
||||
ინტერნაციონალიზაცია და ლოკალიზაცია, Unicode-ის გამოყენება
|
||||
ოპერაციულ სისტემებსა, და გამოყენებით პროგრამებში, შრიფტებში,
|
||||
ტექსტების დამუშავებასა და მრავალენოვან კომპიუტერულ სისტემებში.
|
||||
|
||||
Russian:
|
||||
|
||||
From a Unicode conference invitation:
|
||||
|
||||
Зарегистрируйтесь сейчас на Десятую Международную Конференцию по
|
||||
Unicode, которая состоится 10-12 марта 1997 года в Майнце в Германии.
|
||||
Конференция соберет широкий круг экспертов по вопросам глобального
|
||||
Интернета и Unicode, локализации и интернационализации, воплощению и
|
||||
применению Unicode в различных операционных системах и программных
|
||||
приложениях, шрифтах, верстке и многоязычных компьютерных системах.
|
||||
|
||||
Thai (UCS Level 2):
|
||||
|
||||
Excerpt from a poetry on The Romance of The Three Kingdoms (a Chinese
|
||||
classic 'San Gua'):
|
||||
|
||||
[----------------------------|------------------------]
|
||||
๏ แผ่นดินฮั่นเสื่อมโทรมแสนสังเวช พระปกเกศกองบู๊กู้ขึ้นใหม่
|
||||
สิบสองกษัตริย์ก่อนหน้าแลถัดไป สององค์ไซร้โง่เขลาเบาปัญญา
|
||||
ทรงนับถือขันทีเป็นที่พึ่ง บ้านเมืองจึงวิปริตเป็นนักหนา
|
||||
โฮจิ๋นเรียกทัพทั่วหัวเมืองมา หมายจะฆ่ามดชั่วตัวสำคัญ
|
||||
เหมือนขับไสไล่เสือจากเคหา รับหมาป่าเข้ามาเลยอาสัญ
|
||||
ฝ่ายอ้องอุ้นยุแยกให้แตกกัน ใช้สาวนั้นเป็นชนวนชื่นชวนใจ
|
||||
พลันลิฉุยกุยกีกลับก่อเหตุ ช่างอาเพศจริงหนาฟ้าร้องไห้
|
||||
ต้องรบราฆ่าฟันจนบรรลัย ฤๅหาใครค้ำชูกู้บรรลังก์ ฯ
|
||||
|
||||
(The above is a two-column text. If combining characters are handled
|
||||
correctly, the lines of the second column should be aligned with the
|
||||
| character above.)
|
||||
|
||||
Ethiopian:
|
||||
|
||||
Proverbs in the Amharic language:
|
||||
|
||||
ሰማይ አይታረስ ንጉሥ አይከሰስ።
|
||||
ብላ ካለኝ እንደአባቴ በቆመጠኝ።
|
||||
ጌጥ ያለቤቱ ቁምጥና ነው።
|
||||
ደሀ በሕልሙ ቅቤ ባይጠጣ ንጣት በገደለው።
|
||||
የአፍ ወለምታ በቅቤ አይታሽም።
|
||||
አይጥ በበላ ዳዋ ተመታ።
|
||||
ሲተረጉሙ ይደረግሙ።
|
||||
ቀስ በቀስ፥ ዕንቁላል በእግሩ ይሄዳል።
|
||||
ድር ቢያብር አንበሳ ያስር።
|
||||
ሰው እንደቤቱ እንጅ እንደ ጉረቤቱ አይተዳደርም።
|
||||
እግዜር የከፈተውን ጉሮሮ ሳይዘጋው አይድርም።
|
||||
የጎረቤት ሌባ፥ ቢያዩት ይስቅ ባያዩት ያጠልቅ።
|
||||
ሥራ ከመፍታት ልጄን ላፋታት።
|
||||
ዓባይ ማደሪያ የለው፥ ግንድ ይዞ ይዞራል።
|
||||
የእስላም አገሩ መካ የአሞራ አገሩ ዋርካ።
|
||||
ተንጋሎ ቢተፉ ተመልሶ ባፉ።
|
||||
ወዳጅህ ማር ቢሆን ጨርስህ አትላሰው።
|
||||
እግርህን በፍራሽህ ልክ ዘርጋ።
|
||||
|
||||
Runes:
|
||||
|
||||
ᚻᛖ ᚳᚹᚫᚦ ᚦᚫᛏ ᚻᛖ ᛒᚢᛞᛖ ᚩᚾ ᚦᚫᛗ ᛚᚪᚾᛞᛖ ᚾᚩᚱᚦᚹᛖᚪᚱᛞᚢᛗ ᚹᛁᚦ ᚦᚪ ᚹᛖᛥᚫ
|
||||
|
||||
(Old English, which transcribed into Latin reads 'He cwaeth that he
|
||||
bude thaem lande northweardum with tha Westsae.' and means 'He said
|
||||
that he lived in the northern land near the Western Sea.')
|
||||
|
||||
Braille:
|
||||
|
||||
⡌⠁⠧⠑ ⠼⠁⠒ ⡍⠜⠇⠑⠹⠰⠎ ⡣⠕⠌
|
||||
|
||||
⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠙⠑⠁⠙⠒ ⠞⠕ ⠃⠑⠛⠔ ⠺⠊⠹⠲ ⡹⠻⠑ ⠊⠎ ⠝⠕ ⠙⠳⠃⠞
|
||||
⠱⠁⠞⠑⠧⠻ ⠁⠃⠳⠞ ⠹⠁⠞⠲ ⡹⠑ ⠗⠑⠛⠊⠌⠻ ⠕⠋ ⠙⠊⠎ ⠃⠥⠗⠊⠁⠇ ⠺⠁⠎
|
||||
⠎⠊⠛⠝⠫ ⠃⠹ ⠹⠑ ⠊⠇⠻⠛⠹⠍⠁⠝⠂ ⠹⠑ ⠊⠇⠻⠅⠂ ⠹⠑ ⠥⠝⠙⠻⠞⠁⠅⠻⠂
|
||||
⠁⠝⠙ ⠹⠑ ⠡⠊⠑⠋ ⠍⠳⠗⠝⠻⠲ ⡎⠊⠗⠕⠕⠛⠑ ⠎⠊⠛⠝⠫ ⠊⠞⠲ ⡁⠝⠙
|
||||
⡎⠊⠗⠕⠕⠛⠑⠰⠎ ⠝⠁⠍⠑ ⠺⠁⠎ ⠛⠕⠕⠙ ⠥⠏⠕⠝ ⠰⡡⠁⠝⠛⠑⠂ ⠋⠕⠗ ⠁⠝⠹⠹⠔⠛ ⠙⠑
|
||||
⠡⠕⠎⠑ ⠞⠕ ⠏⠥⠞ ⠙⠊⠎ ⠙⠁⠝⠙ ⠞⠕⠲
|
||||
|
||||
⡕⠇⠙ ⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠁⠎ ⠙⠑⠁⠙ ⠁⠎ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲
|
||||
|
||||
⡍⠔⠙⠖ ⡊ ⠙⠕⠝⠰⠞ ⠍⠑⠁⠝ ⠞⠕ ⠎⠁⠹ ⠹⠁⠞ ⡊ ⠅⠝⠪⠂ ⠕⠋ ⠍⠹
|
||||
⠪⠝ ⠅⠝⠪⠇⠫⠛⠑⠂ ⠱⠁⠞ ⠹⠻⠑ ⠊⠎ ⠏⠜⠞⠊⠊⠥⠇⠜⠇⠹ ⠙⠑⠁⠙ ⠁⠃⠳⠞
|
||||
⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲ ⡊ ⠍⠊⠣⠞ ⠙⠁⠧⠑ ⠃⠑⠲ ⠔⠊⠇⠔⠫⠂ ⠍⠹⠎⠑⠇⠋⠂ ⠞⠕
|
||||
⠗⠑⠛⠜⠙ ⠁ ⠊⠕⠋⠋⠔⠤⠝⠁⠊⠇ ⠁⠎ ⠹⠑ ⠙⠑⠁⠙⠑⠌ ⠏⠊⠑⠊⠑ ⠕⠋ ⠊⠗⠕⠝⠍⠕⠝⠛⠻⠹
|
||||
⠔ ⠹⠑ ⠞⠗⠁⠙⠑⠲ ⡃⠥⠞ ⠹⠑ ⠺⠊⠎⠙⠕⠍ ⠕⠋ ⠳⠗ ⠁⠝⠊⠑⠌⠕⠗⠎
|
||||
⠊⠎ ⠔ ⠹⠑ ⠎⠊⠍⠊⠇⠑⠆ ⠁⠝⠙ ⠍⠹ ⠥⠝⠙⠁⠇⠇⠪⠫ ⠙⠁⠝⠙⠎
|
||||
⠩⠁⠇⠇ ⠝⠕⠞ ⠙⠊⠌⠥⠗⠃ ⠊⠞⠂ ⠕⠗ ⠹⠑ ⡊⠳⠝⠞⠗⠹⠰⠎ ⠙⠕⠝⠑ ⠋⠕⠗⠲ ⡹⠳
|
||||
⠺⠊⠇⠇ ⠹⠻⠑⠋⠕⠗⠑ ⠏⠻⠍⠊⠞ ⠍⠑ ⠞⠕ ⠗⠑⠏⠑⠁⠞⠂ ⠑⠍⠏⠙⠁⠞⠊⠊⠁⠇⠇⠹⠂ ⠹⠁⠞
|
||||
⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠁⠎ ⠙⠑⠁⠙ ⠁⠎ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲
|
||||
|
||||
(The first couple of paragraphs of "A Christmas Carol" by Dickens)
|
||||
|
||||
Compact font selection example text:
|
||||
|
||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ /0123456789
|
||||
abcdefghijklmnopqrstuvwxyz £©µÀÆÖÞßéöÿ
|
||||
–—‘“”„†•…‰™œŠŸž€ ΑΒΓΔΩαβγδω АБВГДабвгд
|
||||
∀∂∈ℝ∧∪≡∞ ↑↗↨↻⇣ ┐┼╔╘░►☺♀ fi?⑀₂ἠḂӥẄɐː⍎אԱა
|
||||
|
||||
Greetings in various languages:
|
||||
|
||||
Hello world, Καλημέρα κόσμε, コンニチハ
|
||||
|
||||
Box drawing alignment tests: █
|
||||
▉
|
||||
╔══╦══╗ ┌──┬──┐ ╭──┬──╮ ╭──┬──╮ ┏━━┳━━┓ ┎┒┏┑ ╷ ╻ ┏┯┓ ┌┰┐ ▊ ╱╲╱╲╳╳╳
|
||||
║┌─╨─┐║ │╔═╧═╗│ │╒═╪═╕│ │╓─╁─╖│ ┃┌─╂─┐┃ ┗╃╄┙ ╶┼╴╺╋╸┠┼┨ ┝╋┥ ▋ ╲╱╲╱╳╳╳
|
||||
║│╲ ╱│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╿ │┃ ┍╅╆┓ ╵ ╹ ┗┷┛ └┸┘ ▌ ╱╲╱╲╳╳╳
|
||||
╠╡ ╳ ╞╣ ├╢ ╟┤ ├┼─┼─┼┤ ├╫─╂─╫┤ ┣┿╾┼╼┿┫ ┕┛┖┚ ┌┄┄┐ ╎ ┏┅┅┓ ┋ ▍ ╲╱╲╱╳╳╳
|
||||
║│╱ ╲│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╽ │┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▎
|
||||
║└─╥─┘║ │╚═╤═╝│ │╘═╪═╛│ │╙─╀─╜│ ┃└─╂─┘┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▏
|
||||
╚══╩══╝ └──┴──┘ ╰──┴──╯ ╰──┴──╯ ┗━━┻━━┛ ▗▄▖▛▀▜ └╌╌┘ ╎ ┗╍╍┛ ┋ ▁▂▃▄▅▆▇█
|
||||
▝▀▘▙▄▟
|
||||
|
||||
|
||||
UTF-8 encoded sample plain-text file
|
||||
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||
|
||||
Markus Kuhn [ˈmaʳkʊs kuːn] <mkuhn@acm.org> — 2002-07-25
|
||||
|
||||
|
||||
The ASCII compatible UTF-8 encoding used in this plain-text file
|
||||
is defined in Unicode, ISO 10646-1, and RFC 2279.
|
||||
|
||||
|
||||
Using Unicode/UTF-8, you can write in emails and source code things such as
|
||||
|
||||
Mathematics and sciences:
|
||||
|
||||
∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ⎧⎡⎛┌─────┐⎞⎤⎫
|
||||
⎪⎢⎜│a²+b³ ⎟⎥⎪
|
||||
∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β), ⎪⎢⎜│───── ⎟⎥⎪
|
||||
⎪⎢⎜⎷ c₈ ⎟⎥⎪
|
||||
ℕ ⊆ ℕ₀ ⊂ ℤ ⊂ ℚ ⊂ ℝ ⊂ ℂ, ⎨⎢⎜ ⎟⎥⎬
|
||||
⎪⎢⎜ ∞ ⎟⎥⎪
|
||||
⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (⟦A⟧ ⇔ ⟪B⟫), ⎪⎢⎜ ⎲ ⎟⎥⎪
|
||||
⎪⎢⎜ ⎳aⁱ-bⁱ⎟⎥⎪
|
||||
2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm ⎩⎣⎝i=1 ⎠⎦⎭
|
||||
|
||||
Linguistics and dictionaries:
|
||||
|
||||
ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn
|
||||
Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]
|
||||
|
||||
APL:
|
||||
|
||||
((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈
|
||||
|
||||
Nicer typography in plain text files:
|
||||
|
||||
╔══════════════════════════════════════════╗
|
||||
║ ║
|
||||
║ • ‘single’ and “double” quotes ║
|
||||
║ ║
|
||||
║ • Curly apostrophes: “We’ve been here” ║
|
||||
║ ║
|
||||
║ • Latin-1 apostrophe and accents: '´` ║
|
||||
║ ║
|
||||
║ • ‚deutsche‘ „Anführungszeichen“ ║
|
||||
║ ║
|
||||
║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║
|
||||
║ ║
|
||||
║ • ASCII safety test: 1lI|, 0OD, 8B ║
|
||||
║ ╭─────────╮ ║
|
||||
║ • the euro symbol: │ 14.95 € │ ║
|
||||
║ ╰─────────╯ ║
|
||||
╚══════════════════════════════════════════╝
|
||||
|
||||
Combining characters:
|
||||
|
||||
STARGΛ̊TE SG-1, a = v̇ = r̈, a⃑ ⊥ b⃑
|
||||
|
||||
Greek (in Polytonic):
|
||||
|
||||
The Greek anthem:
|
||||
|
||||
Σὲ γνωρίζω ἀπὸ τὴν κόψη
|
||||
τοῦ σπαθιοῦ τὴν τρομερή,
|
||||
σὲ γνωρίζω ἀπὸ τὴν ὄψη
|
||||
ποὺ μὲ βία μετράει τὴ γῆ.
|
||||
|
||||
᾿Απ᾿ τὰ κόκκαλα βγαλμένη
|
||||
τῶν ῾Ελλήνων τὰ ἱερά
|
||||
καὶ σὰν πρῶτα ἀνδρειωμένη
|
||||
χαῖρε, ὦ χαῖρε, ᾿Ελευθεριά!
|
||||
|
||||
From a speech of Demosthenes in the 4th century BC:
|
||||
|
||||
Οὐχὶ ταὐτὰ παρίσταταί μοι γιγνώσκειν, ὦ ἄνδρες ᾿Αθηναῖοι,
|
||||
ὅταν τ᾿ εἰς τὰ πράγματα ἀποβλέψω καὶ ὅταν πρὸς τοὺς
|
||||
λόγους οὓς ἀκούω· τοὺς μὲν γὰρ λόγους περὶ τοῦ
|
||||
τιμωρήσασθαι Φίλιππον ὁρῶ γιγνομένους, τὰ δὲ πράγματ᾿
|
||||
εἰς τοῦτο προήκοντα, ὥσθ᾿ ὅπως μὴ πεισόμεθ᾿ αὐτοὶ
|
||||
πρότερον κακῶς σκέψασθαι δέον. οὐδέν οὖν ἄλλο μοι δοκοῦσιν
|
||||
οἱ τὰ τοιαῦτα λέγοντες ἢ τὴν ὑπόθεσιν, περὶ ἧς βουλεύεσθαι,
|
||||
οὐχὶ τὴν οὖσαν παριστάντες ὑμῖν ἁμαρτάνειν. ἐγὼ δέ, ὅτι μέν
|
||||
ποτ᾿ ἐξῆν τῇ πόλει καὶ τὰ αὑτῆς ἔχειν ἀσφαλῶς καὶ Φίλιππον
|
||||
τιμωρήσασθαι, καὶ μάλ᾿ ἀκριβῶς οἶδα· ἐπ᾿ ἐμοῦ γάρ, οὐ πάλαι
|
||||
γέγονεν ταῦτ᾿ ἀμφότερα· νῦν μέντοι πέπεισμαι τοῦθ᾿ ἱκανὸν
|
||||
προλαβεῖν ἡμῖν εἶναι τὴν πρώτην, ὅπως τοὺς συμμάχους
|
||||
σώσομεν. ἐὰν γὰρ τοῦτο βεβαίως ὑπάρξῃ, τότε καὶ περὶ τοῦ
|
||||
τίνα τιμωρήσεταί τις καὶ ὃν τρόπον ἐξέσται σκοπεῖν· πρὶν δὲ
|
||||
τὴν ἀρχὴν ὀρθῶς ὑποθέσθαι, μάταιον ἡγοῦμαι περὶ τῆς
|
||||
τελευτῆς ὁντινοῦν ποιεῖσθαι λόγον.
|
||||
|
||||
Δημοσθένους, Γ´ ᾿Ολυνθιακὸς
|
||||
|
||||
Georgian:
|
||||
|
||||
From a Unicode conference invitation:
|
||||
|
||||
გთხოვთ ახლავე გაიაროთ რეგისტრაცია Unicode-ის მეათე საერთაშორისო
|
||||
კონფერენციაზე დასასწრებად, რომელიც გაიმართება 10-12 მარტს,
|
||||
ქ. მაინცში, გერმანიაში. კონფერენცია შეჰკრებს ერთად მსოფლიოს
|
||||
ექსპერტებს ისეთ დარგებში როგორიცაა ინტერნეტი და Unicode-ი,
|
||||
ინტერნაციონალიზაცია და ლოკალიზაცია, Unicode-ის გამოყენება
|
||||
ოპერაციულ სისტემებსა, და გამოყენებით პროგრამებში, შრიფტებში,
|
||||
ტექსტების დამუშავებასა და მრავალენოვან კომპიუტერულ სისტემებში.
|
||||
|
||||
Russian:
|
||||
|
||||
From a Unicode conference invitation:
|
||||
|
||||
Зарегистрируйтесь сейчас на Десятую Международную Конференцию по
|
||||
Unicode, которая состоится 10-12 марта 1997 года в Майнце в Германии.
|
||||
Конференция соберет широкий круг экспертов по вопросам глобального
|
||||
Интернета и Unicode, локализации и интернационализации, воплощению и
|
||||
применению Unicode в различных операционных системах и программных
|
||||
приложениях, шрифтах, верстке и многоязычных компьютерных системах.
|
||||
|
||||
Thai (UCS Level 2):
|
||||
|
||||
Excerpt from a poetry on The Romance of The Three Kingdoms (a Chinese
|
||||
classic 'San Gua'):
|
||||
|
||||
[----------------------------|------------------------]
|
||||
๏ แผ่นดินฮั่นเสื่อมโทรมแสนสังเวช พระปกเกศกองบู๊กู้ขึ้นใหม่
|
||||
สิบสองกษัตริย์ก่อนหน้าแลถัดไป สององค์ไซร้โง่เขลาเบาปัญญา
|
||||
ทรงนับถือขันทีเป็นที่พึ่ง บ้านเมืองจึงวิปริตเป็นนักหนา
|
||||
โฮจิ๋นเรียกทัพทั่วหัวเมืองมา หมายจะฆ่ามดชั่วตัวสำคัญ
|
||||
เหมือนขับไสไล่เสือจากเคหา รับหมาป่าเข้ามาเลยอาสัญ
|
||||
ฝ่ายอ้องอุ้นยุแยกให้แตกกัน ใช้สาวนั้นเป็นชนวนชื่นชวนใจ
|
||||
พลันลิฉุยกุยกีกลับก่อเหตุ ช่างอาเพศจริงหนาฟ้าร้องไห้
|
||||
ต้องรบราฆ่าฟันจนบรรลัย ฤๅหาใครค้ำชูกู้บรรลังก์ ฯ
|
||||
|
||||
(The above is a two-column text. If combining characters are handled
|
||||
correctly, the lines of the second column should be aligned with the
|
||||
| character above.)
|
||||
|
||||
Ethiopian:
|
||||
|
||||
Proverbs in the Amharic language:
|
||||
|
||||
ሰማይ አይታረስ ንጉሥ አይከሰስ።
|
||||
ብላ ካለኝ እንደአባቴ በቆመጠኝ።
|
||||
ጌጥ ያለቤቱ ቁምጥና ነው።
|
||||
ደሀ በሕልሙ ቅቤ ባይጠጣ ንጣት በገደለው።
|
||||
የአፍ ወለምታ በቅቤ አይታሽም።
|
||||
አይጥ በበላ ዳዋ ተመታ።
|
||||
ሲተረጉሙ ይደረግሙ።
|
||||
ቀስ በቀስ፥ ዕንቁላል በእግሩ ይሄዳል።
|
||||
ድር ቢያብር አንበሳ ያስር።
|
||||
ሰው እንደቤቱ እንጅ እንደ ጉረቤቱ አይተዳደርም።
|
||||
እግዜር የከፈተውን ጉሮሮ ሳይዘጋው አይድርም።
|
||||
የጎረቤት ሌባ፥ ቢያዩት ይስቅ ባያዩት ያጠልቅ።
|
||||
ሥራ ከመፍታት ልጄን ላፋታት።
|
||||
ዓባይ ማደሪያ የለው፥ ግንድ ይዞ ይዞራል።
|
||||
የእስላም አገሩ መካ የአሞራ አገሩ ዋርካ።
|
||||
ተንጋሎ ቢተፉ ተመልሶ ባፉ።
|
||||
ወዳጅህ ማር ቢሆን ጨርስህ አትላሰው።
|
||||
እግርህን በፍራሽህ ልክ ዘርጋ።
|
||||
|
||||
Runes:
|
||||
|
||||
ᚻᛖ ᚳᚹᚫᚦ ᚦᚫᛏ ᚻᛖ ᛒᚢᛞᛖ ᚩᚾ ᚦᚫᛗ ᛚᚪᚾᛞᛖ ᚾᚩᚱᚦᚹᛖᚪᚱᛞᚢᛗ ᚹᛁᚦ ᚦᚪ ᚹᛖᛥᚫ
|
||||
|
||||
(Old English, which transcribed into Latin reads 'He cwaeth that he
|
||||
bude thaem lande northweardum with tha Westsae.' and means 'He said
|
||||
that he lived in the northern land near the Western Sea.')
|
||||
|
||||
Braille:
|
||||
|
||||
⡌⠁⠧⠑ ⠼⠁⠒ ⡍⠜⠇⠑⠹⠰⠎ ⡣⠕⠌
|
||||
|
||||
⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠙⠑⠁⠙⠒ ⠞⠕ ⠃⠑⠛⠔ ⠺⠊⠹⠲ ⡹⠻⠑ ⠊⠎ ⠝⠕ ⠙⠳⠃⠞
|
||||
⠱⠁⠞⠑⠧⠻ ⠁⠃⠳⠞ ⠹⠁⠞⠲ ⡹⠑ ⠗⠑⠛⠊⠌⠻ ⠕⠋ ⠙⠊⠎ ⠃⠥⠗⠊⠁⠇ ⠺⠁⠎
|
||||
⠎⠊⠛⠝⠫ ⠃⠹ ⠹⠑ ⠊⠇⠻⠛⠹⠍⠁⠝⠂ ⠹⠑ ⠊⠇⠻⠅⠂ ⠹⠑ ⠥⠝⠙⠻⠞⠁⠅⠻⠂
|
||||
⠁⠝⠙ ⠹⠑ ⠡⠊⠑⠋ ⠍⠳⠗⠝⠻⠲ ⡎⠊⠗⠕⠕⠛⠑ ⠎⠊⠛⠝⠫ ⠊⠞⠲ ⡁⠝⠙
|
||||
⡎⠊⠗⠕⠕⠛⠑⠰⠎ ⠝⠁⠍⠑ ⠺⠁⠎ ⠛⠕⠕⠙ ⠥⠏⠕⠝ ⠰⡡⠁⠝⠛⠑⠂ ⠋⠕⠗ ⠁⠝⠹⠹⠔⠛ ⠙⠑
|
||||
⠡⠕⠎⠑ ⠞⠕ ⠏⠥⠞ ⠙⠊⠎ ⠙⠁⠝⠙ ⠞⠕⠲
|
||||
|
||||
⡕⠇⠙ ⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠁⠎ ⠙⠑⠁⠙ ⠁⠎ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲
|
||||
|
||||
⡍⠔⠙⠖ ⡊ ⠙⠕⠝⠰⠞ ⠍⠑⠁⠝ ⠞⠕ ⠎⠁⠹ ⠹⠁⠞ ⡊ ⠅⠝⠪⠂ ⠕⠋ ⠍⠹
|
||||
⠪⠝ ⠅⠝⠪⠇⠫⠛⠑⠂ ⠱⠁⠞ ⠹⠻⠑ ⠊⠎ ⠏⠜⠞⠊⠊⠥⠇⠜⠇⠹ ⠙⠑⠁⠙ ⠁⠃⠳⠞
|
||||
⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲ ⡊ ⠍⠊⠣⠞ ⠙⠁⠧⠑ ⠃⠑⠲ ⠔⠊⠇⠔⠫⠂ ⠍⠹⠎⠑⠇⠋⠂ ⠞⠕
|
||||
⠗⠑⠛⠜⠙ ⠁ ⠊⠕⠋⠋⠔⠤⠝⠁⠊⠇ ⠁⠎ ⠹⠑ ⠙⠑⠁⠙⠑⠌ ⠏⠊⠑⠊⠑ ⠕⠋ ⠊⠗⠕⠝⠍⠕⠝⠛⠻⠹
|
||||
⠔ ⠹⠑ ⠞⠗⠁⠙⠑⠲ ⡃⠥⠞ ⠹⠑ ⠺⠊⠎⠙⠕⠍ ⠕⠋ ⠳⠗ ⠁⠝⠊⠑⠌⠕⠗⠎
|
||||
⠊⠎ ⠔ ⠹⠑ ⠎⠊⠍⠊⠇⠑⠆ ⠁⠝⠙ ⠍⠹ ⠥⠝⠙⠁⠇⠇⠪⠫ ⠙⠁⠝⠙⠎
|
||||
⠩⠁⠇⠇ ⠝⠕⠞ ⠙⠊⠌⠥⠗⠃ ⠊⠞⠂ ⠕⠗ ⠹⠑ ⡊⠳⠝⠞⠗⠹⠰⠎ ⠙⠕⠝⠑ ⠋⠕⠗⠲ ⡹⠳
|
||||
⠺⠊⠇⠇ ⠹⠻⠑⠋⠕⠗⠑ ⠏⠻⠍⠊⠞ ⠍⠑ ⠞⠕ ⠗⠑⠏⠑⠁⠞⠂ ⠑⠍⠏⠙⠁⠞⠊⠊⠁⠇⠇⠹⠂ ⠹⠁⠞
|
||||
⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠁⠎ ⠙⠑⠁⠙ ⠁⠎ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲
|
||||
|
||||
(The first couple of paragraphs of "A Christmas Carol" by Dickens)
|
||||
|
||||
Compact font selection example text:
|
||||
|
||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ /0123456789
|
||||
abcdefghijklmnopqrstuvwxyz £©µÀÆÖÞßéöÿ
|
||||
–—‘“”„†•…‰™œŠŸž€ ΑΒΓΔΩαβγδω АБВГДабвгд
|
||||
∀∂∈ℝ∧∪≡∞ ↑↗↨↻⇣ ┐┼╔╘░►☺♀ fi?⑀₂ἠḂӥẄɐː⍎אԱა
|
||||
|
||||
Greetings in various languages:
|
||||
|
||||
Hello world, Καλημέρα κόσμε, コンニチハ
|
||||
|
||||
Box drawing alignment tests: █
|
||||
▉
|
||||
╔══╦══╗ ┌──┬──┐ ╭──┬──╮ ╭──┬──╮ ┏━━┳━━┓ ┎┒┏┑ ╷ ╻ ┏┯┓ ┌┰┐ ▊ ╱╲╱╲╳╳╳
|
||||
║┌─╨─┐║ │╔═╧═╗│ │╒═╪═╕│ │╓─╁─╖│ ┃┌─╂─┐┃ ┗╃╄┙ ╶┼╴╺╋╸┠┼┨ ┝╋┥ ▋ ╲╱╲╱╳╳╳
|
||||
║│╲ ╱│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╿ │┃ ┍╅╆┓ ╵ ╹ ┗┷┛ └┸┘ ▌ ╱╲╱╲╳╳╳
|
||||
╠╡ ╳ ╞╣ ├╢ ╟┤ ├┼─┼─┼┤ ├╫─╂─╫┤ ┣┿╾┼╼┿┫ ┕┛┖┚ ┌┄┄┐ ╎ ┏┅┅┓ ┋ ▍ ╲╱╲╱╳╳╳
|
||||
║│╱ ╲│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╽ │┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▎
|
||||
║└─╥─┘║ │╚═╤═╝│ │╘═╪═╛│ │╙─╀─╜│ ┃└─╂─┘┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▏
|
||||
╚══╩══╝ └──┴──┘ ╰──┴──╯ ╰──┴──╯ ┗━━┻━━┛ ▗▄▖▛▀▜ └╌╌┘ ╎ ┗╍╍┛ ┋ ▁▂▃▄▅▆▇█
|
||||
▝▀▘▙▄▟
|
||||
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-array.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Array API header for CUPS.
|
||||
|
||||
@@ -413,7 +413,7 @@ div.contents ul.subcontents li {
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-array.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Array API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-cgi.html 9740 2011-05-04 06:26:22Z mike $"
|
||||
|
||||
CGI API header for CUPS.
|
||||
|
||||
@@ -437,7 +437,7 @@ by the template file.">cgiGetAttributes</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-cgi.html 9740 2011-05-04 06:26:22Z mike $"
|
||||
|
||||
CGI API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-cups.html 10909 2013-03-14 18:45:49Z mike $"
|
||||
|
||||
CUPS API header for CUPS.
|
||||
|
||||
@@ -547,7 +547,7 @@ constants">cups_ptype_e</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-cups.html 10909 2013-03-14 18:45:49Z mike $"
|
||||
|
||||
API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-driver.html 9740 2011-05-04 06:26:22Z mike $"
|
||||
|
||||
Driver API header for CUPS.
|
||||
|
||||
@@ -430,7 +430,7 @@ media, and resolution.">cupsFindAttr</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-driver.html 9740 2011-05-04 06:26:22Z mike $"
|
||||
|
||||
Driver API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filedir.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
File and Directory API header for CUPS.
|
||||
|
||||
@@ -424,7 +424,7 @@ file.">cupsFileRewind</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filedir.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
File and directory API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filter.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Filter and backend programming header for CUPS.
|
||||
|
||||
@@ -426,7 +426,7 @@ div.contents ul.subcontents li {
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-filter.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Filter and backend programming introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-httpipp.html 10922 2013-03-20 18:14:10Z mike $"
|
||||
|
||||
HTTP and IPP API header for CUPS.
|
||||
|
||||
@@ -676,7 +676,7 @@ are server-oriented...">http_state_e</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-httpipp.html 10922 2013-03-20 18:14:10Z mike $"
|
||||
|
||||
HTTP and IPP API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-mime.html 9772 2011-05-12 05:46:30Z mike $"
|
||||
|
||||
MIME API header for CUPS.
|
||||
|
||||
@@ -412,7 +412,7 @@ including file size.">mimeFilter2</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-mime.html 9772 2011-05-12 05:46:30Z mike $"
|
||||
|
||||
MIME API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-overview.html 9772 2011-05-12 05:46:30Z mike $"
|
||||
|
||||
Introduction to CUPS programming header for CUPS.
|
||||
|
||||
@@ -403,7 +403,7 @@ div.contents ul.subcontents li {
|
||||
<li><a href="#WHERETOGO">Where to Go Next</a></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-overview.html 9772 2011-05-12 05:46:30Z mike $"
|
||||
|
||||
Introduction to CUPS programming content for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-ppd.html 10441 2012-04-30 20:59:09Z mike $"
|
||||
|
||||
PPD API header for CUPS.
|
||||
|
||||
@@ -486,7 +486,7 @@ conflicts.">ppdMarkOption</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-ppd.html 10441 2012-04-30 20:59:09Z mike $"
|
||||
|
||||
PPD API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-ppdc.html 10356 2012-03-16 16:03:10Z mike $"
|
||||
|
||||
PPD Compiler API header for CUPS.
|
||||
|
||||
@@ -414,7 +414,7 @@ div.contents ul.subcontents li {
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-ppdc.html 10356 2012-03-16 16:03:10Z mike $"
|
||||
|
||||
PPD Compiler API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-raster.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Raster API documentation for CUPS.
|
||||
|
||||
@@ -434,7 +434,7 @@ page header structure.">cupsRasterWriteHeader2</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-raster.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Raster API introduction for CUPS.
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
client.conf - client configuration file for cups
|
||||
<h2 class="title"><a name="DESCRIPTION">Description</a></h2>
|
||||
The <i>client.conf</i> file configures the CUPS client and is
|
||||
normally located in the <i>/private/etc/cups</i> or <i>~/.cups</i>
|
||||
normally located in the <i>/etc/cups</i> or <i>~/.cups</i>
|
||||
directory. Each line in the file can be a configuration
|
||||
directive, a blank line, or a comment. Comment lines start with
|
||||
the # character.
|
||||
|
||||
@@ -14,7 +14,7 @@ cups-deviced - cups device daemon
|
||||
</b><i>request-id limit user-id options
|
||||
</i><h2 class="title"><a name="DESCRIPTION">Description</a></h2>
|
||||
<i>cups-deviced</i> polls the backends in
|
||||
<i>/usr/libexec/cups/backend</i> for a list of available devices.
|
||||
<i>/usr/lib/cups/backend</i> for a list of available devices.
|
||||
It is run by <a href='man-cupsd.html?TOPIC=Man+Pages'>cupsd(8)</a> in response to a
|
||||
<i>CUPS-Get-Devices</i> request. The output format is an IPP
|
||||
response message. The <i>request-id</i> argument is the request ID
|
||||
|
||||
@@ -36,7 +36,7 @@ accordingly.
|
||||
<h2 class="title"><a name="DRIVERS">Drivers</a></h2>
|
||||
Drivers can be static PPD files under the
|
||||
<i>/usr/share/cups/model</i> directory or programs under the
|
||||
<i>/usr/libexec/cups/driver</i> directory. Static PPD files must
|
||||
<i>/usr/lib/cups/driver</i> directory. Static PPD files must
|
||||
conform to the Adobe PPD File Format Specification version 4.3
|
||||
and may be compressed using the <i>gzip(1)</i> program. Driver
|
||||
programs must implement the command-line interface shown in the
|
||||
|
||||
@@ -12,7 +12,7 @@ cups-files.conf - file and directory configuration file for cups
|
||||
<h2 class="title"><a name="DESCRIPTION">Description</a></h2>
|
||||
The <i>cups-files.conf</i> file configures the files and directories used by the
|
||||
CUPS scheduler, <a href='man-cupsd.html?TOPIC=Man+Pages'>cupsd(8)</a>. It is normally located in the
|
||||
<i>/private/etc/cups</i> directory.
|
||||
<i>/etc/cups</i> directory.
|
||||
<p>Each line in the file can be a configuration directive, a blank line,
|
||||
or a comment. Comment lines start with the # character.
|
||||
<h2 class="title"><a name="DIRECTIVES">Directives</a></h2>
|
||||
|
||||
@@ -27,7 +27,7 @@ add the following line to the <i>inetd.conf</i> file to enable the
|
||||
<br>
|
||||
<pre>
|
||||
|
||||
printer stream tcp nowait lp /usr/libexec/cups/daemon/cups-lpd cups-lpd \
|
||||
printer stream tcp nowait lp /usr/lib/cups/daemon/cups-lpd cups-lpd \
|
||||
-o document-format=application/octet-stream
|
||||
</pre>
|
||||
<p><p><b>Note:</b> If you are using Solaris 10 or higher, you must run
|
||||
@@ -46,7 +46,7 @@ named <i>/etc/xinetd.d/cups</i> containing the following lines:
|
||||
user = lp
|
||||
group = sys
|
||||
passenv =
|
||||
server = /usr/libexec/cups/daemon/cups-lpd
|
||||
server = /usr/lib/cups/daemon/cups-lpd
|
||||
server_args = -o document-format=application/octet-stream
|
||||
}
|
||||
</pre>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<h2 class="title"><a name="NAME">Name</a></h2>
|
||||
snmp - cups snmp backend
|
||||
<h2 class="title"><a name="SYNOPSIS">Synopsis</a></h2>
|
||||
<b>/usr/libexec/cups/backend/snmp
|
||||
<b>/usr/lib/cups/backend/snmp
|
||||
</b><i>ip-address-or-hostname
|
||||
</i><br>
|
||||
<b>lpinfo -v --include-schemes snmp
|
||||
@@ -34,7 +34,7 @@ The CUPS SNMP backend uses the information from the Host, Printer, and Port
|
||||
Monitor MIBs along with some vendor private MIBs and intelligent port probes to
|
||||
determine the correct device URI and make and model for each printer.
|
||||
<h2 class="title"><a name="CONFIGURATION">Configuration</a></h2>
|
||||
The SNMP backend reads the /private/etc/cups/snmp.conf configuration file, if
|
||||
The SNMP backend reads the /etc/cups/snmp.conf configuration file, if
|
||||
present, to set the default broadcast address, community name, and logging
|
||||
level. The configuration file is documented in <a href='man-cups-snmp.conf.html?TOPIC=Man+Pages'>cups-snmp.conf(5)</a>. The
|
||||
DebugLevel value can be overridden using the CUPS_DEBUG_LEVEL environment
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
cupsd.conf - server configuration file for cups
|
||||
<h2 class="title"><a name="DESCRIPTION">Description</a></h2>
|
||||
The <i>cupsd.conf</i> file configures the CUPS scheduler, <a href='man-cupsd.html?TOPIC=Man+Pages'>cupsd(8)</a>. It
|
||||
is normally located in the <i>/private/etc/cups</i> directory. <b>Note:</b>
|
||||
is normally located in the <i>/etc/cups</i> directory. <b>Note:</b>
|
||||
File, directory, and user configuration directives that used to be allowed in
|
||||
the <i>cupsd.conf</i> file are now stored in the <a href='man-cups-files.conf.html?TOPIC=Man+Pages'>cups-files.conf(5)</a> instead
|
||||
in order to prevent certain types of privilege escalation attacks.
|
||||
|
||||
@@ -18,7 +18,7 @@ cupsd - cups scheduler
|
||||
<i>cupsd</i> is the scheduler for CUPS. It implements a printing system based
|
||||
upon the Internet Printing Protocol, version 2.1. If no options are specified
|
||||
on the command-line then the default configuration file
|
||||
<i>/private/etc/cups/cupsd.conf</i> will be used.
|
||||
<i>/etc/cups/cupsd.conf</i> will be used.
|
||||
<h2 class="title"><a name="OPTIONS">Options</a></h2>
|
||||
<dl>
|
||||
<dt>-c config-file
|
||||
|
||||
@@ -118,14 +118,14 @@ standard output.
|
||||
<h2 class="title"><a name="ROOT_ACCOUNT_OPTIONS">Root Account Options</a></h2>
|
||||
When run by the root user, <i>lpoptions</i> gets and sets default
|
||||
options and instances for <i>all users</i> in the
|
||||
/private/etc/cups/lpoptions file.
|
||||
/etc/cups/lpoptions file.
|
||||
<h2 class="title"><a name="COMPATIBILITY">Compatibility</a></h2>
|
||||
The <i>lpoptions</i> command is unique to CUPS.
|
||||
<h2 class="title"><a name="FILES">Files</a></h2>
|
||||
~/.cups/lpoptions - user defaults and instances created by non-root
|
||||
users.
|
||||
<br>
|
||||
/private/etc/cups/lpoptions - system-wide defaults and instances
|
||||
/etc/cups/lpoptions - system-wide defaults and instances
|
||||
created by the root user.
|
||||
<h2 class="title"><a name="SEE_ALSO">See Also</a></h2>
|
||||
<a href='man-cancel.html?TOPIC=Man+Pages'>cancel(1)</a>, <a href='man-lp.html?TOPIC=Man+Pages'>lp(1)</a>, <a href='man-lpadmin.html?TOPIC=Man+Pages'>lpadmin(8)</a>, <a href='man-lpr.html?TOPIC=Man+Pages'>lpr(1)</a>,
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: postscript-driver.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
PostScript printer driver documentation for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: ppd-compiler.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
PPD compiler documentation for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: raster-driver.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Raster printer driver documentation for CUPS.
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: spec-banner.html 9727 2011-04-28 21:20:12Z mike $"
|
||||
|
||||
Banner file format specification for CUPS.
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: spec-command.html 9727 2011-04-28 21:20:12Z mike $"
|
||||
|
||||
CUPS command file format specification for CUPS.
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: spec-ipp.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
CUPS IPP specification for CUPS.
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: spec-postscript.html 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
CUPS PostScript file specification for CUPS.
|
||||
|
||||
|
||||
@@ -341,7 +341,7 @@ div.contents ul.subcontents li {
|
||||
<body>
|
||||
<div class='body'>
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: spec-ppd.html 10587 2012-08-30 20:22:22Z mike $"
|
||||
|
||||
PPD extension documentation for CUPS.
|
||||
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# "$Id: robots.txt,v 1.1.2.1 2003/03/19 15:37:44 mike Exp $"
|
||||
# "$Id: robots.txt 3494 2003-03-19 15:37:44Z mike $"
|
||||
#
|
||||
# This file tells search engines not to index your CUPS server.
|
||||
#
|
||||
@@ -26,6 +26,6 @@ User-agent: *
|
||||
Disallow: /
|
||||
|
||||
#
|
||||
# End of "$Id: robots.txt,v 1.1.2.1 2003/03/19 15:37:44 mike Exp $".
|
||||
# End of "$Id: robots.txt 3494 2003-03-19 15:37:44Z mike $".
|
||||
#
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: api-raster.header 9344 2010-10-26 23:45:18Z mike $"
|
||||
|
||||
Raster API documentation for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: postscript-driver.header 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
PostScript printer driver documentation for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: ppd-compiler.header 10307 2012-02-16 05:33:29Z mike $"
|
||||
|
||||
PPD compiler documentation for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: raster-driver.header 10424 2012-04-23 17:26:57Z mike $"
|
||||
|
||||
Raster printer driver documentation for CUPS.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
"$Id$"
|
||||
"$Id: spec-ppd.header 9680 2011-04-13 15:45:24Z mike $"
|
||||
|
||||
PPD extension documentation for CUPS.
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# "$Id$"
|
||||
# "$Id: install-sh 10487 2012-05-21 15:33:01Z mike $"
|
||||
#
|
||||
# Install a program, script, or datafile.
|
||||
#
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: backend.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" Backend man page for CUPS.
|
||||
.\"
|
||||
@@ -168,5 +168,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: backend.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cancel.man 10831 2013-01-21 14:25:46Z mike $"
|
||||
.\"
|
||||
.\" cancel man page for CUPS.
|
||||
.\"
|
||||
@@ -75,5 +75,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cancel.man 10831 2013-01-21 14:25:46Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: classes.conf.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" classes.conf man page for CUPS.
|
||||
.\"
|
||||
@@ -106,5 +106,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: classes.conf.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cups-config.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" cups-config man page for CUPS.
|
||||
.\"
|
||||
@@ -113,5 +113,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cups-config.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cups-snmp.conf.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" snmp.conf man page for CUPS.
|
||||
.\"
|
||||
@@ -74,5 +74,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cups-snmp.conf.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cupsaccept.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" accept/reject man page for CUPS.
|
||||
.\"
|
||||
@@ -75,5 +75,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cupsaccept.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cupsctl.man 10806 2013-01-11 21:50:03Z mike $"
|
||||
.\"
|
||||
.\" cupsctl man page for CUPS.
|
||||
.\"
|
||||
@@ -93,5 +93,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cupsctl.man 10806 2013-01-11 21:50:03Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cupsenable.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" cupsenable/cupsdisable man page for CUPS.
|
||||
.\"
|
||||
@@ -89,5 +89,5 @@ http://localhost:631/help
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cupsenable.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cupsfilter.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" cupsfilter man page for CUPS.
|
||||
.\"
|
||||
@@ -105,5 +105,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cupsfilter.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cupstestdsc.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" cupstestdsc man page for CUPS.
|
||||
.\"
|
||||
@@ -46,5 +46,5 @@ Specification, Version 3.0.
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cupstestdsc.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: cupstestppd.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" cupstestppd man page for CUPS.
|
||||
.\"
|
||||
@@ -161,5 +161,5 @@ Adobe PostScript Printer Description File Format Specification, Version 4.3.
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: cupstestppd.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: filter.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" filter man page for CUPS.
|
||||
.\"
|
||||
@@ -234,5 +234,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: filter.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: ipptool.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" ipptool man page for CUPS.
|
||||
.\"
|
||||
@@ -139,5 +139,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: ipptool.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: ipptoolfile.man 10788 2013-01-10 16:51:07Z mike $"
|
||||
.\"
|
||||
.\" ipptoolfile man page for CUPS.
|
||||
.\"
|
||||
@@ -579,5 +579,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: ipptoolfile.man 10788 2013-01-10 16:51:07Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lp.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lp man page for CUPS.
|
||||
.\"
|
||||
@@ -248,5 +248,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lp.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpadmin.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpadmin man page for CUPS.
|
||||
.\"
|
||||
@@ -223,5 +223,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpadmin.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpc.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpc man page for CUPS.
|
||||
.\"
|
||||
@@ -67,5 +67,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpc.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpinfo.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpinfo man page for CUPS.
|
||||
.\"
|
||||
@@ -111,5 +111,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpinfo.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpmove.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpmove man page for CUPS.
|
||||
.\"
|
||||
@@ -62,5 +62,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpmove.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lppasswd.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpadmin man page for CUPS.
|
||||
.\"
|
||||
@@ -64,5 +64,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lppasswd.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpq.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpq man page for CUPS.
|
||||
.\"
|
||||
@@ -68,5 +68,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpq.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpr.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpr man page for CUPS.
|
||||
.\"
|
||||
@@ -118,5 +118,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpr.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lprm.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lprm man page for CUPS.
|
||||
.\"
|
||||
@@ -61,5 +61,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lprm.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: lpstat.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" lpstat man page for CUPS.
|
||||
.\"
|
||||
@@ -139,5 +139,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: lpstat.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\"
|
||||
.\" "$Id$"
|
||||
.\" "$Id: mailto.conf.man 10790 2013-01-10 16:58:01Z mike $"
|
||||
.\"
|
||||
.\" mailto.conf man page for CUPS.
|
||||
.\"
|
||||
@@ -56,5 +56,5 @@ http://localhost:631/help
|
||||
.SH COPYRIGHT
|
||||
Copyright 2007-2013 by Apple Inc.
|
||||
.\"
|
||||
.\" End of "$Id$".
|
||||
.\" End of "$Id: mailto.conf.man 10790 2013-01-10 16:58:01Z mike $".
|
||||
.\"
|
||||
|
||||
Alguns arquivos não foram exibidos porque demasiados arquivos foram alterados neste diff Mostrar Mais
Referência em uma Nova Issue
Bloquear um usuário