Index: token_node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/Attic/token_node.inc,v
retrieving revision 1.5.4.17
diff -u -p -r1.5.4.17 token_node.inc
--- token_node.inc	12 Aug 2009 15:47:23 -0000	1.5.4.17
+++ token_node.inc	15 Sep 2009 14:27:04 -0000
@@ -30,6 +30,10 @@ function node_token_values($type, $objec
       $values['language']           = filter_xss_admin($node->language);
       $values['title']              = check_plain($node->title);
       $values['title-raw']          = $node->title;
+      $values['title-link']         = l($node->title, 'node/'. $node->nid);
+      $values['title-link-url']     = l($node->title, 'node/'. $node->nid, array('absolute' => TRUE));
+      $values['path']               = url('node/'. $node->nid);
+      $values['url']                = url('node/'. $node->nid, array('absolute' => TRUE));
       $values['author-uid']         = $node->uid;
       $values['author-name']        = check_plain($account->name);
       $values['author-name-raw']    = $account->name;
@@ -187,6 +191,11 @@ function node_token_list($type = 'all') 
     $tokens['node']['title']           = t('Node title');
     $tokens['node']['title-raw']       = t('Unfiltered node title. WARNING - raw user input.');
 
+    $tokens['node']['title-link']      = t('Relative hyperlink to the node');
+    $tokens['node']['title-link-url']  = t('Absolute hyperlink to the node');
+    $tokens['node']['path']            = t('Relative path to the node');
+    $tokens['node']['url']             = t('Absolute URL to the node');
+
     $tokens['node']['author-uid']      = t("Node author's user id");
     $tokens['node']['author-name']     = t("Node author's user name");
     $tokens['node']['author-name-raw'] = t("Node author's user name. WARNING - raw user input.");
