diff modules/aggregator/aggregator.install @ 19:3edae6ecd6c6 6.9

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents 4347c45bb494
children
line wrap: on
line diff
--- a/modules/aggregator/aggregator.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/aggregator/aggregator.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: aggregator.install,v 1.14.2.1 2008/11/09 13:22:35 goba Exp $
+// $Id: aggregator.install,v 1.14.2.2 2009/01/06 15:46:36 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -27,32 +27,32 @@
  */
 function aggregator_schema() {
   $schema['aggregator_category'] = array(
-    'description' => t('Stores categories for aggregator feeds and feed items.'),
+    'description' => 'Stores categories for aggregator feeds and feed items.',
     'fields' => array(
       'cid'  => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'description' => t('Primary Key: Unique aggregator category ID.'),
+        'description' => 'Primary Key: Unique aggregator category ID.',
       ),
       'title' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Title of the category.'),
+        'description' => 'Title of the category.',
       ),
       'description' => array(
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'big',
-        'description' => t('Description of the category'),
+        'description' => 'Description of the category',
       ),
       'block' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
         'size' => 'tiny',
-        'description' => t('The number of recent items to show within the category block.'),
+        'description' => 'The number of recent items to show within the category block.',
       )
     ),
     'primary key' => array('cid'),
@@ -60,19 +60,19 @@
   );
 
   $schema['aggregator_category_feed'] = array(
-    'description' => t('Bridge table; maps feeds to categories.'),
+    'description' => 'Bridge table; maps feeds to categories.',
     'fields' => array(
       'fid' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t("The feed's {aggregator_feed}.fid."),
+        'description' => "The feed's {aggregator_feed}.fid.",
       ),
       'cid' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('The {aggregator_category}.cid to which the feed is being assigned.'),
+        'description' => 'The {aggregator_category}.cid to which the feed is being assigned.',
       )
     ),
     'primary key' => array('cid', 'fid'),
@@ -80,19 +80,19 @@
   );
 
   $schema['aggregator_category_item'] = array(
-    'description' => t('Bridge table; maps feed items to categories.'),
+    'description' => 'Bridge table; maps feed items to categories.',
     'fields' => array(
       'iid' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t("The feed item's {aggregator_item}.iid."),
+        'description' => "The feed item's {aggregator_item}.iid.",
       ),
       'cid' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('The {aggregator_category}.cid to which the feed item is being assigned.'),
+        'description' => 'The {aggregator_category}.cid to which the feed item is being assigned.',
       )
     ),
     'primary key' => array('cid', 'iid'),
@@ -100,77 +100,77 @@
   );
 
   $schema['aggregator_feed'] = array(
-    'description' => t('Stores feeds to be parsed by the aggregator.'),
+    'description' => 'Stores feeds to be parsed by the aggregator.',
     'fields' => array(
       'fid' => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'description' => t('Primary Key: Unique feed ID.'),
+        'description' => 'Primary Key: Unique feed ID.',
       ),
       'title' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Title of the feed.'),
+        'description' => 'Title of the feed.',
       ),
       'url' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('URL to the feed.'),
+        'description' => 'URL to the feed.',
       ),
       'refresh' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('How often to check for new feed items, in seconds.'),
+        'description' => 'How often to check for new feed items, in seconds.',
       ),
       'checked' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('Last time feed was checked for new items, as Unix timestamp.'),
+        'description' => 'Last time feed was checked for new items, as Unix timestamp.',
       ),
       'link' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('The parent website of the feed; comes from the &lt;link&gt; element in the feed.'),
+        'description' => 'The parent website of the feed; comes from the &lt;link&gt; element in the feed.',
       ),
       'description' => array(
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'big',
-        'description' => t("The parent website's description; comes from the &lt;description&gt; element in the feed."),
+        'description' => "The parent website's description; comes from the &lt;description&gt; element in the feed.",
       ),
       'image' => array(
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'big',
-        'description' => t('An image representing the feed.'),
+        'description' => 'An image representing the feed.',
       ),
       'etag' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Entity tag HTTP response header, used for validating cache.'),
+        'description' => 'Entity tag HTTP response header, used for validating cache.',
       ),
       'modified' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('When the feed was last modified, as a Unix timestamp.'),
+        'description' => 'When the feed was last modified, as a Unix timestamp.',
       ),
       'block' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
         'size' => 'tiny',
-        'description' => t("Number of items to display in the feed's block."),
+        'description' => "Number of items to display in the feed's block.",
       )
     ),
     'primary key' => array('fid'),
@@ -181,56 +181,56 @@
   );
 
   $schema['aggregator_item'] = array(
-    'description' => t('Stores the individual items imported from feeds.'),
+    'description' => 'Stores the individual items imported from feeds.',
     'fields' => array(
       'iid'  => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'description' => t('Primary Key: Unique ID for feed item.'),
+        'description' => 'Primary Key: Unique ID for feed item.',
       ),
       'fid' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('The {aggregator_feed}.fid to which this item belongs.'),
+        'description' => 'The {aggregator_feed}.fid to which this item belongs.',
       ),
       'title' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Title of the feed item.'),
+        'description' => 'Title of the feed item.',
       ),
       'link' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Link to the feed item.'),
+        'description' => 'Link to the feed item.',
       ),
       'author' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Author of the feed item.'),
+        'description' => 'Author of the feed item.',
       ),
       'description' => array(
         'type' => 'text',
         'not null' => TRUE,
         'size' => 'big',
-        'description' => t('Body of the feed item.'),
+        'description' => 'Body of the feed item.',
       ),
       'timestamp' => array(
         'type' => 'int',
         'not null' => FALSE,
-        'description' => t('Post date of feed item, as a Unix timestamp.'),
+        'description' => 'Post date of feed item, as a Unix timestamp.',
       ),
       'guid' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => FALSE,
-        'description' => t('Unique identifier for the feed item.'),
+        'description' => 'Unique identifier for the feed item.',
       )
     ),
     'primary key' => array('iid'),