This file is indexed.

/usr/share/drupal6/modules/xrds_simple/xrds_simple.api.php is in drupal6-mod-xrds-simple 1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
// $Id: xrds_simple.api.php,v 1.1.2.2 2010/02/14 16:10:08 walkah Exp $

/**
 * @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;
}