NIHVIVO-2811 Make the webapp directory more closely resemble the product base directory - move tlds, filegraph, ontologies, dwr.xml and web.xml into web/WEB-INF. Adjust the build script accordingly.
This commit is contained in:
parent
e94e3b362b
commit
104d8e0b49
2 changed files with 0 additions and 0 deletions
54
webapp/web/WEB-INF/dwr.xml
Executable file
54
webapp/web/WEB-INF/dwr.xml
Executable file
|
@ -0,0 +1,54 @@
|
|||
<!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 2.0//EN"
|
||||
"http://getahead.org/dwr//dwr20.dtd">
|
||||
|
||||
<dwr>
|
||||
|
||||
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<allow>
|
||||
|
||||
<!-- create blocks define how the java object on the server gets created, -->
|
||||
<!-- long it lives, what java class and what name in javascript. -->
|
||||
<!-- creator: "new" "scripted" "spring" -->
|
||||
<!-- scope: "application" "session" "request" "page" -->
|
||||
<!-- that the "request" scope is only useful for static methods -->
|
||||
|
||||
<create creator="new" javascript="PropertyDWR" scope="page">
|
||||
<param name="class" value="edu.cornell.mannlib.vitro.webapp.dwr.PropertyDWR"/>
|
||||
</create>
|
||||
|
||||
<create creator="new" javascript="EntityDWR" scope="page">
|
||||
<param name="class" value="edu.cornell.mannlib.vitro.webapp.dwr.EntityDWR" />
|
||||
</create>
|
||||
|
||||
<create creator="new" javascript="VClassDWR" scope="page">
|
||||
<param name="class" value="edu.cornell.mannlib.vitro.webapp.dwr.VClassDWR"/>
|
||||
</create>
|
||||
|
||||
<!-- Convert blocks define how a types are moved between java
|
||||
land and java script land -->
|
||||
|
||||
<convert converter="bean" match="edu.cornell.mannlib.vitro.webapp.beans.VClass">
|
||||
<param name="include" value="name,URI,groupURI,hidden,shortDef,hiddenFromPublicDisplay,hiddenFromEditDisplay"/>
|
||||
</convert>
|
||||
|
||||
<convert converter="bean" match="edu.cornell.mannlib.vitro.webapp.beans.Individual">
|
||||
<param name="include" value="name,moniker,URI,vClassURI"/>
|
||||
</convert>
|
||||
|
||||
<convert converter="bean" match="edu.cornell.mannlib.vitro.webapp.beans.PropertyInstance"/>
|
||||
|
||||
<!--<convert converter="object" match="edu.cornell.mannlib.vitro.beans.Entity">-->
|
||||
<!--<param name="include" value="id, name, moniker, vClassId"/>-->
|
||||
<!--</convert>-->
|
||||
|
||||
<!--<convert converter="object" match="edu.cornell.mannlib.vitro.webapp.beans.IndividualWebapp">-->
|
||||
<!--<param name="force" value="true"/>-->
|
||||
<!--<param name="include" value="URI, namespace, localName, name, moniker, vclassURI"/>-->
|
||||
<!--</convert>-->
|
||||
|
||||
<convert converter="bean" match="Date"/>
|
||||
</allow>
|
||||
|
||||
|
||||
</dwr>
|
1416
webapp/web/WEB-INF/web.xml
Normal file
1416
webapp/web/WEB-INF/web.xml
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue