Difference between revisions of "SUNScholar/Submission System"

From Libopedia
Jump to navigation Jump to search
Line 7: Line 7:
  
 
==[[SUNScholar/Submissions/Forms|Submission Forms per Step]]==
 
==[[SUNScholar/Submissions/Forms|Submission Forms per Step]]==
 
==Notes==
 
 
* The <code>&lt;required&gt;</code> element contains the textual hint displayed to the submitter about why the field is required. Leave it empty for optional fields.
 
* The <code>&lt;vocabulary&gt;</code> element is optional.  It allows you to specify the controlled vocabulary that this field should select its values from.  This field also has an optional <code>closed</code> attribute.  If closed is set to true, a user can only select values from the controlled vocabulary.  By default, closed is set to false, which allows a user to also enter in free text if he/she chooses.  For example:<pre>&lt;vocabulary closed=”true”&gt;srsc&lt;/vocabulary&gt; </pre>
 
* The name of the controlled vocabulary must correspond to the name of the XML file (without “.xml”) which contains the vocabulary.  So, in the above example, <code>srsc</code> references the vocabulary specified in the file located at ''[dspace]''/config/controlled-vocabularies/srsc.xml
 
* Valid input types (for <code>&lt;input-type&gt;</code>) are:
 
** “date” 
 
** “name” (two text boxes, labeled last and first name)
 
** “onebox” (a one-line textbox)
 
** “twobox” (two textboxes on a single line)
 
** “dropdown” (for which you must specify a <code>value-pairs-name</code> attribute referring to the <code>&lt;value-pairs&gt;</code> list of allowed values.
 
** “qualdrop_value” (a textbox, which is preceded by a “qualifying” dropdown of values.  Requires a <code>value-pairs-name</code> attribute, similar to “dropdown”.  Also requires <code>&lt;repeatable&gt;</code> is set to “true”)
 
** “textarea” 
 
* Setting the <code>&lt;repeatable&gt;</code> element to “true” creates an “Add more” button, which allows you to add multiple values into that particular field.  Examples of this include the authors and keywords fields in the standard DSpace submission process.
 
  
 
==Activation of modified workflows==
 
==Activation of modified workflows==

Revision as of 13:15, 27 September 2012

Introduction

This wiki help page assumes that you have used the three system setup procedures to install an Ubuntu server with DSpace software.

Items are submitted to collections using forms. Each collection can have its own customised submission forms and these forms can also have customised pages. Below is information about form pages and collection submissions.

Submission Steps

Submission Forms per Step

Activation of modified workflows

Rebuild the DSpace webapps using the custom rebuild script.

References

Back to Customisation