forked from halorgium/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replacement of inets with ibrowse. Fixes COUCHDB-179 and enhances rep…
…lication. Thanks Jason Davies and Adam Kocoloski for the fix, Maximillian Dornseif for reporting. git-svn-id: http://svn.apache.org/repos/asf/couchdb/trunk@739047 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
jchris
committed
Jan 29, 2009
1 parent
28a4dab
commit 3d89be3
Showing
25 changed files
with
3,073 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,9 @@ Some of these people are: | |
* Yoan Blanc <[email protected]> | ||
* Paul Carey <[email protected]> | ||
* Benoit Chesneau <[email protected]> | ||
* Jason Davies <[email protected]> | ||
* Paul Joseph Davis <[email protected]> | ||
* Maximillian Dornseif <[email protected]> | ||
* Michael Gottesman <[email protected]> | ||
* Michael Hendricks <[email protected]> | ||
* Till Klampaeckel <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
## Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
## use this file except in compliance with the License. You may obtain a copy | ||
## of the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
## License for the specific language governing permissions and limitations under | ||
## the License. | ||
|
||
ibrowseebindir = $(localerlanglibdir)/ibrowse-1.4.1/ebin | ||
|
||
ibrowse_file_collection = \ | ||
ibrowse.erl \ | ||
ibrowse_app.erl \ | ||
ibrowse_http_client.erl \ | ||
ibrowse_lb.erl \ | ||
ibrowse_lib.erl \ | ||
ibrowse_sup.erl \ | ||
ibrowse_test.erl | ||
|
||
ibrowseebin_static_file = ibrowse.app | ||
|
||
ibrowseebin_make_generated_file_list = \ | ||
ibrowse.beam \ | ||
ibrowse_app.beam \ | ||
ibrowse_http_client.beam \ | ||
ibrowse_lb.beam \ | ||
ibrowse_lib.beam \ | ||
ibrowse_sup.beam \ | ||
ibrowse_test.beam | ||
|
||
ibrowseebin_DATA = \ | ||
$(ibrowseebin_static_file) \ | ||
$(ibrowseebin_make_generated_file_list) | ||
|
||
EXTRA_DIST = \ | ||
$(ibrowse_file_collection) \ | ||
$(ibrowseebin_static_file) | ||
|
||
CLEANFILES = \ | ||
$(ibrowseebin_make_generated_file_list) | ||
|
||
%.beam: %.erl | ||
$(ERLC) $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{application, ibrowse, | ||
[{description, "HTTP client application"}, | ||
{vsn, "1.4.1"}, | ||
{modules, [ ibrowse, | ||
ibrowse_http_client, | ||
ibrowse_app, | ||
ibrowse_sup, | ||
ibrowse_lib, | ||
ibrowse_lb ]}, | ||
{registered, []}, | ||
{applications, [kernel,stdlib,sasl]}, | ||
{env, []}, | ||
{mod, {ibrowse_app, []}}]}. |
Oops, something went wrong.