Index: token_comment.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/token/Attic/token_comment.inc,v
retrieving revision 1.3.4.5
diff -u -F '^f' -r1.3.4.5 token_comment.inc
--- token_comment.inc	31 May 2009 15:56:09 -0000	1.3.4.5
+++ token_comment.inc	5 Nov 2009 07:27:42 -0000
@@ -64,6 +64,13 @@ function comment_token_values($type, $ob
       $values['comment-ddd']             = date('D', $comment->timestamp);
       $values['comment-dd']              = date('d', $comment->timestamp);
       $values['comment-d']               = date('j', $comment->timestamp);
+      $values['comment-g']               = date('g', $comment->timestamp);
+      $values['comment-G']            	 = date('G', $comment->timestamp);
+      $values['comment-h']               = date('h', $comment->timestamp);
+      $values['comment-H']            	 = date('H', $comment->timestamp);
+      $values['comment-i']             	 = date('i', $comment->timestamp);
+      $values['comment-s']            	 = date('s', $comment->timestamp);
+      $values['comment-U']               = date('U', $comment->timestamp);
       break;
   }
 
@@ -102,6 +109,13 @@ function comment_token_list($type = 'all
     $tokens['comment']['comment-ddd']             = t("Comment creation day (abbreviation)");
     $tokens['comment']['comment-dd']              = t("Comment creation day (two digit, zero-padded)");
     $tokens['comment']['comment-d']               = t("Comment creation day (one or two digit)");
+    $tokens['comment']['comment-g']               = t("Comment creation time (12-hour format, without leading zeros)");
+    $tokens['comment']['comment-G']               = t("Comment creation time (24-hour format, without leading zeros)");
+    $tokens['comment']['comment-h']               = t("Comment creation time (12-hour format, with leading zeros)");
+    $tokens['comment']['comment-H']               = t("Comment creation time (24-hour format, with leading zeros)");
+    $tokens['comment']['comment-i']               = t("Comment creation minute (with leading zeros)");
+    $tokens['comment']['comment-s']               = t("Comment creation second (with leading zeros)");
+    $tokens['comment']['comment-U']               = t("Comment creation time since Epoch (seconds since January 1, 1970)");
 
     return $tokens;
   }
Index: token_node.inc
===================================================================
RCS file: /cvs/drupal/contributions/modules/token/Attic/token_node.inc,v
retrieving revision 1.5.4.17
diff -u -F '^f' -r1.5.4.17 token_node.inc
--- token_node.inc	12 Aug 2009 15:47:23 -0000	1.5.4.17
+++ token_node.inc	5 Nov 2009 07:27:42 -0000
@@ -59,6 +59,13 @@ function node_token_values($type, $objec
         $values['ddd']            = date('D', $date);
         $values['dd']             = date('d', $date);
         $values['d']              = date('j', $date);
+        $values['g']              = date('g', $date);
+        $values['G']              = date('G', $date);
+        $values['h']              = date('h', $date);
+        $values['H']              = date('H', $date);
+        $values['i']              = date('i', $date);
+        $values['s']              = date('s', $date);
+        $values['U']              = date('U', $date);
       }
 
       if (isset($node->changed)) {
@@ -75,6 +82,13 @@ function node_token_values($type, $objec
         $values['mod-ddd']        = date('D', $date);
         $values['mod-dd']         = date('d', $date);
         $values['mod-d']          = date('j', $date);
+        $values['mod-g']          = date('g', $date);
+        $values['mod-G']          = date('G', $date);
+        $values['mod-h']          = date('h', $date);
+        $values['mod-H']          = date('H', $date);
+        $values['mod-i']          = date('i', $date);
+        $values['mod-s']          = date('s', $date);
+        $values['mod-U']          = date('U', $date);
       }
 
       // Try to get the menu data.
@@ -217,6 +231,13 @@ function node_token_list($type = 'all') 
     $tokens['node']['ddd']             = t("Node creation day (abbreviation)");
     $tokens['node']['dd']              = t("Node creation day (two digit, zero-padded)");
     $tokens['node']['d']               = t("Node creation day (one or two digit)");
+    $tokens['node']['g']               = t("Node creation time (12-hour format, without leading zeros)");
+    $tokens['node']['G']               = t("Node creation time (24-hour format, without leading zeros)");
+    $tokens['node']['h']               = t("Node creation time (12-hour format, with leading zeros)");
+    $tokens['node']['H']               = t("Node creation time (24-hour format, with leading zeros)");
+    $tokens['node']['i']               = t("Node creation minute (with leading zeros)");
+    $tokens['node']['s']               = t("Node creation second (with leading zeros)");
+    $tokens['node']['U']               = t("Node creation time since Epoch (seconds since January 1, 1970)");
     $tokens['node']['mod-????']        = t('All tokens for node creation dates can also be used with with the "mod-" prefix; doing so will use the modification date rather than the creation date.');
 
     $tokens['node']['menu']                = t("The name of the menu the node belongs to.");
