NIHVIVO-3022 NIHVIVO-2980 Merged r8790 from maint-rel-vivo-1.3 branch.
This commit is contained in:
parent
e1eca52416
commit
47c5b386d8
3 changed files with 0 additions and 157 deletions
|
@ -1,15 +0,0 @@
|
||||||
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
||||||
|
|
||||||
#localClassName {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
#createNewLocalClass p.note {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
#noLocalOntologyExists p {
|
|
||||||
padding: 0.2em 0.4em;
|
|
||||||
background: #f4f4f4;
|
|
||||||
margin-right: .4em;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
|
@ -1,58 +0,0 @@
|
||||||
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
||||||
|
|
||||||
/**Added by Huda for demonstration so feel free to edit/remove**/
|
|
||||||
|
|
||||||
/*note for mb: hide should be changed to hidden. We have a hidden class at the vitro layer vitro.css*/
|
|
||||||
.hide {
|
|
||||||
display:none;
|
|
||||||
}
|
|
||||||
#add-menu-item p,
|
|
||||||
#edit-menu-item p {
|
|
||||||
margin-top: 15px;
|
|
||||||
}
|
|
||||||
#add-menu-item input[name="prettyUrl"],
|
|
||||||
#edit-menu-item input[name="prettyUrl"] {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
#add-menu-item p.note,
|
|
||||||
#edit-menu-item p.note {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
#existingContentType {
|
|
||||||
margin-top: 15px;
|
|
||||||
}
|
|
||||||
#selectContentType label {
|
|
||||||
margin-top: 15px;
|
|
||||||
}
|
|
||||||
#selectedContentTypeValue {
|
|
||||||
padding: 0.2em 0.4em;
|
|
||||||
background: #f4f4f4;
|
|
||||||
margin-right: .4em;
|
|
||||||
}
|
|
||||||
ul#selectedClasses {
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
#add-menu-item input.submit,
|
|
||||||
#edit-menu-item input.submit {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
#internal-class {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
padding: 0.8em 1em;
|
|
||||||
background: #f4f4f4;
|
|
||||||
margin-right: .4em;
|
|
||||||
width: 65%;
|
|
||||||
}
|
|
||||||
#internal-class label {
|
|
||||||
color: #7F8993;
|
|
||||||
}
|
|
||||||
#internal-class p.note {
|
|
||||||
color: #595B5B;
|
|
||||||
padding-left: 25px;
|
|
||||||
}
|
|
||||||
ul#selectedClasses li {
|
|
||||||
margin-left: .4em;
|
|
||||||
}
|
|
||||||
#selectClassesMessage {
|
|
||||||
padding-top: 15px;
|
|
||||||
}
|
|
|
@ -1,84 +0,0 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
||||||
|
|
||||||
<#--
|
|
||||||
Institutional Internal Class Form
|
|
||||||
To be associated later (upon completion of N3 Refactoring) with
|
|
||||||
edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.InstitutionalInternalClassForm.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<h2>Institutional Internal Class</h2>
|
|
||||||
|
|
||||||
<section id="introMessage" role="region">
|
|
||||||
<p>This class will be used to designate those individuals internal to your institution.</p>
|
|
||||||
<p>This will allow you to limit the individuals displayed on your menu pages (People, Research, etc.)
|
|
||||||
to only those within your institution.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section role="region">
|
|
||||||
<form method="POST" action="${formUrl}" class="customForm">
|
|
||||||
<input type="hidden" name="submitForm" id="submitForm" value="true" />
|
|
||||||
|
|
||||||
<#--If no local ontologies, display message for user to create a local ontology-->
|
|
||||||
<#if ontologiesExist = false>
|
|
||||||
<section id="noLocalOntologyExists" role="region">
|
|
||||||
<p>There are currently no local ontologies. You must create a <a href='${urls.base}/editForm?controller=Ontology'>new local ontology.</a></p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<#--else if local ontologies exist and local classes exist, show drop-down of local classes-->
|
|
||||||
<#elseif useExistingLocalClass?has_content>
|
|
||||||
<section id="existingLocalClass" role="region">
|
|
||||||
<#--Populated based on class list returned-->
|
|
||||||
<label for="existingLocalClasses">Select an existing class from a local extension</label>
|
|
||||||
|
|
||||||
<select id="existingLocalClasses" name="existingLocalClasses" role="combobox"<strong></strong>>
|
|
||||||
<#assign classUris = existingLocalClasses?keys />
|
|
||||||
|
|
||||||
<#--If internal class exists, check against value in drop-down and select option-->
|
|
||||||
<#--<option value="" role="option">Select one</option>-->
|
|
||||||
<#list classUris as localClassUri>
|
|
||||||
<option value="${localClassUri}" role="option" <#if existingInternalClass = localClassUri>selected</#if> >${existingLocalClasses[localClassUri]}</option>
|
|
||||||
</#list>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<p>Can't find an appropriate class? Create a <a href="${formUrl}?cmd=createClass">new one</a>.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<#--if parameter to create new class passed or if there are local ontologies but no local classes, show create new class page-->
|
|
||||||
<#elseif createNewClass?has_content>
|
|
||||||
<section id="createNewLocalClass" role="region">
|
|
||||||
<h3>Create a new class</h3>
|
|
||||||
|
|
||||||
<label for="localClassName">Name<span class="requiredHint"> *</span></label>
|
|
||||||
<input type="text" id="localClassName" name="localClassName" value="" role="input" />
|
|
||||||
<p class="note">use capitals for the first letter of each word</p>
|
|
||||||
|
|
||||||
<#--If more than one local namespace, generate select-->
|
|
||||||
<#if multipleLocalNamespaces = true>
|
|
||||||
<label for="existingLocalNamespace">Local Namespace<span class="requiredHint"> *</span></label>
|
|
||||||
|
|
||||||
<select id="existingLocalNamespaces" name="existingLocalNamespaces" role="combobox">
|
|
||||||
<#assign namespaceUris = existingLocalNamespaces?keys />
|
|
||||||
<#list namespaceUris as existingNamespace>
|
|
||||||
<option value="${existingNamespace}" role="option">${existingLocalNamespaces[existingNamespace]}</option>
|
|
||||||
</#list>
|
|
||||||
</select>
|
|
||||||
<#else>
|
|
||||||
<input type="hidden" id="existingLocalNamespaces" name="existingLocalNamespaces" value="${existingLocalNamespace}" />
|
|
||||||
</#if>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<#--this case is an error case-->
|
|
||||||
<#else>
|
|
||||||
<p>Problematic section as above should all have been handled</p>
|
|
||||||
</#if>
|
|
||||||
|
|
||||||
<#--only show submit and cancel if ontologies exist-->
|
|
||||||
<#if ontologiesExist = true>
|
|
||||||
<input type="submit" name="submit-internalClass" value="${submitAction}" class="submit" /> or <a class="cancel" href="${cancelUrl}">Cancel</a>
|
|
||||||
</#if>
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
${stylesheets.add('<link rel="stylesheet" href="${urls.base}/css/menupage/institutinalInternalClass.css" />')}
|
|
||||||
${stylesheets.add('<link rel="stylesheet" href="${urls.base}/edit/forms/css/customForm.css" />')}
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue