changed package o.a.httpclient to o.a.http.client

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@500535 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Roland Weber 2007-01-27 14:27:33 +00:00
parent 8816f2ee43
commit 0f68582bfb
8 changed files with 15 additions and 18 deletions

View File

@ -362,7 +362,7 @@ Output
<java classname="junit.textui.TestRunner" <java classname="junit.textui.TestRunner"
fork="yes" failonerror="yes" fork="yes" failonerror="yes"
> >
<arg value="org.apache.httpclient.TestAll"/> <arg value="org.apache.http.client.TestAll"/>
<classpath> <classpath>
<path refid="classpath.client.compile"/> <path refid="classpath.client.compile"/>
<pathelement location="${junit.jar}"/> <pathelement location="${junit.jar}"/>
@ -408,7 +408,6 @@ Output
> >
<packageset dir="${comp.client.src}"> <packageset dir="${comp.client.src}">
<include name="org/apache/http/**" /> <include name="org/apache/http/**" />
<include name="org/apache/httpclient/**" />
</packageset> </packageset>
<group title="API"> <group title="API">
@ -418,13 +417,13 @@ Output
<package name="org.apache.http.conn.ssl" /> <package name="org.apache.http.conn.ssl" />
<package name="org.apache.http.cookie" /> <package name="org.apache.http.cookie" />
<package name="org.apache.http.cookie.params" /> <package name="org.apache.http.cookie.params" />
<package name="org.apache.httpclient" /> <package name="org.apache.http.client" />
</group> </group>
<group title="Implementation"> <group title="Implementation">
<package name="org.apache.http.auth.impl*" /> <package name="org.apache.http.auth.impl*" />
<package name="org.apache.http.conn.impl*" /> <package name="org.apache.http.conn.impl*" />
<package name="org.apache.http.cookie.impl*" /> <package name="org.apache.http.cookie.impl*" />
<package name="org.apache.httpclient.impl*" /> <package name="org.apache.http.client.impl*" />
</group> </group>
<classpath refid="classpath.client.javadoc"/> <classpath refid="classpath.client.javadoc"/>
@ -450,11 +449,9 @@ Output
> >
<packageset dir="${comp.client.src}"> <packageset dir="${comp.client.src}">
<include name="org/apache/http/**" /> <include name="org/apache/http/**" />
<include name="org/apache/httpclient/**" />
</packageset> </packageset>
<packageset dir="${comp.client.xmpls}"> <packageset dir="${comp.client.xmpls}">
<include name="org/apache/http/**" /> <include name="org/apache/http/**" />
<include name="org/apache/httpclient/**" />
</packageset> </packageset>
<packageset dir="${comp.client.contr}"> <packageset dir="${comp.client.contr}">
<include name="org/apache/http/**" /> <include name="org/apache/http/**" />
@ -468,22 +465,22 @@ Output
<package name="org.apache.http.conn.ssl" /> <package name="org.apache.http.conn.ssl" />
<package name="org.apache.http.cookie" /> <package name="org.apache.http.cookie" />
<package name="org.apache.http.cookie.params" /> <package name="org.apache.http.cookie.params" />
<package name="org.apache.httpclient" /> <package name="org.apache.http.client" />
</group> </group>
<group title="Implementation"> <group title="Implementation">
<package name="org.apache.http.auth.impl*" /> <package name="org.apache.http.auth.impl*" />
<package name="org.apache.http.conn.impl*" /> <package name="org.apache.http.conn.impl*" />
<package name="org.apache.http.cookie.impl*" /> <package name="org.apache.http.cookie.impl*" />
<package name="org.apache.httpclient.impl*" /> <package name="org.apache.http.client.impl*" />
</group> </group>
<group title="Examples"> <group title="Examples">
<package name="org.apache.http.examples*" /> <package name="org.apache.http.examples*" />
<package name="org.apache.httpclient.examples*" /> <package name="org.apache.http.client.examples*" />
</group> </group>
<group title="Contributions (unsupported)"> <group title="Contributions (unsupported)">
<package name="org.apache.http.contrib*" /> <package name="org.apache.http.contrib*" />
<package name="org.apache.httpclient.contrib*" /> <package name="org.apache.http.client.contrib*" />
</group> </group>
<classpath refid="classpath.client.javadoc"/> <classpath refid="classpath.client.javadoc"/>

View File

@ -29,7 +29,7 @@
* *
*/ */
package org.apache.httpclient.impl; package org.apache.http.client.impl;
import java.io.FilterInputStream; import java.io.FilterInputStream;
import java.io.IOException; import java.io.IOException;

View File

@ -29,7 +29,7 @@
* *
*/ */
package org.apache.httpclient.impl; package org.apache.http.client.impl;
import java.io.IOException; import java.io.IOException;

View File

@ -29,7 +29,7 @@
* *
*/ */
package org.apache.httpclient.impl; package org.apache.http.client.impl;
/** /**
* When a response stream has been consumed, various parts of the HttpClient * When a response stream has been consumed, various parts of the HttpClient

View File

@ -28,12 +28,12 @@
* *
*/ */
package org.apache.httpclient; package org.apache.http.client;
import org.apache.http.cookie.TestAllCookie; import org.apache.http.cookie.TestAllCookie;
import org.apache.http.cookie.impl.TestAllCookieImpl; import org.apache.http.cookie.impl.TestAllCookieImpl;
import org.apache.http.conn.ssl.TestAllSSL; import org.apache.http.conn.ssl.TestAllSSL;
import org.apache.httpclient.impl.TestAllHttpClientImpl; import org.apache.http.client.impl.TestAllHttpClientImpl;
import junit.framework.*; import junit.framework.*;

View File

@ -28,7 +28,7 @@
* *
*/ */
package org.apache.httpclient.impl; package org.apache.http.client.impl;
import junit.framework.*; import junit.framework.*;

View File

@ -28,7 +28,7 @@
* *
*/ */
package org.apache.httpclient.impl; package org.apache.http.client.impl;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.IOException; import java.io.IOException;

View File

@ -28,7 +28,7 @@
* *
*/ */
package org.apache.httpclient.impl; package org.apache.http.client.impl;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.InputStream; import java.io.InputStream;