瀏覽代碼

Removed dead clause in ibrowse_lib.erl

pull/16/head
chandrusf 20 年之前
父節點
當前提交
58838a432f
共有 2 個文件被更改,包括 7 次插入3 次删除
  1. +6
    -1
      README
  2. +1
    -2
      src/ibrowse_lib.erl

+ 6
- 1
README 查看文件

@ -1,4 +1,4 @@
$Id: README,v 1.2 2005/05/05 23:37:36 chandrusf Exp $
$Id: README,v 1.3 2005/05/08 22:04:19 chandrusf Exp $
ibrowse is a HTTP client. The following are a list of features.
- RFC2616 compliant (AFAIK)
@ -16,6 +16,11 @@ ibrowse is a HTTP client. The following are a list of features.
Comments to : Chandrashekhar.Mullaparthi@t-mobile.co.uk
CONTRIBUTIONS
=============
08-May-2005 - Youns Hafri made a CRUX LINUX port of ibrowse.
http://yhafri.club.fr/crux/index.html
Here are some usage examples. Enjoy!
5> ibrowse:start().

+ 1
- 2
src/ibrowse_lib.erl 查看文件

@ -5,7 +5,7 @@
%% @doc Module with a few useful functions
-module(ibrowse_lib).
-vsn('$Id: ibrowse_lib.erl,v 1.1 2005/05/05 22:28:28 chandrusf Exp $ ').
-vsn('$Id: ibrowse_lib.erl,v 1.2 2005/05/08 22:04:19 chandrusf Exp $ ').
-author('chandru').
-ifdef(debug).
-compile(export_all).
@ -120,7 +120,6 @@ status_code(404) -> not_found;
status_code(405) -> method_not_allowed;
status_code(406) -> not_acceptable;
status_code(407) -> proxy_authentication_required;
status_code(408) -> request_tunnel;
status_code(408) -> request_timeout;
status_code(409) -> conflict;
status_code(410) -> gone;

Loading…
取消
儲存