diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-21 06:42:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-21 06:42:38 +0000 |
commit | 94e30bf7761f5857945df906ae5ba7da5c2fc9b5 (patch) | |
tree | b7a3c1801f3ba7ef2be6a0a3c0bde0781542a234 /modules/blogapi/blogapi.module | |
parent | 6696028a759b50e5551f471e4d71443744201da4 (diff) | |
download | brdo-94e30bf7761f5857945df906ae5ba7da5c2fc9b5.tar.gz brdo-94e30bf7761f5857945df906ae5ba7da5c2fc9b5.tar.bz2 |
- Patch by JonBob: for consistency and readability, add brief descriptions of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
Diffstat (limited to 'modules/blogapi/blogapi.module')
-rw-r--r-- | modules/blogapi/blogapi.module | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index af20f89e2..ef902edb8 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -2,6 +2,11 @@ // $Id$ /** + * @file + * Enable users to post using applications that support XML-RPC blog APIs. + */ + +/** * Implementation of hook_help(). */ function blogapi_help($section) { @@ -9,7 +14,7 @@ function blogapi_help($section) { case 'admin/help#blogapi': return t('This module adds support for several XML-RPC based blogging APIs. Specifically, it currently implements the %bloggerAPI, %metaweblogAPI, and most of the %moveabletype extensions. This allows users to contribute to drupal using external GUI applications, which can often offer richer functionality that online forms based editing', array('%bloggerAPI' => '<a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a>', '%metaweblogAPI' => '<a href="http://www.xmlrpc.com/metaWeblogApi">MetaWeblog API</a>', '%moveabletype' => '<a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">Moveable Type API</a>')); case 'admin/modules#description': - return t('Enable users to post using applications that support XML-RPC blog APIs'); + return t('Enable users to post using applications that support XML-RPC blog APIs.'); } } |