source: VirtualCollectionRegistry/tags/VirtualCollectionRegistry-0.4.0-alpha2/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/CreateVirtualCollectionWizard$GeneralStep.html @ 5557

Last change on this file since 5557 was 5557, checked in by Twan Goosen, 10 years ago

tag for VCR alpha 2

  • Property svn:eol-style set to native
File size: 6.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org/">
5<head />
6    <body>
7        <wicket:panel>
8            <div style="display: none" wicket:id="addKeywordDialog"></div>
9            <div style="display: none" wicket:id="deleteKeywordDialog"></div>
10            <fieldset>
11                <div class="extrainfo">
12                    <a href="#" class="extrainfotoggle"><span>[info]</span></a>
13                    <div class="notes">
14                        <h4>Provide general information</h4>
15                        <p>
16                            Use the form to fill in the general information for this virtual collection.
17                            Name and type are mandatory. It is highly recommended to write a short description,
18                            add one or more keywords and select a purpose and a reproducibility indication.
19                        </p>
20                        <p class="last">
21                            Hover over the labels of the individual fields to get more information.
22                        </p>
23                    </div>
24                </div>
25                <div class="required">
26                    <label id="namelabel" class="tooltipparent" for="gen_vc_name">Name
27                        <span class="tooltip">
28                            A short but descriptive name of the virtual collection for listings and views
29                        </span>
30                    </label>
31                    <input wicket:id="name"
32                           id="gen_vc_name" type="text" size="64" maxlength="255"/>
33                </div>
34                <div class="required">
35                    <label id="typelabel" class="tooltipparent" for="gen_vc_type">Type
36                        <span class="tooltip">
37                            Type of Virtual Collection, either intensional or extensional<br /><br /> 
38                            <b>Extensional</b>: Type of virtual collection that explicitly enumerates the references to resources or metadata documents that make up the collection<br /><br /> 
39                            <b>Intensional</b>: Type of virtual collection that defines a query by which the items of the collection can be retrieved ad-hoc from a secondary service <em>(experimental, use at own risk!)</em>
40                        </span>
41                    </label>
42                    <select wicket:id="type" id="gen_vc_type"></select>
43                </div>
44
45                <div class="optional">
46                    <label id="descriptionlabel" class="tooltipparent" for="gen_vc_desc">Description
47                        <span class="tooltip">
48                            A prose description of this virtual collection
49                        </span>
50                    </label>
51                    <textarea wicket:id="description"
52                              id="gen_vc_desc" cols="80" rows="8"></textarea>
53                </div>
54                <div class="optional">
55                    <label id="purposelabel" class="tooltipparent" for="gen_vc_purpose">Purpose
56                        <span class="tooltip">
57                            An indication of the intended usage of the present virtual collection<br /><br /> 
58                            <b>Research</b>: The virtual collection bundles resources that are relevant to a specific research (question).<br /><br /> 
59                            <b>Reference</b>: The virtual collection bundles resources, that are to be cited in a publication.<br /><br /> 
60                            <b>Sample</b>: This virtual collection bundles is intended to serve as an sample for research data<br /><br /> 
61                            <b>Future-use</b>: The purpose of this virtual collection is not specified yet. Used in published collection is advised against.
62                        </span>
63                    </label>
64                    <select wicket:id="purpose" id="gen_vc_purpose"></select>
65                </div>
66                <div class="optional">
67                    <label id="reproducibilitylabel" class="tooltipparent" for="gen_vc_reproducibility">Reproducibility
68                        <span class="tooltip">
69                            An indication of the degree to which results obtained from processing of the present collection can be expected to be stable<br /><br />
70                            <b>Intended</b>: Processing results can be expected to remain stable<br /><br />
71                            <b>Fluctuating</b>: Processing results may vary<br /><br />
72                            <b>Untended</b>: No claims with respect to the stability of the processing results are made
73                        </span>
74                    </label>
75                    <select wicket:id="reproducibility"
76                            id="gen_vc_reproducibility"></select>
77                </div>
78                <div class="optional">
79                    <label id="repronotelabel" class="tooltipparent" for="gen_vc_reproducibility_notice">Reproducibility Notice
80                        <span class="tooltip">
81                            Optional note describing the expected reproducibility of processing results in more detail
82                        </span>
83                    </label>
84                    <textarea wicket:id="reproducibilityNotice"
85                              id="gen_vc_reproducibility_notice" cols="80" rows="5"></textarea>
86                </div>
87                <div class="optional">
88                    <label id="keywordslabel" class="tooltipparent" >Keywords<br /><a href="#"
89                                                                                      wicket:id="keywordsAdd" class="add"><span>[add]</span></a>
90                        <span class="tooltip">
91                            A set of words or short phrases, each signifying a salient facet of the present virtual collection
92                        </span>
93                    </label>
94                    <div wicket:id="keywordsList" class="keywordsList">
95                        <ul>
96                            <li wicket:id="keywords">
97                                <span wicket:id="itemText">item text</span>
98                                <a wicket:id="itemRemove" href="#"><span class="delete">[delete]</span></a>
99                            </li>
100                        </ul>
101                    </div>
102                </div>
103            </fieldset>
104        </wicket:panel>
105    </body>
106</html>
Note: See TracBrowser for help on using the repository browser.