From owner-p4-projects@FreeBSD.ORG Sun Nov 15 20:09:10 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 02D1B1065692; Sun, 15 Nov 2009 20:09:10 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A30BC106568D for ; Sun, 15 Nov 2009 20:09:09 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5B2498FC12 for ; Sun, 15 Nov 2009 20:09:09 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nAFK99J5080466 for ; Sun, 15 Nov 2009 20:09:09 GMT (envelope-from pgj@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nAFK99Gr080464 for perforce@freebsd.org; Sun, 15 Nov 2009 20:09:09 GMT (envelope-from pgj@FreeBSD.org) Date: Sun, 15 Nov 2009 20:09:09 GMT Message-Id: <200911152009.nAFK99Gr080464@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to pgj@FreeBSD.org using -f From: Gabor Pali To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 170649 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2009 20:09:10 -0000 http://p4web.freebsd.org/chv.cgi?CH=170649 Change 170649 by pgj@beehive on 2009/11/15 20:08:21 IFC Affected files ... .. //depot/projects/docproj_hu/doc/share/images/articles/checkpoint/networks.pic#2 integrate .. //depot/projects/docproj_hu/www/en/cgi/query-pr.cgi#4 integrate .. //depot/projects/docproj_hu/www/hu/share/sgml/events.xml#22 integrate .. //depot/projects/docproj_hu/www/hu/share/sgml/news.xml#61 integrate .. //depot/projects/docproj_hu/www/share/sgml/news.xml#74 integrate .. //depot/projects/docproj_hu/www/share/sgml/press.xml#23 integrate .. //depot/projects/docproj_hu/www/share/sgml/release.ent#18 integrate Differences ... ==== //depot/projects/docproj_hu/doc/share/images/articles/checkpoint/networks.pic#2 (text+ko) ==== @@ -1,4 +1,4 @@ -.\" $FreeBSD: doc/share/images/articles/checkpoint/networks.pic,v 1.1 2003/04/11 08:59:19 blackend Exp $ +.\" $FreeBSD: doc/share/images/articles/checkpoint/networks.pic,v 1.2 2009/11/13 08:51:10 roam Exp $ .\" .PS @@ -24,7 +24,7 @@ "\fC\s-2199.208.192.0/24\s+2\fP" "FW-1 protected nets" \ with .nw at G.w; box wid 1.2 invis \ - "\fC\s-2199.208.192.0/24\s+2\fP" "internal nets" \ + "\fC\s-2192.168.10.0/24\s+2\fP" "internal nets" \ with .ne at I.e; .PE ==== //depot/projects/docproj_hu/www/en/cgi/query-pr.cgi#4 (text+ko) ==== @@ -26,7 +26,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $FreeBSD: www/en/cgi/query-pr.cgi,v 1.66 2009/09/29 19:45:37 simon Exp $ +# $FreeBSD: www/en/cgi/query-pr.cgi,v 1.69 2009/11/15 18:40:26 remko Exp $ # # @@ -474,6 +474,7 @@ my $url = "${self_url_base}${PR}"; my $outp = ""; + my $qpcont = ""; my %mime_headers; my $mime_boundary; my $mime_endheader; @@ -596,6 +597,21 @@ if ($inresponse) { my $txt = $1; + # Detect Q-P line continuations, + # join them with the next line + # and process when the full line + # will be assembled. + if ($encoding == ENCODING_QP) { + if ($txt =~ /=$/) { + $txt =~ s/=$//; + $qpcont .= $txt; + next; + } else { + $txt = $qpcont . $txt; + $qpcont = ""; + } + } + if ($txt !~ /^-+$/ && $txt !~ /(?:cut|snip)/i && $txt =~ /^--(\S+)$/) { $mime_boundary = $1 if (!defined $mime_boundary && !$inpatch); @@ -657,11 +673,10 @@ } if ($encoding == ENCODING_BASE64) { + next if $txt =~ /:/; $outp .= $txt; next; } elsif ($encoding == ENCODING_QP) { - # XXX: lines ending in = should be joined - $txt =~ s/=$//; $txt = decode_qp($txt); } @@ -1013,7 +1028,7 @@ } if (($inpatch & PATCH_BASE64) && $getpatch) { - $outp .= $_; + $outp .= $_ unless /:/; return 1; } @@ -1107,8 +1122,8 @@ unless (!$getpatch and $inpatch & PATCH_UUENC_BIN); $outp = htmlclean($outp) unless ($getpatch); print $outp; - $inpatch ^= PATCH_UUENC; $outp = ""; - $inpatch ^= PATCH_UUENC_BIN; + $outp = ""; + $inpatch &= ~(PATCH_UUENC | PATCH_UUENC_BIN); # No outer container? sprint('patchblock_tfoot') if (!$inpatch and !$getpatch); ==== //depot/projects/docproj_hu/www/hu/share/sgml/events.xml#22 (text+ko) ==== @@ -17,7 +17,7 @@ - $FreeBSD: www/hu/share/sgml/events.xml,v 1.9 2009/10/22 23:02:11 pgj Exp $ + $FreeBSD: www/hu/share/sgml/events.xml,v 1.10 2009/11/11 16:45:32 pgj Exp $ ==== //depot/projects/docproj_hu/www/hu/share/sgml/news.xml#61 (text+ko) ==== @@ -11,7 +11,7 @@ - $FreeBSD: www/hu/share/sgml/news.xml,v 1.25 2009/10/30 20:54:26 pgj Exp $ + $FreeBSD: www/hu/share/sgml/news.xml,v 1.26 2009/11/11 16:45:32 pgj Exp $ ==== //depot/projects/docproj_hu/www/share/sgml/news.xml#74 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.276 2009/11/09 05:24:00 linimon Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.277 2009/11/12 22:58:14 delphij Exp $ @@ -33,6 +33,27 @@ 2009 + 11 + + + 12 + + + &os; 8.0-RC3 Available + +

The third of the Release Candidates for the &os;-8.0 + release cycle is now available. ISO images for Tier-1 + architectures and a memory stick image for + amd64/i386 are now available + on most of the &os; + mirror sites.

+
+
+
+ + 10 ==== //depot/projects/docproj_hu/www/share/sgml/press.xml#23 (text+ko) ==== @@ -9,7 +9,7 @@ - $FreeBSD: www/share/sgml/press.xml,v 1.88 2009/09/03 16:58:37 jkoshy Exp $ + $FreeBSD: www/share/sgml/press.xml,v 1.90 2009/11/12 14:02:25 jkoshy Exp $ @@ -17,6 +17,30 @@ 2009 + 11 + + + FreeNAS 0.7 adds ZFS support + http://www.h-online.com/open/news/item/FreeNAS-0-7-adds-ZFS-support-853475.html + The H + http://www.h-online.com/ + 09 November 2009 + crve +

A description of the new features in version 0.7 of the FreeBSD-based FreeNAS project.

+
+ + + Update your FreeBSD software with care + http://blogs.techrepublic.com.com/security/?p=2615 + Tech Republic + http://www.techrepublic.com/ + 09 November 2009 + Chad Perrin +

Chad Perrin describes how he keeps his FreeBSD system up to date.

+
+
+ + 8 ==== //depot/projects/docproj_hu/www/share/sgml/release.ent#18 (text+ko) ==== @@ -1,4 +1,4 @@ - +