Changeset 801 for trunk/doc


Ignore:
Timestamp:
Jul 16, 2005, 4:29:35 PM (19 years ago)
Author:
plg
Message:
  • new feature : RSS notification feed. Feed generator is an external tool (FeedCreator class v1.7.2). New file feed.php
  • new database field : comments.validation_date (datetime). This field is required for notification feed.
  • new database field : users.feed_id (varchar(50)). users.feed_id is an alias of users.id but is much more complicated to find (50 characters, figures or letters, case sensitive) : the purpose is to keep it secret (as far as possible).
  • new database field : users.last_feed_check (datetime)
  • new database field : users.registration_date (datetime)
  • bug fixed : no need to add the (unavailable) session id to install.php in the installation form.
  • modified database field : images.date_available become more precise (date to datetime). This precision is needed for notification feed.
  • new index : comments_i1 (validation_date). Might be useful for feed queries.
  • new index : comments_i2 (image_id). Useful each time you want to have informations about an element and its associated comments.
  • version 9.11 of mysqldump outputs database field names and table names with backquote "`" (didn't find how to take them off)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog

    r800 r801  
     12005-06-16 Pierrick LE GALL
     2
     3        * new feature : RSS notification feed. Feed generator is an
     4        external tool (FeedCreator class v1.7.2). New file feed.php
     5
     6        * new database field : comments.validation_date (datetime). This
     7        field is required for notification feed.
     8
     9        * new database field : users.feed_id (varchar(50)). users.feed_id
     10        is an alias of users.id but is much more complicated to find (50
     11        characters, figures or letters, case sensitive) : the purpose is
     12        to keep it secret (as far as possible).
     13
     14        * new database field : users.last_feed_check (datetime)
     15
     16        * new database field : users.registration_date (datetime)
     17
     18        * bug fixed : no need to add the (unavailable) session id to
     19        install.php in the installation form.
     20
     21        * modified database field : images.date_available become more
     22        precise (date to datetime). This precision is needed for
     23        notification feed.
     24
     25        * new index : comments_i1 (validation_date). Might be useful for
     26        feed queries.
     27
     28        * new index : comments_i2 (image_id). Useful each time you want to
     29        have informations about an element and its associated comments.
     30
     31        * version 9.11 of mysqldump outputs database field names and table
     32        names with backquote "`" (didn't find how to take them off)
     33       
    1342005-06-30 Pierrick LE GALL
    235       
Note: See TracChangeset for help on using the changeset viewer.