From owner-cvs-all@FreeBSD.ORG Wed Sep 3 08:06:18 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4DF71065671; Wed, 3 Sep 2008 08:06:18 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C2AAB8FC1F; Wed, 3 Sep 2008 08:06:18 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m8386IU7072648; Wed, 3 Sep 2008 08:06:18 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m8386IUM072647; Wed, 3 Sep 2008 08:06:18 GMT (envelope-from ale) Message-Id: <200809030806.m8386IUM072647@repoman.freebsd.org> From: Alex Dupre Date: Wed, 3 Sep 2008 08:06:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/httpcore Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Sep 2008 08:06:18 -0000 ale 2008-09-03 08:06:18 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/httpcore Makefile distinfo pkg-descr Log: The HttpCore components implement the most fundamental aspects of the HTTP protocol. They are nonetheless sufficient to develop basic client-side and server-side HTTP services with a minimal footprint and no external dependencies. The HttpCore base module contains the public API and the default implementation based on the Java classic (blocking) I/O model. It requires a Java 1.3 compatible runtime and has no dependency on any external libraries. HttpCore NIO extensions contain optional components that leverage the event driven, non-blocking I/O (NIO) model. HttpCore NIO extensions require a Java 5.0 compatible runtime and the HttpCore base module. HttpCore NIO extensions are intended for those usage scenarios where raw throughput is less important than the ability to handle thousands of simultaneous HTTP connections in a resource efficient manner. WWW: http://hc.apache.org/httpcomponents-core/ Revision Changes Path 1.2142 +1 -0 ports/www/Makefile 1.1 +45 -0 ports/www/httpcore/Makefile (new) 1.1 +3 -0 ports/www/httpcore/distinfo (new) 1.1 +20 -0 ports/www/httpcore/pkg-descr (new)