| layout | default |
|---|---|
| title | Implementations |
This page lists all known PHPCR implementations:
{% for implementation in site.data.implementations|where:"stability","foonar" %}
- {{ implementation.stability }}: [{{ implementation.name }}](#{{ implementation.name|downcase|replace: ' ', '_' }}) {% endfor %}
{% for implementation in site.data.implementations %}
{{ implementation.description }}
- Website: [{{ implementation.website }}]({{ implementation.website }})
- Github: [{{ implementation.github }}]({{ implementation.github }})
- Stability: {{ implementation.stability }}
{% if implementation.descriptors %} The following table lists the supported features as reported by the implementation (see the JCR Spec for more information):
{% for descriptor in implementation.descriptors %} {% assign value = descriptor[1] %} {% if value == "true" %} {% assign class = 'supported' %} {% elsif descriptor[1] == 'false' %} {% assign class = 'notsupported' %} {% endif %} <td>{{ descriptor[0] }}</td>
<td class="support {{ class }}">{{ value }}</td>
</tr>
{% endfor %}
</tbody>
| Feature | Support |
|---|---|