Skip to content

Commit

Permalink
Revert "remove roadmap as it is not updated"
Browse files Browse the repository at this point in the history
This reverts commit 6d68977.

It also modifies the roadmap for Openfire, and adjusts the page to fit with the website as it exists today.
  • Loading branch information
guusdk committed Nov 13, 2024
1 parent 0be5a09 commit e5eb15a
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/webapp/includes/sidebar_projects.jspf
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@
<div><strong><a href="<%=request.getContextPath()%>/projects/smack/">Smack</a></strong> <%= Versions.getVersion("smack") %> <a href="<%=request.getContextPath()%>/downloads/#smack" class="button_download">Download</a></div>
<div><strong><a href="<%=request.getContextPath()%>/projects/tinder/">Tinder</a></strong> <%= Versions.getVersion("tinder") %> <a href="<%=request.getContextPath()%>/downloads/#tinder" class="button_download">Download</a></div>
<div><strong><a href="<%=request.getContextPath()%>/projects/whack/">Whack</a></strong> <%= Versions.getVersion("whack") %> <a href="<%=request.getContextPath()%>/downloads/#whack" class="button_download">Download</a></div>
<div style="text-align: center;">
<strong><a href="/roadmap.jsp">Roadmap</a></strong>
</div>
</div>
133 changes: 133 additions & 0 deletions src/main/webapp/roadmap.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://igniterealtime.org/website/tags" prefix="ir" %>
<html>
<head>
<title>Roadmap</title>
<meta name="body-id" content="home" />
<meta name="panel-name" content="home" />
<style media="screen">
@import "styles/interior.css";
</style>
</head>
<body>

<section id="ignite_body">

<main id="ignite_body_leftcol">

<article id="ignite_int_body">

<header id="ignite_body_header_with_content">
<h1>Roadmap</h1>

<p>
Interested in what we're working at? We will periodically update this page with our plans for the future.
</p>
<p>
This page does not contain <em>promises</em>. The IgniteRealtime community is driven by volunteers.
Progress on any development is depending on the availability and willingness of these people to
invest their free time.
</p>

</header>

<section class="ignite_int_body_padding">

<h2 class="road">Openfire*</h2>
<p>
<div class="road-table">
<table width="100%">
<thead>
<tr>
<th class="nothing">&nbsp;</th>
<th>Version 3.0.x, Q4 2024 - Q1 2025</th>
<th>Future</th>
</tr>
</thead>
<tbody>
<tr>
<td class="label">Openfire</td>
<td><ul>
<li>Upgrade of embedded webserver Jetty, from 10 to 12</li>
<li>Update implementation of XEP-0289 'Federated MUC for Constrained Environments'</li>
<li>Add support for the Online Certificate Status Protocol</li>
<li>Add for Certificate Revocation List support</li>
<li>Additional options for archiving chat rooms</li>
</ul></td>
<td><ul>
<li>Bump support for modern SASL (authentication) mechanism</li>
<li>XEP-0440: SASL Channel-Binding Type Capability</li>
<li>XEP-0474: SASL SCRAM Downgrade Protection</li>
<li>Add support for channel binding</li>
<li>XEP-0388: Extensible SASL Profile (SASL2)</li>
<li>XEP-0386: Bind 2</li>
<li>XEP-0484: Fast Authentication Streamlining Tokens</li>
</ul></td>
</tr>
<tr>
<td class="label">Hazelcast plugin</td>
<td>
<ul>
<li>Update to version 5.5.x of Hazelcast</li>
</ul>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</div>
</p>

<p>* Plan as of November 13, 2024. Subject to change; we make no promises on future releases. :-)</p>

<h2>Can we please have ... ?</h2>

<p>
If you're interesting to getting a particular change or feature on the road map, there are a couple
of routes that you can take.
</p>

<p>
<strong>Contribute!</strong> The Ignite Realtime community is an open source community, that makes
available <a href="support/">a lot of resources</a> that allows you to implement your changes
yourself. Please consider engaging with the community to help you get your changes added to the project!
</p>

<p>
Alternatively, you can seek help from one of our <a href="support/service_providers.jsp">Professional
Partners</a>, than can help you realize changes in our projects.
</p>

</section>

</article>

</main>

<section id="ignite_body_sidebar">

<jsp:include page="/includes/sidebar_forumactivity.jsp">
<jsp:param name="discourseCategory" value="/c/blogs/ignite-realtime-blogs"/>
<jsp:param name="headerText" value="Latest News"/>
<jsp:param name="hideAuthor" value="true"/>
</jsp:include>

<jsp:include page="/includes/sidebar_projects.jspf"/>

<jsp:include page="/includes/sidebar_forumactivity.jsp">
<jsp:param name="discourseCategory" value="/latest"/>
<jsp:param name="headerText" value="In the community"/>
<jsp:param name="subHeaderText" value="Recent Discussions"/>
<jsp:param name="sidebarClasses" value="sidebar_light sidebar_gray"/>
</jsp:include>

<jsp:include page="/includes/sidebar_testimonial.jspf"/>

</section>

</section>


</body>
</html>

0 comments on commit e5eb15a

Please sign in to comment.