dnl Version number information...
CUPS_VERSION="AC_PACKAGE_VERSION"
-CUPS_REVISION=""
+CUPS_API_VERSION="$(echo AC_PACKAGE_VERSION | awk -F. '{print $1 "." $2}')"
CUPS_BUILD="cups-$CUPS_VERSION"
AC_ARG_WITH([cups_build], AS_HELP_STRING([--with-cups-build], [set "pkg-config --variable=build" string]), [
CUPS_BUILD="$withval"
])
-AC_SUBST([CUPS_VERSION])
-AC_SUBST([CUPS_REVISION])
+AC_SUBST([CUPS_API_VERSION])
AC_SUBST([CUPS_BUILD])
-AC_DEFINE_UNQUOTED([CUPS_SVERSION], ["AC_PACKAGE_NAME v$CUPS_VERSION$CUPS_REVISION"], [Version number])
-AC_DEFINE_UNQUOTED([CUPS_MINIMAL], ["AC_PACKAGE_NAME/$CUPS_VERSION$CUPS_REVISION"], [Version for HTTP headers])
+AC_SUBST([CUPS_VERSION])
+AC_DEFINE_UNQUOTED([CUPS_SVERSION], ["AC_PACKAGE_NAME v$CUPS_VERSION"], [Version number])
+AC_DEFINE_UNQUOTED([CUPS_MINIMAL], ["AC_PACKAGE_NAME/$CUPS_VERSION"], [Version for HTTP headers])
dnl Default compiler flags...
CFLAGS="${CFLAGS:=}"
dnl Check for pkg-config, which is used for some other tests later on...
AC_PATH_TOOL([PKGCONFIG], [pkg-config])
-PKGCONFIG_REQUIRES=""
+PKGCONFIG_CFLAGS=""
PKGCONFIG_LIBS=""
+PKGCONFIG_LIBS_STATIC=""
+PKGCONFIG_REQUIRES=""
+AC_SUBST([PKGCONFIG_CFLAGS])
AC_SUBST([PKGCONFIG_LIBS])
+AC_SUBST([PKGCONFIG_LIBS_STATIC])
AC_SUBST([PKGCONFIG_REQUIRES])
dnl Check for libraries...
AC_SUBST([INSTALL_GZIP])
AC_SUBST([LIBZ])
-PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBZ"
+PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $LIBZ"
dnl Flags for "ar" command...
AS_CASE([host_os_name], [darwin* | *bsd*], [
BACKLIBS="$BACKLIBS -framework IOKit"
SERVERLIBS="$SERVERLIBS -framework IOKit -weak_framework ApplicationServices"
LIBS="-framework CoreFoundation -framework Security $LIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC -framework CoreFoundation -framework Security"
dnl Check for framework headers...
AC_CHECK_HEADER([ApplicationServices/ApplicationServices.h], [
AS_IF([test "$includedir" = "\${prefix}/include" -a "$prefix" = "/"], [
includedir="/usr/include"
])
+AS_IF([test "$includedir" != "/usr/include"], [
+ PKGCONFIG_CFLAGS="$PKGCONFIG_CFLAGS -I$includedir"
+])
dnl Fix "localstatedir" variable if it hasn't been specified...
AS_IF([test "$localstatedir" = "\${prefix}/var"], [
AS_CASE(["$host_os_name"], [linux*], [
AS_IF([test -d /usr/lib64 -a ! -d /usr/lib64/fakeroot], [
libdir="$exec_prefix/lib64"
+ ], [
+ libdir="$exec_prefix/lib"
])
+ ], [*], [
+ libdir="$exec_prefix/lib"
])
])
+AS_IF([test "$libdir" = "/usr/lib"], [
+ PKGCONFIG_LIBS="-lcups"
+], [
+ PKGCONFIG_LIBS="-L$libdir -lcups"
+])
dnl Setup default locations...
# Cache data...
DNSSD_BACKEND="dnssd"
IPPFIND_BIN="ippfind"
IPPFIND_MAN="ippfind.1"
- PKGCONFIG_LIBS="$PKGCONFIG_LIBS $DNSSDLIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $DNSSDLIBS"
], [
AC_MSG_RESULT([no])
AS_IF([test $with_dnssd = mdnsresponder], [
])
])
-PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBS"
dnl Then try Avahi...
AS_IF([test $with_dnssd = avahi -o $with_dnssd = yes], [
AS_IF([test "x$PKGCONFIG" = x], [
SAVELIBS="$LIBS"
LIBS="$LIBS $LIBGSSAPI"
- PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $LIBGSSAPI"
AC_CHECK_FUNC([__ApplePrivate_gss_acquire_cred_ex_f], [
AC_DEFINE([HAVE_GSS_ACQUIRE_CRED_EX_F], [1], [Have __ApplePrivate_gss_acquire_cred_ex_f function?])
LIBS="$SAVELIBS"
])
-PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBGSSAPI"
dnl Default GSS service name...
AC_ARG_WITH([gssservicename], AS_HELP_STRING([--with-gssservicename], [set default gss service name]), [
with_tls="gnutls"
TLSLIBS="$($PKGCONFIG --libs gnutls)"
TLSFLAGS="$($PKGCONFIG --cflags gnutls)"
- PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES gnutls"
+ PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES gnutls"
AC_DEFINE([HAVE_TLS], [1], [Do we support TLS?])
AC_DEFINE([HAVE_GNUTLS], [1], [Do we have the GNU TLS library?])
], [
with_tls="gnutls"
TLSLIBS="$($LIBGNUTLSCONFIG --libs)"
TLSFLAGS="$($LIBGNUTLSCONFIG --cflags)"
- PKGCONFIG_LIBS="$PKGCONFIG_LIBS $TLSLIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $TLSLIBS"
AC_DEFINE([HAVE_TLS], [1], [Do we support TLS?])
AC_DEFINE([HAVE_GNUTLS], [1], [Do we have the GNU TLS library?])
])
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.70 for CUPS 2.4rc1.
+# Generated by GNU Autoconf 2.70 for CUPS 2.4.0.
#
# Report bugs to <https://github.com/openprinting/cups/issues>.
#
# Identity of this package.
PACKAGE_NAME='CUPS'
PACKAGE_TARNAME='cups'
-PACKAGE_VERSION='2.4rc1'
-PACKAGE_STRING='CUPS 2.4rc1'
+PACKAGE_VERSION='2.4.0'
+PACKAGE_STRING='CUPS 2.4.0'
PACKAGE_BUGREPORT='https://github.com/openprinting/cups/issues'
PACKAGE_URL='https://openprinting.github.io/cups'
LIBPAPER
LIBMALLOC
PKGCONFIG_REQUIRES
+PKGCONFIG_LIBS_STATIC
PKGCONFIG_LIBS
+PKGCONFIG_CFLAGS
PKGCONFIG
INSTALLSTATIC
CUPS_HTMLVIEW
CFLAGS
CC
AWK
-CUPS_BUILD
-CUPS_REVISION
CUPS_VERSION
+CUPS_BUILD
+CUPS_API_VERSION
CODE_SIGN
LOCALTARGET
host_os
with_dnssd_includes
enable_snapped_cupsd
enable_snapped_clients
+with_our_snap_name
with_snapctl
with_cups_control_slot
with_ondemand
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures CUPS 2.4rc1 to adapt to many kinds of systems.
+\`configure' configures CUPS 2.4.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of CUPS 2.4rc1:";;
+ short | recursive ) echo "Configuration of CUPS 2.4.0:";;
esac
cat <<\_ACEOF
mdnsresponder, no, yes)
--with-dnssd-libs set directory for DNS Service Discovery library
--with-dnssd-includes set directory for DNS Service Discovery header files
+ --with-our-snap-name Set name of the Snap we are snapped in, only needed
+ with --enable-snapped-cupsd, default=cups
--with-snapctl Set path for snapctl, only needed with
--enable-snapped-cupsd, default=/usr/bin/snapctl
--with-cups-control-slot
Name for cups-control slot as defined in
snapcraft.yaml, only needed with
- --enable-snapped-cupsd, default=admin
+ --enable-snapped-cupsd, default=cups-control
--with-ondemand=... Specify the on-demand launch interface (launchd,
systemd, upstart)
--with-systemd set directory for systemd service files
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-CUPS configure 2.4rc1
+CUPS configure 2.4.0
generated by GNU Autoconf 2.70
Copyright (C) 2020 Free Software Foundation, Inc.
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by CUPS $as_me 2.4rc1, which was
+It was created by CUPS $as_me 2.4.0, which was
generated by GNU Autoconf 2.70. Invocation command line was
$ $0$ac_configure_args_raw
ac_config_headers="$ac_config_headers config.h"
-CUPS_VERSION="2.4rc1"
-CUPS_REVISION=""
+CUPS_VERSION="2.4.0"
+CUPS_API_VERSION="$(echo 2.4.0 | awk -F. '{print $1 "." $2}')"
CUPS_BUILD="cups-$CUPS_VERSION"
-printf "%s\n" "#define CUPS_SVERSION \"CUPS v$CUPS_VERSION$CUPS_REVISION\"" >>confdefs.h
+printf "%s\n" "#define CUPS_SVERSION \"CUPS v$CUPS_VERSION\"" >>confdefs.h
-printf "%s\n" "#define CUPS_MINIMAL \"CUPS/$CUPS_VERSION$CUPS_REVISION\"" >>confdefs.h
+printf "%s\n" "#define CUPS_MINIMAL \"CUPS/$CUPS_VERSION\"" >>confdefs.h
CFLAGS="${CFLAGS:=}"
PKGCONFIG="$ac_cv_path_PKGCONFIG"
fi
-PKGCONFIG_REQUIRES=""
+PKGCONFIG_CFLAGS=""
PKGCONFIG_LIBS=""
+PKGCONFIG_LIBS_STATIC=""
+PKGCONFIG_REQUIRES=""
+
+
-PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBZ"
+PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $LIBZ"
case host_os_name in #(
darwin* | *bsd*) :
BACKLIBS="$BACKLIBS -framework IOKit"
SERVERLIBS="$SERVERLIBS -framework IOKit -weak_framework ApplicationServices"
LIBS="-framework CoreFoundation -framework Security $LIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC -framework CoreFoundation -framework Security"
ac_fn_c_check_header_compile "$LINENO" "ApplicationServices/ApplicationServices.h" "ac_cv_header_ApplicationServices_ApplicationServices_h" "$ac_includes_default"
if test "x$ac_cv_header_ApplicationServices_ApplicationServices_h" = xyes
includedir="/usr/include"
+fi
+if test "$includedir" != "/usr/include"
+then :
+
+ PKGCONFIG_CFLAGS="$PKGCONFIG_CFLAGS -I$includedir"
+
fi
if test "$localstatedir" = "\${prefix}/var"
libdir="$exec_prefix/lib64"
+else $as_nop
+
+ libdir="$exec_prefix/lib"
+
fi
;; #(
*) :
+
+ libdir="$exec_prefix/lib"
+ ;; #(
+ *) :
;;
esac
+fi
+if test "$libdir" = "/usr/lib"
+then :
+
+ PKGCONFIG_LIBS="-lcups"
+
+else $as_nop
+
+ PKGCONFIG_LIBS="-L$libdir -lcups"
+
fi
# Cache data...
SAVELIBS="$LIBS"
LIBS="$LIBS $LIBGSSAPI"
- PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $LIBGSSAPI"
+
ac_fn_c_check_func "$LINENO" "__ApplePrivate_gss_acquire_cred_ex_f" "ac_cv_func___ApplePrivate_gss_acquire_cred_ex_f"
if test "x$ac_cv_func___ApplePrivate_gss_acquire_cred_ex_f" = xyes
then :
LIBS="$SAVELIBS"
fi
-PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBGSSAPI"
# Check whether --with-gssservicename was given.
with_tls="gnutls"
TLSLIBS="$($PKGCONFIG --libs gnutls)"
TLSFLAGS="$($PKGCONFIG --cflags gnutls)"
- PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES gnutls"
+ PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES gnutls"
printf "%s\n" "#define HAVE_TLS 1" >>confdefs.h
with_tls="gnutls"
TLSLIBS="$($LIBGNUTLSCONFIG --libs)"
TLSFLAGS="$($LIBGNUTLSCONFIG --cflags)"
- PKGCONFIG_LIBS="$PKGCONFIG_LIBS $TLSLIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $TLSLIBS"
printf "%s\n" "#define HAVE_TLS 1" >>confdefs.h
DNSSD_BACKEND="dnssd"
IPPFIND_BIN="ippfind"
IPPFIND_MAN="ippfind.1"
- PKGCONFIG_LIBS="$PKGCONFIG_LIBS $DNSSDLIBS"
+ PKGCONFIG_LIBS_STATIC="$PKGCONFIG_LIBS_STATIC $DNSSDLIBS"
else $as_nop
fi
-PKGCONFIG_LIBS="$PKGCONFIG_LIBS $LIBS"
if test $with_dnssd = avahi -o $with_dnssd = yes
then :
fi
+# Check whether --with-our-snap-name was given.
+if test ${with_our_snap_name+y}
+then :
+ withval=$with_our_snap_name;
+ OUR_SNAP_NAME="$withval"
+
+else $as_nop
+
+ OUR_SNAP_NAME="cups"
+
+fi
+
+
+printf "%s\n" "#define OUR_SNAP_NAME \"$OUR_SNAP_NAME\"" >>confdefs.h
+
+
# Check whether --with-snapctl was given.
if test ${with_snapctl+y}
then :
else $as_nop
- CUPS_CONTROL_SLOT="admin"
+ CUPS_CONTROL_SLOT="cups-control"
fi
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by CUPS $as_me 2.4rc1, which was
+This file was extended by CUPS $as_me 2.4.0, which was
generated by GNU Autoconf 2.70. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
-CUPS config.status 2.4rc1
+CUPS config.status 2.4.0
configured by $0, generated by GNU Autoconf 2.70,
with options \\"\$ac_cs_config\\"
AC_PREREQ([2.60])
dnl Package name and version...
-AC_INIT([CUPS], [2.4rc1], [https://github.com/openprinting/cups/issues], [cups], [https://openprinting.github.io/cups])
+AC_INIT([CUPS], [2.4.0], [https://github.com/openprinting/cups/issues], [cups], [https://openprinting.github.io/cups])
dnl This line is provided to ensure that you don't run the autoheader program
dnl against this project. Doing so is completely unsupported and WILL cause
#
VERSION="@CUPS_VERSION@"
-APIVERSION="2.4"
+APIVERSION="@CUPS_API_VERSION@"
BUILD="@CUPS_BUILD@"
prefix=@prefix@
-#cups pkg-config file
-
-
-VERSION="@CUPS_VERSION@"
-APIVERSION="2.3"
-BUILD="@CUPS_BUILD@"
+#
+# CUPS pkg-config file
+#
+# Copyright © 2021 by OpenPrinting.
+#
+# Licensed under Apache License v2.0. See the file "LICENSE" for more
+# information.
+#
prefix=@prefix@
exec_prefix=@exec_prefix@
-bindir=@bindir@
includedir=@includedir@
libdir=@libdir@
-datarootdir=@datadir@
-#datadir=@datadir@
-sysconfdir=@sysconfdir@
+
+cups_api_version="@CUPS_API_VERSION@"
+cups_build="@CUPS_BUILD@"
cups_datadir=@CUPS_DATADIR@
cups_serverbin=@CUPS_SERVERBIN@
cups_serverroot=@CUPS_SERVERROOT@
-INSTALLSTATIC=@INSTALLSTATIC@
-
-
-# flags for compiler and linker...
-CFLAGS=" -I${includedir}"
-LDFLAGS="@EXPORT_LDFLAGS@ -L${libdir}"
-Libs.private: @PKGCONFIG_LIBS@
-Name: "CUPS"
-Description: "CUPS API Library"
-Requires.private:@PKGCONFIG_REQUIRES@
-api_version=${APIVERSION}
-build=${BUILD}
-Cflags: ${CFLAGS}
-datadir= ${cups_datadir}
-Libs: @EXTLINKCUPS@
+Name: CUPS
+Description: CUPS API Library
+Version: @CUPS_VERSION@
+URL: https://openprinting.github.io/cups/
+Cflags: @PKGCONFIG_CFLAGS@
+Libs: @PKGCONFIG_LIBS@
-Version: ${VERSION}
\ No newline at end of file
+Requires.private: @PKGCONFIG_REQUIRES@
+Libs.private: @PKGCONFIG_LIBS_STATIC@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta name="viewport" content="width=device-width">
- <title>Home - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>Home - CUPS @CUPS_VERSION@</title>
</head>
<body>
<div class="header">
<ul>
- <li><a href="http://www.cups.org/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a class="active" href="/">Home</a></li>
<li><a href="/admin">Administration</a></li>
<li><a href="/classes/">Classes</a></li>
</div>
<div class="body">
<div class="row">
- <h1>CUPS @CUPS_VERSION@</h1>
- <p>CUPS is the standards-based, open source printing system developed by <a href="http://www.apple.com/">Apple Inc.</a> for macOS<sup>®</sup> and other UNIX<sup>®</sup>-like operating systems.</p>
+ <h1>OpenPrinting CUPS @CUPS_VERSION@</h1>
+ <p>The standards-based, open source printing system developed by <a class="jumbolink" href="https://openprinting.github.io/" target="_blank">OpenPrinting</a> for Linux® and other Unix®-like operating systems. CUPS uses <a href="https://www.pwg.org/ipp/everywhere.html" target="_blank">IPP Everywhere™</a> to support printing to local and network printers.</p>
</div>
<div class="row">
<div class="thirds">
<h2>CUPS for Users</h2>
<p><a href="help/overview.html">Overview of CUPS</a></p>
<p><a href="help/options.html">Command-Line Printing and Options</a></p>
- <p><a href="http://www.cups.org/lists.php?LIST=cups">User Forum</a></p>
</div>
<div class="thirds">
<h2>CUPS for Administrators</h2>
<h2>CUPS for Developers</h2>
<p><a href="help/cupspm.html">CUPS Programming Manual</a></p>
<p><a href="help/api-filter.html">Filter and Backend Programming</a></p>
- <p><a href="http://www.cups.org/lists.php?LIST=cups-devel">Developer Forum</a></p>
</div>
</div>
</div>
- <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2019 Apple Inc. All rights reserved.</div>
+ <div class="footer">Copyright © 2021 OpenPrinting. All rights reserved.</div>
</body>
</html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta name="viewport" content="width=device-width">
- <title>ホーム - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>ホーム - CUPS @CUPS_VERSION@</title>
</head>
<body>
<div class="header">
<ul>
- <li><a href="http://www.cups.org/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a class="active" href="/">ホーム</a></li>
<li><a href="/admin">管理</a></li>
<li><a href="/classes/">クラス</a></li>
<h2>CUPS ユーザー向け</h2>
<p><a href="help/overview.html">CUPS の概要</a></p>
<p><a href="help/options.html">コマンドラインからの印刷とオプション</a></p>
- <p><a href="http://www.cups.org/lists.php?LIST=cups">ユーザーフォーラム</a></p>
</div>
<div class="thirds">
<h2>CUPS 管理者向け</h2>
<h2>CUPS 開発者向け</h2>
<p><a href="help/cupspm.html">CUPS Programming Manual</a></p>
<p><a href="help/api-filter.html">フィルタとバックエンドのプログラミング</a></p>
- <p><a href="http://www.cups.org/lists.php?LIST=cups-devel">開発者フォーラム</a></p>
</div>
</div>
</div>
- <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2019 Apple Inc. All rights reserved.</div>
+ <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2021 OpenPrinting. All rights reserved.</div>
</body>
</html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta name="viewport" content="width=device-width">
- <title>Início - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>Início - CUPS @CUPS_VERSION@</title>
</head>
<body>
<div class="header">
<ul>
- <li><a href="http://www.cups.org/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a class="active" href="/">Início</a></li>
<li><a href="/admin">Administração</a></li>
<li><a href="/classes/">Classes</a></li>
<h2>CUPS para usuários</h2>
<p><a href="help/overview.html">Visão geral do CUPS</a></p>
<p><a href="help/options.html">Impressão e opções em linha de comando</a></p>
- <p><a href="http://www.cups.org/lists.php?LIST=cups">Fórum de usuários</a></p>
</div>
<div class="thirds">
<h2>CUPS para administradores</h2>
<h2>CUPS para desenvolvedores</h2>
<p><a href="help/cupspm.html">CUPS Programming Manual</a></p>
<p><a href="help/api-filter.html">Programação de filtros e backend</a></p>
- <p><a href="http://www.cups.org/lists.php?LIST=cups-devel">Fórum de desenvolvedores</a></p>
</div>
</div>
</div>
- <div class="footer">CUPS e o logo do CUPS são marcas registradas da <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2019 Apple Inc. Todos os direitos reservados.</div>
+ <div class="footer">CUPS e o logo do CUPS são marcas registradas da <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2021 OpenPrinting. Todos os direitos reservados.</div>
</body>
</html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta name="viewport" content="width=device-width">
- <title>Home - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>Home - CUPS @CUPS_VERSION@</title>
</head>
<body>
<div class="header">
<ul>
- <li><a href="http://www.cups.org/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a class="active" href="/">Начало</a></li>
<li><a href="/admin">Администрирование</a></li>
<li><a href="/classes/">Группы</a></li>
<H2>CUPS для пользователей</H2>
<P><A HREF="help/overview.html">Введение в CUPS</A></P>
<P><A HREF="help/options.html">Печать из командной строки</A></P>
- <P><A HREF="http://www.cups.org/lists.php?LIST=cups">Форум пользователей</A></P>
</div>
<div class="thirds">
<H2>CUPS для администраторов</H2>
<H2>CUPS для разработчиков</H2>
<p><a href="help/cupspm.html">CUPS Programming Manual</a></p>
<P><A HREF="help/api-filter.html">Разработка фильтров и модулей</A></P>
- <P><A HREF="http://www.cups.org/lists.php?LIST=cups-devel">Форум разработчиков</A></P>
</div>
</div>
</div>
- <div class="footer">CUPS а также логотип CUPS являются зарегистрированными торговыми марками <A HREF="http://www.apple.com">Apple Inc.</A> Авторские права на CUPS принадлежат (2007-2019) компании Apple Inc. Все права защищены.</div>
+ <div class="footer">CUPS а также логотип CUPS являются зарегистрированными торговыми марками <A HREF="http://www.apple.com">Apple Inc.</A> Авторские права на CUPS принадлежат (2921) компании OpenPrinting Все права защищены.</div>
</body>
</html>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Hjem</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Administration</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Klasser</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Startseite</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Verwaltung</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Klassen</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Inicio</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Administración</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Clases</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Home</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Administration</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Classes</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Home</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Administration</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Classes</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">ホーム</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">管理</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">クラス</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Início</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Administração</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Classes</a></li>
}
}
--></SCRIPT>
- <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ <title>{title} - CUPS @CUPS_VERSION@</title>
</head>
<body onload="check_cookies();">
<div class="header">
<ul>
- <li><a href="https://openprinting.github.io/cups/" target="_blank">CUPS.org</a></li>
+ <li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a href="/">Начало</a></li>
<li><a {SECTION=admin?class="active" :}href="/admin">Администрирование</a></li>
<li><a {SECTION=classes?class="active" :}href="/classes/">Группы</a></li>