Index: includes/content.token.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cck/includes/content.token.inc,v
retrieving revision 1.5
diff -u -r1.5 content.token.inc
--- includes/content.token.inc	25 Apr 2008 01:24:40 -0000	1.5
+++ includes/content.token.inc	3 Aug 2008 21:28:31 -0000
@@ -59,7 +59,9 @@
 
       $tokens['node reference']['nid']   = t('Referenced node ID');
       $tokens['node reference']['title'] = t('Referenced node title');
-      $tokens['node reference']['link']  = t('Formatted HTML link to the node');
+      $tokens['node reference']['link']  = t("Formatted html link to the referenced node.");
+      $tokens['node reference']['path']  = t("Relative path alias to the referenced node.");
+      $tokens['node reference']['url']  = t("Absolute path alias to the referenced node.");
 
       return $tokens;
     }
@@ -72,6 +74,8 @@
       $tokens['nid']   = $item['nid'];
       $tokens['title'] = strip_tags($item['view']);
       $tokens['link']  = $item['view'];
+      $tokens['path'] = url('node/' . $item['nid']);
+      $tokens['url'] = url('node/' . $item['nid'], array('absolute' => TRUE));
 
       return $tokens;
     }
@@ -133,6 +137,8 @@
       $tokens['user reference']['uid']   = t('Referenced user ID');
       $tokens['user reference']['name']  = t('Referenced user name');
       $tokens['user reference']['link']  = t('Formatted HTML link to referenced user');
+      $tokens['user reference']['path']  = t("Relative path alias to the referenced user.");
+      $tokens['user reference']['url']  = t("Absolute path alias to the referenced user.");
 
       return $tokens;
     }
@@ -145,6 +151,8 @@
       $tokens['uid']   = $item['uid'];
       $tokens['name']  = strip_tags($item['view']);
       $tokens['link']  = $item['view'];
+      $tokens['path'] = url('user/' . $item['uid']);
+      $tokens['url'] = url('user/' . $item['uid'], array('absolute' => TRUE));
 
       return $tokens;
     }
Index: .project
===================================================================
RCS file: .project
diff -N .project
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ .project	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>cck</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.validation.validationbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.dltk.core.scriptbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.php.core.PHPNature</nature>
+	</natures>
+</projectDescription>
Index: .buildpath
===================================================================
RCS file: .buildpath
diff -N .buildpath
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ .buildpath	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<buildpath>
+	<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
+	<buildpathentry combineaccessrules="false" kind="prj" path="/drupal6"/>
+</buildpath>
