Skip to content

Commit

Permalink
updates menu
Browse files Browse the repository at this point in the history
  • Loading branch information
bmule committed Jun 21, 2012
1 parent 9874fea commit d59c208
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions phrs-modules/phrs-soap-pcc09ws/phr-send-pcc9.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ clear


mvn exec:java -Dexec.mainClass=at.srfg.kmt.ehealth.phrs.ws.soap.pcc9.SendComplexPcc09MessageExample \
-Dexec.args="https://localhost:8089/testws/pcc9 https://localhost:8989/testws/pcc10 COBSCAT 191 Suzie Mayr F"
-Dexec.args="https://localhost:8089/testws/pcc9 https://localhost:8989/testwsXXX/pcc10 COBSCAT 191 Suzie Mayr F"

mvn exec:java -Dexec.mainClass=at.srfg.kmt.ehealth.phrs.ws.soap.pcc9.SendComplexPcc09MessageExample \
-Dexec.args="https://localhost:8089/testws/pcc9 https://localhost:8989/testws/pcc10 MEDLIST 191 Suzie Mayr F"
-Dexec.args="https://localhost:8089/testws/pcc9 https://localhost:8989/testwsXXX/pcc10 MEDLIST 191 Suzie Mayr F"

mvn exec:java -Dexec.mainClass=at.srfg.kmt.ehealth.phrs.ws.soap.pcc9.SendComplexPcc09MessageExample \
-Dexec.args="https://localhost:8089/testws/pcc9 https://localhost:8989/testws/pcc10 MEDCCAT 191 Suzie Mayr F"
-Dexec.args="https://localhost:8089/testws/pcc9 https://localhost:8989/testwsXXX/pcc10 MEDCCAT 191 Suzie Mayr F"
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public class MenuController extends FaceCommon {
//monitor_vitals.xhtml
//'/jsf/riskfactor_mgt.xhtml': 'Risk Factors',
if(menuProfile == '0'){
sectionPrivacy = new DefaultTreeNode(new DocumentReference(reportTool.getLabel('menu.consent_editor','Consent Editor'), '/jsf/iframe_privacy_consent_editor.xhtml', PhrsConstants.TYPE_ITEM_LINK, codedLabel, root), root)
sectionPrivacy = new DefaultTreeNode(new DocumentReference(reportTool.getLabel('menu.consent_editor','Consent Editor'), '/jsf/iframe_privacy_consent_editor.xhtml', PhrsConstants.TYPE_ITEM_NODE_HEADER_LINK, codedLabel, root), root)

} else{
sectionPrivacy = new DefaultTreeNode(new DocumentReference(reportTool.getLabel('menu.consent_editor','Privacy & Admin'), '', PhrsConstants.TYPE_ITEM_NODE_HEADER, codedLabel, root), root)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</h:panelGroup>

<h:panelGroup rendered="#{ref.type == 'nodeheaderlink'}">
<h:outputLink value="#{request.contextPath} #{ref.fileName}"><h:outputText value="#{ref.label}" style="font-size:12pt;"/>
<h:outputLink value="#{request.contextPath}#{ref.fileName}"><h:outputText value="#{ref.label}" style="font-size:12pt;"/>
</h:outputLink>
</h:panelGroup>

Expand All @@ -66,12 +66,12 @@

<h:panelGroup rendered="#{ref.type eq 'link'}" >

<h:outputLink value="#{request.contextPath} #{ref.fileName}"><h:outputText value="#{ref.label}" style="font-size:10pt;"/>
<h:outputLink value="#{request.contextPath}#{ref.fileName}"><h:outputText value="#{ref.label}" style="font-size:10pt;"/>
</h:outputLink>
</h:panelGroup>

<h:panelGroup rendered="#{ref.type eq 'nodelink'}">
<h:outputLink value="#{request.contextPath} #{ref.fileName}" style="font-size:10pt;"><h:outputText value="#{ref.label}" style="font-size:10pt;"/>
<h:outputLink value="#{request.contextPath}#{ref.fileName}" style="font-size:10pt;"><h:outputText value="#{ref.label}" style="font-size:10pt;"/>
</h:outputLink>
</h:panelGroup>

Expand Down

0 comments on commit d59c208

Please sign in to comment.