diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-14 06:23:40 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-14 06:23:40 +0000 |
commit | 811be8f77f021b4662899e253a9a6a1b46441c64 (patch) | |
tree | 1985b7266f28484d5901e427377eed3fadd0f612 /modules/node | |
parent | 8a70cd09ca92526fa78d75bce8a7843baa8f4a6b (diff) | |
download | brdo-811be8f77f021b4662899e253a9a6a1b46441c64.tar.gz brdo-811be8f77f021b4662899e253a9a6a1b46441c64.tar.bz2 |
#614508 by linclark and scor: Annotate tracker page with RDFa.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 33910f6bc..95beedba4 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -795,6 +795,12 @@ function node_rdf_mapping() { ), 'comment_count' => array( 'predicates' => array('sioc:num_replies'), + 'datatype' => 'xsd:integer', + ), + 'last_activity' => array( + 'predicates' => array('sioc:last_activity_date'), + 'datatype' => 'xsd:dateTime', + 'callback' => 'date_iso8601', ), ), ), |