Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions docs/gateway_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ The description of the portlet itself lives in the portlet definition file:
custom operations, in this case to also set the window name to the calculated field.
-->
<bean class="org.jasig.portlet.proxy.mvc.portlet.gateway.GatewayEntry" p:name="MyZimbra"
p:iconUrl="/ResourceServingWebapp/rs/tango/0.8.90/32x32/apps/internet-mail.png"
p:iconUrl="/resource-server/rs/tango/0.8.90/32x32/apps/internet-mail.png"
p:javascriptFile="/WebProxyPortlet/scripts/custom-javascript.js">

<!-- Custom java form fields. Beans in list must implement org.jasig.portlet.proxy.mvc.service.web.IAuthenticationFormModifier
Expand Down Expand Up @@ -273,7 +273,7 @@ This is how you might add IAuthenticationFormModifier to your portlet definition

```
<bean class="org.jasig.portlet.proxy.mvc.portlet.gateway.GatewayEntry" p:name="MyZimbra"
p:iconUrl="/ResourceServingWebapp/rs/tango/0.8.90/32x32/apps/internet-mail.png">
p:iconUrl="/resource-server/rs/tango/0.8.90/32x32/apps/internet-mail.png">

<property name="authenticationFormModifier">
<util:list>
Expand Down Expand Up @@ -302,7 +302,7 @@ GatewayEntry bean; e.g.

```
<bean class="org.jasig.portlet.proxy.mvc.portlet.gateway.GatewayEntry" p:name="WebAdvisor"
p:iconUrl="/ResourceServingWebapp/rs/tango/0.8.90/32x32/apps/internet-web-browser.png"
p:iconUrl="/resource-server/rs/tango/0.8.90/32x32/apps/internet-web-browser.png"
p:javascriptFile="/WebProxyPortlet/scripts/custom-javascript.js">
...
</bean>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
-->
<!--
<bean class="org.jasig.portlet.proxy.mvc.portlet.gateway.GatewayEntry" p:name="MyZimbra"
p:iconUrl="/ResourceServingWebapp/rs/tango/0.8.90/32x32/apps/internet-mail.png">
p:iconUrl="/resource-server/rs/tango/0.8.90/32x32/apps/internet-mail.png">

<property name="contentRequests">
<util:map>
Expand Down Expand Up @@ -115,7 +115,7 @@
-->
<!--
<bean class="org.jasig.portlet.proxy.mvc.portlet.gateway.GatewayEntry" p:name="WebAdvisor"
p:iconUrl="/ResourceServingWebapp/rs/tango/0.8.90/32x32/apps/internet-web-browser.png"
p:iconUrl="/resource-server/rs/tango/0.8.90/32x32/apps/internet-web-browser.png"
p:javascriptFile="/WebProxyPortlet/scripts/custom-javascript.js">

<!- beans in list must implement org.jasig.portlet.proxy.mvc.service.web.IAuthenticationFormModifier
Expand Down
Loading