Index: lightbox2.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/lightbox2/lightbox2.install,v
retrieving revision 1.1.4.4.2.7
diff -u -r1.1.4.4.2.7 lightbox2.install
--- lightbox2.install	15 Oct 2007 12:06:38 -0000	1.1.4.4.2.7
+++ lightbox2.install	6 Jan 2008 19:12:06 -0000
@@ -2,8 +2,10 @@
 // $Id $
 
 /** 
- * Implementation of hook_install()
- * just give a message
+ * Implementation of hook_install().
+ * 
+ * @note
+ *   Doesn't actually do anything.
  */
 function lightbox2_install() {
   module_invoke('content', 'clear_type_cache');
@@ -11,7 +13,7 @@
 }
 
 /** 
- * Implementation of hook_uninstall()
+ * Implementation of hook_uninstall().
  */
 function lightbox2_uninstall() {
   // delete the variables we created
Index: lightbox2.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/lightbox2/lightbox2.module,v
retrieving revision 1.16.2.16.2.26
diff -u -r1.16.2.16.2.26 lightbox2.module
--- lightbox2.module	11 Dec 2007 16:43:53 -0000	1.16.2.16.2.26
+++ lightbox2.module	6 Jan 2008 19:18:33 -0000
@@ -2,9 +2,8 @@
 // $Id $
 /**
  * Enables the use of lightbox V2 which places images above your current page, 
- * not within.
- * This frees you from the constraints of the layout, particularly column 
- * widths.
+ * not within. This frees you from the constraints of the layout, 
+ * particularly column  widths.
  * 
  * This module is for Drupal 6.x only.
  *
@@ -13,15 +12,9 @@
  * Co-maintainer: Stella Power (http://drupal.org/user/66894)
  *
  * Image Node Support: Steve McKenzie
- *
  */
 
 /**
- * Displays the information for this module.
- * Displays the help text for this module.
- *
- */
-/**
  * Implementation of hook_help().
  */
 function lightbox2_help($path, $arg) {
@@ -72,8 +65,7 @@
 }
 
 /**
- * Implementation of hook_perm()
- * Define the permissions this module uses
+ * Implementation of hook_perm().
  */
 function lightbox2_perm() {
   return array('administer lightbox2');
@@ -81,14 +73,14 @@
 
 
 /**
- * Implementation of hook_access()
+ * Implementation of hook_access().
  */
 function lightbox2_access($op, $node) {
   return user_access('administer lightbox2');
 }
 
 /**
- * Implementation of hook_menu()
+ * Implementation of hook_menu().
  */
 function lightbox2_menu() {
   $items = array();
@@ -106,7 +98,7 @@
 }
 
 /**
- * Implementation of hook_init()
+ * Implementation of hook_init().
  */
 function lightbox2_init() {
   if (lightbox2_exclude_these_paths() != 1) {
@@ -116,7 +108,7 @@
 
 
 /**
- * Implementation of hook_settings()
+ * Implementation of hook_settings().
  */
 function lightbox2_settings_form() {
 
@@ -261,7 +253,7 @@
 
 
 /**
- *Implementation of hook_filter().
+ * Implementation of hook_filter_tips().
  */
 function lightbox2_filter_tips($delta, $format, $long = false) {
   return t('Image links from G2 are formatted for use with Lightbox.V2');
@@ -269,6 +261,9 @@
 
 // Check to see if the G2 Filter is Enabled in Settings
 if (variable_get('lightbox2G2_filter', true)) {
+  /**
+   * Implementation of hook_filter().
+   */
   function lightbox2_filter($op, $delta = 0, $format = -1, $text = '') {
     switch ($op) {
       case 'list':
@@ -286,11 +281,11 @@
     }
   }
 }
+
 /**
- * Provides a link to the CSS stylesheet associated with this module.
- * Provides a link to the JS file associated with this module.
+ * Provide a link to the CSS stylesheet and JS file associated with
+ * this module.
  */
-
 function lightbox2_add_files() {
   static $already_added = FALSE;
   if ($already_added) {
@@ -361,8 +356,9 @@
 
 /**
  * Implementation of hook_field_formatter_info().
- * Adds certain lightbox+imagecache formatters to CCK image fields if the 
- * imagefield.module and the imagecache.module exist.
+ * 
+ * Adds certain lightbox and imagecache formatters to CCK image fields if  
+ * the imagefield.module and the imagecache.module exist.
  */
 function lightbox2_field_formatter_info() {
   $formatter = array();
@@ -410,7 +406,7 @@
 }
 
 /**
- * Implementation of hook_theme()
+ * Implementation of hook_theme().
  */
 function lightbox2_theme() {
   return array(
@@ -450,6 +446,10 @@
   return $output;
 }
 
+/**
+ * Return TRUE if current path is disabled for lightbox according to
+ * lightbox2_disable_these_urls.
+ */
 function lightbox2_exclude_these_paths() {
 
   # use lightbox if this url is not excluded
