You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Andrei Markov (JIRA)" <ji...@apache.org> on 2012/11/30 09:44:00 UTC

[jira] [Created] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Andrei Markov created TAP5-2031:
-----------------------------------

             Summary: BaseURLSourceImpl added default secure port to absolute url
                 Key: TAP5-2031
                 URL: https://issues.apache.org/jira/browse/TAP5-2031
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.3.1
            Reporter: Andrei Markov
            Priority: Trivial


BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Posted by "Andrei Markov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrei Markov updated TAP5-2031:
--------------------------------

    Description: 
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

In last line doesn't check secure flag, but it should be.
  

  was:
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
  

    
> BaseURLSourceImpl added default secure port to absolute url
> -----------------------------------------------------------
>
>                 Key: TAP5-2031
>                 URL: https://issues.apache.org/jira/browse/TAP5-2031
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.1
>            Reporter: Andrei Markov
>            Priority: Trivial
>
> BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
> if (port <= 0) { 
>     port = request.getServerPort();
>     int schemeDefaultPort = request.isSecure() ? 443 : 80;
>     portSuffix = port == schemeDefaultPort ? "" : ":" + port;
> }
> else if (secure && port != 443) portSuffix = ":" + port;
> else if (port != 80) portSuffix = ":" + port;
> In last line doesn't check secure flag, but it should be.
>   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Posted by "Andrei Markov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrei Markov updated TAP5-2031:
--------------------------------

    Description: 
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

The last line doesn't check secure flag, but it should be.
  

  was:
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

In last line doesn't check secure flag, but it should be.
  

    
> BaseURLSourceImpl added default secure port to absolute url
> -----------------------------------------------------------
>
>                 Key: TAP5-2031
>                 URL: https://issues.apache.org/jira/browse/TAP5-2031
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.1
>            Reporter: Andrei Markov
>            Priority: Trivial
>
> BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
> if (port <= 0) { 
>     port = request.getServerPort();
>     int schemeDefaultPort = request.isSecure() ? 443 : 80;
>     portSuffix = port == schemeDefaultPort ? "" : ":" + port;
> }
> else if (secure && port != 443) portSuffix = ":" + port;
> else if (port != 80) portSuffix = ":" + port;
> The last line doesn't check secure flag, but it should be.
>   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Posted by "Andrei Markov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrei Markov updated TAP5-2031:
--------------------------------

    Description: 
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

The last line doesn't check secure flag, but it should be.
  

  was:
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

In last line doesn't check secure flag, but it should be.
  

    
> BaseURLSourceImpl added default secure port to absolute url
> -----------------------------------------------------------
>
>                 Key: TAP5-2031
>                 URL: https://issues.apache.org/jira/browse/TAP5-2031
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.1
>            Reporter: Andrei Markov
>            Priority: Trivial
>
> BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
> if (port <= 0) { 
>     port = request.getServerPort();
>     int schemeDefaultPort = request.isSecure() ? 443 : 80;
>     portSuffix = port == schemeDefaultPort ? "" : ":" + port;
> }
> else if (secure && port != 443) portSuffix = ":" + port;
> else if (port != 80) portSuffix = ":" + port;
> The last line doesn't check secure flag, but it should be.
>   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Posted by "Andrei Markov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrei Markov updated TAP5-2031:
--------------------------------

    Description: 
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for secure url.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

The last line doesn't check secure flag, but it should be.
  

  was:
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

The last line doesn't check secure flag, but it should be.
  

    
> BaseURLSourceImpl added default secure port to absolute url
> -----------------------------------------------------------
>
>                 Key: TAP5-2031
>                 URL: https://issues.apache.org/jira/browse/TAP5-2031
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.1
>            Reporter: Andrei Markov
>            Priority: Trivial
>
> BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for secure url.
> if (port <= 0) { 
>     port = request.getServerPort();
>     int schemeDefaultPort = request.isSecure() ? 443 : 80;
>     portSuffix = port == schemeDefaultPort ? "" : ":" + port;
> }
> else if (secure && port != 443) portSuffix = ":" + port;
> else if (port != 80) portSuffix = ":" + port;
> The last line doesn't check secure flag, but it should be.
>   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Posted by "Andrei Markov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrei Markov updated TAP5-2031:
--------------------------------

    Description: 
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for secure url.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

The last line doesn't check secure flag, but it should be.
  

  was:
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

The last line doesn't check secure flag, but it should be.
  

    
> BaseURLSourceImpl added default secure port to absolute url
> -----------------------------------------------------------
>
>                 Key: TAP5-2031
>                 URL: https://issues.apache.org/jira/browse/TAP5-2031
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.1
>            Reporter: Andrei Markov
>            Priority: Trivial
>
> BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for secure url.
> if (port <= 0) { 
>     port = request.getServerPort();
>     int schemeDefaultPort = request.isSecure() ? 443 : 80;
>     portSuffix = port == schemeDefaultPort ? "" : ":" + port;
> }
> else if (secure && port != 443) portSuffix = ":" + port;
> else if (port != 80) portSuffix = ":" + port;
> The last line doesn't check secure flag, but it should be.
>   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (TAP5-2031) BaseURLSourceImpl added default secure port to absolute url

Posted by "Andrei Markov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrei Markov updated TAP5-2031:
--------------------------------

    Description: 
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.

if (port <= 0) { 
    port = request.getServerPort();
    int schemeDefaultPort = request.isSecure() ? 443 : 80;
    portSuffix = port == schemeDefaultPort ? "" : ":" + port;
}
else if (secure && port != 443) portSuffix = ":" + port;
else if (port != 80) portSuffix = ":" + port;

In last line doesn't check secure flag, but it should be.
  

  was:
BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
  

    
> BaseURLSourceImpl added default secure port to absolute url
> -----------------------------------------------------------
>
>                 Key: TAP5-2031
>                 URL: https://issues.apache.org/jira/browse/TAP5-2031
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.1
>            Reporter: Andrei Markov
>            Priority: Trivial
>
> BaseURLSourceImpl.getBaseURL(boolean secure) shoudn't add port 443 for url with secure scheme.
> if (port <= 0) { 
>     port = request.getServerPort();
>     int schemeDefaultPort = request.isSecure() ? 443 : 80;
>     portSuffix = port == schemeDefaultPort ? "" : ":" + port;
> }
> else if (secure && port != 443) portSuffix = ":" + port;
> else if (port != 80) portSuffix = ":" + port;
> In last line doesn't check secure flag, but it should be.
>   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira