Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fbaa36dc authored by Guillaume Thomazon's avatar Guillaume Thomazon
Browse files

Change layout

git-svn-id: https://scm.gforge.inria.fr/authscm/ycadoret/svn/gazelle/Maven/gazelle-proxy/trunk@33936 356b4b1a-1d2b-0410-8bf1-ffa24008f01e
parent c027dd74
No related branches found
No related tags found
No related merge requests found
...@@ -9,9 +9,10 @@ ...@@ -9,9 +9,10 @@
template="/layout/template.xhtml"> template="/layout/template.xhtml">
<ui:define name="body"> <ui:define name="body">
<h1>#{messages['net.ihe.gazelle.proxy.DICOMMessage']}</h1> <h1>#{messages['net.ihe.gazelle.proxy.DICOMMessage']}</h1>
#{messageBean.retrieveMessage("DICOM")} #{messageBean.retrieveMessage("DICOM")}
<h:form> #{messageBean.intResult()}
<h:panelGrid columns="2"> <h:form>
<h:panelGrid columns="1" style="width:50%">
<ui:include src="commonProperties.xhtml" /> <ui:include src="commonProperties.xhtml" />
<h:outputText <h:outputText
......
...@@ -10,8 +10,9 @@ ...@@ -10,8 +10,9 @@
<ui:define name="body"> <ui:define name="body">
<h1>#{messages['net.ihe.gazelle.proxy.HL7Message']}</h1> <h1>#{messages['net.ihe.gazelle.proxy.HL7Message']}</h1>
#{messageBean.retrieveMessage("HL7")} #{messageBean.retrieveMessage("HL7")}
#{messageBean.intResult()}
<h:form> <h:form>
<h:panelGrid columns="2"> <h:panelGrid columns="1">
<ui:include src="commonProperties.xhtml" /> <ui:include src="commonProperties.xhtml" />
</h:panelGrid> </h:panelGrid>
<ui:include src="commonDownload.xhtml" /> <ui:include src="commonDownload.xhtml" />
......
...@@ -10,9 +10,10 @@ ...@@ -10,9 +10,10 @@
<ui:define name="body"> <ui:define name="body">
<h1>#{messages['net.ihe.gazelle.proxy.HTTPMessage']}</h1> <h1>#{messages['net.ihe.gazelle.proxy.HTTPMessage']}</h1>
#{messageBean.retrieveMessage("HTTP")} #{messageBean.retrieveMessage("HTTP")}
#{messageBean.intResult()}
<h:form> <h:form>
<h:panelGrid columns="2"> <h:panelGrid columns="1">
<ui:include src="commonProperties.xhtml" /> <ui:include src="commonProperties.xhtml" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Type']} :" style="font-weight:bold;" <h:outputText value="#{messages['net.ihe.gazelle.proxy.Type']} :" style="font-weight:bold;"
......
...@@ -10,8 +10,9 @@ ...@@ -10,8 +10,9 @@
<ui:define name="body"> <ui:define name="body">
<h1>#{messages['net.ihe.gazelle.proxy.RawMessage']}</h1> <h1>#{messages['net.ihe.gazelle.proxy.RawMessage']}</h1>
#{messageBean.retrieveMessage("RAW")} #{messageBean.retrieveMessage("RAW")}
#{messageBean.intResult()}
<h:form> <h:form>
<h:panelGrid columns="2"> <h:panelGrid columns="1">
<ui:include src="commonProperties.xhtml" /> <ui:include src="commonProperties.xhtml" />
</h:panelGrid> </h:panelGrid>
<ui:include src="commonDownload.xhtml" /> <ui:include src="commonDownload.xhtml" />
......
...@@ -9,31 +9,62 @@ ...@@ -9,31 +9,62 @@
template="/layout/template.xhtml"> template="/layout/template.xhtml">
<ui:define name="body"> <ui:define name="body">
<h1>#{messages['net.ihe.gazelle.proxy.SyslogMessage']}</h1> <h1>#{messages['net.ihe.gazelle.proxy.SyslogMessage']}</h1>
#{messageBean.retrieveMessage("SYSLOG")} #{messageBean.retrieveMessage("SYSLOG")}
#{messageBean.intResult()}
<h:form> <h:form>
<h:panelGrid columns="2"> <h:panelGrid columns="1">
<ui:include src="commonProperties.xhtml" /> <ui:include src="commonProperties.xhtml" />
<h:panelGrid columns="2" >
<h:outputLabel for="facility"
value="#{messages['net.ihe.gazelle.proxy.Facility']} : "
style="display:inline-block;width:150px" />
<h:outputText id="facility" value="#{messageBean.message.facility}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Facility']} :" /> <h:outputLabel for="severity"
<h:outputText value="#{messageBean.message.facility}" /> value="#{messages['net.ihe.gazelle.proxy.Severity']} : "
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Severity']} :" /> style="display:inline-block;width:150px" />
<h:outputText value="#{messageBean.message.severity}" /> <h:outputText id="severity" value="#{messageBean.message.severity}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Timestamp']} :" />
<h:outputText value="#{messageBean.message.timestamp}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Hostname']} :" />
<h:outputText value="#{messageBean.message.hostName}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.ApplicationName']} :" />
<h:outputText value="#{messageBean.message.appName}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.ProcId']} :" />
<h:outputText value="#{messageBean.message.procId}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.MessageId']} :" />
<h:outputText value="#{messageBean.message.messageId}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Tag']} :" />
<h:outputText value="#{messageBean.message.tag}" />
<h:outputText value="#{messages['net.ihe.gazelle.proxy.Payload']} :" />
<h:outputText value="#{messageBean.message.payLoad}" />
<h:outputLabel for="timestamp"
value="#{messages['net.ihe.gazelle.proxy.Timestamp']} : "
style="display:inline-block;width:150px" />
<h:outputText id="timestamp"
value="#{messageBean.message.timestamp}" />
<h:outputLabel for="host"
value="#{messages['net.ihe.gazelle.proxy.Hostname']} : "
style="display:inline-block;width:150px" />
<h:outputText id="host" value="#{messageBean.message.hostName}" />
<h:outputLabel for="appName"
value="#{messages['net.ihe.gazelle.proxy.ApplicationName']} : "
style="display:inline-block;width:150px" />
<h:outputText id="appName" value="#{messageBean.message.appName}" />
<h:outputLabel for="procID"
value="#{messages['net.ihe.gazelle.proxy.ProcId']} : "
style="display:inline-block;width:150px" />
<h:outputText id="procID" value="#{messageBean.message.procId}" />
<h:outputLabel for="messID"
value="#{messages['net.ihe.gazelle.proxy.MessageId']} : "
style="display:inline-block;width:150px" />
<h:outputText id="messID" value="#{messageBean.message.messageId}" />
<h:outputLabel for="tag"
value="#{messages['net.ihe.gazelle.proxy.Tag']} : "
style="display:inline-block;width:150px" />
<h:outputText id="tag" value="#{messageBean.message.tag}" />
<h:outputLabel for="pay"
value="#{messages['net.ihe.gazelle.proxy.Payload']} : "
style="display:inline-block;width:150px" />
<h:outputText id="pay" value="#{messageBean.message.payLoad}" />
</h:panelGrid>
</h:panelGrid> </h:panelGrid>
<ui:include src="commonDownload.xhtml" /> <ui:include src="commonDownload.xhtml" />
</h:form> </h:form>
</ui:define> </ui:define>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment