Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/overview.edoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@author Oscar Hellstr�m <oscar@hellstrom.st>
@author Oscar Hellström <oscar@hellstrom.st>
@doc A lightweight HTTP client.
The only functions of much interest right now are {@link
lhttpc:request/4}, {@link lhttpc:request/5}, {@link lhttpc:request/6} and
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @doc This is the specification for the lhttpc application.
%%% @end
{application, lhttpc,
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
%%% ----------------------------------------------------------------------------

%%------------------------------------------------------------------------------
%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @doc Main interface to the lightweight http client.
%%% See {@link request/4}, {@link request/5} and {@link request/6} functions.
%%% @end
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

%%------------------------------------------------------------------------------
%%% @private
%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @doc This module implements the HTTP request handling. This should normally
%%% not be called directly since it should be spawned by the lhttpc module.
%%% @end
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc_lib.erl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

%%------------------------------------------------------------------------------
%%% @private
%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @doc
%%% This module implements various library functions used in lhttpc.
%%------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc_manager.erl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
%%% ----------------------------------------------------------------------------

%%------------------------------------------------------------------------------
%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @author Filipe David Manana <fdmanana@apache.org>
%%% @doc Connection manager for the HTTP client.
%%% This gen_server is responsible for keeping track of persistent
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc_sock.erl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

%%------------------------------------------------------------------------------
%%% @private
%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @doc
%%% This module implements wrappers for socket operations.
%%% Makes it possible to have the same interface to ssl and tcp sockets.
Expand Down
2 changes: 1 addition & 1 deletion src/lhttpc_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
%%% ----------------------------------------------------------------------------

%%------------------------------------------------------------------------------
%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @doc Top supervisor for the lhttpc application.
%%% This is normally started by the application behaviour implemented in
%%% {@link lhttpc}.
Expand Down
2 changes: 1 addition & 1 deletion test/lhttpc_lib_tests.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
-module(lhttpc_lib_tests).

-include("../include/lhttpc_types.hrl").
Expand Down
4 changes: 3 additions & 1 deletion test/lhttpc_manager_tests.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @author Filipe David Manana <fdmanana@apache.org>
-module(lhttpc_manager_tests).

Expand All @@ -36,6 +36,8 @@
%%% Eunit setup stuff

start_app() ->
application:start(crypto),
application:start(asn1),
application:start(public_key),
ok = application:start(ssl),
_ = application:load(lhttpc),
Expand Down
3 changes: 2 additions & 1 deletion test/lhttpc_tests.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
-module(lhttpc_tests).

-export([test_no/2]).
Expand Down Expand Up @@ -100,6 +100,7 @@ test_no(N, Tests) ->

start_app() ->
application:start(crypto),
application:start(asn1),
application:start(public_key),
ok = application:start(ssl),
ok = lhttpc:start().
Expand Down
2 changes: 1 addition & 1 deletion test/socket_server.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
-module(socket_server).

-export([connect/1, listen/0, accept/1]).
Expand Down
2 changes: 1 addition & 1 deletion test/webserver.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
%%% @author Magnus Henoch <magnus@erlang-consulting.com>
%%% @doc Simple web server for testing purposes
%%% @end
Expand Down
2 changes: 1 addition & 1 deletion util/make_doc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
-module(make_doc).
-export([edoc/0]).

Expand Down
2 changes: 1 addition & 1 deletion util/run_test.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
%%% ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%%% ----------------------------------------------------------------------------

%%% @author Oscar Hellstr�m <oscar@hellstrom.st>
%%% @author Oscar Hellström <oscar@hellstrom.st>
-module(run_test).
-export([run/0]).

Expand Down