Adding the following files related to refactoring of EditRequestDispatch

1) DefaultDataPropertyFormGenerator
2) DefaultObjectPropertyFormGenerator
3) DefaultPropertyFormGenerator
4) EditDataPropStmtRequestDispatchController
5) EditRequestDispatchController
6) n3DeleteController
7) defaultPropertyForm.ftl

Note: These files are not fully functional yet. While some of them are partially functional, others need some filling up to do.
This commit is contained in:
deepakkoni 2011-06-29 19:27:33 +00:00
parent 19f69c62ba
commit ab8a6f0662
7 changed files with 772 additions and 35 deletions

View file

@ -0,0 +1,19 @@
<h2>${formTitle}</h2>
<#assign form ="/edit/processRdfForm2.jsp">
<#assign formUrl ="${form?url}">
<#if ${predicate.selectFromExisting} == true>
<#if ${rangeOptionsExist} == true >
<form class="editForm" action = "${formUrl}">
<#if predicate.publicDescription??>
<p>${predicate.publicDescription}</p>
<input type="text" id="objectVar" size="80" />
<div style="margin-top: 0.2em">
<input type="submit" id="submit" value="${submitLabel}" cancel="true"/>
</div>
</#if>
</form>
</#if>
</#if>