Index: contributions/modules/scheduler/scheduler.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/scheduler/Attic/scheduler.module,v
retrieving revision 1.46.4.26
diff -u -p -r1.46.4.26 scheduler.module
--- contributions/modules/scheduler/scheduler.module	25 Apr 2008 12:33:11 -0000	1.46.4.26
+++ contributions/modules/scheduler/scheduler.module	25 Apr 2008 19:05:45 -0000
@@ -371,6 +371,26 @@ function scheduler_views_tables() {
         'help' => t('Sort by the date/time on which the article will be automatically un-published.'),
       ),
     ),
+    'filters' => array(
+      'publish_on' => array(
+        'name' => t('Scheduler: publish on'),
+        'help' => t('This filter allows nodes to be filtered by the date they will be automatically published.')
+          .' '. views_t_strings('filter date'),
+        'operator' => 'views_handler_operator_gtlt',
+        'value' => views_handler_filter_date_value_form(),
+        'handler' => 'views_handler_filter_timestamp',
+        'option' => 'string',
+      ),
+      'unpublish_on' => array(
+        'name' => t('Scheduler: unpublish on'),
+        'help' => t('This filter allows nodes to be filtered by the date they will be automatically un-published.')
+          .' '. views_t_strings('filter date'),
+        'operator' => 'views_handler_operator_gtlt',
+        'value' => views_handler_filter_date_value_form(),
+        'handler' => 'views_handler_filter_timestamp',
+        'option' => 'string',
+      ),
+    ),
   );
   return $tables;
 }
