DS-1655 Disable "Initial Questions" page in Submission UI by default

This commit is contained in:
Andrea Bollini
2013-10-27 15:53:12 +01:00
parent c48a1eb563
commit eeb3061c42
3 changed files with 21 additions and 11 deletions

View File

@@ -182,23 +182,21 @@
<!--Uncommment to display the SAMPLE step as your first step-->
<!--<step id="sample"/>-->
<!--Step 1 will be to gather initial information-->
<!-- Step 1. Since DSpace 4.0, the initial questions has been disabled. Metadata are shown exactly as
required in input-forms and items are assumed to have always multiple-files attached.
If re-enable the initial questions step you should comment out this step-->
<step>
<processing-class>org.dspace.submit.step.SkipInitialQuestionsStep</processing-class>
</step>
<!--Disabled by default Since DSpace 4.0: Step 1 will be to gather initial information
<step>
<heading>submit.progressbar.initial-questions</heading>
<processing-class>org.dspace.submit.step.InitialQuestionsStep</processing-class>
<jspui-binding>org.dspace.app.webui.submit.step.JSPInitialQuestionsStep</jspui-binding>
<xmlui-binding>org.dspace.app.xmlui.aspect.submission.submit.InitialQuestionsStep</xmlui-binding>
<workflow-editable>true</workflow-editable>
</step>
<!--If you disable the initial questions step you should insert the -->
<!--SkipInitialQuestionsStep below, to enable proper processing of -->
<!--input-forms configuration -->
<!--
<step>
<processing-class>org.dspace.submit.step.SkipInitialQuestionsStep</processing-class>
</step>
-->
</step> -->
<!--Step 2 will be to Describe the item.-->
<step>

View File

@@ -76,3 +76,9 @@ CREATE TABLE requestitem
);
CREATE SEQUENCE requestitem_seq;
-------------------------------------------------------
-- DS-1655 Disable "Initial Questions" page in Submission UI by default
-------------------------------------------------------
update workspaceitem set multiple_titles=1, published_before=1, multiple_files=1;
update workflowitem set multiple_titles=1, published_before=1, multiple_files=1;

View File

@@ -79,3 +79,9 @@ CREATE TABLE requestitem
CONSTRAINT requestitem_pkey PRIMARY KEY (requestitem_id),
CONSTRAINT requestitem_token_key UNIQUE (token)
);
-------------------------------------------------------
-- DS-1655 Disable "Initial Questions" page in Submission UI by default
-------------------------------------------------------
update workspaceitem set multiple_titles=true, published_before=true, multiple_files=true;
update workflowitem set multiple_titles=true, published_before=true, multiple_files=true;