Skip to content

Commit 19ff79c

Browse files
committed
Updated links to project, license/notice, copyright links, POM definition in gradle.properties
1 parent 7c9fe66 commit 19ff79c

File tree

65 files changed

+72
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+72
-69
lines changed

NOTICE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ Android Async Http Client library
22
Copyright (c) 2011-2015 James Smith <james@loopj.com>
33
https://loopj.com
44

5+
Copyright (c) 2015-2019 Marek Sebera <marek@msebera.cz>
6+
htts://msebera.cz
7+
58
This product includes software developed by
69
The Apache Software Foundation (https://www.apache.org/).

gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ VERSION_CODE=1410
33
GROUP=com.loopj.android
44

55
POM_DESCRIPTION=An Asynchronous HTTP Library for Android
6-
POM_URL=https://loopj.com/android-async-http/
7-
POM_SCM_URL=https://github.com/loopj/android-async-http
8-
POM_SCM_CONNECTION=scm:git@github.com:loopj/android-async-http.git
9-
POM_SCM_DEV_CONNECTION=scm:git@github.com:loopj/android-async-http.git
6+
POM_URL=https://android-async-http.github.io/android-async-http/
7+
POM_SCM_URL=https://github.com/android-async-http/android-async-http
8+
POM_SCM_CONNECTION=scm:git@github.com:android-async-http/android-async-http.git
9+
POM_SCM_DEV_CONNECTION=scm:git@github.com:android-async-http/android-async-http.git
1010
POM_LICENCE_NAME=The Apache Software License, Version 2.0
1111
POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
1212
POM_LICENCE_DIST=repo

library/src/main/java/com/loopj/android/http/AsyncHttpClient.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
Android Asynchronous Http Client
55
Copyright (c) 2011 James Smith <james@loopj.com>
6-
https://loopj.com
6+
https://github.com/android-async-http/android-async-http
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
99
You may obtain a copy of the License at
@@ -633,7 +633,7 @@ public void setRedirectHandler(final RedirectHandler customRedirectHandler) {
633633

634634
/**
635635
* Sets the User-Agent header to be sent with each request. By default, "Android Asynchronous
636-
* Http Client/VERSION (https://loopj.com/android-async-http/)" is used.
636+
* Http Client/VERSION (https://github.com/android-async-http/android-async-http/)" is used.
637637
*
638638
* @param userAgent the string to use in the User-Agent header.
639639
*/
@@ -1685,4 +1685,4 @@ public void consumeContent() throws IOException {
16851685
super.consumeContent();
16861686
}
16871687
}
1688-
}
1688+
}

library/src/main/java/com/loopj/android/http/AsyncHttpRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/AsyncHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/BaseJsonHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/BearerAuthSchemeFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/BinaryHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/DataAsyncHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/FileAsyncHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/HttpDelete.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/HttpGet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/JsonHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/JsonStreamerEntity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/JsonValueInterface.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/MyRedirectHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2014 Aymon Fournier <aymon.fournier@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/MySSLSocketFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/PersistentCookieStore.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/PreemptiveAuthorizationHttpRequestInterceptor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/RangeFileAsyncHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/RequestHandle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2013 Jason Choy <jjwchoy@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/RequestParams.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/ResponseHandlerInterface.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2013 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/RetryHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/SaxAsyncHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/SerializableCookie.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/SimpleMultipartEntity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/SyncHttpClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/TextHttpResponseHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/TokenCredentials.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/Utils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

library/src/main/java/com/loopj/android/http/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client
33
Copyright (c) 2011 James Smith <james@loopj.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/AsyncBackgroundThreadSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/BinarySample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/CancelAllRequestsSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/CancelRequestByTagSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/CancelRequestHandleSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/CustomCASample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/DeleteSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/DirectorySample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/FileSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

sample/src/main/java/com/loopj/android/http/sample/GetSample.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Android Asynchronous Http Client Sample
33
Copyright (c) 2014 Marek Sebera <marek.sebera@gmail.com>
4-
https://loopj.com
4+
https://github.com/android-async-http/android-async-http
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)