Skip to content

Commit 6caca77

Browse files
Improve project pages (#1639)
* Improve project pages Update the page of affiliated software with properly affiliated projects, keeping the older umbrella projects for now (a redirect from the old page is in place). Remove the anachronistic "services" page. Update menu to link to new pages (including a more obvious link to the badges). Update the project criteria to not refer to contracts for developers, but rather to their commitment to provide support. Reduce the Bronze level commitment to 1 year (from 2). * Review comments and tweaks * Use site.baseurl
1 parent 93f3aea commit 6caca77

File tree

4 files changed

+28
-53
lines changed

4 files changed

+28
-53
lines changed

_includes/navbar.ext

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,8 @@
5858
<ul class="dropdown-menu" aria-labelledby="projects_menu">
5959
<li><a href="{{ site.baseurl }}/projects/affiliated.html">HSF Affiliated Projects and Software</a></li>
6060
<li><a href="{{ site.baseurl }}/projects/guidelines.html">Projects and Software Guidelines</a></li>
61-
<li class="divider"></li>
62-
<li><a href="{{ site.baseurl }}/project_guidelines.html">How to join as a project</a></li>
63-
<li><a href="{{ site.baseurl }}/projects.html">Member Projects</a></li>
64-
<li><a href="{{ site.baseurl }}/services.html">Development Services</a></li>
61+
<li><a href="{{ site.baseurl }}/projects/projects.html">Member Projects</a></li>
62+
<li><a href="{{ site.baseurl }}/projects/badges.html">Affiliate Badges</a></li>
6563
</ul>
6664
</li>
6765
</ul>

projects/guidelines.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
title: "Affiliated Projects and Software Guidelines"
33
author: Eduardo Rodrigues, Pere Mato
44
layout: plain
5+
redirect_from: /project_guidelines.html
56
---
67

78
In a spirit of openness and flexibility, the HSF maintains an evolving checklist of best practices for HSF Affiliated Projects and Software, rather than a set of requirements.
89
[HSF Affiliated Projects and Software]({{ site.baseurl }}/projects/affiliated.html) need to abide by (at least a subset of) the guidelines,
910
which are used for their endorsement and attribution of Bronze, Silver or Gold levels of recognition.
1011

1112
The guidelines have been created to:
13+
1214
* Encourage projects to follow best practices;
1315
* Help new projects discover what those practices are; and
1416
* Help users know which projects are following best practices, meant as a guarantee of quality.
@@ -34,6 +36,7 @@ Avoid pre-existing trademarks for software products or services.
3436
* **General information.** It is often useful if not necessary to provide extra information such as library dependencies, platforms supported, operating systems supported, etc.
3537

3638
In addition, projects should consider having:
39+
3740
* **A project website.** Such a website is meant to concentrate all the information useful for users as well as developers. (Access to all sources of project information should be granted to search engine spiders.)
3841
* **Developers mailing list.** A mailing list to contact developers should be made available. Better to have publicly and anonymously accessible archives and be open for subscription and posting by the public.
3942

@@ -66,11 +69,13 @@ Three endorsement levels are defined to distinguish mainly the level of maturity
6669
For each level a number of requisites need to be demonstrated.
6770
Each level adds more requisites to the previous level.
6871
These requisites lay in three major categories:
72+
6973
* Software engineering practices followed by the project (as described in the Best-practice Guideline section and with specifics for the programming language ecosystem).
7074
* Sustainability and support structures of the project (e.g. number of active developers, discussion fora, documentation, training events, time to respond to issues, etc.)
7175
* Level of adoption of the software by experiments and other projects, hence the impact of the project.
7276

7377
The keywords *MUST*, *SHOULD*, *MAY* that appear in the criteria in this document are to be interpreted as described in [RFC 2119](https://datatracker.ietf.org/doc/html/rfc2119):
78+
7479
* The term MUST is an absolute requirement, and MUST NOT is an absolute prohibition.
7580
* The term SHOULD indicates a criterion that is normally required, but there may exist valid reasons in particular circumstances to ignore it.
7681
* The term MAY provides one way something can be done, e.g., to make it clear that the described implementation may differ and be acceptable.
@@ -80,6 +85,7 @@ The keywords *MUST*, *SHOULD*, *MAY* that appear in the criteria in this documen
8085
The purpose of this entry level is for a young endeavour, likely evolving from and within a collaboration or experiment, but with the potential for other communities or experiments to use. At this level the category of best software practices is what is mainly required.
8186

8287
#### Basics
88+
8389
* The project SHOULD follow general and language-specific best practices as given for example in the HSF’s Best Practice Guidelines.
8490
* The project source code MUST reside on a version-controlled repository that is publicly readable and has a URL (e.g., GitHub, GitLab).
8591
* The README file at the top level MUST describe what the software does (what problem does it solve?).
@@ -103,12 +109,13 @@ obtain, provide feedback (as bug reports or enhancements), and contribute to the
103109
* The project results MUST have a unique version identifier for each release intended to be used by users.
104110
We recommend using a well defined versioning scheme that is consistent with practices in your sub-domain, e.g. [Semantic Versioning](https://semver.org) or [Calendar Versioning](https://calver.org).
105111
* The project MUST provide, in each release, release notes that are a human-readable summary of major changes in that release to help users determine if they should upgrade and what the upgrade impact will be.
112+
106113
The release notes SHOULD NOT be the raw output of a version control log (e.g., the "git log" command results are not release notes).
107114

108115
#### Sustainability
109116

110117
* The project MUST be maintained.
111-
* The project SHOULD have at least one long-term maintainer with a contract longer than 2 years.
118+
* The project SHOULD have at least one long-term maintainer with a future commitment to the software of at least 1 year.
112119
* The project MUST provide a process for users to submit bug reports (e.g., using an issue tracker or a mailing list).
113120
* The project SHOULD use an issue tracker for tracking individual issues.
114121
* The project SHOULD acknowledge a majority of bug reports submitted in the last 2-12 months (inclusive); the response need not include a fix.
@@ -133,16 +140,16 @@ All the criteria for Bronze MUST be fulfilled, with the addition of the followin
133140
#### Documentation
134141

135142
* The project MUST provide different kinds of documentation:
136-
- Basic documentation.
137-
- User documentation.
138-
- Reference manual.
139-
- Tutorials (e.g. notebooks).
140-
- The project SHOULD provide specific training for users to use the software product.
143+
* Basic documentation.
144+
* User documentation.
145+
* Reference manual.
146+
* Tutorials (e.g. notebooks).
147+
* The project SHOULD provide specific training for users to use the software product.
141148

142149
#### Sustainability
143150

144151
* The project MUST be maintained and produce at least one new release a year if are changes and fixes that have been accumulated..
145-
* The project MUST have at least one long-term maintainer with a contract longer than 2 years.
152+
* The project MUST have at least one long-term maintainer with a future commitment to the software of at least 2 years.
146153
* The project MUST use an issue tracker for tracking individual issues.
147154
* The project MUST acknowledge a majority of bug reports submitted in the last 1-3 months (inclusive); the response need not include a fix.
148155
* The project SHOULD respond to a majority (>50%) of enhancement requests in the last 1-3 months (inclusive).
@@ -164,7 +171,7 @@ All the criteria for Silver MUST be fulfilled, with the addition of the followin
164171
#### Sustainability
165172

166173
* The project MUST be actively maintained and produce at least one new release a year if there are changes, and as needed patch releases to include fixes that have been accumulated.
167-
* The project MUST have at least 3 long-term maintainers with a contract longer than 2 years.
174+
* The project MUST have at least 3 long-term maintainers with a future commitment to the software of at least 2 years.
168175
* The project MUST acknowledge a majority of bug reports submitted in the last 1-4 weeks (inclusive); the response need not include a fix.
169176
* The project MUST respond to a majority (>50%) of enhancement requests in the last 1-4 weeks (inclusive).
170177

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
---
2-
title: "Projects"
3-
author: "Benedikt Hegner"
4-
layout: default
2+
title: "HSF Affiliated Projects"
3+
author: Benedikt Hegner, Graeme Stewart
4+
layout: plain
5+
redirect_from: /projects.html
56
---
67

7-
# HSF Projects
8+
This is the list of projects which have become [HSF Affiliated]({{site.baseurl}}/projects/affiliated.html).
89

9-
HSF seeks to serve new and emerging common projects through a project incubator activity. Templates to guide and aid new projects are being established. If you'd like your project to be involved just let us know. Talk to any member of the HSF Steering Group or [email](mailto:hsf-steering@googlegroups.com).
10-
11-
The incubator idea is close to the one of the Apache Software Foundation. Brian Van Klaveren who gave the exceptional ASF talk at the SLAC workshop provides [this link](http://www.apache.org/foundation/how-it-works.html#incubator) describing how ASF Incubator projects work.
10+
{:.table .table-hover .table-condensed .table-striped}
11+
| Name | Description | Affiliation | Year |
12+
| --------| ------------- |----------|-----------|
13+
| [prmon](https://github.com/HSF/prmon) | Standalone lightweight process resource consumption monitor | ![Bronze]({{site.baseurl}}/images/HSF-logo/HSF-Bronze_Project-CD7F32.svg) | 2024 |
1214

13-
We have been compiling a set of [project guidelines]({{ site.baseurl }}/project_guidelines.html) that all HSF projects should try to fulfil.
15+
## Older projects under the umbrella of HSF
1416

15-
## Initial set of Projects under the umbrella of HSF
17+
These are older projects that were associated with the HSF before the current affiliation scheme was setup. They are encouraged to apply for the new affiliation status!
1618

1719
{:.table .table-hover .table-condensed .table-striped}
1820
| Name | Description | License | Contact |
@@ -25,6 +27,5 @@ We have been compiling a set of [project guidelines]({{ site.baseurl }}/project_
2527
| [Phoenix](https://github.com/HSF/phoenix) | Event display framework | Apache-2 | [Ed Moyse](mailto:Edward.Moyse@cern.ch) |
2628
| [podio](https://github.com/AIDASoft/podio) | Event Data Model Library based on plain-old-data | GPL v3 | [Benedikt Hegner](mailto:benedikt.hegner@cern.ch) |
2729
| [PM4hep](https://github.com/hegner/PM4hep) | Minimal Plugin Manager | GPL v3 | [Benedikt Hegner](mailto:benedikt.hegner@cern.ch) |
28-
| [prmon](https://github.com/HSF/prmon) | Standalone lightweight process resource consumption monitor | Apache-2 | [Graeme Stewart](mailto:graeme.andrew.stewart@cern.ch) |
2930
| [ROOT](https://root.cern.ch/) | Data Analysis Framework | LGPL v2+ | [Pere Mato](mailto:pere.mato@cern.ch) |
3031
| [XRootD](https://xrootd.slac.stanford.edu/) | High performance, scalable fault tolerant access to data | LGPL v3 | [Andrew Hanushevsky](mailto:abh@stanford.edu)|

services.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)