mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3488 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
31 lines
951 B
Plaintext
31 lines
951 B
Plaintext
<%@ page import="java.io.*,
|
|
java.util.Enumeration,
|
|
java.text.DateFormat,
|
|
java.util.Date,
|
|
org.alfresco.web.bean.content.*,
|
|
org.alfresco.web.templating.*,
|
|
org.w3c.dom.*"%>
|
|
<%@ page session="true" %>
|
|
<%@ page errorPage="error.jsp" %>
|
|
<%
|
|
String url = request.getContextPath() + request.getServletPath() + '?' + request.getQueryString() + "&xxx=bla";
|
|
%>
|
|
<html xmlns:xforms="http://www.w3.org/2002/xforms">
|
|
<head>
|
|
<script type="text/javascript">
|
|
djConfig = { isDebug: true };
|
|
var xforms_url = "<%= url %>";
|
|
var contextPath = "<%= request.getContextPath() %>";
|
|
</script>
|
|
<script type="text/javascript" src="<%= request.getContextPath() %>/scripts/ajax/dojo.js">
|
|
</script>
|
|
<script type="text/javascript" src="<%= request.getContextPath() %>/jsp/content/xforms/xforms.js">
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<div id="alf-ui" style="width: 100%; border: solid 1px orange;">
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |