Skip to content
Snippets Groups Projects
Commit 42a77435 authored by catch's avatar catch
Browse files

Issue #3302984 by longwave, smustgrave, quietone, Spokje: Remove RDF module from Umami

parent 6a1855c2
No related branches found
No related tags found
No related merge requests found
langcode: en
status: true
dependencies:
config:
- node.type.article
module:
- node
id: node.article
targetEntityType: node
bundle: article
types:
- 'schema:Article'
fieldMappings:
title:
properties:
- 'schema:name'
created:
properties:
- 'schema:dateCreated'
datatype_callback:
callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
changed:
properties:
- 'schema:dateModified'
datatype_callback:
callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
body:
properties:
- 'schema:text'
uid:
properties:
- 'schema:author'
field_image:
properties:
- 'schema:image'
field_tags:
properties:
- 'schema:about'
langcode: en
status: true
dependencies:
config:
- node.type.page
module:
- node
id: node.page
targetEntityType: node
bundle: page
types:
- 'schema:WebPage'
fieldMappings:
title:
properties:
- 'schema:name'
created:
properties:
- 'schema:dateCreated'
datatype_callback:
callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
changed:
properties:
- 'schema:dateModified'
datatype_callback:
callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value'
body:
properties:
- 'schema:text'
uid:
properties:
- 'schema:author'
mapping_type: rel
langcode: en
status: true
dependencies:
config:
- taxonomy.vocabulary.tags
module:
- taxonomy
id: taxonomy_term.tags
targetEntityType: taxonomy_term
bundle: tags
types:
- 'schema:Thing'
fieldMappings:
name:
properties:
- 'schema:name'
description:
properties:
- 'schema:description'
......@@ -34,7 +34,6 @@ install:
- toolbar
- field_ui
- file
- rdf
- views
- views_ui
- tour
......
{#
/**
* @file
* Theme override for empty spans with RDF attributes.
*
* The XHTML+RDFa doctype allows either <span></span> or <span /> syntax to
* be used, but for maximum browser compatibility, W3C recommends the
* former when serving pages using the text/html media type, see
* http://www.w3.org/TR/xhtml1/#C_3.
*
* Available variables:
* - metadata: Each item within corresponds to its own set of attributes,
* and therefore, needs its own 'attributes' element.
*
* @see template_preprocess_rdf_metadata()
*/
#}
{% for attributes in metadata %}
<span{{ attributes.addClass('rdf-meta', 'hidden') }}></span>
{% endfor %}
......@@ -179,7 +179,6 @@ public function providerTestClassyCopies() {
'file-managed-file.html.twig',
'text-format-wrapper.html.twig',
'filter-caption.html.twig',
'rdf-metadata.html.twig',
'help-section.html.twig',
'progress-bar.html.twig',
'form-element-label.html.twig',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment