Skip to content
  1. Feb 24, 2003
  2. Feb 09, 2003
    • Dries Buytaert's avatar
      · 83d5c16c
      Dries Buytaert authored
      - Small patch by James.
      83d5c16c
  3. Jan 26, 2003
  4. Jan 04, 2003
    • Dries Buytaert's avatar
      · 613c7a76
      Dries Buytaert authored
      - Fixed typo in PostgreSQL database scheme.  Patch by James.
      613c7a76
  5. Dec 15, 2002
    • Dries Buytaert's avatar
      · 7d9c49de
      Dries Buytaert authored
      - Fixed typo in database scheme.  Reported by Ettiene.
      7d9c49de
  6. Dec 08, 2002
    • Dries Buytaert's avatar
      · 5bd3e32f
      Dries Buytaert authored
      - Removed rating module; it is not being used much and it has a known bug.
        Will add it to the contributions repository.
      5bd3e32f
  7. Dec 07, 2002
    • Dries Buytaert's avatar
      · b62025c2
      Dries Buytaert authored
      - Removed two a dead table from both the MySQL and the PostgreSQL database
        scheme.
      
      - Fixed the default settings for both the MySQL and the PostgreSQL database
        scheme.
      b62025c2
  8. Nov 30, 2002
    • Dries Buytaert's avatar
      · f42bfcac
      Dries Buytaert authored
      - Fixed small glitch in the database schemes; the block table has changed but
        the queries that insert some default block values were not updated.
      f42bfcac
  9. Nov 21, 2002
    • Dries Buytaert's avatar
      · 697dde0f
      Dries Buytaert authored
      - Updated PostgreSQL scheme.  Patch by Stefan.
      697dde0f
  10. Nov 20, 2002
    • Dries Buytaert's avatar
      · 56d72a91
      Dries Buytaert authored
      - Added Stefan's page module improvements.
      
        [NOTE: the PostgreSQL database scheme needs updating.]
      56d72a91
  11. Nov 09, 2002
    • Dries Buytaert's avatar
      · 96a45ecb
      Dries Buytaert authored
      - Updated the PostgreSQL database scheme (thanks James) and the MySQL
        database scheme.
      96a45ecb
  12. Nov 08, 2002
    • Dries Buytaert's avatar
      · 86a3ebef
      Dries Buytaert authored
      - Made the forum module work with PostgreSQL.  Patch by Gordon Kerr, verified
        by James Arthur.
      86a3ebef
  13. Nov 01, 2002
    • Dries Buytaert's avatar
      · 74c72250
      Dries Buytaert authored
      - Applied a PostgreSQL patch from James.
      74c72250
  14. Oct 22, 2002
    • Dries Buytaert's avatar
      · 66c5b707
      Dries Buytaert authored
      - Wrapped some hardcoded colors in "theme_invoke()"s; we can still create
        a drupal_error() later on but I think we better get used to theme_invoke().
      
      - Fixed translation bug.  Patch by Moshe.
      
      - Fixed PHP warning.  Patch by ax.
      66c5b707
  15. Oct 17, 2002
  16. Sep 25, 2002
  17. Sep 22, 2002
    • Dries Buytaert's avatar
      · e4d92b58
      Dries Buytaert authored
      - Some PostgreSQL improvements.  Patch by James Arthur.
      e4d92b58
  18. Aug 26, 2002
    • Dries Buytaert's avatar
      · a28f8180
      Dries Buytaert authored
      - Changed "$watchdog->message" from type "varchar(255)" to type "text".
        Patch by James.  For sake of consistency, I updated the MySQL scheme
        and added a new update entry to "update.php".
      a28f8180
  19. Aug 22, 2002
    • Dries Buytaert's avatar
      · 2fe2a123
      Dries Buytaert authored
      - Removed the unused table and included the sequences table.   Patch by
        jaa.
      2fe2a123
  20. Aug 21, 2002
    • Dries Buytaert's avatar
      · fd05ff03
      Dries Buytaert authored
      - Fixed typo.  Patch by Marco.
      fd05ff03
  21. Aug 20, 2002
    • Dries Buytaert's avatar
      · bfe5b85d
      Dries Buytaert authored
      - Applied a (modified) version of Marco's SQL sequence patch.
      bfe5b85d
  22. Aug 18, 2002
    • Dries Buytaert's avatar
      · c34d7785
      Dries Buytaert authored
      - Bugfix: changed the PostgreSQL database scheme of the session field in
        the user table.  Patch by jaa.
      c34d7785
  23. Aug 16, 2002
    • Dries Buytaert's avatar
      · d4a918b8
      Dries Buytaert authored
      - Renewed the PostgreSQL database scheme!  Patch by jaa.
      d4a918b8
    • Dries Buytaert's avatar
      · e04f6d23
      Dries Buytaert authored
      - Made the rating module and its SQL table ASNI compliant.  Patch by jaa.
      e04f6d23
  24. Jul 31, 2002
  25. Jul 13, 2002
    • Dries Buytaert's avatar
      · c3a60df5
      Dries Buytaert authored
      - Patch my Marco: "session in my users table is actually varchar(32), which is small. locale data was greater and so was not correctly recorded.  strangely, update_11() in update.php reads: update_sql("ALTER TABLE users ADD session TEXT;"); but in database.mysql.inc, line 496 session varchar(32) NOT NULL default '', so the update fails."
      c3a60df5
  26. Jun 15, 2002
  27. Jun 08, 2002
    • Dries Buytaert's avatar
      · 291d119b
      Dries Buytaert authored
      - Removed non-existing theme from both update.php and database.mysql.  Patch
        by Marco.
      291d119b
  28. Jun 06, 2002
    • Dries Buytaert's avatar
      · 68129fd5
      Dries Buytaert authored
      - Changed some "default NULL"s to "default NOT NULL"s as this only works on
        recent MySQL versions.  I included the diffs for review.
      
      update.php:
      -  update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno in
      +  update_sql("CREATE TABLE search_index (word varchar(50) default NOT NULL, ln
      
      database.mysql:
      -  word varchar(50) default NULL,
      -  lno int(10) unsigned default NULL,
      -  type varchar(16) default NULL,
      -  count int(10) unsigned default NULL,
      + word varchar(50) NOT NULL,
      + lno int(10) unsigned NOT NULL,
      + type varchar(16) default NULL,
      + count int(10) unsigned default NULL,
      68129fd5
  29. Jun 01, 2002
    • Kjartan Mannes's avatar
      - adding descriptions to modules (thanks Joe + Scott). · 4a28077f
      Kjartan Mannes authored
      - fixed comment flat list view missing 1 comment.
      - changed update.php around a bit.
          * security check isn't in effect if the db hasn't been updated.
          * instructions re-organized.
          * fixed some minor updates.
      - updated database.mysql done by UnConeD.
      - changelog update.
      4a28077f
  30. May 20, 2002
    • Dries Buytaert's avatar
      · f3c87571
      Dries Buytaert authored
      - Ran the code through 'scripts/code-clean.sh': removed trailing whitespace
        (and possibly tabs).
      f3c87571
  31. May 16, 2002
  32. Apr 29, 2002
  33. Apr 21, 2002
  34. Apr 20, 2002
  35. Apr 14, 2002
    • Dries Buytaert's avatar
      · d8cd5496
      Dries Buytaert authored
      - Added Marco's long-awaited taxonmy module and patches - a replacement
        for the meta system.  The patches add some extra functionality to the
        comment system (for example, comments can be set read-only) and fix a
        couple of small problems.
      
        + I integrated the required SQL updates from the varius *.mysql files
          into the "update.php" script.  Upgrading should be easy ...
      
        + I did not apply/commit the "user.diff" as requested by Marco ...
      
        + I didn't know what to do with "forum.module" and "forum2.module":
          what do you want me to do with it Marco?  Which one should go in?
      
        + Can we remove "node_index()" now; both from "node.module" and the
          themes?
      
        + Thanks Marco!
      d8cd5496
  36. Jan 27, 2002
  37. Jan 21, 2002