Sha256: 0ec2c17fd35f39bbb6ff2949c06757e32e50f04471daac16263688b9005f57f0

Contents?: true

Size: 1.23 KB

Versions: 10

Compression:

Stored size: 1.23 KB

Contents

<h1>Liferay session variables</h1>
<p>
These tests check that Liferay session variables are available in Rails.
</p>

<p>
These variables are accessible in Java JSR286 portlets from the Liferay API.
When the Rails-portlet receives a request where the URL contains keywords %UID% or %GID%, these are replaced by the values received from the Liferay API. Rails receives a request with the actual UID number and GID numbers, respectively. The page (Layout in the database) where the portlet is has defined this Group.
</p>

<p>
  <%#= link_to 'UID', url_for(:action => :session_variables)+'/uid/%UID%' -%><br/>
  <%#= link_to 'UID debug', url_for(:action => :session_variables)+'/uid/10000' -%><br/>
  <% if @uid -%>
    <span style="font-size: 18px;">
      Received UID: <%= @uid %>
    </span>
  <% else -%>
    No UID found!
  <% end -%>
</p>

<p>
  <%#= link_to 'GID', url_for(:action => :session_variables)+'/gid/%GID%' -%><br/>
  <%#= link_to 'GID debug', url_for(:action => :session_variables)+'/gid/20000' -%><br/>
  <% if @gid -%>
    <span style="font-size: 18px;">
      Received GID: <%= @gid %>
    </span>
  <% else -%>
    No GID found!
  <% end -%>
</p>

<p style="font-size: 18px;">
  <%#= link_to 'Reset', :action => :session_variables -%>
</p>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
caterpillar-1.4.4 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.4.3 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.4.2 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.4.1 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.4.0 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.3.1 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.2.5 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.0.7 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.0.6 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb
caterpillar-1.0.5 portlet_test_bench/views/caterpillar/liferay/session_variables.html.erb