Index: content_copy_deploy/content_copy_deploy.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/deploy/content_copy_deploy/content_copy_deploy.info,v
retrieving revision 1.1
diff -u -F^f -r1.1 content_copy_deploy.info
--- content_copy_deploy/content_copy_deploy.info	5 Mar 2008 02:27:09 -0000	1.1
+++ content_copy_deploy/content_copy_deploy.info	3 Jul 2008 23:24:20 -0000
@@ -1,5 +1,5 @@
 ; $Id: content_copy_deploy.info,v 1.1 2008/03/05 02:27:09 heyrocker Exp $
 name = "Deploy Content Type"
 description = "Deploy content types using the Deployment framework"
-dependencies = deploy content_copy
+dependencies = deploy content_copy hs_flatlist
 package = Deployment
\ No newline at end of file
Index: content_copy_deploy/content_copy_deploy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/deploy/content_copy_deploy/content_copy_deploy.module,v
retrieving revision 1.1.2.7
diff -u -F^f -r1.1.2.7 content_copy_deploy.module
--- content_copy_deploy/content_copy_deploy.module	5 Jun 2008 04:17:05 -0000	1.1.2.7
+++ content_copy_deploy/content_copy_deploy.module	3 Jul 2008 23:24:20 -0000
@@ -36,15 +36,21 @@ function content_copy_deploy_add_form($p
       '#title' => t('Deployment Plan'),
       '#type' => 'select',
       '#options' => $plans,
-      '#description' => t('The deployment plan to add this content type to'),
+      '#description' => t('The deployment plan to add this content type to.'),
     );
     $form['content_type'] = array(
       '#title' => t('Content Type'),
-      '#type' => 'select',
-      '#multiple' => TRUE,
-      '#options' => $types,
+      '#type' => 'hierarchical_select',
       '#required' => TRUE,
-      '#description' => t('The content type to deploy'),
+      '#config' => array(
+        'module' => 'hs_flatlist',
+        'params' => array('options' => $types),
+        'dropbox' => array(
+          'status' => 1,
+          'title'  => t('Selected content types'),
+        )
+      ),
+      '#description' => t('The content types to deploy.'),
     );
     $form['submit'] = array(
       '#type' => 'submit',
Index: views_deploy/views_deploy.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/deploy/views_deploy/Attic/views_deploy.info,v
retrieving revision 1.1.2.1
diff -u -F^f -r1.1.2.1 views_deploy.info
--- views_deploy/views_deploy.info	9 Mar 2008 00:39:56 -0000	1.1.2.1
+++ views_deploy/views_deploy.info	3 Jul 2008 23:24:20 -0000
@@ -1,5 +1,5 @@
 ; $Id: views_deploy.info,v 1.1.2.1 2008/03/09 00:39:56 heyrocker Exp $
 name = "Deploy Views"
 description = "Deploy views using the Deployment framework"
-dependencies = deploy views
+dependencies = deploy views hs_flatlist
 package = Deployment
\ No newline at end of file
Index: views_deploy/views_deploy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/deploy/views_deploy/Attic/views_deploy.module,v
retrieving revision 1.1.2.8
diff -u -F^f -r1.1.2.8 views_deploy.module
--- views_deploy/views_deploy.module	5 Jun 2008 04:17:06 -0000	1.1.2.8
+++ views_deploy/views_deploy.module	3 Jul 2008 23:24:20 -0000
@@ -37,15 +37,21 @@ function views_deploy_add_form($plans) {
     '#title' => t('Deployment Plan'),
     '#type' => 'select',
     '#options' => $plans,
-    '#description' => t('The deployment plan to add this view to'),
+    '#description' => t('The deployment plan to add this view to.'),
   );
   $form['view_name'] = array(
     '#title' => t('View'),
-    '#type' => 'select',
-    '#multiple' => TRUE,
+    '#type' => 'hierarchical_select',
     '#required' => TRUE,
-    '#options' => $views,
-    '#description' => t('The view to deploy'),
+    '#config' => array(
+      'module' => 'hs_flatlist',
+      'params' => array('options' => $views),
+      'dropbox' => array(
+        'status' => 1,
+        'title'  => t('Selected views'),
+      )
+    ),
+    '#description' => t('The views to deploy.'),
   );
   $form['submit'] = array(
     '#type' => 'submit',
