Files
alfresco-community-repo/source/web/jsp/wcm/output-path-pattern-help.jsp
Mark Rogers 28ba3f108b Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
75682: Merged V4.2-BUG-FIX (4.2.3) to HEAD-BUG-FIX (5.0/Cloud)
      75615: MNT-11847: Merged V4.2.2 (4.2.2.7) to V4.2-BUG-FIX (4.2.3)
         75255: MNT-11802 : Failed to create Web Form
            - Move EL examples to properties file


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@77534 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2014-07-22 13:40:19 +00:00

61 lines
3.7 KiB
Plaintext

<jsp:root version="1.2"
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<jsp:directive.page language="java" pageEncoding="UTF-8" />
<script type="text/javascript">
function toggleOutputPathPatternHelp()
{
var d = document.getElementById('wizard:wizard-body:mainPanel');
if (d == null)
{
d = document.getElementById('dialog:dialog-body:mainPanel');
}
d.style.display = d.style.display == 'block' ? 'none' : 'block';
}
</script>
<h:panelGrid id="mainPanel" columns="1" border="0" style="display:none; padding: 5px;" styleClass="summary infoText statusInfoText">
<h:panelGroup>
<h:outputText value="#{msg.general_info_part1}"/> <h:outputLink style="color: blue" value="http://freemarker.sourceforge.net"><h:outputText value="#{msg.general_info_part2}"/></h:outputLink> <h:outputText value="#{msg.general_info_part3}"/>
</h:panelGroup>
<f:verbatim><br/></f:verbatim>
<h:outputText style="font-weight: bold" value="#{msg.guidelines_title}"/>
<h:outputText value="#{msg.guidelines_message}"/>
<f:verbatim><br/></f:verbatim>
<h:panelGrid id="tablePanel" columns="2" border="0">
<h:panelGroup>
<h:outputText style="font-weight: bold" value="#{msg.variables_title}"/>
</h:panelGroup><h:panelGroup/>
<f:verbatim><tt style="font-weight:bold;">name</tt></f:verbatim> <h:outputText value="#{msg.description_name_field}"/>
<f:verbatim><tt style="font-weight:bold;">webapp</tt></f:verbatim> <h:outputText value="#{msg.description_webapp_field}"/>
<f:verbatim><tt style="font-weight:bold;">cwd</tt></f:verbatim> <h:outputText value="#{msg.description_cwd_field}"/>
<f:verbatim><tt style="font-weight:bold;">extension</tt></f:verbatim> <h:outputText value="#{msg.description_extension_field}"/>
<f:verbatim><tt style="font-weight:bold;">xml</tt></f:verbatim> <h:outputText value="#{msg.description_xml_field}"/>
<f:verbatim><tt style="font-weight:bold;">node</tt></f:verbatim> <h:outputText value="#{msg.description_node_field}"/>
<f:verbatim><tt style="font-weight:bold;">date</tt></f:verbatim> <h:panelGroup><h:outputText value="#{msg.description_date_field_part1}"/> <h:outputLink style="color: blue" value="http://freemarker.sourceforge.net/docs/ref_builtins_date.html"><h:outputText value="#{msg.description_date_field_part2}"/></h:outputLink> <h:outputText value="#{msg.description_date_field_part3}"/></h:panelGroup>
<h:panelGroup>
<f:verbatim><br/></f:verbatim>
<h:outputText style="font-weight: bold" value="#{msg.forexample_title}"/>
</h:panelGroup><h:panelGroup/>
<f:verbatim><tt style="font-weight:bold;"><h:outputText value="#{msg.description_example_expression1}"/></tt></f:verbatim> <h:outputText value="form_name.xml"/>
<f:verbatim><tt style="font-weight:bold;"><h:outputText value="#{msg.description_example_expression2}"/></tt></f:verbatim> <h:outputText value="form_name.html"/>
<f:verbatim><tt style="font-weight:bold;"><h:outputText value="#{msg.description_example_expression3}"/></tt></f:verbatim> <h:outputText value="/ROOT/content/form_name.xml"/>
<f:verbatim><tt style="font-weight:bold;"><h:outputText value="#{msg.description_example_expression4}"/></tt></f:verbatim> <h:outputText value="2007-01-09.xml"/>
</h:panelGrid>
<h:panelGroup>
<f:verbatim><br/></f:verbatim>
<h:outputText value="#{msg.wiki_reference_part1}"/> <h:outputLink style="color: blue" value="http://wiki.alfresco.com"><h:outputText value="#{msg.wiki_reference_part2}"/></h:outputLink>
</h:panelGroup>
</h:panelGrid>
</jsp:root>