Advertisement
mstranieri

Riot Sites

Feb 26th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.87 KB | None | 0 0
  1.     <form:form id="site" bean-class="org.riotfamily.pages.model.Site">
  2.         <form:group label-key="site.general">
  3.             <form:textfield bind="name" max-length="255" />
  4.             <form:textfield bind="locale" required="true" max-length="8" />
  5.             <form:selectbox bind="masterSite">
  6.                 <form:options ref="siteRiotDao" />
  7.             </form:selectbox>
  8.             <form:selectbox bind="template">
  9.                 <form:options ref="charming" />
  10.                 <form:options ref="italia" />
  11.             </form:selectbox>
  12.             <form:editable-if-new>
  13.                 <riot:chooser bind="startingPage" target-editor-id="pages" />
  14.             </form:editable-if-new>
  15.         </form:group>
  16.         <form:group label-key="site.mapping">
  17.             <form:textfield bind="hostName" />
  18.             <form:textfield bind="pathPrefix" />
  19.             <form:checkbox bind="enabled" default="checked" />
  20.         </form:group>
  21.         <form:list bind="aliases" sortable="false">
  22.             <form:textfield />
  23.         </form:list>
  24.     </form:form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement