cvs diff: Diffing .
cvs diff: Diffing contrib
cvs diff: Diffing contrib/emaudio
Index: contrib/emaudio/emaudio.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emaudio/Attic/emaudio.theme.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 emaudio.theme.inc
--- contrib/emaudio/emaudio.theme.inc   16 Dec 2008 16:12:56 -0000      1.1.2.5
+++ contrib/emaudio/emaudio.theme.inc   19 Dec 2008 18:04:59 -0000
@@ -86,7 +86,7 @@
     $width = isset($options['width']) ? $options['width'] : (isset($field['widget']['audio_width']) ? $field['widget']['audio_width'] : variable_get('emaudio_default_audio_width', EMAUDIO_DEFAULT_AUDIO_WIDTH));
     $height = isset($options['height']) ? $options['height'] : (isset($field['widget']['audio_height']) ? $field['widget']['audio_height'] : variable_get('emaudio_default_audio_height', EMAUDIO_DEFAULT_AUDIO_HEIGHT));
     $autoplay = isset($options['autoplay']) ? $options['autoplay'] : $field['widget']['audio_autoplay'];
-    $output = module_invoke('emfield', 'include_invoke', 'emaudio', $item['provider'], 'audio', $embed, $width, $height, $field, $item, $autoplay, $options);
+    $output = module_invoke('emfield', 'include_invoke', 'emaudio', $item['provider'], 'audio', $embed, $width, $height, $field, $item, $node, $autoplay, $options);
   }
 
   return $output;
cvs diff: Diffing contrib/emaudio/providers
cvs diff: contrib/emaudio/providers/icecast.inc is a new entry, no comparison available
cvs diff: contrib/emaudio/providers/icecast.js is a new entry, no comparison available
cvs diff: Diffing contrib/emimage
cvs diff: Diffing contrib/emimage/providers
cvs diff: Diffing contrib/emimport
cvs diff: Diffing contrib/emthumb
cvs diff: Diffing contrib/emvideo
cvs diff: Diffing contrib/emvideo/providers
Index: contrib/emvideo/providers/bliptv.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/bliptv.inc,v
retrieving revision 1.1.2.9
diff -u -r1.1.2.9 bliptv.inc
--- contrib/emvideo/providers/bliptv.inc        9 Dec 2008 22:29:47 -0000       1.1.2.9
+++ contrib/emvideo/providers/bliptv.inc        19 Dec 2008 18:05:01 -0000
@@ -273,7 +273,7 @@
   return $tn;
 }
 
-function emvideo_bliptv_video($code, $width, $height, $field, $item, $autoplay, $options = array()) {
+function emvideo_bliptv_video($code, $width, $height, $field, $item, &$node, $autoplay, $options = array()) {
   if ($item['data']['emvideo_bliptv_data_version'] >= 1) {
     $flv = $item['data']['flv']['url'];
     $thumbnail = $item['data']['thumbnail']['url'];
@@ -287,7 +287,7 @@
   return $output;
 }
 
-function emvideo_bliptv_preview($code, $width, $height, $field, $item, $autoplay, $options = array()) {
+function emvideo_bliptv_preview($code, $width, $height, $field, $item, &$node, $autoplay, $options = array()) {
   if ($item['data']['emvideo_bliptv_data_version'] >= 1) {
     $flv = $item['data']['flv']['url'];
     $thumbnail = $item['data']['thumbnail']['url'];
Index: contrib/emvideo/providers/brightcove.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/brightcove.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 brightcove.inc
--- contrib/emvideo/providers/brightcove.inc    9 Dec 2008 23:31:29 -0000       1.1.2.8
+++ contrib/emvideo/providers/brightcove.inc    19 Dec 2008 18:05:01 -0000
@@ -143,7 +143,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_brightcove_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_brightcove_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_brightcove_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/dailymotion.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/dailymotion.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 dailymotion.inc
--- contrib/emvideo/providers/dailymotion.inc   9 Dec 2008 23:31:29 -0000       1.1.2.8
+++ contrib/emvideo/providers/dailymotion.inc   19 Dec 2008 18:05:01 -0000
@@ -164,7 +164,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_dailymotion_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_dailymotion_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_dailymotion_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/google.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/google.inc,v
retrieving revision 1.1.2.10
diff -u -r1.1.2.10 google.inc
--- contrib/emvideo/providers/google.inc        9 Dec 2008 23:31:29 -0000       1.1.2.10
+++ contrib/emvideo/providers/google.inc        19 Dec 2008 18:05:01 -0000
@@ -180,7 +180,7 @@
   return $output;
 }
 
-function emvideo_google_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_google_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_google_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/guba.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/guba.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 guba.inc
--- contrib/emvideo/providers/guba.inc  9 Dec 2008 23:31:29 -0000       1.1.2.5
+++ contrib/emvideo/providers/guba.inc  19 Dec 2008 18:05:01 -0000
@@ -83,7 +83,7 @@
   return $output;
 }
 
-function emvideo_guba_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_guba_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_guba_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/imeem.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/imeem.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 imeem.inc
--- contrib/emvideo/providers/imeem.inc 9 Dec 2008 23:31:29 -0000       1.1.2.5
+++ contrib/emvideo/providers/imeem.inc 19 Dec 2008 18:05:01 -0000
@@ -88,7 +88,7 @@
   return $output;
 }
 
-function emvideo_imeem_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_imeem_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_imeem_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/jumpcut.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/jumpcut.inc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 jumpcut.inc
--- contrib/emvideo/providers/jumpcut.inc       11 Oct 2008 18:29:21 -0000      1.1.2.7
+++ contrib/emvideo/providers/jumpcut.inc       19 Dec 2008 18:05:02 -0000
@@ -50,12 +50,12 @@
   return '';
 }
 
-function emvideo_jumpcut_video($embed, $width, $height, $field, $item) {
+function emvideo_jumpcut_video($embed, $width, $height, $field, $item, &$node) {
   $output = theme('emvideo_jumpcut_flash', $embed, $width, $height);
   return $output;
 }
 
-function emvideo_jumpcut_preview($embed, $width, $height, $field, $item) {
+function emvideo_jumpcut_preview($embed, $width, $height, $field, $item, &$node) {
   $output = theme('emvideo_jumpcut_flash', $embed, $width, $height);
   return $output;
 }
Index: contrib/emvideo/providers/lastfm.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/lastfm.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 lastfm.inc
--- contrib/emvideo/providers/lastfm.inc        9 Dec 2008 23:31:29 -0000       1.1.2.5
+++ contrib/emvideo/providers/lastfm.inc        19 Dec 2008 18:05:02 -0000
@@ -163,7 +163,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_lastfm_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_lastfm_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_lastfm_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/livevideo.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/livevideo.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 livevideo.inc
--- contrib/emvideo/providers/livevideo.inc     9 Dec 2008 23:31:29 -0000       1.1.2.8
+++ contrib/emvideo/providers/livevideo.inc     19 Dec 2008 18:05:02 -0000
@@ -178,7 +178,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_livevideo_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_livevideo_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_livevideo_flash', $embed, $width, $height, $autoplay);
 
   return $output;
Index: contrib/emvideo/providers/metacafe.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/metacafe.inc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 metacafe.inc
--- contrib/emvideo/providers/metacafe.inc      9 Dec 2008 23:31:29 -0000       1.1.2.7
+++ contrib/emvideo/providers/metacafe.inc      19 Dec 2008 18:05:02 -0000
@@ -69,7 +69,7 @@
   return $output;
 }
 
-function emvideo_metacafe_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_metacafe_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_metacafe_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/myspace.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/myspace.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 myspace.inc
--- contrib/emvideo/providers/myspace.inc       16 Dec 2008 14:01:34 -0000      1.1.2.8
+++ contrib/emvideo/providers/myspace.inc       19 Dec 2008 18:05:02 -0000
@@ -111,12 +111,12 @@
   return _emvideo_myspace_scrape_thumbnail($item['value']);
 }
 
-function emvideo_myspace_video($embed, $width, $height, $field, $item) {
+function emvideo_myspace_video($embed, $width, $height, $field, $item, &$node) {
   $output = theme('emvideo_myspace_flash', $embed, $width, $height);
   return $output;
 }
 
-function emvideo_myspace_preview($embed, $width, $height, $field, $item) {
+function emvideo_myspace_preview($embed, $width, $height, $field, $item, &$node) {
   $output = theme('emvideo_myspace_flash', $embed, $width, $height);
   return $output;
 }
Index: contrib/emvideo/providers/revver.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/revver.inc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 revver.inc
--- contrib/emvideo/providers/revver.inc        9 Dec 2008 23:31:29 -0000       1.1.2.7
+++ contrib/emvideo/providers/revver.inc        19 Dec 2008 18:05:02 -0000
@@ -72,7 +72,7 @@
   return $output;
 }
 
-function emvideo_revver_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_revver_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_revver_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/sevenload.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/sevenload.inc,v
retrieving revision 1.1.2.6
diff -u -r1.1.2.6 sevenload.inc
--- contrib/emvideo/providers/sevenload.inc     11 Oct 2008 18:29:21 -0000      1.1.2.6
+++ contrib/emvideo/providers/sevenload.inc     19 Dec 2008 18:05:03 -0000
@@ -105,7 +105,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_sevenload_video($embed, $width, $height, $field, $item) {
+function emvideo_sevenload_video($embed, $width, $height, $field, $item, &$node) {
   $output = theme('emvideo_sevenload_flash', $embed, $width, $height);
   return $output;
 }
@@ -126,7 +126,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_sevenload_preview($embed, $width, $height, $field, $item) {
+function emvideo_sevenload_preview($embed, $width, $height, $field, $item, &$node) {
   $output = theme('emvideo_sevenload_flash', $embed, $width, $height);
   return $output;
 }
Index: contrib/emvideo/providers/spike.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/spike.inc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 spike.inc
--- contrib/emvideo/providers/spike.inc 9 Dec 2008 23:31:29 -0000       1.1.2.7
+++ contrib/emvideo/providers/spike.inc 19 Dec 2008 18:05:03 -0000
@@ -70,7 +70,7 @@
   return $output;
 }
 
-function emvideo_spike_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_spike_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_spike_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/tudou.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/tudou.inc,v
retrieving revision 1.1.2.4
diff -u -r1.1.2.4 tudou.inc
--- contrib/emvideo/providers/tudou.inc 9 Dec 2008 23:31:29 -0000       1.1.2.4
+++ contrib/emvideo/providers/tudou.inc 19 Dec 2008 18:05:03 -0000
@@ -144,7 +144,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_tudou_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_tudou_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_tudou_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/veoh.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/veoh.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 veoh.inc
--- contrib/emvideo/providers/veoh.inc  9 Dec 2008 23:31:29 -0000       1.1.2.5
+++ contrib/emvideo/providers/veoh.inc  19 Dec 2008 18:05:03 -0000
@@ -112,7 +112,7 @@
   return $output;
 }
 
-function emvideo_veoh_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_veoh_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_veoh_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/vimeo.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/vimeo.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 vimeo.inc
--- contrib/emvideo/providers/vimeo.inc 16 Dec 2008 14:37:11 -0000      1.1.2.5
+++ contrib/emvideo/providers/vimeo.inc 19 Dec 2008 18:05:03 -0000
@@ -200,7 +200,7 @@
  *  @return
  *    the html of the embedded video
  */
-function emvideo_vimeo_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emvideo_vimeo_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emvideo_vimeo_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
Index: contrib/emvideo/providers/zzz_custom_url.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/providers/Attic/zzz_custom_url.inc,v
retrieving revision 1.1.2.11
diff -u -r1.1.2.11 zzz_custom_url.inc
--- contrib/emvideo/providers/zzz_custom_url.inc        10 Dec 2008 01:40:23 -0000      1.1.2.11
+++ contrib/emvideo/providers/zzz_custom_url.inc        19 Dec 2008 18:05:03 -0000
@@ -139,13 +139,13 @@
   return '';
 }
 
-function emvideo_zzz_custom_url_video($code, $width, $height, $field, $item, $autoplay) {
+function emvideo_zzz_custom_url_video($code, $width, $height, $field, $item, &$node, $autoplay) {
   $type = $item['data']['type'];
   $output = theme('emvideo_zzz_custom_url_embedded_video', $type, $code, $width, $height, $autoplay, $field, $item);
   return $output;
 }
 
-function emvideo_zzz_custom_url_preview($code, $width, $height, $field, $item, $autoplay) {
+function emvideo_zzz_custom_url_preview($code, $width, $height, $field, $item, &$node, $autoplay) {
   $type = $item['data']['type'];
   $output = theme('emvideo_zzz_custom_url_embedded_video', $type, $code, $width, $height, $autoplay, $field, $item);
   return $output;
cvs diff: Diffing contrib/image_ncck
cvs diff: Diffing contrib/video_cck