Index: README.txt
===================================================================
RCS file: README.txt
diff -N README.txt
--- README.txt	3 Jun 2008 06:07:33 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-This is a preliminary module to support the XRDS-Simple spec.
-
-The draft spec can be found here:
-http://xrds-simple.net/core/1.0/
-
-The module defines a single hook: hook_xrds()
-
-Example implentation as follows:
-
-function example_xrds() {
-  $xrds['example'] = array(
-    'services' => array(
-      array('priority' => 10,
-            'data' => array(
-                'Type' => array('http://specs.openid.net/auth/2.0/signon'),
-                'URI' => array('http://example.com/server')
-                )
-            )
-      )
-    );
-
-  return $xrds;
-}
Index: xrds_simple.api.php
===================================================================
RCS file: xrds_simple.api.php
diff -N xrds_simple.api.php
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ xrds_simple.api.php	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,28 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * This is a preliminary module to support the XRDS-Simple spec.
+ *
+ * The draft spec can be found here:
+ *   http://xrds-simple.net/core/1.0/
+ */
+
+/**
+ * Provides all XRDS implementations.
+ */
+function hook_xrds($account = NULL) {
+  $xrds['example'] = array(
+    'services' => array(
+      array('priority' => 10,
+        'data' => array(
+          'Type' => array('http://specs.openid.net/auth/2.0/signon'),
+          'URI' => array('http://example.com/server'),
+        ),
+      ),
+    ),
+  );
+
+  return $xrds;
+}
