From owner-svn-doc-head@freebsd.org Sun Oct 25 02:49:33 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ECD1243FBB7; Sun, 25 Oct 2020 02:49:33 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CJj9T5xcLz4SkM; Sun, 25 Oct 2020 02:49:33 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF4D6224FA; Sun, 25 Oct 2020 02:49:33 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09P2nXHO083529; Sun, 25 Oct 2020 02:49:33 GMT (envelope-from trhodes@FreeBSD.org) Received: (from trhodes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09P2nXAK083528; Sun, 25 Oct 2020 02:49:33 GMT (envelope-from trhodes@FreeBSD.org) Message-Id: <202010250249.09P2nXAK083528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trhodes set sender to trhodes@FreeBSD.org using -f From: Tom Rhodes Date: Sun, 25 Oct 2020 02:49:33 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54630 - head/en_US.ISO8859-1/books/handbook/network-servers X-SVN-Group: doc-head X-SVN-Commit-Author: trhodes X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/network-servers X-SVN-Commit-Revision: 54630 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2020 02:49:34 -0000 Author: trhodes Date: Sun Oct 25 02:49:33 2020 New Revision: 54630 URL: https://svnweb.freebsd.org/changeset/doc/54630 Log: Add a section on HTTP2 with Apache. Reviewed by: bcr, brnrd Differential Revision: https://reviews.freebsd.org/D26850 Modified: head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Sat Oct 24 00:51:37 2020 (r54629) +++ head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Sun Oct 25 02:49:33 2020 (r54630) @@ -3724,6 +3724,119 @@ LoadModule ssl_module libexec/apache24/mod_ssl.sophp.ini-production. These are starting points to assist administrators in their deployment. + + + + HTTP2 Support + + + Apache support for + the HTTP2 protocol is included by default + when installing the port with pkg. The new + version of HTTP includes many improvements + over the previous version, including utilizing a single + connection to a website, reducing overall roundtrips of + TCP connections. Also, packet header data + is compressed and HTTP2 requires + encryption by default. + + When Apache is configured to + only use HTTP2, web browsers will + require secure, encrypted HTTPS + connections. When Apache is + configured to use both versions, HTTP1.1 + will be considered a fall back option if any issues + arise during the connection. + + While this change does require administrators to make + changes, they are positive and equate to a more secure + Internet for everyone. The changes are only required for + sites not currently implementing SSL + and TLS. + + + This configuration depends on the previous sections, + including TLS support. It is + recommended those instructions be followed before + continuing with this configuration. + + + Start the process by enabling the + http2 module by uncommenting the line in + /usr/local/etc/apache24/httpd.conf and + replace the mpm_prefork module with mpm_event as the former + does not support HTTP2. + + LoadModule http2_module libexec/apache24/mod_http2.so +LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so + + + There is a separate + mod_http2 port that is + available. It exists to deliver security and bug fixes + quicker than the module installed with the bundled + apache24 port. It is + not required for HTTP2 support but + is available. When installed, the + mod_h2.so should be used in place + of mod_http2.so in the + Apache configuration. + + + There are two methods to implement HTTP2 + in Apache; one way is globally for + all sites and each VirtualHost running on the system. To enable + HTTP2 globally, add the following line + under the ServerName directive: + + Protocols h2 http/1.1 + + + To enable HTTP2 over plaintext, + use h2 h2c + http/1.1 in the + httpd.conf. + + + Having the h2c here will allow + plaintext HTTP2 data to pass on the + system but is not recommended. In addition, using the + http/1.1 here will allow fallback + to the HTTP1.1 version of the protocol + should it be needed by the system. + + To enable HTTP2 for individual + VirtualHosts, add the same line within the VirtualHost + directive in either httpd.conf or + httpd-ssl.conf. + + Reload the configuration using the + apachectl reload command + and test the configuration either by using either of the + following methods after visiting one of the hosted pages: + + &prompt.root; grep "HTTP/2.0" /var/log/httpd-access.log + + This should return something similar to the following: + + 192.168.1.205 - - [18/Oct/2020:18:34:36 -0400] "GET / HTTP/2.0" 304 - +192.0.2.205 - - [18/Oct/2020:19:19:57 -0400] "GET / HTTP/2.0" 304 - +192.0.0.205 - - [18/Oct/2020:19:20:52 -0400] "GET / HTTP/2.0" 304 - +192.0.2.205 - - [18/Oct/2020:19:23:10 -0400] "GET / HTTP/2.0" 304 - + + The other method is using the web browser's built + in site debugger or tcpdump; however, + using either method is beyond the scope of this + document. + + Support for HTTP2 reverse + proxy connections by using the + mod_proxy_http2.so module. When + configuring the ProxyPass or RewriteRules [P] statements, + they should use h2:// for the connection. + + + From owner-svn-doc-head@freebsd.org Sun Oct 25 22:08:43 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6124845A070; Sun, 25 Oct 2020 22:08:43 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CKBtz1x7Tz4b6N; Sun, 25 Oct 2020 22:08:43 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07544102D4; Sun, 25 Oct 2020 22:08:43 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09PM8gQj098295; Sun, 25 Oct 2020 22:08:42 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09PM8gq8098294; Sun, 25 Oct 2020 22:08:42 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202010252208.09PM8gq8098294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sun, 25 Oct 2020 22:08:42 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54631 - head/share/pgpkeys X-SVN-Group: doc-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/share/pgpkeys X-SVN-Commit-Revision: 54631 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2020 22:08:43 -0000 Author: mandree (ports committer) Date: Sun Oct 25 22:08:42 2020 New Revision: 54631 URL: https://svnweb.freebsd.org/changeset/doc/54631 Log: Update my key and extend lifetime to 500 days from today. Modified: head/share/pgpkeys/mandree.key Modified: head/share/pgpkeys/mandree.key ============================================================================== --- head/share/pgpkeys/mandree.key Sun Oct 25 02:49:33 2020 (r54630) +++ head/share/pgpkeys/mandree.key Sun Oct 25 22:08:42 2020 (r54631) @@ -3,11 +3,11 @@ sh addkey.sh mandree E412B156EFF3855A ; --> -uid Matthias Andree -sub rsa4096/9437860BAA89B603 2015-09-09 [E] [expires: 2020-12-23] +uid Matthias Andree +uid Matthias Andree +sub 4096R/9437860BAA89B603 2015-09-09 [expires: 2022-03-09] ]]> From owner-svn-doc-head@freebsd.org Mon Oct 26 09:16:00 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0095E43F974; Mon, 26 Oct 2020 09:15:59 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CKThv65TLz3yly; Mon, 26 Oct 2020 09:15:59 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B4748185EE; Mon, 26 Oct 2020 09:15:59 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09Q9FxDa011788; Mon, 26 Oct 2020 09:15:59 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09Q9FxuT011787; Mon, 26 Oct 2020 09:15:59 GMT (envelope-from ale@FreeBSD.org) Message-Id: <202010260915.09Q9FxuT011787@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Mon, 26 Oct 2020 09:15:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54632 - head/en_US.ISO8859-1/books/handbook/mail X-SVN-Group: doc-head X-SVN-Commit-Author: ale X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/mail X-SVN-Commit-Revision: 54632 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2020 09:16:00 -0000 Author: ale Date: Mon Oct 26 09:15:59 2020 New Revision: 54632 URL: https://svnweb.freebsd.org/changeset/doc/54632 Log: Remove an extraneous '>' character. PR: 250618 Submitted by: Brian Haug Modified: head/en_US.ISO8859-1/books/handbook/mail/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/mail/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/mail/chapter.xml Sun Oct 25 22:08:42 2020 (r54631) +++ head/en_US.ISO8859-1/books/handbook/mail/chapter.xml Mon Oct 26 09:15:59 2020 (r54632) @@ -1060,7 +1060,7 @@ freefall MX 20 who.cdrom.com customer1.org MX 10 mail.myhost.com - An A> record is + An A record is not needed for customer1.org in order to only handle email for that domain. However, running From owner-svn-doc-head@freebsd.org Mon Oct 26 17:23:19 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7C8FF44A50D; Mon, 26 Oct 2020 17:23:19 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CKhWC2lKKz4Vhl; Mon, 26 Oct 2020 17:23:19 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 417651DF85; Mon, 26 Oct 2020 17:23:19 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09QHNJxk012702; Mon, 26 Oct 2020 17:23:19 GMT (envelope-from jkois@FreeBSD.org) Received: (from jkois@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09QHNJUJ012701; Mon, 26 Oct 2020 17:23:19 GMT (envelope-from jkois@FreeBSD.org) Message-Id: <202010261723.09QHNJUJ012701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkois set sender to jkois@FreeBSD.org using -f From: Johann Kois Date: Mon, 26 Oct 2020 17:23:19 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54633 - head/de_DE.ISO8859-1/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: jkois X-SVN-Commit-Paths: head/de_DE.ISO8859-1/share/xml X-SVN-Commit-Revision: 54633 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2020 17:23:19 -0000 Author: jkois Date: Mon Oct 26 17:23:18 2020 New Revision: 54633 URL: https://svnweb.freebsd.org/changeset/doc/54633 Log: r54605 -> r54618 MFde: Resync the project news Modified: head/de_DE.ISO8859-1/share/xml/news.xml Modified: head/de_DE.ISO8859-1/share/xml/news.xml ============================================================================== --- head/de_DE.ISO8859-1/share/xml/news.xml Mon Oct 26 09:15:59 2020 (r54632) +++ head/de_DE.ISO8859-1/share/xml/news.xml Mon Oct 26 17:23:18 2020 (r54633) @@ -4,7 +4,7 @@ - + ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë¥ê¥ê¡¼¥¹
  • ¥×¥í¥À¥¯¥·¥ç¥ó: &rel122.current;, + &rel121.current;, &rel114.current;
  • Modified: head/ja_JP.eucJP/htdocs/releases/index.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/releases/index.xml Tue Oct 27 23:18:04 2020 (r54642) +++ head/ja_JP.eucJP/htdocs/releases/index.xml Wed Oct 28 10:39:26 2020 (r54643) @@ -5,7 +5,7 @@ ]> - + @@ -40,6 +40,17 @@

    ºÇ¿·¥ê¥ê¡¼¥¹

    ¥×¥í¥À¥¯¥·¥ç¥ó¥ê¥ê¡¼¥¹

    +

    ¥ê¥ê¡¼¥¹ &rel122.current; (&rel122.current.date;) + + ¥¢¥Ê¥¦¥ó¥¹ : + ¥ê¥ê¡¼¥¹¥Î¡¼¥È : + ¥¤¥ó¥¹¥È¡¼¥ë¥¬¥¤¥É : + ¥Ï¡¼¥É¥¦¥§¥¢¥Î¡¼¥È : + README : + Errata (Àµ¸íɽ) : + ¥Á¥§¥Ã¥¯¥µ¥à +

    +

    ¥ê¥ê¡¼¥¹ &rel121.current; (&rel121.current.date;) ¥¢¥Ê¥¦¥ó¥¹ : Modified: head/ja_JP.eucJP/htdocs/security/security.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/security/security.xml Tue Oct 27 23:18:04 2020 (r54642) +++ head/ja_JP.eucJP/htdocs/security/security.xml Wed Oct 28 10:39:26 2020 (r54643) @@ -5,7 +5,7 @@ ]> - + @@ -194,10 +194,16 @@ 2024 ǯ 6 ·î 30 Æü + releng/12.2 + 12.2-RELEASE + 2020 ǯ 10 ·î 27 Æü + 12.3-RELEASE ¸ø³«¤«¤é 3 ¥õ·î¸å + + releng/12.1 12.1-RELEASE 2019 ǯ 11 ·î 4 Æü - 12.2-RELEASE ¸ø³«¤«¤é 3 ¥õ·î¸å + 2022 ǯ 1 ·î 31 Æü stable/11 Modified: head/ja_JP.eucJP/htdocs/where.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/where.xml Tue Oct 27 23:18:04 2020 (r54642) +++ head/ja_JP.eucJP/htdocs/where.xml Wed Oct 28 10:39:26 2020 (r54643) @@ -6,7 +6,7 @@ ]> - + @@ -70,6 +70,70 @@ + + +

    &os; &rel122.current;-RELEASE

    + + + + + + + + + + + + + + + + +
    ¥¤¥ó¥¹¥È¡¼¥é¥¤¥á¡¼¥¸²¾ÁÛ¥Þ¥·¥ó¥¤¥á¡¼¥¸SD ¥«¡¼¥É¥¤¥á¡¼¥¸Ê¸½ñ
    + + + + + + + +
    +
    +

    &os; &rel121.current;-RELEASE

    @@ -119,13 +183,13 @@ Modified: head/ja_JP.eucJP/share/xml/l10n.ent ============================================================================== --- head/ja_JP.eucJP/share/xml/l10n.ent Tue Oct 27 23:18:04 2020 (r54642) +++ head/ja_JP.eucJP/share/xml/l10n.ent Wed Oct 28 10:39:26 2020 (r54643) @@ -20,6 +20,7 @@ + @@ -31,6 +32,14 @@ + + + + + + + + Modified: head/ja_JP.eucJP/share/xml/navibar.l10n.ent ============================================================================== --- head/ja_JP.eucJP/share/xml/navibar.l10n.ent Tue Oct 27 23:18:04 2020 (r54642) +++ head/ja_JP.eucJP/share/xml/navibar.l10n.ent Wed Oct 28 10:39:26 2020 (r54643) @@ -1,7 +1,7 @@ - + @@ -99,6 +99,8 @@
  • FreeBSD ¤ÎÆþ¼êÊýË¡
  • ¥ê¥ê¡¼¥¹¾ðÊó
      +
    • ¥×¥í¥À¥¯¥·¥ç¥ó¥ê¥ê¡¼¥¹:
      + &rel122.current;
    • ¥×¥í¥À¥¯¥·¥ç¥ó¥ê¥ê¡¼¥¹:
      &rel121.current;
    • ¥×¥í¥À¥¯¥·¥ç¥ó¥ê¥ê¡¼¥¹:
      Modified: head/ja_JP.eucJP/share/xml/release.l10n.ent ============================================================================== --- head/ja_JP.eucJP/share/xml/release.l10n.ent Tue Oct 27 23:18:04 2020 (r54642) +++ head/ja_JP.eucJP/share/xml/release.l10n.ent Wed Oct 28 10:39:26 2020 (r54643) @@ -2,7 +2,7 @@ powerpc
    • powerpc64
    • powerpcspe
    • - sparc64 - ?>
  • From owner-svn-doc-head@freebsd.org Wed Oct 28 14:57:51 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DE3CC448D74; Wed, 28 Oct 2020 14:57:51 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CLsBR5Fn6z4F2f; Wed, 28 Oct 2020 14:57:51 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 935D41DF1A; Wed, 28 Oct 2020 14:57:51 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09SEvpWw008624; Wed, 28 Oct 2020 14:57:51 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09SEvpxk008623; Wed, 28 Oct 2020 14:57:51 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <202010281457.09SEvpxk008623@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Wed, 28 Oct 2020 14:57:51 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54644 - head/en_US.ISO8859-1/htdocs/security X-SVN-Group: doc-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs/security X-SVN-Commit-Revision: 54644 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Oct 2020 14:57:51 -0000 Author: gjb Date: Wed Oct 28 14:57:51 2020 New Revision: 54644 URL: https://svnweb.freebsd.org/changeset/doc/54644 Log: Fix the EoL date for 12.1. Submitted by: ryusuke Sponsored by: Rubicon Communications, LLC (netgate.com) Modified: head/en_US.ISO8859-1/htdocs/security/security.xml Modified: head/en_US.ISO8859-1/htdocs/security/security.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/security/security.xml Wed Oct 28 10:39:26 2020 (r54643) +++ head/en_US.ISO8859-1/htdocs/security/security.xml Wed Oct 28 14:57:51 2020 (r54644) @@ -204,7 +204,7 @@ - + From owner-svn-doc-head@freebsd.org Wed Oct 28 18:47:22 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DE54E44D77A; Wed, 28 Oct 2020 18:47:22 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CLyHG5YC6z4Rsm; Wed, 28 Oct 2020 18:47:22 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A266D20BA2; Wed, 28 Oct 2020 18:47:22 +0000 (UTC) (envelope-from bhd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09SIlMeR050904; Wed, 28 Oct 2020 18:47:22 GMT (envelope-from bhd@FreeBSD.org) Received: (from bhd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09SIlMQ5050903; Wed, 28 Oct 2020 18:47:22 GMT (envelope-from bhd@FreeBSD.org) Message-Id: <202010281847.09SIlMQ5050903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhd set sender to bhd@FreeBSD.org using -f From: Bjoern Heidotting Date: Wed, 28 Oct 2020 18:47:22 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54645 - head/en_US.ISO8859-1/books/handbook/network-servers X-SVN-Group: doc-head X-SVN-Commit-Author: bhd X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/network-servers X-SVN-Commit-Revision: 54645 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Oct 2020 18:47:22 -0000 Author: bhd Date: Wed Oct 28 18:47:22 2020 New Revision: 54645 URL: https://svnweb.freebsd.org/changeset/doc/54645 Log: Since we're not providing any output of the 'pkg search php' command, this sentence is at least confusing. Just remove it! Reviewed by: bcr Differential Revision: https://reviews.freebsd.org/D26945 Modified: head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Wed Oct 28 14:57:51 2020 (r54644) +++ head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml Wed Oct 28 18:47:22 2020 (r54645) @@ -3647,9 +3647,7 @@ LoadModule ssl_module libexec/apache24/mod_ssl.so For all supported versions, search the package database - using pkg. Here is an example of the - available PHP packages as of the time - of this writing: + using pkg: &prompt.root; pkg search php From owner-svn-doc-head@freebsd.org Thu Oct 29 07:23:57 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BB1AC443B7C; Thu, 29 Oct 2020 07:23:57 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMH4F4b0kz4J2C; Thu, 29 Oct 2020 07:23:57 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 80B2229CD6; Thu, 29 Oct 2020 07:23:57 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T7Nv1X018369; Thu, 29 Oct 2020 07:23:57 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T7NvAu018368; Thu, 29 Oct 2020 07:23:57 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010290723.09T7NvAu018368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 07:23:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54646 - head/zh_TW.UTF-8/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_TW.UTF-8/share/xml X-SVN-Commit-Revision: 54646 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 07:23:57 -0000 Author: rcyu Date: Thu Oct 29 07:23:57 2020 New Revision: 54646 URL: https://svnweb.freebsd.org/changeset/doc/54646 Log: - Traditional Chinese Translation of the latest news item (October 21 and 27th) Merge the following from the English version : r54605 -> r54642 Modified: head/zh_TW.UTF-8/share/xml/news.xml Modified: head/zh_TW.UTF-8/share/xml/news.xml ============================================================================== --- head/zh_TW.UTF-8/share/xml/news.xml Wed Oct 28 18:47:22 2020 (r54645) +++ head/zh_TW.UTF-8/share/xml/news.xml Thu Oct 29 07:23:57 2020 (r54646) @@ -22,7 +22,7 @@ The FreeBSD Traditional Chinese Documentation Project From: www/share/xml/news.xml $FreeBSD$ - Original revision: r54605 + Original revision: r54642 --> @@ -35,6 +35,32 @@ 10 + + + 27 + + + &os; 12.2-RELEASE 發布了 + +

    FreeBSD + 12.2-RELEASEç¾å·²ç™¼å¸ƒäº†ã€‚安è£å‰ï¼Œè«‹æŸ¥çœ‹ç™¼å¸ƒé€šçŸ¥å’Œç™¼è¡Œå‹˜èª¤ä»¥äº†è§£ 12.2 的最新消æ¯å’Œå•é¡Œã€‚更多資訊å¯æŸ¥çœ‹ç™¼è¡Œç‰ˆè³‡è¨Šé é¢ã€‚

    + +
    +
    + + + 21 + + 2020 第三季開發進度報告發布 + +

    + 2020 第三季開發進度報告 35 則æ¢ç›®ç¾å·²ç™¼å¸ƒã€‚

    +
    +
    17 From owner-svn-doc-head@freebsd.org Thu Oct 29 07:55:43 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 71FA1444A52; Thu, 29 Oct 2020 07:55:43 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMHmv2Rnrz4L2c; Thu, 29 Oct 2020 07:55:43 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 37F2C2A589; Thu, 29 Oct 2020 07:55:43 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T7thpN037139; Thu, 29 Oct 2020 07:55:43 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T7thI4037138; Thu, 29 Oct 2020 07:55:43 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010290755.09T7thI4037138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 07:55:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54647 - head/zh_TW.UTF-8/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_TW.UTF-8/share/xml X-SVN-Commit-Revision: 54647 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 07:55:43 -0000 Author: rcyu Date: Thu Oct 29 07:55:42 2020 New Revision: 54647 URL: https://svnweb.freebsd.org/changeset/doc/54647 Log: - Add rel122.current.date , u.rel122.* entities rel121.current.date , u.rel121.* entities rel120.current.date , u.rel120.* entities rel114.current.date , u.rel114.* entities rel113.current.date , u.rel113.* entities Modified: head/zh_TW.UTF-8/share/xml/l10n.ent Modified: head/zh_TW.UTF-8/share/xml/l10n.ent ============================================================================== --- head/zh_TW.UTF-8/share/xml/l10n.ent Thu Oct 29 07:23:57 2020 (r54646) +++ head/zh_TW.UTF-8/share/xml/l10n.ent Thu Oct 29 07:55:42 2020 (r54647) @@ -24,7 +24,12 @@ - + + + + + + @@ -35,13 +40,45 @@ - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From owner-svn-doc-head@freebsd.org Thu Oct 29 08:01:29 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4119644524D; Thu, 29 Oct 2020 08:01:29 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMHvY0z37z4LLQ; Thu, 29 Oct 2020 08:01:29 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 024F02A782; Thu, 29 Oct 2020 08:01:29 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T81SJw040534; Thu, 29 Oct 2020 08:01:28 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T81Sfw040533; Thu, 29 Oct 2020 08:01:28 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010290801.09T81Sfw040533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 08:01:28 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54648 - head/zh_CN.UTF-8/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_CN.UTF-8/share/xml X-SVN-Commit-Revision: 54648 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 08:01:29 -0000 Author: rcyu Date: Thu Oct 29 08:01:28 2020 New Revision: 54648 URL: https://svnweb.freebsd.org/changeset/doc/54648 Log: - Add rel122.current.date , u.rel122.* entities rel121.current.date , u.rel121.* entities rel120.current.date , u.rel120.* entities rel114.current.date , u.rel114.* entities rel113.current.date , u.rel113.* entities Modified: head/zh_CN.UTF-8/share/xml/l10n.ent Modified: head/zh_CN.UTF-8/share/xml/l10n.ent ============================================================================== --- head/zh_CN.UTF-8/share/xml/l10n.ent Thu Oct 29 07:55:42 2020 (r54647) +++ head/zh_CN.UTF-8/share/xml/l10n.ent Thu Oct 29 08:01:28 2020 (r54648) @@ -93,6 +93,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From owner-svn-doc-head@freebsd.org Thu Oct 29 08:59:17 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 05B5B447D13; Thu, 29 Oct 2020 08:59:17 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMKBD6Nkpz4QV0; Thu, 29 Oct 2020 08:59:16 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BED582B0CB; Thu, 29 Oct 2020 08:59:16 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T8xGFY073822; Thu, 29 Oct 2020 08:59:16 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T8xGW1073821; Thu, 29 Oct 2020 08:59:16 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010290859.09T8xGW1073821@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 08:59:16 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54649 - head/zh_TW.UTF-8/htdocs X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_TW.UTF-8/htdocs X-SVN-Commit-Revision: 54649 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 08:59:17 -0000 Author: rcyu Date: Thu Oct 29 08:59:16 2020 New Revision: 54649 URL: https://svnweb.freebsd.org/changeset/doc/54649 Log: Update links to reflect 12.2 release Modified: head/zh_TW.UTF-8/htdocs/index.xsl Modified: head/zh_TW.UTF-8/htdocs/index.xsl ============================================================================== --- head/zh_TW.UTF-8/htdocs/index.xsl Thu Oct 29 08:01:28 2020 (r54648) +++ head/zh_TW.UTF-8/htdocs/index.xsl Thu Oct 29 08:59:16 2020 (r54649) @@ -5,7 +5,7 @@ ]> - + 最新版本
    • Production: &rel121.current;, + href="&u.rel122.announce;">&rel122.current;, &rel114.current;, + href="&u.rel121.announce;">&rel121.current;, &rel113.current;
    • + href="&u.rel114.announce;">&rel114.current;
    • å³å°‡ç™¼ä½ˆ: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 179C444838F; Thu, 29 Oct 2020 09:05:35 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMKKV6tHlz4QqS; Thu, 29 Oct 2020 09:05:34 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CEE5E2B2A7; Thu, 29 Oct 2020 09:05:34 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T95Y2O079724; Thu, 29 Oct 2020 09:05:34 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T95Yrj079723; Thu, 29 Oct 2020 09:05:34 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010290905.09T95Yrj079723@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 09:05:34 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54650 - head/zh_CN.UTF-8/htdocs X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_CN.UTF-8/htdocs X-SVN-Commit-Revision: 54650 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 09:05:35 -0000 Author: rcyu Date: Thu Oct 29 09:05:34 2020 New Revision: 54650 URL: https://svnweb.freebsd.org/changeset/doc/54650 Log: -Update links to reflect 12.2 release Modified: head/zh_CN.UTF-8/htdocs/index.xsl Modified: head/zh_CN.UTF-8/htdocs/index.xsl ============================================================================== --- head/zh_CN.UTF-8/htdocs/index.xsl Thu Oct 29 08:59:16 2020 (r54649) +++ head/zh_CN.UTF-8/htdocs/index.xsl Thu Oct 29 09:05:34 2020 (r54650) @@ -6,7 +6,7 @@ - + 支æŒçš„版本
      • 生产环境适用: &rel.current;, + href="&u.rel122.announce;">&rel122.current;, &rel1.current; - &rel121.current; &rel2.current;
      • - ?> + href="&u.rel114.announce;">&rel114.current;
      • å³å°†å‘布: &betarel.current;
      • From owner-svn-doc-head@freebsd.org Thu Oct 29 09:35:04 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C2DC74490D4; Thu, 29 Oct 2020 09:35:04 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMKzX4r4cz4SJN; Thu, 29 Oct 2020 09:35:04 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 89A762B5ED; Thu, 29 Oct 2020 09:35:04 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T9Z4rq097909; Thu, 29 Oct 2020 09:35:04 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T9Z4Qn097908; Thu, 29 Oct 2020 09:35:04 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202010290935.09T9Z4Qn097908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Thu, 29 Oct 2020 09:35:04 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54651 - head/en_US.ISO8859-1/books/handbook/basics X-SVN-Group: doc-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/basics X-SVN-Commit-Revision: 54651 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 09:35:04 -0000 Author: 0mp Date: Thu Oct 29 09:35:04 2020 New Revision: 54651 URL: https://svnweb.freebsd.org/changeset/doc/54651 Log: Fix a typo PR: 250715 Reported by: panden@gmail.com Modified: head/en_US.ISO8859-1/books/handbook/basics/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/basics/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/basics/chapter.xml Thu Oct 29 09:05:34 2020 (r54650) +++ head/en_US.ISO8859-1/books/handbook/basics/chapter.xml Thu Oct 29 09:35:04 2020 (r54651) @@ -1234,7 +1234,7 @@ uid=1001(jru) gid=1001(jru) groups=1001(jru), 1100(tea Use the argument to &man.ls.1; to view a long directory listing that includes a column of information about a file's permissions for the owner, group, and everyone - else. For example, a ls -l in an arbitrary + else. For example, an ls -l in an arbitrary directory may show: &prompt.user; ls -l From owner-svn-doc-head@freebsd.org Thu Oct 29 09:37:06 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5509F44925F; Thu, 29 Oct 2020 09:37:06 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CML1t0GKsz4SVD; Thu, 29 Oct 2020 09:37:06 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E17C32B4EB; Thu, 29 Oct 2020 09:37:05 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T9b5qD098046; Thu, 29 Oct 2020 09:37:05 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T9b5tt098045; Thu, 29 Oct 2020 09:37:05 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010290937.09T9b5tt098045@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 09:37:05 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54652 - head/zh_CN.UTF-8/htdocs X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_CN.UTF-8/htdocs X-SVN-Commit-Revision: 54652 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 09:37:06 -0000 Author: rcyu Date: Thu Oct 29 09:37:05 2020 New Revision: 54652 URL: https://svnweb.freebsd.org/changeset/doc/54652 Log: - add missing comma Modified: head/zh_CN.UTF-8/htdocs/index.xsl Modified: head/zh_CN.UTF-8/htdocs/index.xsl ============================================================================== --- head/zh_CN.UTF-8/htdocs/index.xsl Thu Oct 29 09:35:04 2020 (r54651) +++ head/zh_CN.UTF-8/htdocs/index.xsl Thu Oct 29 09:37:05 2020 (r54652) @@ -95,10 +95,10 @@
      • 生产环境适用: &rel122.current;, &rel121.current; + href="&u.rel121.announce;">&rel121.current;, &rel114.current;
      • - +
      • å³å°†å‘布: &betarel.current;
      • From owner-svn-doc-head@freebsd.org Thu Oct 29 10:17:44 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 70C6544A4D5; Thu, 29 Oct 2020 10:17:44 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMLwm1nsVz4Vg9; Thu, 29 Oct 2020 10:17:44 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 206E72BEF1; Thu, 29 Oct 2020 10:17:44 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TAHiwn023102; Thu, 29 Oct 2020 10:17:44 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TAHieV023101; Thu, 29 Oct 2020 10:17:44 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010291017.09TAHieV023101@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 10:17:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54653 - head/zh_CN.UTF-8/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_CN.UTF-8/share/xml X-SVN-Commit-Revision: 54653 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 10:17:44 -0000 Author: rcyu Date: Thu Oct 29 10:17:43 2020 New Revision: 54653 URL: https://svnweb.freebsd.org/changeset/doc/54653 Log: - bump copyright years to 2020 Modified: head/zh_CN.UTF-8/share/xml/header.l10n.ent Modified: head/zh_CN.UTF-8/share/xml/header.l10n.ent ============================================================================== --- head/zh_CN.UTF-8/share/xml/header.l10n.ent Thu Oct 29 09:37:05 2020 (r54652) +++ head/zh_CN.UTF-8/share/xml/header.l10n.ent Thu Oct 29 10:17:43 2020 (r54653) @@ -6,7 +6,7 @@ 站点地图 | - æ³•å¾‹ä¿¡æ¯ | © 1995–2018 FreeBSD 项目。 + æ³•å¾‹ä¿¡æ¯ | © 1995–2020 FreeBSD 项目。 ä¿ç•™æ‰€æœ‰æƒåˆ©ã€‚'> 主页   |   è”ç³»   |   ç‰ˆæƒ   |   ©right;'> From owner-svn-doc-head@freebsd.org Thu Oct 29 10:40:17 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1AC9C44AF9B; Thu, 29 Oct 2020 10:40:17 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMMQm3GCXz4Wtl; Thu, 29 Oct 2020 10:40:16 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FF6A2C501; Thu, 29 Oct 2020 10:40:14 +0000 (UTC) (envelope-from rcyu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TAeEHF036239; Thu, 29 Oct 2020 10:40:14 GMT (envelope-from rcyu@FreeBSD.org) Received: (from rcyu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TAeEBV036238; Thu, 29 Oct 2020 10:40:14 GMT (envelope-from rcyu@FreeBSD.org) Message-Id: <202010291040.09TAeEBV036238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rcyu set sender to rcyu@FreeBSD.org using -f From: Ruey-Cherng Yu Date: Thu, 29 Oct 2020 10:40:14 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54654 - head/zh_CN.UTF-8/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: rcyu X-SVN-Commit-Paths: head/zh_CN.UTF-8/share/xml X-SVN-Commit-Revision: 54654 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 10:40:17 -0000 Author: rcyu Date: Thu Oct 29 10:40:13 2020 New Revision: 54654 URL: https://svnweb.freebsd.org/changeset/doc/54654 Log: - add u.betarel.schedule and u.betarel2.schedule entities Modified: head/zh_CN.UTF-8/share/xml/l10n.ent Modified: head/zh_CN.UTF-8/share/xml/l10n.ent ============================================================================== --- head/zh_CN.UTF-8/share/xml/l10n.ent Thu Oct 29 10:17:43 2020 (r54653) +++ head/zh_CN.UTF-8/share/xml/l10n.ent Thu Oct 29 10:40:13 2020 (r54654) @@ -90,6 +90,9 @@ + + + From owner-svn-doc-head@freebsd.org Thu Oct 29 11:41:33 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3E93844D147; Thu, 29 Oct 2020 11:41:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMNnT0r5Lz4bdg; Thu, 29 Oct 2020 11:41:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 006812D041; Thu, 29 Oct 2020 11:41:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TBfWaP076301; Thu, 29 Oct 2020 11:41:32 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TBfW5w076300; Thu, 29 Oct 2020 11:41:32 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202010291141.09TBfW5w076300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 29 Oct 2020 11:41:32 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54655 - head/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/share/xml X-SVN-Commit-Revision: 54655 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 11:41:33 -0000 Author: lwhsu (src,ports committer) Date: Thu Oct 29 11:41:32 2020 New Revision: 54655 URL: https://svnweb.freebsd.org/changeset/doc/54655 Log: Add freebsd-friday-2020-11-06 event Approved by: bcr Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D26993 Modified: head/share/xml/events2020.xml Modified: head/share/xml/events2020.xml ============================================================================== --- head/share/xml/events2020.xml Thu Oct 29 10:40:13 2020 (r54654) +++ head/share/xml/events2020.xml Thu Oct 29 11:41:32 2020 (r54655) @@ -537,6 +537,27 @@ Intro to Bhyve by Peter Grehan + + FreeBSD Friday: Intro to RISC-V + https://live.freebsd.org/FreeBSD/freebsdfriday/ + + 2020 + 11 + 06 + + + 2020 + 11 + 06 + + + live.FreeBSD.org + + On November 6th 2020 from 17:00 UTC there will be an 1 hour live + streaming session of the FreeBSD Fridays. The topic of this week is: + Intro to RISC-V by Mitchell Horne. + + FreeBSD Friday: Intro to DTrace https://live.freebsd.org/FreeBSD/freebsdfriday/ From owner-svn-doc-head@freebsd.org Thu Oct 29 13:59:17 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 992B04520BF; Thu, 29 Oct 2020 13:59:17 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMRrP3YCkz3XBg; Thu, 29 Oct 2020 13:59:17 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5D2D22E99E; Thu, 29 Oct 2020 13:59:17 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TDxHt1068776; Thu, 29 Oct 2020 13:59:17 GMT (envelope-from ryusuke@FreeBSD.org) Received: (from ryusuke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TDxH6T068775; Thu, 29 Oct 2020 13:59:17 GMT (envelope-from ryusuke@FreeBSD.org) Message-Id: <202010291359.09TDxH6T068775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ryusuke set sender to ryusuke@FreeBSD.org using -f From: Ryusuke SUZUKI Date: Thu, 29 Oct 2020 13:59:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54656 - head/ja_JP.eucJP/htdocs/security X-SVN-Group: doc-head X-SVN-Commit-Author: ryusuke X-SVN-Commit-Paths: head/ja_JP.eucJP/htdocs/security X-SVN-Commit-Revision: 54656 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 13:59:17 -0000 Author: ryusuke Date: Thu Oct 29 13:59:16 2020 New Revision: 54656 URL: https://svnweb.freebsd.org/changeset/doc/54656 Log: - Merge the following from the English version: r54642 -> r54644 head/ja_JP.eucJP/htdocs/security/security.xml Modified: head/ja_JP.eucJP/htdocs/security/security.xml Modified: head/ja_JP.eucJP/htdocs/security/security.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/security/security.xml Thu Oct 29 11:41:32 2020 (r54655) +++ head/ja_JP.eucJP/htdocs/security/security.xml Thu Oct 29 13:59:16 2020 (r54656) @@ -5,7 +5,7 @@ ]> - + @@ -203,7 +203,7 @@
    - + From owner-svn-doc-head@freebsd.org Thu Oct 29 14:13:35 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6B3BE45299F; Thu, 29 Oct 2020 14:13:35 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMS8v2CzLz3Y2f; Thu, 29 Oct 2020 14:13:35 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 30EF72EC30; Thu, 29 Oct 2020 14:13:35 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TEDZbn080991; Thu, 29 Oct 2020 14:13:35 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TEDZJe080990; Thu, 29 Oct 2020 14:13:35 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202010291413.09TEDZJe080990@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 29 Oct 2020 14:13:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54657 - head/en_US.ISO8859-1/htdocs/news/status X-SVN-Group: doc-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs/news/status X-SVN-Commit-Revision: 54657 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 14:13:35 -0000 Author: lwhsu (src,ports committer) Date: Thu Oct 29 14:13:34 2020 New Revision: 54657 URL: https://svnweb.freebsd.org/changeset/doc/54657 Log: June has only 30 days Approved by: bcr, debdrup Differential Revision: https://reviews.freebsd.org/D27006 Modified: head/en_US.ISO8859-1/htdocs/news/status/README Modified: head/en_US.ISO8859-1/htdocs/news/status/README ============================================================================== --- head/en_US.ISO8859-1/htdocs/news/status/README Thu Oct 29 13:59:16 2020 (r54656) +++ head/en_US.ISO8859-1/htdocs/news/status/README Thu Oct 29 14:13:34 2020 (r54657) @@ -20,7 +20,7 @@ quarterly-submissions@FreeBSD.org - First call for reports: June 1st - 2 weeks left reminder: June 15th - Last reminder: June 24th - - Standard deadline for submissions: June 31st + - Standard deadline for submissions: June 30th - Deadline for submissions for portmgr@ and late reports (a heads-up is appreciated): July 8th From owner-svn-doc-head@freebsd.org Thu Oct 29 14:22:59 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0B922452CD7; Thu, 29 Oct 2020 14:22:59 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMSMk6B33z3YfZ; Thu, 29 Oct 2020 14:22:58 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B75912F015; Thu, 29 Oct 2020 14:22:58 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TEMwoV087147; Thu, 29 Oct 2020 14:22:58 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TEMwph087146; Thu, 29 Oct 2020 14:22:58 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202010291422.09TEMwph087146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 29 Oct 2020 14:22:58 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54658 - head/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/share/xml X-SVN-Commit-Revision: 54658 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 14:22:59 -0000 Author: lwhsu (src,ports committer) Date: Thu Oct 29 14:22:58 2020 New Revision: 54658 URL: https://svnweb.freebsd.org/changeset/doc/54658 Log: Add missing full stops Approved by: bcr Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D27005 Modified: head/share/xml/events2020.xml Modified: head/share/xml/events2020.xml ============================================================================== --- head/share/xml/events2020.xml Thu Oct 29 14:13:34 2020 (r54657) +++ head/share/xml/events2020.xml Thu Oct 29 14:22:58 2020 (r54658) @@ -301,7 +301,7 @@ On August 7th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - History of BSD Fast Filesystem by Dr. Marshall Kirk McKusick + History of BSD Fast Filesystem by Dr. Marshall Kirk McKusick. @@ -322,7 +322,7 @@ On August 14th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Introduction to ZFS by Dan Langille + Introduction to ZFS by Dan Langille. @@ -368,7 +368,7 @@ On August 28th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Intro to FreeBSD Security by Antranig Vartanian + Intro to FreeBSD Security by Antranig Vartanian. @@ -389,7 +389,7 @@ On September 11th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Introduction to Hardware Hacking on Raspberry Pi by Tom Jones + Introduction to Hardware Hacking on Raspberry Pi by Tom Jones. @@ -465,7 +465,7 @@ On September 25th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Intro to Jails by Michael W. Lucas + Intro to Jails by Michael W. Lucas. @@ -486,7 +486,7 @@ On October 9th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Intro to CheriBSD by Dr. Robert N. M. Watson + Intro to CheriBSD by Dr. Robert N. M. Watson. @@ -534,7 +534,7 @@ On October 24rd 2020 from 00:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Intro to Bhyve by Peter Grehan + Intro to Bhyve by Peter Grehan. @@ -576,6 +576,6 @@ On November 20th 2020 from 17:00 UTC there will be an 1 hour live streaming session of the FreeBSD Fridays. The topic of this week is: - Intro to DTrace by Mark Johnston + Intro to DTrace by Mark Johnston. From owner-svn-doc-head@freebsd.org Thu Oct 29 15:31:59 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8B53C455583; Thu, 29 Oct 2020 15:31:59 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMTvM3BRmz3fQQ; Thu, 29 Oct 2020 15:31:59 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 520212FA5C; Thu, 29 Oct 2020 15:31:59 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TFVx5V027311; Thu, 29 Oct 2020 15:31:59 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TFVxnT027310; Thu, 29 Oct 2020 15:31:59 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202010291531.09TFVxnT027310@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 29 Oct 2020 15:31:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54659 - head/share/xml X-SVN-Group: doc-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/share/xml X-SVN-Commit-Revision: 54659 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 15:31:59 -0000 Author: lwhsu (src,ports committer) Date: Thu Oct 29 15:31:58 2020 New Revision: 54659 URL: https://svnweb.freebsd.org/changeset/doc/54659 Log: Add freebsd-vendor-summit-2020 event Approved by: bcr Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D27008 Modified: head/share/xml/events2020.xml Modified: head/share/xml/events2020.xml ============================================================================== --- head/share/xml/events2020.xml Thu Oct 29 14:22:58 2020 (r54658) +++ head/share/xml/events2020.xml Thu Oct 29 15:31:58 2020 (r54659) @@ -558,6 +558,30 @@ Intro to RISC-V by Mitchell Horne. + + FreeBSD Vendor Summit 2020 + https://wiki.freebsd.org/DevSummit/202011 + + 2020 + 11 + 11 + + + 2020 + 11 + 13 + + + Online + + This event wants to bring together FreeBSD developers and + vendors to talk about common goals. Talks about latest developments in + companies and in FreeBSD will provide insights into future directions. + The event is also a great opportunity for networking within the industry. + The half day sessions are free to attend, but you will need to register + to access the meeting room. + + FreeBSD Friday: Intro to DTrace https://live.freebsd.org/FreeBSD/freebsdfriday/ From owner-svn-doc-head@freebsd.org Thu Oct 29 17:26:12 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7AA90458AD8; Thu, 29 Oct 2020 17:26:12 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMXR82WlHz44LG; Thu, 29 Oct 2020 17:26:12 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 36D08952E; Thu, 29 Oct 2020 17:26:12 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09THQClJ098104; Thu, 29 Oct 2020 17:26:12 GMT (envelope-from blackend@FreeBSD.org) Received: (from blackend@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09THQCiv098103; Thu, 29 Oct 2020 17:26:12 GMT (envelope-from blackend@FreeBSD.org) Message-Id: <202010291726.09THQCiv098103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: blackend set sender to blackend@FreeBSD.org using -f From: Marc Fonvieille Date: Thu, 29 Oct 2020 17:26:12 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54660 - head/en_US.ISO8859-1/books/handbook/x11 X-SVN-Group: doc-head X-SVN-Commit-Author: blackend X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/x11 X-SVN-Commit-Revision: 54660 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 17:26:12 -0000 Author: blackend Date: Thu Oct 29 17:26:11 2020 New Revision: 54660 URL: https://svnweb.freebsd.org/changeset/doc/54660 Log: Correctly tag root username. Modified: head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Thu Oct 29 15:31:58 2020 (r54659) +++ head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Thu Oct 29 17:26:11 2020 (r54660) @@ -1815,7 +1815,7 @@ EndSubSection The preceding can be done automatically with x11/nvidia-xconfig by running (as - root): + root): &prompt.root; nvidia-xconfig --add-argb-glx-visuals &prompt.root; nvidia-xconfig --composite From owner-svn-doc-head@freebsd.org Thu Oct 29 17:31:24 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0B36B458F17; Thu, 29 Oct 2020 17:31:24 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMXY76WbHz44rD; Thu, 29 Oct 2020 17:31:23 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C3D129537; Thu, 29 Oct 2020 17:31:23 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09THVNtA099975; Thu, 29 Oct 2020 17:31:23 GMT (envelope-from blackend@FreeBSD.org) Received: (from blackend@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09THVN2h099974; Thu, 29 Oct 2020 17:31:23 GMT (envelope-from blackend@FreeBSD.org) Message-Id: <202010291731.09THVN2h099974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: blackend set sender to blackend@FreeBSD.org using -f From: Marc Fonvieille Date: Thu, 29 Oct 2020 17:31:23 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54661 - head/en_US.ISO8859-1/books/handbook/x11 X-SVN-Group: doc-head X-SVN-Commit-Author: blackend X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/x11 X-SVN-Commit-Revision: 54661 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 17:31:24 -0000 Author: blackend Date: Thu Oct 29 17:31:23 2020 New Revision: 54661 URL: https://svnweb.freebsd.org/changeset/doc/54661 Log: Add some missing &amd; and &intel; entities. Modified: head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Thu Oct 29 17:26:11 2020 (r54660) +++ head/en_US.ISO8859-1/books/handbook/x11/chapter.xml Thu Oct 29 17:31:23 2020 (r54661) @@ -430,17 +430,17 @@ 2D and 3D acceleration is supported on most - &i915kms; graphics cards provided by Intel. + &i915kms; graphics cards provided by &intel;. Driver name: i915kms 2D and 3D acceleration is supported on most older - &radeonkms; graphics cards provided by AMD. + &radeonkms; graphics cards provided by &amd;. Driver name: radeonkms 2D and 3D acceleration is supported on most newer - &amdgpu; graphics cards provided by AMD. + &amdgpu; graphics cards provided by &amd;.. Driver name: amdgpu @@ -2051,7 +2051,7 @@ EndSection Graphics Chipsets - Intel i810 graphic chipset + &intel; i810 graphic chipset Configuration with &intel; i810 integrated chipsets From owner-svn-doc-head@freebsd.org Thu Oct 29 20:34:57 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1C4DB45D589; Thu, 29 Oct 2020 20:34:57 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMccw6zrzz4Jn3; Thu, 29 Oct 2020 20:34:56 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D3435B918; Thu, 29 Oct 2020 20:34:56 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09TKYuju015218; Thu, 29 Oct 2020 20:34:56 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09TKYu3A015217; Thu, 29 Oct 2020 20:34:56 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <202010292034.09TKYu3A015217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Thu, 29 Oct 2020 20:34:56 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54662 - head/en_US.ISO8859-1/htdocs X-SVN-Group: doc-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs X-SVN-Commit-Revision: 54662 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2020 20:34:57 -0000 Author: gjb Date: Thu Oct 29 20:34:56 2020 New Revision: 54662 URL: https://svnweb.freebsd.org/changeset/doc/54662 Log: Uncomment the 12.2-STABLE download URLs. Sponsored by: Rubicon Communications, LLC (netgate.com) Modified: head/en_US.ISO8859-1/htdocs/where.xml Modified: head/en_US.ISO8859-1/htdocs/where.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/where.xml Thu Oct 29 17:31:23 2020 (r54661) +++ head/en_US.ISO8859-1/htdocs/where.xml Thu Oct 29 20:34:56 2020 (r54662) @@ -317,11 +317,12 @@ @@ -329,8 +330,7 @@

     

    - &os; &rel121.current;-STABLE +

    &os; &rel122.current;-STABLE

    @@ -122,7 +120,9 @@
    releng/12.1 12.1-RELEASE November 4, 2019January 31, 2022January 31, 2021
    stable/11releng/12.1 12.1-RELEASE 2019 ǯ 11 ·î 4 Æü2022 ǯ 1 ·î 31 Æü2021 ǯ 1 ·î 31 Æü
    stable/11 - + Release Notes + ?> +
  •  
  • - ?> 
    @@ -343,44 +343,49 @@ @@ -389,7 +394,6 @@

     

    - ?>

    &os; &rel114.current;-STABLE

    From owner-svn-doc-head@freebsd.org Fri Oct 30 11:43:15 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 03A7F44F87E; Fri, 30 Oct 2020 11:43:15 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CN0my6Hvsz3cd7; Fri, 30 Oct 2020 11:43:14 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BBCD71612F; Fri, 30 Oct 2020 11:43:14 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09UBhE9h073970; Fri, 30 Oct 2020 11:43:14 GMT (envelope-from ryusuke@FreeBSD.org) Received: (from ryusuke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09UBhEkp073969; Fri, 30 Oct 2020 11:43:14 GMT (envelope-from ryusuke@FreeBSD.org) Message-Id: <202010301143.09UBhEkp073969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ryusuke set sender to ryusuke@FreeBSD.org using -f From: Ryusuke SUZUKI Date: Fri, 30 Oct 2020 11:43:14 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54663 - head/ja_JP.eucJP/htdocs X-SVN-Group: doc-head X-SVN-Commit-Author: ryusuke X-SVN-Commit-Paths: head/ja_JP.eucJP/htdocs X-SVN-Commit-Revision: 54663 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2020 11:43:15 -0000 Author: ryusuke Date: Fri Oct 30 11:43:14 2020 New Revision: 54663 URL: https://svnweb.freebsd.org/changeset/doc/54663 Log: - Merge the following from the English version: r54642 -> r54662 head/ja_JP.eucJP/htdocs/where.xml Modified: head/ja_JP.eucJP/htdocs/where.xml Modified: head/ja_JP.eucJP/htdocs/where.xml ============================================================================== --- head/ja_JP.eucJP/htdocs/where.xml Thu Oct 29 20:34:56 2020 (r54662) +++ head/ja_JP.eucJP/htdocs/where.xml Fri Oct 30 11:43:14 2020 (r54663) @@ -6,7 +6,7 @@ ]> - + @@ -320,11 +320,12 @@
- + ¥ê¥ê¡¼¥¹¥Î¡¼¥È + ?> +
  •  
  • - ?>  @@ -332,8 +333,7 @@

     

    - &os; &rel121.current;-STABLE +

    &os; &rel122.current;-STABLE

    @@ -346,54 +346,57 @@
    -

     

    - ?>

    &os; &rel114.current;-STABLE

    From owner-svn-doc-head@freebsd.org Fri Oct 30 11:55:07 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 312EB44FF12; Fri, 30 Oct 2020 11:55:07 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CN12g0Xjpz3d1p; Fri, 30 Oct 2020 11:55:07 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E97261641E; Fri, 30 Oct 2020 11:55:06 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09UBt6v0080224; Fri, 30 Oct 2020 11:55:06 GMT (envelope-from ryusuke@FreeBSD.org) Received: (from ryusuke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09UBt60a080223; Fri, 30 Oct 2020 11:55:06 GMT (envelope-from ryusuke@FreeBSD.org) Message-Id: <202010301155.09UBt60a080223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ryusuke set sender to ryusuke@FreeBSD.org using -f From: Ryusuke SUZUKI Date: Fri, 30 Oct 2020 11:55:06 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54664 - head/ja_JP.eucJP/books/handbook/x11 X-SVN-Group: doc-head X-SVN-Commit-Author: ryusuke X-SVN-Commit-Paths: head/ja_JP.eucJP/books/handbook/x11 X-SVN-Commit-Revision: 54664 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2020 11:55:07 -0000 Author: ryusuke Date: Fri Oct 30 11:55:06 2020 New Revision: 54664 URL: https://svnweb.freebsd.org/changeset/doc/54664 Log: - Merge the following from the English version: r54562 -> r54661 head/ja_JP.eucJP/books/handbook/x11/chapter.xml Modified: head/ja_JP.eucJP/books/handbook/x11/chapter.xml Modified: head/ja_JP.eucJP/books/handbook/x11/chapter.xml ============================================================================== --- head/ja_JP.eucJP/books/handbook/x11/chapter.xml Fri Oct 30 11:43:14 2020 (r54663) +++ head/ja_JP.eucJP/books/handbook/x11/chapter.xml Fri Oct 30 11:55:06 2020 (r54664) @@ -3,7 +3,7 @@ The FreeBSD Documentation Project The FreeBSD Japanese Documentation Project - Original revision: r54562 + Original revision: r54661 $FreeBSD$ --> &amdgpu; - Intel ¤¬Ä󶡤·¤Æ¤¤¤ë¤Û¤È¤ó¤É¤Î &i915kms; + &intel; ¤¬Ä󶡤·¤Æ¤¤¤ë¤Û¤È¤ó¤É¤Î &i915kms; ¥°¥é¥Õ¥£¥Ã¥¯¥«¡¼¥É¤Ï¡¢2D ¤ª¤è¤Ó 3D ¥¢¥¯¥»¥é¥ì¡¼¥·¥ç¥ó¤ËÂбþ¤·¤Æ¤¤¤Þ¤¹¡£ ¥É¥é¥¤¥Ð̾: i915kms - AMD ¤¬Ä󶡤·¤Æ¤¤¤ë¸Å¤¤ &radeonkms; + &amd; ¤¬Ä󶡤·¤Æ¤¤¤ë¸Å¤¤ &radeonkms; ¥°¥é¥Õ¥£¥Ã¥¯¥«¡¼¥É¤Î¤Û¤È¤ó¤É¤Ï¡¢2D ¤ª¤è¤Ó 3D ¥¢¥¯¥»¥é¥ì¡¼¥·¥ç¥ó¤ËÂбþ¤·¤Æ¤¤¤Þ¤¹¡£ ¥É¥é¥¤¥Ð̾: radeonkms - AMD ¤¬Ä󶡤·¤Æ¤¤¤ë¿·¤·¤¤ &radeonkms; + &amd; ¤¬Ä󶡤·¤Æ¤¤¤ë¿·¤·¤¤ &radeonkms; ¥°¥é¥Õ¥£¥Ã¥¯¥«¡¼¥É¤Î¤Û¤È¤ó¤É¤Ï¡¢2D ¤ª¤è¤Ó 3D ¥¢¥¯¥»¥é¥ì¡¼¥·¥ç¥ó¤ËÂбþ¤·¤Æ¤¤¤Þ¤¹¡£ @@ -1886,7 +1886,8 @@ EndSubSection Á°½Ò¤ÎÀßÄê¤Ï¡¢ x11/nvidia-xconfig ¤ò - (root ¸¢¸Â¤Ç) ¼Â¹Ô¤¹¤ë¤³¤È¤Ç¼«Æ°Åª¤ËÀßÄê¤Ç¤­¤Þ¤¹¡£ + (root + ¸¢¸Â¤Ç) ¼Â¹Ô¤¹¤ë¤³¤È¤Ç¼«Æ°Åª¤ËÀßÄê¤Ç¤­¤Þ¤¹¡£ &prompt.root; nvidia-xconfig --add-argb-glx-visuals &prompt.root; nvidia-xconfig --composite @@ -2133,7 +2134,7 @@ EndSection ¥°¥é¥Õ¥£¥Ã¥¯¥Á¥Ã¥×¥»¥Ã¥È¤ÎÀßÄê - Intel i810 graphic chipset + &intel; i810 graphic chipset &intel; i810 Åý¹ç¥Á¥Ã¥×¥»¥Ã¥È¤òÀßÄꤹ¤ë¤Ë¤Ï¡¢ From owner-svn-doc-head@freebsd.org Fri Oct 30 15:28:13 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 064BC454892; Fri, 30 Oct 2020 15:28:13 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CN5mX6QQ1z465Z; Fri, 30 Oct 2020 15:28:12 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BFE70189AA; Fri, 30 Oct 2020 15:28:12 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09UFSCgX010248; Fri, 30 Oct 2020 15:28:12 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09UFSCun010247; Fri, 30 Oct 2020 15:28:12 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202010301528.09UFSCun010247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 30 Oct 2020 15:28:12 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54665 - head/en_US.ISO8859-1/books/handbook/bibliography X-SVN-Group: doc-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/handbook/bibliography X-SVN-Commit-Revision: 54665 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2020 15:28:13 -0000 Author: 0mp Date: Fri Oct 30 15:28:12 2020 New Revision: 54665 URL: https://svnweb.freebsd.org/changeset/doc/54665 Log: Add "Unix: A History and a Memoir" to the list PR: 250717 Submitted by: Andreas Modified: head/en_US.ISO8859-1/books/handbook/bibliography/chapter.xml Modified: head/en_US.ISO8859-1/books/handbook/bibliography/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/bibliography/chapter.xml Fri Oct 30 11:55:06 2020 (r54664) +++ head/en_US.ISO8859-1/books/handbook/bibliography/chapter.xml Fri Oct 30 15:28:12 2020 (r54665) @@ -554,6 +554,13 @@ disk also holds the final sources plus the SCCS files. + + + Kernighan, Brian Unix: A History and a + Memoir. Kindle Direct Publishing, 2020. ISBN + 978-169597855-3 + + From owner-svn-doc-head@freebsd.org Fri Oct 30 17:02:39 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5F0A8457105; Fri, 30 Oct 2020 17:02:39 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CN7sW1f8Hz4FKs; Fri, 30 Oct 2020 17:02:39 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1CA3D19C35; Fri, 30 Oct 2020 17:02:39 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09UH2cHi071328; Fri, 30 Oct 2020 17:02:38 GMT (envelope-from blackend@FreeBSD.org) Received: (from blackend@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09UH2c5P071327; Fri, 30 Oct 2020 17:02:38 GMT (envelope-from blackend@FreeBSD.org) Message-Id: <202010301702.09UH2c5P071327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: blackend set sender to blackend@FreeBSD.org using -f From: Marc Fonvieille Date: Fri, 30 Oct 2020 17:02:38 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54666 - head/fr_FR.ISO8859-1/books/handbook/x11 X-SVN-Group: doc-head X-SVN-Commit-Author: blackend X-SVN-Commit-Paths: head/fr_FR.ISO8859-1/books/handbook/x11 X-SVN-Commit-Revision: 54666 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2020 17:02:39 -0000 Author: blackend Date: Fri Oct 30 17:02:38 2020 New Revision: 54666 URL: https://svnweb.freebsd.org/changeset/doc/54666 Log: Add translated version of x-compiz-fusion section. Modified: head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml Fri Oct 30 15:28:12 2020 (r54665) +++ head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml Fri Oct 30 17:02:38 2020 (r54666) @@ -1852,4 +1852,213 @@ hald_enable="YES"
    + + Installation de Compiz Fusion + + Une méthode pour rendre l'utilisation d'un ordinateur plus + plaisante est l'ajout de jolis effets en 3D. + + L'installation du paquet binaire + Compiz Fusion est simple, mais + sa configuration demande quelques étapes qui ne sont pas + décrites dans la documentation du logiciel porté. + + + Configuration du pilote nVidia &os; + + Les effets visuels dans l'environnement de bureau peuvent + être à l'origine d'une charge non-négligeable pour la carte + graphique. Pour les cartes graphiques nVidia, le pilote de + périphérique propriétaire est nécessaire pour obtenir de + bonnes performances. Les utilisateurs d'autres cartes + graphiques peuvent sauter cette section et poursuivre avec la + partie sur la configuration + d'xorg.conf. + + Pour déterminer quel pilote nVidia est requis, consultez + la FAQ à + ce sujet. + + Après avoir déterminé le pilote correct à utiliser pour + votre carte, l'installation est aussi simple que d'installer + n'importe quel autre paquet binaire. + + Par exemple, pour installer la dernière version du + pilote: + + &prompt.root; pkg install x11/nvidia-driver + + Le pilote créera un module noyau, qui doit être chargé au + démarrage du système. Ajoutez la ligne suivante au fichier + /boot/loader.conf: + + nvidia_load="YES" + + + Pour charger immédiatement le module noyau dans le + noyau en cours d'utilisation, utilisez une commande du type + kldload nvidia. Cependant, il a été + remarqué que certaines versions + d'&xorg; ne fonctionnaient pas + correctement si le pilote n'était pas chargé lors du + démarrage du système. Après l'édition du fichier + /boot/loader.conf, + un redémarrage est donc recommandé. + + + Avec le module noyau chargé, seul la modification d'une + ligne dans xorg.conf est nécessaire pour + activer le pilote propriétaire: + + Trouvez la ligne suivante dans + /etc/X11/xorg.conf: + + Driver "nv" + + et modifiez-la pour: + + Driver "nvidia" + + Lancez l'interface graphique comme vous en avez + l'habitude, et vous devriez être accueilli par le logo nVidia. + Tout devrait fonctionner comme à l'accoutumée. + + + + Configuration d'xorg.conf pour les effets visuels + + Pour activer Compiz Fusion, + /etc/X11/xorg.conf doit être + modifié: + + Ajoutez la section suivante pour activer les effets du + compositeur: + + Section "Extensions" + Option "Composite" "Enable" +EndSection + + Recherchez la section Screen qui devrait + être semblable à celle ci-dessous: + + Section "Screen" + Identifier "Screen0" + Device "Card0" + Monitor "Monitor0" + ... + + et ajouter les deux lignes suivantes (après + la ligne Monitor): + + DefaultDepth 24 +Option "AddARGBGLXVisuals" "True" + + Recherchez la partie Subsection faisant + référence à la définition de l'écran que vous voulez utiliser. + Par exemple, si vous voulez utiliser une définition de + 1280x1024, recherchez la partie comme ci-dessous. Si la + définition voulue n'apparaît nulle part, vous devrez ajouter + l'entrée correspondante à la main: + + SubSection "Display" + Viewport 0 0 + Modes "1280x1024" +EndSubSection + + Une profondeur de couleurs de 24 bits est requise + pour un bureau utilisant la composition, modifiez la section + précédente pour: + + SubSection "Display" + Viewport 0 0 + Depth 24 + Modes "1280x1024" +EndSubSection + + Et enfin, vérifiez que les modules glx et + extmod sont chargés dans la section + Module: + + Section "Module" + Load "extmod" + Load "glx" + ... + + Ce qui précède peut être effectué automatiquement avec + x11/nvidia-xconfig en exécutant (en tant + que root): + + &prompt.root; nvidia-xconfig --add-argb-glx-visuals +&prompt.root; nvidia-xconfig --composite +&prompt.root; nvidia-xconfig --depth=24 + + + + Installation et configuration de Compiz Fusion + + L'installation de Compiz Fusion + est aussi simple que celle de n'importe quel paquet + binaire: + + &prompt.root; pkg install x11-wm/compiz-fusion + + Quand l'installation est achevée, lancez votre + environnement de bureau et, à un terminal, entrez les + commandes suivantes (sous l'utilisateur normal): + + &prompt.user; compiz --replace --sm-disable --ignore-desktop-hints ccp & +&prompt.user; emerald --replace & + + Votre écran devrait clignoter quelques secondes, étant + donné que votre gestionnaire de fenêtres (par exemple + Metacity si vous utilisez + GNOME) est remplacé par + Compiz Fusion. + Emerald s'occupera de la décoration + des fenêtres (c'est à dire, les boutons de fermeture, de + réduction, d'agrandissement, les barres de titres + etc.). + + Vous avez la possibilité de convertir tout cela en une + procédure à exécuter automatiquement au démarrage (par exemple + en l'ajoutant à Sessions dans le cas d'un + bureau GNOME): + + #! /bin/sh +compiz --replace --sm-disable --ignore-desktop-hints ccp & +emerald --replace & + + Sauvegardez ce fichier dans votre répertoire personnel + sous le nom, par exemple, start-compiz et + rendez-le exécutable: + + &prompt.user; chmod +x ~/start-compiz + + Utilisez ensuite l'interface graphique pour l'ajouter au + menu Startup Programs (situé dans + System, + Preferences, + Sessions dans le cas d'un + environnement de bureau + GNOME). + + Pour sélectionner tous les effets visuels désirés et leurs + paramètres, exécutez (toujours en tant qu'utilisateur normal) + le programme + Compiz Config Settings Manager: + + &prompt.user; ccsm + + + Sous GNOME, il peut être + trouvé dans le menu System, puis + Preferences. + + + Si vous avez sélectionné gconf support lors + de la compilation, vous pourrez également voir ces paramètres + en utilisant gconf-editor sous + apps/compiz. + + From owner-svn-doc-head@freebsd.org Fri Oct 30 17:10:40 2020 Return-Path: Delivered-To: svn-doc-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 22171456FE9; Fri, 30 Oct 2020 17:10:40 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CN82m042Hz4FdM; Fri, 30 Oct 2020 17:10:40 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DB0F219850; Fri, 30 Oct 2020 17:10:39 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09UHAdBh071916; Fri, 30 Oct 2020 17:10:39 GMT (envelope-from blackend@FreeBSD.org) Received: (from blackend@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09UHAdXQ071915; Fri, 30 Oct 2020 17:10:39 GMT (envelope-from blackend@FreeBSD.org) Message-Id: <202010301710.09UHAdXQ071915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: blackend set sender to blackend@FreeBSD.org using -f From: Marc Fonvieille Date: Fri, 30 Oct 2020 17:10:39 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r54667 - head/fr_FR.ISO8859-1/books/handbook/x11 X-SVN-Group: doc-head X-SVN-Commit-Author: blackend X-SVN-Commit-Paths: head/fr_FR.ISO8859-1/books/handbook/x11 X-SVN-Commit-Revision: 54667 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2020 17:10:40 -0000 Author: blackend Date: Fri Oct 30 17:10:39 2020 New Revision: 54667 URL: https://svnweb.freebsd.org/changeset/doc/54667 Log: MFen: r54061 Modified: head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml Modified: head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml ============================================================================== --- head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml Fri Oct 30 17:02:38 2020 (r54666) +++ head/fr_FR.ISO8859-1/books/handbook/x11/chapter.xml Fri Oct 30 17:10:39 2020 (r54667) @@ -41,10 +41,11 @@ Les utilisateurs préférant une méthode d'installation qui - configure automatiquement &xorg; et - offre un choix de gestionnaires de fenêtres durant - l'installation devraient se référer au site Web . + configure automatiquement &xorg; + devraient à FuryBSD, GhostBSD, ou MidnightBSD. Pour plus d'informations sur le matériel vidéo