redirect_from | ||
---|---|---|
|
{% assign currentTime = 'now' | date: '%s' | plus: 0 %}
{% if site.data.question_of_month %}
{% for feedback in site.data.question_of_month %}
{% assign fromFeedback = feedback.from | date: '%s' | plus: 0 %}
{% assign toFeedback = feedback.to | date: '%s' | plus: 0 %}
{% if currentTime > fromFeedback %}
{% if toFeedback == 0 or currentTime < toFeedback %}
{% assign announcements = site.data.announcements %}
{% assign release_date_v2 = site.data.releases.v2[0].release_date | date: '%s' | plus: 0 %}
{% assign release_date_v1 = site.data.releases.v1[0].release_date | date: '%s' | plus: 0 %}
{% assign week_time = 1209600 %}
{% assign today_minus_week = currentTime | minus: week_time %}
{% if release_date_v1 > today_minus_week %}
{% capture version_v1_announcements %}
Zowe version {{ site.data.releases.v1[0].version }} is now available. You can download the installers for this release from the Download page. To learn what's new in this release, see the Release notes.
{% endcapture %}
{% assign version_v1_announcements= version_v1_announcements | split: "" %}
{% assign announcements = version_v1_announcements | concat: announcements %}
{% endif %}
{% if release_date_v2 > today_minus_week %}
{% capture version_v2_announcements %}
Zowe version {{ site.data.releases.v2[0].version }} is now available. You can download the installers for this release from the Download page. To learn what's new in this release, see the Release notes.
{% endcapture %}
{% assign version_v2_announcements= version_v2_announcements | split: "" %}
{% assign announcements = version_v2_announcements | concat: announcements %}
{% endif %}
{% if announcement.announcement %}{{ announcement.announcement }}{% else %}{{ announcement }}{% endif %}
{% endif %} {% endfor %}
{% assign next_version = 2.7 %} {% assign next_version_date = currentTime %} {% assign minimum_difference = 9999999 %} {% for release in site.data.releases.future.v2 %} {% assign current_release_date = release.release_date | date: '%s' | plus: 0 %} {% if current_release_date > currentTime %} {% assign difference_in_seconds = current_release_date | minus: currentTime %} {% if difference_in_seconds < minimum_difference %} {% assign minimum_difference = difference_in_seconds %} {% assign next_version_date = release.release_date %} {% assign next_version = release.version %} {% endif %} {% endif %} {% endfor %} {% for release in site.data.releases.future.v1 %} {% assign current_release_date = release.release_date | date: '%s' | plus: 0 %} {% if current_release_date > currentTime %} {% assign difference_in_seconds = current_release_date | minus: currentTime %} {% if difference_in_seconds < minimum_difference %} {% assign minimum_difference = difference_in_seconds %} {% assign next_version_date = release.release_date %} {% assign next_version = release.version %} {% endif %} {% endif %} {% endfor %}
Zowe, the integrated and extensible open source framework for z/OS, combines the past and present to build the future of mainframes. Like Mac OS, Windows, and others, Zowe comes with a core set of applications out of the box in combination with the APIs and OS capabilities future applications will depend on.
Zowe offers modern interfaces to interact with z/OS and allows you to work with z/OS in a way that is similar to what you experience on cloud platforms today. You can use these interfaces as delivered or through plug-ins and extensions that are created by clients or third-party vendors.
Next release: v{{next_version}} GA {{next_version_date}} | View roadmap
{% if site.data.upcoming_events.size >= 1 %}
{{ events.description }}
{% if site.data.projects.size >= 1 %} {% assign amount_of_rows = site.data.projects.size | divided_by: 3.0 | ceil %} {% assign range_rows = (1..amount_of_rows )%}
<img class="image-zowe-use" src="{{ project.img_url }}">
<a id="{{ project.name | replace: " ", "-" | downcase }}-intro"><h4>{{ project.name }}</h4></a>
<p style="margin: 1rem auto">
<span class="{{project.stage | replace: " ", "-" | downcase }} stage">{{project.stage}}</span>
<span class="{{project.dedication | replace: " ", "-" | downcase }} dedication">{{project.dedication}}</span>
</p>
<p style="margin: 1rem auto">{{project.description}}</p>
<p>
{% if project.github_url %}
<a href="{{ project.github_url }}">Code on GitHub</a> |
{% endif %}
{% if project.slack_url %}
<a href="{{ project.slack_url }}">Connect on Slack</a> |
{% endif %}
{% if project.doc_url %}
<a href="{{ project.doc_url }}">Learn more</a> |
{% endif %}
{% if project.tour_url %}
<a href="{{ project.tour_url }}">View Tour</a>
{% endif %}
</p>
</div>
{% endfor %}
</div>
{% endfor %}
</div>