Index: modules/rdf/rdf.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/rdf/rdf.module,v
retrieving revision 1.23
diff -u -p -r1.23 rdf.module
--- modules/rdf/rdf.module	7 Feb 2010 09:11:28 -0000	1.23
+++ modules/rdf/rdf.module	12 Feb 2010 11:33:23 -0000
@@ -589,6 +590,23 @@ function rdf_preprocess_comment(&$variab
 }
 
 /**
+ * Implements hook_preprocess_taxonomy_term
+ */
+function rdf_preprocess_taxonomy_term(&$variables) {
+  $term = $variables['term'];
+  $term_label_meta = array(
+      '#tag' => 'meta',
+      '#attributes' => array(
+        'about' => url('taxonomy/term/' . $term->tid),
+        'typeof' => $term->rdf_mapping['rdftype'],
+        'property' => $term->rdf_mapping['name']['predicates'],
+        'content' => $term->name,
+      ),
+    );
+    drupal_add_html_head($term_label_meta, 'rdf_term_label');
+}
+
+/**
  * Implements hook_field_attach_view_alter().
  */
 function rdf_field_attach_view_alter(&$output, $context) {
