Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
1

The ECMWF software support portal allows users to access all ECMWF software packages information in a single web site. Go to the Wiki area for documentation, the Releases area to get the latest versions of the software or to Forums to ask questions and discuss aspects of the software. If you have any problem with the software packages or have discovered a bug you can report it in ourIssuemanagement system.

Column
width20%

About Software Support

Loremipsum
1
Column
width80%
Wiki Markup

{jython}
from com.atlassian.confluence.search.v2 import ContentSearch
from com.atlassian.confluence.search.v2.query import LabelQuery
search = ContentSearch(LabelQuery("devel"),None,None,None)
results = searchManager.searchEntities(search)
out.print("<div class='recently-updated recently-updated-concise'><h4 class='sub-heading'>ECMWF Software Packages</h4><div class='results-container'><ul>")
for i in results:
   out.print("<li class='update-item'><a href='%s%s'>%s</a> <span style='font-size:80%%; color:#666666'>%s</span></li>" % (contextPath,i.urlPath,i.displayTitle,i.content))
out.print("</ul></div></div>")
{jython}

...