Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update template and checks #617

Merged
merged 6 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _includes/index-categories.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ <h2 id="{{ cat.id }}">{{ cat.name }} <small>[{{ cat.id }}]</small></a></h2>
<ul>
{% if page.categories contains cat.id %}
<li><a href="{{ site.baseurl }}{{ page.url }}">
{% if page.stability-level != "default" %}
[{{ page.stability-level }}]&nbsp;
{% if page.stability-level != nil and page.stability-level != "default" %}
[{{ page.stability-level | upcase }}]&nbsp;
{% endif %}

{{ page.title }}
Expand Down
6 changes: 3 additions & 3 deletions _layouts/proposal.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<div class="post-page grid-wrapper">
<div class="grid__item width-10-12">
<h1 class="title">
{% if page.stability-level != "default" %}
[{{ page.stability-level }}]&nbsp;
{% if page.stability-level != nil and page.stability-level != "default" %}
[{{ page.stability-level | upcase }}]&nbsp;
{% endif %}
{{page.title}}
</h1>
Expand All @@ -20,7 +20,7 @@ <h1 class="title">
</div>
{% endunless %}
<div style="padding-bottom: 2em;">Tracked by
<a href="{{ page.issue }}">{{ page.issue }}</a>
<a href="{{ page.issue }}">{{ page.issue }}</a>
</div>

{{ content }}
Expand Down
5 changes: 3 additions & 2 deletions build/WFLY-19130_publish_Wildfly_channel_manifest.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
categories:
- wf-galleon
- maven
stability-level: community
---
= [Community] Publish WildFly channel manifest
= Publish WildFly channel manifest
:author: Bartosz Spyrko-Smietanko
:email: [email protected]
:toc: left
Expand Down Expand Up @@ -131,7 +132,7 @@ Following three channels will be created as part of this proposal:

|===

==== Manifest metadata Requirements
=== Manifest metadata Requirements

The manifest file defines a few metadata fields:
* name - human readable name of the manifest. Should contain the version of the server.
Expand Down
3 changes: 2 additions & 1 deletion controller/WFCORE-4868_configuration-files-aliases.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
categories:
- core
- management
stability-level: community
---
= [Community] Aliases for standard configuration files
= Aliases for standard configuration files
:author: Michal Petrov
:email: [email protected]
:toc: left
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
categories:
- core
- management
stability-level: community
---
= [Community] Simple config export for a server as an attachment for standalone or domain mode
= Simple config export for a server as an attachment for standalone or domain mode
:author: Emmanuel Hugonnet
:email: [email protected]
:toc: left
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
categories:
- core
- management
stability-level: default
---
= [Community] Simple config export for a server as an attachment for standalone or domain mode
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that the '[Community]' here was a mistake, probably cut and paste from the earlier proposal for the community stability feature.

= Simple config export for a server as an attachment for standalone or domain mode
:author: Emmanuel Hugonnet
:email: [email protected]
:toc: left
Expand Down
3 changes: 2 additions & 1 deletion ee/WFLY-19062-[PREVIEW]-Support_for_Jakarta_MVC_2.1.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
categories:
- ee
stability-level: preview
---
= [Preview] Standard WildFly support for Jakarta MVC 2.1
= Standard WildFly support for Jakarta MVC 2.1
:author: Brian Stansberry
:email: [email protected]
:toc: left
Expand Down
3 changes: 2 additions & 1 deletion elytron/WFLY-13762_ssl_context_based_on_peer_info.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
categories:
- elytron
- security
stability-level: community
---
= [Community] SSLContext to support delegation to alternate instances based on peer information
= SSLContext to support delegation to alternate instances based on peer information
:author: Diana Krepinska
:email: [email protected]
:toc: left
Expand Down
4 changes: 4 additions & 0 deletions elytron/WFLY-16306-keycloak-saml-feature-pack.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
categories:
- security
---
= WFLY-16306: Keycloak Galleon Feature Pack
:author: Farah Juma
:email: [email protected]
Expand Down
6 changes: 4 additions & 2 deletions elytron/WFLY-16532-additional-scope-for-auth-request.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
categories:
- elytron
- elytron
- security
stability-level: preview
---
== [Preview] Adding the ability to configure additional scope value for an authentication request
= Adding the ability to configure additional scope value for an authentication request
:author: Prarthona Paul
:email: [email protected]
:toc: left
Expand Down
8 changes: 7 additions & 1 deletion elytron/WFLY-17143-request-uri-parameters.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
= [Preview] Add the ability to specify that the OIDC Authentication Request should include request and request_uri parameters
---
categories:
- elytron
- security
stability-level: preview
---
= Add the ability to specify that the OIDC Authentication Request should include request and request_uri parameters
:author: Prarthona Paul
:email: [email protected]
:toc: left
Expand Down
3 changes: 2 additions & 1 deletion server/WFCORE-6728-reload-to-stability-level.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ categories:
- management
# Add any category for this proposal
# if missing, add it to _data/widfly-categories and use its id
stability-level: community
---
= [Community] Ability to reload a server to a different stability level
= Ability to reload a server to a different stability level
:author: Kabir Khan
:email: [email protected]
:toc: left
Expand Down
3 changes: 2 additions & 1 deletion server/WFCORE-6750-unstable-api-annotation-scanner.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ categories:

# Add any category for this proposal
# if missing, add it to _data/widfly-categories and use its id
stability-level: preview
---
= [Preview] Scan for usage of API elements annotated with annotations indicating unstable API
= Scan for usage of API elements annotated with annotations indicating unstable API
:author: Kabir Khan
:email: [email protected]
:toc: left
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ categories:
- management
# Add any category for this proposal
# if missing, add it to _data/widfly-categories and use its id
stability-level: community
---
= [Community] Ability to reload a Host Controller to a different stability level
= Ability to reload a Host Controller to a different stability level
:author: Yeray Borges
:email: [email protected]
:toc: left
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
= [Preview]Make ReuseXForwarded and RewriteHost configurable
---
categories:
- undertow
stability-level: preview
---
= Make ReuseXForwarded and RewriteHost configurable
:author: Bartosz Baranowski
:email: [email protected]
:toc: left
Expand Down
7 changes: 6 additions & 1 deletion undertow/WFLY-15452_ajp-listener_allowed_attr_pattern.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
= [Preview]modify ajp-listener to allow specifying pattern for ajp request attributes
---
categories:
- undertow
stability-level: preview
---
= Modify ajp-listener to allow specifying pattern for ajp request attributes
:author: Bartosz Baranowski
:email: [email protected]
:toc: left
Expand Down
3 changes: 2 additions & 1 deletion wf-galleon/WFLY-19021-Stability_In_Provisioning.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
categories:
- wf-galleon
stability-level: community
---
= [Community] WildFly provisioning to support WildFly stability
= WildFly provisioning to support WildFly stability
:author: Jean-Francois Denise
:email: [email protected]
:toc: left
Expand Down
Loading