-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 45 additions & 40 deletions
85
roda-ui/roda-wui/src/main/java/org/roda/wui/client/browse/BrowseRepresentation.ui.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> | ||
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" | ||
xmlns:g="urn:import:com.google.gwt.user.client.ui" | ||
xmlns:m="urn:import:org.roda.wui.client.main" | ||
xmlns:commonsearch="urn:import:org.roda.wui.client.common.search" | ||
xmlns:lists="urn:import:org.roda.wui.client.common.lists" | ||
xmlns:common="urn:import:org.roda.wui.client.common"> | ||
xmlns:g="urn:import:com.google.gwt.user.client.ui" | ||
xmlns:commonsearch="urn:import:org.roda.wui.client.common.search" | ||
xmlns:common="urn:import:org.roda.wui.client.common"> | ||
|
||
<ui:with field='messages' type='config.i18n.client.ClientMessages' /> | ||
<ui:with field='messages' type='config.i18n.client.ClientMessages'/> | ||
|
||
<g:FocusPanel ui:field="keyboardFocus"> | ||
<g:FlowPanel styleName="wui-browse-representation" addStyleNames="wrapper skip_padding"> | ||
<common:NavigationToolbar ui:field="navigationToolbar" header="{messages.catalogueRepresentationTitle}" /> | ||
<g:FlowPanel addStyleNames="row full_width skip_padding" ui:field="center"> | ||
<g:FlowPanel addStyleNames="col_12 content"> | ||
<!-- STATUS --> | ||
<g:HTML ui:field="aipState" /> | ||
|
||
<!-- IDENTIFICATION --> | ||
<g:FlowPanel styleName="browseItemPanel"> | ||
<g:HTML addStyleNames="h2 browseItemIcon" ui:field="representationIcon"/> | ||
<g:FlowPanel addStyleNames="h2 browseItemText" ui:field="representationTitle"/> | ||
<g:FocusPanel ui:field="keyboardFocus"> | ||
<g:FlowPanel styleName="wui-browse-representation" addStyleNames="skip_padding"> | ||
<common:NavigationToolbar ui:field="navigationToolbar" | ||
header="{messages.catalogueRepresentationTitle}"/> | ||
<g:FlowPanel addStyleNames="row full_width skip_padding" ui:field="center"> | ||
<g:FlowPanel addStyleNames="col_12"> | ||
<!-- STATUS --> | ||
<g:HTML ui:field="aipState"/> | ||
|
||
<g:FlowPanel addStyleNames="browseItemPanelRisksEventsLogs" ui:field="risksEventsLogs" /> | ||
<g:Label addStyleNames="browseItemId" ui:field="dateCreatedAndModified" /> | ||
</g:FlowPanel> | ||
<!-- IDENTIFICATION --> | ||
<g:FlowPanel addStyleNames="identification"> | ||
<g:FlowPanel styleName="browseItemPanel"> | ||
<g:HTML addStyleNames="h2 browseItemIcon" ui:field="representationIcon"/> | ||
<g:FlowPanel addStyleNames="h2 browseItemText" ui:field="representationTitle"/> | ||
|
||
<!-- DESCRIPTIVE METADATA --> | ||
<g:Button addStyleNames="btn btn-block btn-plus browseNewDescriptiveMetadataButton" ui:field="newDescriptiveMetadata"> | ||
<ui:text from='{messages.newDescriptiveMetadataTitle}' /> | ||
</g:Button> | ||
<g:FlowPanel addStyleNames="card descriptiveMetadataCard"> | ||
<g:TabPanel ui:field="itemMetadata" addStyleNames="browseItemMetadata" /> | ||
</g:FlowPanel> | ||
<g:FlowPanel addStyleNames="browseItemPanelRisksEventsLogs" | ||
ui:field="risksEventsLogs"/> | ||
<g:Label addStyleNames="browseItemId" ui:field="dateCreatedAndModified"/> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
|
||
<!-- FILES --> | ||
<g:FlowPanel addStyleNames="card filesCard"> | ||
<commonsearch:SearchWrapper ui:field="filesSearch" /> | ||
</g:FlowPanel> | ||
<g:FlowPanel addStyleNames="cards"> | ||
<!-- DESCRIPTIVE METADATA --> | ||
<g:Button addStyleNames="btn btn-block btn-plus browseNewDescriptiveMetadataButton" | ||
ui:field="newDescriptiveMetadata"> | ||
<ui:text from='{messages.newDescriptiveMetadataTitle}'/> | ||
</g:Button> | ||
<g:FlowPanel addStyleNames="card descriptiveMetadataCard"> | ||
<g:TabPanel ui:field="itemMetadata" addStyleNames="browseItemMetadata"/> | ||
</g:FlowPanel> | ||
|
||
<!-- DIPs --> | ||
<g:FlowPanel addStyleNames="card disseminationsCard"> | ||
<commonsearch:SearchWrapper ui:field="disseminationsSearch" /> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FocusPanel> | ||
<!-- FILES --> | ||
<g:FlowPanel addStyleNames="card filesCard"> | ||
<commonsearch:SearchWrapper ui:field="filesSearch"/> | ||
</g:FlowPanel> | ||
|
||
<!-- DIPs --> | ||
<g:FlowPanel addStyleNames="card disseminationsCard"> | ||
<commonsearch:SearchWrapper ui:field="disseminationsSearch"/> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FlowPanel> | ||
</g:FocusPanel> | ||
</ui:UiBinder> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters