You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ra...@apache.org on 2001/06/04 19:19:21 UTC

cvs commit: jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets customizer-portletset.vm

raphael     01/06/04 10:19:21

  Added:       webapp/WEB-INF/templates/vm/portlets
                        customizer-portletset.vm
  Log:
  add a simple portletset customizer before gluecode customizer integration
  completed
  
  Revision  Changes    Path
  1.1                  jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets/customizer-portletset.vm
  
  Index: customizer-portletset.vm
  ===================================================================
  #set ($config = $portlet.PortletConfig)
  <form action="$jlink" method="post">
  #if ($action)
    <input name="$jlink.ActionKey" type="hidden" value="$action" />
  #end
  <table width="100%" cellpadding="1" cellspacing="0">
    <tr>
      <td>Select the layout manager for this set: 
          <select name="controller">
  #foreach ($controller in $controllers)
            <option #if ($controller.Name == $currentController) SELECTED #end>$controller.Name
  #end
          </select>
      </td>
    </tr>
    <tr>
      <td>Select the skin for this set
          <select name="skin">
  #foreach ($skin in $skins)
            <option #if ($skin.Name == $currentSkin) SELECTED #end>$skin.Name
  #end
          </select>
      </td>
    </tr>
    <tr>
      <td align="right">
        <input type="submit" name="eventSubmit_doUpdate" value="Update" />
      </td>
      <td align="left">
        <input type="submit" name="eventSubmit_doCancel" value="Cancel" />      
      </td>
    </tr>
  </table>
  </form>
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org