
| Key: |
UP-1778
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Minor
|
| Assignee: |
Unassigned
|
| Reporter: |
Nick Bolton
|
| Votes: |
0
|
| Watchers: |
1
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
|
Resource proxy rewrites will only occur if the org.jasig.portal.serialize.ProxyWriter.no_redirect_domain property has been set.
This occurs in the ProxyWriter in the considerProxyRewrite method. The follow condition
if (PROXY_REWRITE_NO_REDIRECT_DOMAIN.length() > 0
&& !domain_only.endsWith(PROXY_REWRITE_NO_REDIRECT_DOMAIN)) {
should be changed to
if (PROXY_REWRITE_NO_REDIRECT_DOMAIN.length() == 0
|| !domain_only.endsWith(PROXY_REWRITE_NO_REDIRECT_DOMAIN)) {
So it will process rewrites if there is no redirect domain filter specified OR there is one specified and the domain in question does not come from there.
|
|
Description
|
Resource proxy rewrites will only occur if the org.jasig.portal.serialize.ProxyWriter.no_redirect_domain property has been set.
This occurs in the ProxyWriter in the considerProxyRewrite method. The follow condition
if (PROXY_REWRITE_NO_REDIRECT_DOMAIN.length() > 0
&& !domain_only.endsWith(PROXY_REWRITE_NO_REDIRECT_DOMAIN)) {
should be changed to
if (PROXY_REWRITE_NO_REDIRECT_DOMAIN.length() == 0
|| !domain_only.endsWith(PROXY_REWRITE_NO_REDIRECT_DOMAIN)) {
So it will process rewrites if there is no redirect domain filter specified OR there is one specified and the domain in question does not come from there. |
Show » |
|
UP-1777