? 258314_8_pathauto_doxygen_batch_2.patch
? i18n-ascii.txt
? pathauto_doxygen_cleanup_batch_2.patch
? pathauto_menu.patch
? pathauto_termalias2.patch
Index: pathauto.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.admin.inc,v
retrieving revision 1.6
diff -u -p -r1.6 pathauto.admin.inc
--- pathauto.admin.inc	20 May 2008 18:09:08 -0000	1.6
+++ pathauto.admin.inc	24 May 2008 23:09:45 -0000
@@ -60,7 +60,7 @@ function pathauto_admin_settings() {
     '#default_value' => variable_get('pathauto_case', 1),
     '#options' => array(t('Leave case the same as source token values.'), t('Change to lower case')),
   );
-    
+
   $form['general']['pathauto_max_length'] = array(
     '#type' => 'textfield',
     '#title' => t('Maximum alias length'),
@@ -292,14 +292,16 @@ function pathauto_admin_settings() {
 
 /**
  * Helper function to see if they are using all -raw tokens available
+ * and if all the tokens are valid in the given context.
  *
  * @param $pattern
- *   TODO: What does this do?
+ *   A string containing the pattern to be tested.
  * @param $type
  *   A flag indicating the class of substitution tokens to use.
  * @return
  *   A status flag, telling whether there is an error or not.
- * @see function token_get_list for more information on the $type parameter.
+ * @see token_get_list()
+ *   For more information on the $type parameter.
  */
 function _pathauto_check_pattern($pattern, $type) {
   // Hold items we've warned about so we only warn once per token
Index: pathauto.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.inc,v
retrieving revision 1.38
diff -u -p -r1.38 pathauto.inc
--- pathauto.inc	20 May 2008 18:09:08 -0000	1.38
+++ pathauto.inc	24 May 2008 23:09:45 -0000
@@ -3,7 +3,7 @@
 
 /**
  * @file
- * Miscellaneous functions for Pathauto
+ * Miscellaneous functions for Pathauto.
  *
  * @ingroup pathauto
  */
@@ -444,7 +444,7 @@ function pathauto_get_placeholders($type
  * @param $full
  *   An array of token values that need to be "cleaned" for use in the URL.
  * @return
- *   TODO: $full->values == ?
+ *   An array of the cleaned tokens.
  */
 function pathauto_clean_token_values($full) {
   foreach ($full->values as $key => $value) {
@@ -461,7 +461,7 @@ function pathauto_clean_token_values($fu
 
 /**
  * Returns an array of arrays for punctuation values.
- * 
+ *
  * Returns an array of arrays for punctuation values keyed by a name, including
  * the value and a textual description.
  * Can and should be expanded to include "all" non text punctuation values.
Index: pathauto.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.install,v
retrieving revision 1.12
diff -u -p -r1.12 pathauto.install
--- pathauto.install	20 May 2008 18:09:08 -0000	1.12
+++ pathauto.install	24 May 2008 23:09:45 -0000
@@ -45,7 +45,7 @@ function pathauto_install() {
   variable_set('pathauto_user_pattern', 'users/[user-raw]');
   variable_set('pathauto_user_supportsfeeds', NULL);
   variable_set('pathauto_verbose', FALSE);
-  
+
   // Make sure we "replace hyphen with separator" by default
   variable_set('pathauto_punctuation_hyphen', 1); // 1 is replace
 
@@ -55,7 +55,7 @@ function pathauto_install() {
   // Clear the cache to get these to take effect.
   cache_clear_all();
 }
- 
+
 /**
  * Implementation of hook_uninstall().
  */
Index: pathauto.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.module,v
retrieving revision 1.110
diff -u -p -r1.110 pathauto.module
--- pathauto.module	20 May 2008 18:09:08 -0000	1.110
+++ pathauto.module	24 May 2008 23:09:45 -0000
@@ -13,7 +13,7 @@
 
 /**
  * @file
- * TODO: Describe this the main file of Pathauto.
+ * Main file for the Pathauto module, which automatically generates aliases for content.
  *
  * @ingroup pathauto
  */
@@ -63,7 +63,7 @@ function pathauto_menu() {
     'weight' => 10,
     'file' => 'pathauto.admin.inc',
   );
-  
+
   $items['admin/build/path/delete_bulk'] = array(
     'title' => 'Delete aliases',
     'page callback' => 'drupal_get_form',
@@ -88,7 +88,7 @@ function _pathauto_include() {
 }
 
 /**
- * Implementation of hook_token_values() for Pathauto specific tokens
+ * Implementation of hook_token_values() for Pathauto specific tokens.
  */
 function pathauto_token_values($type, $object = NULL) {
   if (module_exists('taxonomy')) {
@@ -133,7 +133,7 @@ function pathauto_token_values($type, $o
             }
             $values[$label .'path'] = $catpath .'/'. check_plain($category->name);
             $values[$label .'path-raw'] = $catpath_raw .'/'. $category->name;
-            
+
             $values[$label .'alias'] = drupal_get_path_alias('taxonomy/term/'. $category->tid);
             if (!strncasecmp($values[$label .'alias'], 'taxonomy', 8)) {
               $values[$label .'alias'] = check_plain($category->name);
@@ -151,7 +151,7 @@ function pathauto_token_values($type, $o
 }
 
 /**
- * Implementation of hook_token_list() for Pathauto specific tokens
+ * Implementation of hook_token_list() for Pathauto specific tokens.
  */
 function pathauto_token_list($type = 'all') {
   $tokens = array();
@@ -176,7 +176,9 @@ function pathauto_token_list($type = 'al
 }
 
 /**
- * TODO: What does this do? One-line description.
+ * Implementation of hook_path_alias_types().
+ *
+ * Used primarily by the bulk delete form.
  */
 function pathauto_path_alias_types() {
   $objects = array('user/' => t('users'), 'node/' => t('content'));
@@ -369,7 +371,7 @@ function pathauto_taxonomy($op, $type, $
 // User related functions.
 
 /**
- * Implementation of hook_user() for users, trackers, and blogs
+ * Implementation of hook_user() for users, trackers, and blogs.
  */
 function pathauto_user($op, &$edit, &$user, $category = FALSE) {
   _pathauto_include();
Index: pathauto_node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_node.inc,v
retrieving revision 1.44
diff -u -p -r1.44 pathauto_node.inc
--- pathauto_node.inc	20 May 2008 18:09:08 -0000	1.44
+++ pathauto_node.inc	24 May 2008 23:09:45 -0000
@@ -3,7 +3,7 @@
 
 /**
  * @file
- * Node hooked into Pathauto. (TODO: Better description!)
+ * Contains hook implementations to integrate nodes into Pathauto
  *
  * @ingroup pathauto
  */
Index: pathauto_taxonomy.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_taxonomy.inc,v
retrieving revision 1.36
diff -u -p -r1.36 pathauto_taxonomy.inc
--- pathauto_taxonomy.inc	24 May 2008 08:58:58 -0000	1.36
+++ pathauto_taxonomy.inc	24 May 2008 23:09:46 -0000
@@ -1,8 +1,15 @@
 <?php
 // $Id: pathauto_taxonomy.inc,v 1.36 2008/05/24 08:58:58 freso Exp $
 
-/*
- * Implementation of hook_pathauto() for taxonomy module
+/**
+ * @file
+ * Contains hook implementations to integrate taxonomy into Pathauto
+ *
+ * @ingroup pathauto
+ */
+
+/**
+ * Implementation of hook_pathauto() for taxonomy module.
  */
 function taxonomy_pathauto($op) {
   switch ($op) {
@@ -44,7 +51,7 @@ function taxonomy_pathauto($op) {
 }
 
 /**
- * Generate aliases for all categories without aliases
+ * Generate aliases for all categories without aliases.
  */
 function taxonomy_pathauto_bulkupdate() {
   // From all node types, only attempt to update those with patterns
@@ -90,9 +97,10 @@ function taxonomy_pathauto_bulkupdate() 
 }
 
 /**
- * Function to create aliases for taxonomy objects
+ * Function to create aliases for taxonomy objects.
  *
- * @param object $category a taxonomy object
+ * @param object $category
+ *   A taxonomy object.
  */
 function _taxonomy_pathauto_alias($category, $op) {
   $count = 0;
@@ -117,8 +125,8 @@ function _taxonomy_pathauto_alias($categ
 }
 
 
-/*
- * Implementation of hook_pathauto() for forum module
+/**
+ * Implementation of hook_pathauto() for forum module.
  */
 function forum_pathauto($op) {
   switch ($op) {
@@ -148,7 +156,7 @@ function forum_pathauto($op) {
 
 
 /**
- * Generate aliases for all forums and forum containers without aliases
+ * Generate aliases for all forums and forum containers without aliases.
  */
 function forum_pathauto_bulkupdate() {
   $forum_vid = variable_get('forum_nav_vocabulary', '');
Index: pathauto_user.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_user.inc,v
retrieving revision 1.27
diff -u -p -r1.27 pathauto_user.inc
--- pathauto_user.inc	20 May 2008 18:09:09 -0000	1.27
+++ pathauto_user.inc	24 May 2008 23:09:46 -0000
@@ -3,7 +3,7 @@
 
 /**
  * @file
- * User hooked into Pathauto. (TODO: Better description!)
+ * Contains hook implementations to integrate users into Pathauto
  *
  * @ingroup pathauto
  */
