Skip to content

Commit 340ce51

Browse files
committed
Add information about project governance and team
1 parent fb4da47 commit 340ce51

9 files changed

+215
-11
lines changed

_data/governance.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
leaders:
2+
# Order is consistent with the order of projects in the top menu.
3+
sebersole:
4+
- orm
5+
marko-bekhta:
6+
- search
7+
- validator
8+
DavideD:
9+
- reactive
10+
koentsje:
11+
- tools

_ext/governance_file_parser.rb

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
require 'fileutils'
2+
3+
module Awestruct
4+
module Extensions
5+
# Parses _data/governance.yml and makes it available under site.governance
6+
class GovernanceFileParser
7+
8+
def initialize(data_dir="_data")
9+
@data_dir = data_dir
10+
end
11+
12+
def watch(watched_dirs)
13+
watched_dirs << @data_dir
14+
end
15+
16+
def execute(site)
17+
# keep reference to site
18+
@site = site
19+
20+
@site.governance = @site.engine.load_yaml( "#{site.dir}/#{@data_dir}/governance.yml" )
21+
end
22+
end
23+
end
24+
end

_ext/pipeline.rb

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
require 'relative'
66
require 'releases'
77
require 'release_file_parser'
8+
require 'governance_file_parser'
89
require 'redirect_creator'
910
require 'directory_listing'
1011
require 'links'
@@ -45,6 +46,7 @@
4546

4647
# register extensions and transformers
4748
extension Awestruct::Extensions::ReleaseFileParser.new
49+
extension Awestruct::Extensions::GovernanceFileParser.new
4850
transformer Awestruct::Extensions::JsMinifier.new
4951
transformer Awestruct::Extensions::CssMinifier.new
5052
transformer Awestruct::Extensions::HtmlMinifier.new

_layouts/community/community-contributors.html.haml

+5-10
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,10 @@ layout: community-standard
1717

1818
%p &nbsp;
1919

20-
.text-center#contributor-loader
20+
.text-center#list-loader
2121
%i.notched.circle.loading.icon.massive
2222

23-
#contributor-list(style="display:none")
24-
25-
:javascript
26-
$(document).ready(function() {
27-
});
28-
23+
#list.contributor-list(style="display:none")
2924

3025
:javascript
3126
$(document).ready(function() {
@@ -45,9 +40,9 @@ layout: community-standard
4540
);
4641
});
4742

48-
$( '#contributor-list' ).append( items );
49-
$( '#contributor-loader' ).hide();
50-
$( '#contributor-list' ).fadeIn();
43+
$( '#list' ).append( items );
44+
$( '#list-loader' ).hide();
45+
$( '#list' ).fadeIn();
5146
});
5247
});
5348
});

_partials/menu/desktop-left-community.html.haml

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
%i.grid.icon.users
88
Community
99

10+
- href = "/community/governance/"
11+
- active = (href == current_path)
12+
%a.item{:href => href, :class => "#{(active ? "active" : "")}"}
13+
%i.grid.icon.university
14+
Governance
15+
1016
.ui.dropdown.link.item{:class => "#{(current_path.start_with?( '/community/commonhaus/' ) ? "selected" : "")}"}
1117
Commonhaus
1218
%i.icon.dropdown
@@ -35,6 +41,12 @@
3541
%a.item{:href => href, :class => "#{(current_path.start_with?( href ) ? "selected" : "")}"}
3642
Build Hibernate ORM
3743

44+
- href = "/community/team/"
45+
- active = (href == current_path)
46+
%a.item{:href => href, :class => "#{(active ? "active" : "")}"}
47+
%i.grid.icon.id.badge
48+
Team
49+
3850
.ui.dropdown.link.item{:class => "#{(current_path.start_with?( '/community/contributors/' ) ? "selected" : "")}"}
3951
Contributors
4052
%i.icon.dropdown

_partials/menu/mobile-section-community.html.haml

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
%a.item(href="/community/"){:class => "#{(item_active ? "active" : "")}"}
1313
%i.grid.icon.users
1414
Community
15+
- href = "/community/governance/"
16+
%a.item{:href => href, :class => "#{(current_path == href ? "active" : "")}"}
17+
%i.grid.icon.university
18+
Governance
1519
- href = "/community/commonhaus/"
1620
%a.item{:href => href, :class => "#{(current_path == href ? "active" : "")}"}
1721
Commonhaus - Membership
@@ -30,6 +34,10 @@
3034
- href = "/community/contribute/build-hibernate-orm/"
3135
%a.item{:href => href, :class => "#{(current_path.start_with?( href ) ? "active" : "")}"}
3236
Contribute - Build Hibernate ORM
37+
- href = "/community/team/"
38+
%a.item{:href => href, :class => "#{(current_path == href ? "active" : "")}"}
39+
%i.grid.icon.id.badge
40+
Team
3341
- item_active = (current_path == '/community/contributors/orm/')
3442
%a.item(href="/community/contributors/orm/"){:class => "#{(item_active ? "active" : "")}"}
3543
%i.grid.icon.database

community/governance.adoc

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
= Governance
2+
:toc:
3+
:awestruct-layout: community-standard
4+
5+
This document outlines the governance model for Hibernate projects.
6+
This governance model is designed to uphold the principles of transparency, open collaboration, and community involvement.
7+
8+
[[roles]]
9+
== Roles and Responsibilities
10+
11+
- **Contributors:** Anyone who contributes to Hibernate projects in any form.
12+
- **Members:** Contributors eligible for write access to a Hibernate code repository.
13+
Responsible for reviewing and merging contributions in their area of expertise.
14+
- **Project Leaders:** Elected members (at most one per code repository) with higher decision power whenever the project they lead is directly affected.
15+
Responsible for steering project direction, and for enforcing compliance with requirements of the Commonhaus Foundation.
16+
17+
Small or inactive projects may not have a leader,
18+
in which case Members interested in the project will steer the project direction.
19+
20+
[[decision-making]]
21+
== Decision-Making
22+
23+
Hibernate projects follow the https://www.commonhaus.org/bylaws/decision-making.html[Commonhaus decision-making process], with one additional provision.
24+
25+
Consensus-seeking (lazy consensus)::
26+
Projects primarily aims for a consensus-based decision-making process, where Members and active contributors discuss and come to an agreement.
27+
Voting::
28+
In situations where consensus cannot be reached, decisions may be made through a simple majority vote among Members.
29+
Conflict Resolution::
30+
If conflicts arise, Members are responsible for facilitating a resolution. The https://www.commonhaus.org/bylaws/cf-council.html[Commonhaus Foundation Council] (CFC) can be asked to mediate the discussion, if necessary.
31+
Overruling _(Hibernate-specific)_::
32+
Project Leaders hold the power to overrule any decision directly affecting the project they lead.
33+
This allows swift decisions on urgent or critical matters.
34+
Appeal to such overruling follows conflict resolution rules described above.
35+
// This is intended to balance the very extensive power of project leaders.
36+
In extreme cases, abuse of this power may result in the role of Project Leader being revoked (see below).
37+
38+
[[role-granting-revoking]]
39+
== Role granting/revoking
40+
41+
The role of Member or Project Leader is granted or revoked through the <<decision-making,decision-making process>>,
42+
with additional restrictions:
43+
44+
1. The discussion must happen on the Hibernate development mailing list, as listed in the link:/community[Community page on this website].
45+
// This prevents a Project Leader overruling their own revocation, or arbitrarily instating/revoking others.
46+
2. Project Leaders may not use their overruling power.
47+
// This is consistent with Commonhaus' own processes, which use supermajority for critical decisions.
48+
3. If consensus cannot be reached,
49+
the ensuing vote requires supermajority approval by two-thirds of voting Members, instead of simple majority.
50+
// This is long on purpose, to eliminates the risk of a decision being taken "in absentia" during e.g. holidays.
51+
// The assumption is that decisions around the project can be taken collectively, or by the previous leader, in the interim.
52+
4. Discussions regarding the role of Project Leader may not last less than 30 days.
53+
54+
Eligible candidates are:
55+
56+
For the role of Member::
57+
Any contributor.
58+
For the role of Project Leader::
59+
Any contributor to the project they will lead, provided the candidate is a Commonhaus Foundation member,
60+
// TODO update link upon the PR getting merged.
61+
and agrees to become a Signatory of the https://github.com/commonhaus/foundation/pull/219/files#diff-64f58a8e70e16b011f35a30256797c538e6a951da4e9985943b55f4abe6e94b1[Commonhaus Fiscal Sponsorship Agreement] before taking on their new role.
62+
63+
Members and Project Leaders keep their role indefinitely, unless they resign or a new decision revokes their role.
64+
65+
The list of Members and Project Leaders is kept up-to-date on the link:/community/team["Team" page] of this website.
66+
67+
[[code-of-conduct]]
68+
== Code of Conduct
69+
70+
All participants in Hibernate projects are expected to adhere to the https://www.commonhaus.org/policies/code-of-conduct/[Commonhaus Foundation Code of Conduct]. Please ensure you are familiar with its guidelines and expectations, as it's essential for maintaining a positive and collaborative environment.
71+
72+
[[trademark-policy]]
73+
== Trademark Policy
74+
75+
The Hibernate logos, icons, and domain names are protected by trademark rights. Usage of these trademarks must adhere to the https://www.commonhaus.org/policies/trademark-policy/[Commonhaus Foundation Trademark Policy].
76+
77+
[[contributing]]
78+
== Contributing
79+
80+
We welcome all forms of contribution, from code improvements to documentation and design. For details on how to contribute and the process your contributions will follow, please read our link:/community/contribute/[Contributing Guidelines].

community/team.html.haml

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
layout: community-standard
3+
title: Hibernate Team
4+
---
5+
6+
%h2{:id => "leaders"} Project Leaders
7+
8+
.ui.icon.message
9+
%i.icon.id.badge
10+
.content
11+
This is a list of all
12+
%a(href="/community/governance/#roles")
13+
Hibernate Project Leaders
14+
\.
15+
16+
.contributor-list.leader-list
17+
- site.governance.leaders.each do |login, project_names|
18+
- project_names_joined = project_names.map { |key| site.projects[key].name } .join( ', ' )
19+
.ui.card.contributor{:"data-github-login" => login, :"data-project-names" => project_names_joined}
20+
.content
21+
.header
22+
%a{:href => "https://github.com/#{login}"}
23+
#{login}
24+
.extra.content
25+
Leader of #{project_names_joined}.
26+
27+
%h2{:id => "members"} Members
28+
29+
.ui.icon.message
30+
%i.icon.id.badge
31+
.content
32+
This is a list of all
33+
%a(href="/community/governance/#roles")
34+
Hibernate Members
35+
who decided to make their membership public on GitHub.
36+
37+
%p &nbsp;
38+
39+
.text-center#list-loader
40+
%i.notched.circle.loading.icon.massive
41+
42+
#list.contributor-list(style="display:none")
43+
44+
:javascript
45+
$(document).ready(function() {
46+
var contributorsNameMapping;
47+
$.getJSON( "/community/contributors/contributors-name-mapping.json", function( data ) {
48+
contributorsNameMapping = data;
49+
$.getJSON( "https://api.github.com/orgs/hibernate/public_members", function( data ) {
50+
var items = [];
51+
data.forEach( function( member ) {
52+
var memberName = contributorsNameMapping ? (contributorsNameMapping[member.login] ? contributorsNameMapping[member.login] : member.login) : member.login;
53+
54+
var item = $( '<div class="ui card contributor"/>' )
55+
.append( $( '<div class="image"/>' ).append( $('<img src="' + member.avatar_url + '" />' ) ) )
56+
.append( $( '<div class="content" />' ).append( $( '<div class="header" />' ).append( $( '<a href="' + member.html_url + '" />' ).text( memberName ) ) ) )
57+
58+
var leaderItem = $( '.leader-list [data-github-login=' + member.login + ']' )
59+
if ( leaderItem.length ) {
60+
item.append( $( '<div class="extra content" />' ).text( 'Leader of ' + leaderItem.data( 'project-names' ) + '.' ) );
61+
leaderItem.replaceWith( item.clone() );
62+
}
63+
64+
items.push(item);
65+
});
66+
67+
$( '#list' ).append( items );
68+
$( '#list-loader' ).hide();
69+
$( '#list' ).fadeIn();
70+
});
71+
});
72+
});

stylesheets/styles.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ pre .comment .conum {
729729
}
730730
}
731731

732-
#contributor-list {
732+
.contributor-list {
733733
display: grid;
734734
grid-auto-rows: 1fr;
735735
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

0 commit comments

Comments
 (0)