source: VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0-beta/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/EditResourceDialog$Content.html @ 5596

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

created a branch for VCR 1.0-beta. Trunk now 1.1-SNAPSHOT

  • Property svn:eol-style set to native
File size: 2.9 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"
5      xmlns:wicket="http://wicket.apache.org/">
6    <head />
7    <body>
8        <wicket:panel>
9            <form wicket:id="editResourceForm">
10                <fieldset>
11                    <div class="required">
12                        <label id="typelabel" class="tooltipparent" for="edit_resource_type">Type
13                            <span class="tooltipcontent">
14                                Type of reference<br /><br />
15                                Metadata: the referenced item is a CMDI metadata document that
16                                <em>describes</em> one or more resources<br /><br />
17                                Resource: the reference item is a resource that can be accessed
18                                directly through the specified URI
19                            </span>
20                        </label>
21                        <select wicket:id="type" id="edit_resource_type"></select>
22                    </div>
23                    <div class="required">
24                        <label id="referencelabel" class="tooltipparent" for="edit_resource_ref">Reference
25                            <span class="tooltipcontent">
26                                A PID or other type or URI identifying or locating the resource
27                                or metadata file
28                            </span>
29                        </label>
30                        <input wicket:id="ref" id="edit_resource_ref" type="text" />
31                    </div>
32                    <div class="optional">
33                        <label id="labellabel" class="tooltipparent" for="edit_resource_label">Label
34                            <span class="tooltipcontent">
35                                An optional label for this reference providing a short description
36                                of the item, to be shown instead of or in addition to the URI
37                            </span>
38                        </label>
39                        <input wicket:id="label" id="edit_resource_label" type="text" />
40                    </div>
41                    <div class="optional">
42                        <label id="descriptionlabel" class="tooltipparent" for="edit_resource_description">Description
43                            <span class="tooltipcontent">
44                                An optional, more detailed description of the referenced item
45                            </span>
46                        </label>
47                        <textarea wicket:id="description"
48                                  id="edit_resource_description" cols="80" rows="8"></textarea>
49                    </div>
50                </fieldset>
51                <div wicket:id="feedback" class="feedback"></div>
52            </form>
53        </wicket:panel>
54    </body>
55</html>
Note: See TracBrowser for help on using the repository browser.