--- token_node.inc	2008-07-18 12:37:37.000000000 -0700
+++ token_node.inc	2008-11-02 13:56:23.000000000 -0800
@@ -48,6 +48,13 @@
         $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('s', $date);
       }
 
       if (isset($node->changed)) {
@@ -64,6 +71,13 @@
         $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('s', $date);
       }
       
       // Now get the menu related information.
@@ -205,6 +219,13 @@
     $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.");
