Skip to content

Commit

Permalink
Merge pull request #79 from nicolasmoreau/dev
Browse files Browse the repository at this point in the history
Add a new Tools page and an entry in the main menu.
  • Loading branch information
nicolasmoreau authored Mar 23, 2018
2 parents 5dd7927 + 10ed816 commit ba4c09c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
2 changes: 2 additions & 0 deletions portal.war/src/main/webapp/layout/menu.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
propagation="none" />
<s:link id="menuHelp" view="/help.xhtml" value="Info"
propagation="none" />
<s:link id="menuTools" view="/tools.xhtml" value="Tools"
propagation="none" />
</rich:toolBarGroup>
<rich:toolBarGroup location="right">
<h:outputText value="Welcome, #{identity.username}!"
Expand Down
33 changes: 33 additions & 0 deletions portal.war/src/main/webapp/tools.xhtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://jboss.com/products/seam/taglib"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
template="/layout/template.xhtml">

<ui:define name="body">
<h3>The VAMDC species database</h3>
<p>
<h:outputLink value="https://species.vamdc.eu" target="_blank">Discover the content of each database in the VAMDC infrastructure</h:outputLink>
</p>
<p>
<h:outputText
value="This website centralizes the list of species of all the databases in the VAMDC infrastructure. It provides search features to quickly
discover where a given species can be found and the type of provided data." />
</p>
<h3>Hitran file display and comparison</h3>
<p>
<h:outputLink value="http://www.vamdc.org/hitran-display/" target="_blank">Plot data exported in HITRAN format</h:outputLink>
</p>
<p>
<h:outputText
value="The VAMDC Portal provides a web service to convert a XSAMS file containing spectroscopic molecular data into a file in HITRAN format.
The output of this web service can be visualized thanks to the web page above." />
</p>


</ui:define>
</ui:composition>

0 comments on commit ba4c09c

Please sign in to comment.