Index: CHANGELOG.txt
===================================================================
RCS file: CHANGELOG.txt
diff -N CHANGELOG.txt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ CHANGELOG.txt	23 Feb 2009 12:40:30 -0000
@@ -0,0 +1,16 @@
+// $Id: CHANGELOG.txt,v 1.7 2008/02/22 20:19:29 sun Exp $
+
+IMCE Wysiwyg x.x-x.x, xxxx-xx-xx
+--------------------------------
+
+
+IMCE Wysiwyg 6.x-1.x, xxxx-xx-xx
+--------------------------------
+
+
+IMCE Wysiwyg 6.x-1.0, 2009-02-23
+--------------------------------
+Initial release of IMCE Wysiwyg.
+#287025 by sun: Added Wysiwyg API integration code for IMCE.
+
+
Index: README.txt
===================================================================
RCS file: README.txt
diff -N README.txt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ README.txt	23 Feb 2009 12:36:06 -0000
@@ -0,0 +1,56 @@
+/* $Id$ */
+
+-- SUMMARY --
+
+This module is acts as a bridge between the IMCE module and the Wysiwyg API
+module.
+
+For a full description of the module, visit the project page:
+  http://drupal.org/project/imce_wysiwyg
+
+To submit bug reports and feature suggestions, or to track changes:
+  http://drupal.org/project/issues/imce_wysiwyg
+
+
+-- REQUIREMENTS --
+
+* IMCE
+
+* Wysiwyg API
+
+
+-- INSTALLATION --
+
+* Install as usual, see http://drupal.org/node/70151 for further information.
+
+
+
+-- CONFIGURATION --
+
+* Enable the IMCE plugin in the plugins/buttons configuration of the wysiwyg
+  profiles of your choice.
+
+
+-- USAGE --
+
+* Please consult the documentation of IMCE for further information.  This is
+  just an integration module.
+
+
+-- TROUBLESHOOTING --
+
+* No known issues yet.
+
+
+-- FAQ --
+
+* No known issues yet.
+
+
+-- CONTACT --
+
+Current maintainers:
+* Aaron Hawkins - http://drupal.org/user/128806
+* Daniel F. Kudwien (sun) - http://drupal.org/user/54136
+
+
Index: imce_wysiwyg.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imce_wysiwyg/imce_wysiwyg.info,v
retrieving revision 1.1
diff -u -p -r1.1 imce_wysiwyg.info
--- imce_wysiwyg.info	22 Feb 2009 19:18:43 -0000	1.1
+++ imce_wysiwyg.info	23 Feb 2009 12:23:43 -0000
@@ -1,7 +1,7 @@
 ; $Id: imce_wysiwyg.info,v 1.1 2009/02/22 19:18:43 aaronhawkins Exp $
-name = IMCE WYSIWYG
-description = Makes IMCE available as a plugin for the Wysiwyg API module.
+name = IMCE Wysiwyg API bridge
+description = Makes IMCE available as plugin for client-side editors integrated via Wysiwyg API.
 package = User interface
 core = 6.x
 dependencies[] = imce
-dependencies[] = wysiwyg
\ No newline at end of file
+dependencies[] = wysiwyg
Index: imce_wysiwyg.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imce_wysiwyg/imce_wysiwyg.module,v
retrieving revision 1.1
diff -u -p -r1.1 imce_wysiwyg.module
--- imce_wysiwyg.module	22 Feb 2009 19:18:43 -0000	1.1
+++ imce_wysiwyg.module	23 Feb 2009 12:44:59 -0000
@@ -1,14 +1,16 @@
 <?php
 // $Id: imce_wysiwyg.module,v 1.1 2009/02/22 19:18:43 aaronhawkins Exp $
+
 /**
  * @file
- * Provides a bridge between the imce module and the wysiwyg api module.
+ * Makes IMCE available as plugin for client-side editors integrated via
+ * Wysiwyg API.
  */
 
 /**
  * Implementation of hook_wysiwyg_plugin().
  */
-function imce_wysiwyg_wysiwyg_plugin($editor, $version) {
+function imce_wysiwyg_plugin($editor, $version) {
   static $integrated = array();
 
   if (!user_access('access imce')) {
@@ -27,8 +29,8 @@ function imce_wysiwyg_wysiwyg_plugin($ed
     case 'tinymce':
       if (!isset($integrated[$editor])) {
         $path = drupal_get_path('module', 'imce');
-        drupal_add_js('var imceBrowserURL = "'.url('imce/browse').'"', 'inline', 'footer');
-        drupal_add_js($path .'/imce_set_tinymce.js', 'module', 'footer');
+        drupal_add_js('var imceBrowserURL = "' . url('imce/browse') . '"', 'inline', 'footer');
+        drupal_add_js($path . '/imce_set_tinymce.js', 'module', 'footer');
         $integrated[$editor] = TRUE;
         $settings = array(
           'imce' => array('url' => url('imce', array('query' => 'app=' . $editor . '|url@src'))),
@@ -50,8 +52,8 @@ function imce_wysiwyg_wysiwyg_plugin($ed
     case 'fckeditor':
       if (!isset($integrated[$editor])) {
         $path = drupal_get_path('module', 'imce');
-        drupal_add_js('var imceBrowserURL = "'.url('imce/browse').'"', 'inline', 'footer');
-        drupal_add_js($path .'/imce_set_fck.js', 'module', 'footer');
+        drupal_add_js('var imceBrowserURL = "' . url('imce/browse') . '"', 'inline', 'footer');
+        drupal_add_js($path . '/imce_set_fck.js', 'module', 'footer');
         $integrated[$editor] = TRUE;
       }
       return array(
Index: js/imce_wysiwyg.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imce_wysiwyg/js/imce_wysiwyg.js,v
retrieving revision 1.1
diff -u -p -r1.1 imce_wysiwyg.js
--- js/imce_wysiwyg.js	22 Feb 2009 19:18:55 -0000	1.1
+++ js/imce_wysiwyg.js	23 Feb 2009 12:25:48 -0000
@@ -1,4 +1,5 @@
 // $Id: imce_wysiwyg.js,v 1.1 2009/02/22 19:18:55 aaronhawkins Exp $
+
 /**
  * Wysiwyg API integration helper function.
  */
