mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This new pages accomplishes several interrelated things: * Documents that Zulip Cloud runs master and how that works. * Documents policies on how long client apps are expected to support old releases in our compatibility matrix. * Removes the 3-years-stale roadmap article. * Provides a central place to talk about different versions in Zulip. * Provides a better place to link to from our "you need to upgrade" nag. This content is not intended to be final, but should be finalized in the next week or so. Fixes #18322.
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "!layout.html" %}
 | 
						|
{% block document %}
 | 
						|
    {#
 | 
						|
    # This allows us to insert a warning that appears only on the development
 | 
						|
    # version e.g. to say that something is likely to have changed.
 | 
						|
    # For more info see: https://www.sphinx-doc.org/en/master/templating.html
 | 
						|
    #}
 | 
						|
    {% if pagename in ["overview/release-lifecycle", "production/postgresql", "production/video-calls", "production/giphy-gif-integration"] and release.endswith('+git') %}
 | 
						|
    {#
 | 
						|
    # This page doesn't exist in the stable documentation yet.
 | 
						|
    # This temporary workaround prevents test failures and should be removed after the next release.
 | 
						|
    #}
 | 
						|
    <div class="admonition warning">
 | 
						|
        <p class="first admonition-title">Warning</p>
 | 
						|
        <p class="last">You are reading a <strong>development version</strong> of the Zulip documentation. These instructions may not correspond to the latest Zulip Server release.
 | 
						|
        See <a class="reference external" href="https://zulip.readthedocs.io/en/stable/production/">documentation for the latest stable release</a>.</p>
 | 
						|
    </div>
 | 
						|
    {% elif pagename.split("/")[0] == "production" and release.endswith('+git') %}
 | 
						|
    <div class="admonition warning">
 | 
						|
        <p class="first admonition-title">Warning</p>
 | 
						|
        <p class="last">You are reading a <strong>development version</strong> of the Zulip documentation. These instructions may not correspond to the latest Zulip Server release.
 | 
						|
        See <a class="reference external" href="https://zulip.readthedocs.io/en/stable/{{ pagename }}.html">documentation for the latest stable release</a>.</p>
 | 
						|
    </div>
 | 
						|
    {% endif %}
 | 
						|
    {{ super() }}
 | 
						|
{% endblock %}
 |