comparison src/main/webapp/clean/makeTextsPublic.xhtml @ 176:c63d39034b60

PublicByAuthor feature with new "Select by public and MAMS" text-UI.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Fri, 08 Jun 2018 15:32:27 +0200
parents src/main/webapp/clean/publicByAuthor.xhtml@aa564b1b5e1f
children af1018d06443
comparison
equal deleted inserted replaced
175:3d8b31508128 176:c63d39034b60
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml"
3 xmlns:h="http://java.sun.com/jsf/html"
4 xmlns:f="http://java.sun.com/jsf/core"
5 xmlns:ui="http://java.sun.com/jsf/facelets"
6 xmlns:a4j="http://richfaces.org/a4j"
7 xmlns:rich="http://richfaces.org/rich">
8
9 <body>
10 <ui:composition template="/templates/privateTemplate.xhtml">
11
12 <h:outputStylesheet name="/css/ismi-db/repository.css" />
13
14 <ui:define name="privateContent">
15
16 <div id="pageTitle">
17 <h:outputText value="Make Texts Public" />
18 </div>
19
20 <h:panelGrid columns="1"
21 styleClass="mainPanel">
22
23 <rich:tabPanel id="tabPanel"
24 activeItem="#{Session.selectedPublicByAuthorTab}">
25
26 <rich:tab header="Find Author" name="aut">
27 <ui:include src="components/publicFindAuthor.xhtml" />
28 </rich:tab>
29
30 <rich:tab header="Select by Author and Subject" name="autsub">
31 <ui:include src="components/publicAuthorSubjects.xhtml" />
32 </rich:tab>
33
34 <rich:tab header="Select by Subject and MAMS" name="mamssub">
35 <ui:include src="components/publicMamsSubjects.xhtml" />
36 </rich:tab>
37 </rich:tabPanel>
38
39 <a4j:commandButton value="reload all texts"
40 actionListener="#{Session.publicByAuthor.actionReset}"
41 render="mainPanel" />
42
43
44 </h:panelGrid>
45
46
47 </ui:define>
48 </ui:composition>
49
50 </body>
51 </html>