aboutsummaryrefslogtreecommitdiff
path: root/views/foaf/pageshells/pageshell.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/foaf/pageshells/pageshell.php')
-rw-r--r--views/foaf/pageshells/pageshell.php36
1 files changed, 34 insertions, 2 deletions
diff --git a/views/foaf/pageshells/pageshell.php b/views/foaf/pageshells/pageshell.php
index f5c7a4ce0..a5f73db2d 100644
--- a/views/foaf/pageshells/pageshell.php
+++ b/views/foaf/pageshells/pageshell.php
@@ -12,5 +12,37 @@
*/
header("Content-Type: text/xml");
- echo $vars['body'];
-?> \ No newline at end of file
+ // echo $vars['body'];
+
+ echo "<?xml version='1.0'?>\n";
+
+ if (!$owner = page_owner_entity()) {
+ if (!isloggedin()) {
+ exit;
+ } else {
+ $owner = $vars['user'];
+ }
+ }
+
+?>
+<rdf:RDF
+ xml:lang="en"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:foaf="http://xmlns.com/foaf/0.1/"
+ xmlns:ya="http://blogs.yandex.ru/schema/foaf/"
+ xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <foaf:Person>
+ <foaf:nick><?php echo $owner->username; ?></foaf:nick>
+ <foaf:name><?php echo $owner->name; ?></foaf:name>
+ <foaf:homepage rdf:resource="<?php echo $owner->getURL(); ?>" />
+ <foaf:mbox_sha1sum><?php echo sha1("mailto:" . $owner->email); ?></foaf:mbox_sha1sum>
+ <!-- TODO <foaf:img rdf:resource="http://p-userpic.livejournal.com/74250113/9186" /> -->
+ <?php
+
+ echo $vars['body'];
+
+ ?>
+ </foaf:Person>
+</rdf:RDF> \ No newline at end of file