Index: modules/foaf/foaf.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/foaf/foaf.module,v retrieving revision 1.10 diff -u -r1.10 foaf.module --- modules/foaf/foaf.module 18 Aug 2005 03:16:57 -0000 1.10 +++ modules/foaf/foaf.module 28 Nov 2005 23:05:32 -0000 @@ -6,23 +6,20 @@ */ function foaf_help($section) { switch ($section) { + case 'admin/help#foaf': + $output = '
'. t('FOAF, or Friend of a Friend, refers to a set of social networking standards and tools for online sharing and searching of user profile information. Users will find this useful if they want to make a list of their friends and be able to export or import their list among social networking applications.') .'
'; + $output .= ''. t('The FOAF module allows users to export FOAF documents based on their profile information. It also allows users to import profile information from external FOAF files, and even includes an option to let profiles auto sync when using distributed authentication. The FOAF module can export your buddy list if the buddy list module is enabled. You can download FOAF files in the view tab of a user profile if FOAF is enabled.') .'
'; + $output .= t('You can
+'. t('For more information please read the configuration and customization handbook FOAF page.', array('%foaf' => 'http://www.drupal.org/handbook/modules/foaf/')) .'
'; + return $output; case 'admin/modules#description': return t('Allows FOAF import / export'); - case 'admin/help#foaf': - return t(' -FOAF, or "Friend of a Friend," refers to a set of "social networking" standards and tools for online sharing and searching of user profile information. Users will find this useful if they want to make a list of their friends and be able to export or import their list among social networking applications.
-The FOAF module allows users to export FOAF documents based on their profile information. It also allows users to import profile information from external FOAF files, and even includes an option to let profiles auto sync when using distributed authentication. The FOAF module can export your buddy list if the buddy list module is enabled. You can download FOAF files in the view tab of a user profile if FOAF is enabled.
-You can
-For more information, read the configuration and customization handbook Foaf page
', - array('%userprofiles' => url('/profile'), '%administermodules' => url('/admin/modules')) - ); } }