My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Nov 13, 2009
    issue 6 (Bug in parse_element(server_port, Req) function) Status changed by filippo.pacini   -   Patch applied.
    Status: Done
    Patch applied.
    Status: Done
  • Nov 09, 2009
    issue 6 (Bug in parse_element(server_port, Req) function) Status changed by filippo.pacini   -   Thanks for the bug report. We will apply it. The development of ewgi has moved to github. The main repository is here: http://github.com/skarab/ewgi Please get updated versions from there. thanks again
    Status: Accepted
    Thanks for the bug report. We will apply it. The development of ewgi has moved to github. The main repository is here: http://github.com/skarab/ewgi Please get updated versions from there. thanks again
    Status: Accepted
  • Nov 08, 2009
    issue 6 (Bug in parse_element(server_port, Req) function) reported by sendtopms   -   parse_element(server_port, Req) -> HostPort = Req:get_header_value(host), case HostPort of HostPort when is_list(HostPort) -> case length(HostPort) of 2 -> lists:nth(2, HostPort); _ -> undefined end; _ -> undefined end; It suppose to be as below, parse_element(server_port, Req) -> HP = Req:get_header_value(host), case HP of HP when is_list(HP) -> HostPort = string:tokens(HP, ":"), case length(HostPort) of 2 -> lists:nth(2, HostPort); _ -> undefined end; _ -> undefined end; Please fix this issue, Thanks, Senthilkumar Peelikkampatti
    parse_element(server_port, Req) -> HostPort = Req:get_header_value(host), case HostPort of HostPort when is_list(HostPort) -> case length(HostPort) of 2 -> lists:nth(2, HostPort); _ -> undefined end; _ -> undefined end; It suppose to be as below, parse_element(server_port, Req) -> HP = Req:get_header_value(host), case HP of HP when is_list(HP) -> HostPort = string:tokens(HP, ":"), case length(HostPort) of 2 -> lists:nth(2, HostPort); _ -> undefined end; _ -> undefined end; Please fix this issue, Thanks, Senthilkumar Peelikkampatti

Older

  • Dec 02, 2008
    r99 (update version and removed ewgi_buffer wich is no longer nee...) committed by filippo.pacini   -   update version and removed ewgi_buffer wich is no longer needed
    update version and removed ewgi_buffer wich is no longer needed
  • Dec 02, 2008
    r98 (temporary fix in Makefile. Previously no file was compiled) committed by filippo.pacini   -   temporary fix in Makefile. Previously no file was compiled
    temporary fix in Makefile. Previously no file was compiled
  • Nov 20, 2008
    r97 (Fixed header behaviour to comply with spec) committed by huntermorris   -   Fixed header behaviour to comply with spec
    Fixed header behaviour to comply with spec
  • Nov 20, 2008
    r96 (Fixed guard clauses) committed by huntermorris   -   Fixed guard clauses
    Fixed guard clauses
  • Nov 18, 2008
    r95 (Added further Dialyzer specifications) committed by huntermorris   -   Added further Dialyzer specifications
    Added further Dialyzer specifications
  • Nov 18, 2008
    r94 (Dialyzer currently does not support recursive types) committed by huntermorris   -   Dialyzer currently does not support recursive types
    Dialyzer currently does not support recursive types
  • Nov 18, 2008
    r93 (Fixed existing dialyzer specs) committed by huntermorris   -   Fixed existing dialyzer specs
    Fixed existing dialyzer specs
  • Nov 18, 2008
    r92 (Added dialyzer specs to header file) committed by huntermorris   -   Added dialyzer specs to header file
    Added dialyzer specs to header file
  • Nov 03, 2008
    r91 (Fixed bad catch patterns. Thanks to Mikael Karlsson.) committed by huntermorris   -   Fixed bad catch patterns. Thanks to Mikael Karlsson.
    Fixed bad catch patterns. Thanks to Mikael Karlsson.
  • Oct 31, 2008
    r90 (typo) committed by filippo.pacini   -   typo
    typo
  • Oct 22, 2008
    r89 (fix tests) committed by filippo.pacini   -   fix tests
    fix tests
  • Oct 22, 2008
    r88 (fix handling for other http_headers) committed by filippo.pacini   -   fix handling for other http_headers
    fix handling for other http_headers
  • Oct 22, 2008
    r87 (fixed calls to create an empty gb_tree) committed by filippo.pacini   -   fixed calls to create an empty gb_tree
    fixed calls to create an empty gb_tree
  • Oct 21, 2008
    r86 (Fixed variable error from last commit in ewgi_yaws ) committed by huntermorris   -   Fixed variable error from last commit in ewgi_yaws
    Fixed variable error from last commit in ewgi_yaws
  • Oct 21, 2008
    r85 (Correct header implementation ) committed by huntermorris   -   Correct header implementation
    Correct header implementation
  • Oct 21, 2008
    r84 (Removed dict dependency ) committed by huntermorris   -   Removed dict dependency
    Removed dict dependency
  • Oct 21, 2008
    r83 (Removed unnecessary ewgi_application behaviour ) committed by huntermorris   -   Removed unnecessary ewgi_application behaviour
    Removed unnecessary ewgi_application behaviour
  • Oct 21, 2008
    r82 (Added -spec and -type declarations to header file Added add...) committed by huntermorris   -   Added -spec and -type declarations to header file Added additional API methods for dealing with headers Renamed some methods in ewgi_api to be more consistent
    Added -spec and -type declarations to header file Added additional API methods for dealing with headers Renamed some methods in ewgi_api to be more consistent
  • Oct 21, 2008
    r81 (Fixed bug where ewgi_api:server_request_foldl/4 was renamed ) committed by huntermorris   -   Fixed bug where ewgi_api:server_request_foldl/4 was renamed
    Fixed bug where ewgi_api:server_request_foldl/4 was renamed
  • Oct 21, 2008
    EWGISpecification (The Erlang Web Gateway Interface (EWGI) is a specification o...) Wiki page edited by huntermorris
  • Oct 21, 2008
    EWGISpecification (The Erlang Web Gateway Interface (EWGI) is a specification o...) Wiki page edited by huntermorris
  • Oct 21, 2008
    EWGISpecification (The Erlang Web Gateway Interface (EWGI) is a specification o...) Wiki page edited by huntermorris
  • Oct 20, 2008
    r77 (fixed tests to the new specs) committed by filippo.pacini   -   fixed tests to the new specs
    fixed tests to the new specs
  • Oct 20, 2008
    r76 (fix call to request parser) committed by filippo.pacini   -   fix call to request parser
    fix call to request parser
  • Oct 19, 2008
    r75 (Simplified 'callable' definition Added useful middleware ap...) committed by huntermorris   -   Simplified 'callable' definition Added useful middleware applications
    Simplified 'callable' definition Added useful middleware applications
  • Oct 14, 2008
    r74 (tests now run ... and fail) committed by filippo.pacini   -   tests now run ... and fail
    tests now run ... and fail
  • Oct 10, 2008
    r73 (Modified ewgi_fv TODO: Implement reading from client body f...) committed by huntermorris   -   Modified ewgi_fv TODO: Implement reading from client body for POST
    Modified ewgi_fv TODO: Implement reading from client body for POST
  • Oct 10, 2008
    r72 (Modified tests to fit newly revised spec TODO: Actually run...) committed by huntermorris   -   Modified tests to fit newly revised spec TODO: Actually run them ;)
    Modified tests to fit newly revised spec TODO: Actually run them ;)
  • Oct 10, 2008
    r71 (Modified examples to fit revised spec TODO: Fix ewgi_fv exa...) committed by huntermorris   -   Modified examples to fit revised spec TODO: Fix ewgi_fv example
    Modified examples to fit revised spec TODO: Fix ewgi_fv example
  • Oct 10, 2008
    r70 (Added additional helper methods in ewgi_api and removed dire...) committed by huntermorris   -   Added additional helper methods in ewgi_api and removed direct record references in ewgi_mochiweb and ewgi_yaws
    Added additional helper methods in ewgi_api and removed direct record references in ewgi_mochiweb and ewgi_yaws
  • Oct 10, 2008
    r69 (Added Yaws support for new spec revision Added server utili...) committed by huntermorris   -   Added Yaws support for new spec revision Added server utility methods for folding over request values to populate initial EWGI request
    Added Yaws support for new spec revision Added server utility methods for folding over request values to populate initial EWGI request
  • Oct 09, 2008
    r68 (Modified MochiWeb reference implementation and helper module...) committed by huntermorris   -   Modified MochiWeb reference implementation and helper modules to support latest spec.
    Modified MochiWeb reference implementation and helper modules to support latest spec.
  • Oct 09, 2008
    EWGISpecification (The Erlang Web Gateway Interface (EWGI) is a specification o...) Wiki page edited by huntermorris
  • Oct 09, 2008
    EWGISpecification (The Erlang Web Gateway Interface (EWGI) is a specification o...) Wiki page edited by huntermorris
  • Oct 07, 2008
    r65 (Creating branch 0.2 ) committed by filippo.pacini   -   Creating branch 0.2
    Creating branch 0.2
  • Jul 25, 2008
    issue 5 (middleware debug module) reported by filippo.pacini   -   Write a middleware module to help debugging apps: the module could append to the resulting web page a report containing useful informations like a pretty print of the environment, status code, header received and sent, etc... It could exporta an api so that applications can send it informations they want to trace.
    Write a middleware module to help debugging apps: the module could append to the resulting web page a report containing useful informations like a pretty print of the environment, status code, header received and sent, etc... It could exporta an api so that applications can send it informations they want to trace.
 
Hosted by Google Code