summaryrefslogtreecommitdiff
path: root/database
Commit message (Collapse)AuthorAge
* - Fixed typo: forum2 -> forum.Dries Buytaert2003-02-07
|
* - Updated the database scheme.Dries Buytaert2003-02-06
|
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|
* - Added an extra parameter to watchdog() which lets you specifiy an "action"Dries Buytaert2003-01-04
| | | | | | | | | or "operation" link. - Made the main page of the administration section show an overview of all watchdog entries with such action link. - Fixed typo in PostgreSQL database scheme.
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Fixed typo in the database scheme. Reported by Ettiene.Dries Buytaert2002-12-15
|
* Applied patch by Natrak:Dries Buytaert2002-12-11
| | | | | | | | | | | | | - page_header() now adds Last-Modified and ETag http headers. - When running PHP as an Apache module page_header() will check the HTTP headers for conditional gets, and will only push the content when it fails. (Works for html and xml pages as they are all cached). Note: this is a PHP limitation, so until PHP makes it work for other web servers this won't work for them. - Added created field to cache database to hold the timestamp when the cache was created. - Changed cache_get() to return an object with ->data and ->created. - Update forum and locale modules.
* - Removed rating module; it is not being used much and it has a known bug.Dries Buytaert2002-12-08
| | | | Will add it to the contributions repository.
* - Removed two a dead table from both the MySQL and the PostgreSQL databaseDries Buytaert2002-12-07
| | | | | | | scheme. - Fixed the default settings for both the MySQL and the PostgreSQL database scheme.
* - Fixed small glitch in the database schemes; the block table has changed butDries Buytaert2002-11-30
| | | | the queries that insert some default block values were not updated.
* - Updated PostgreSQL scheme. Patch by Stefan.Dries Buytaert2002-11-21
|
* - Added Stefan's page module improvements.Dries Buytaert2002-11-20
| | | | [NOTE: the PostgreSQL database scheme needs updating.]
* - Updated the PostgreSQL database scheme (thanks James) and the MySQLDries Buytaert2002-11-09
| | | | database scheme.
* - Made the forum module work with PostgreSQL. Patch by Gordon Kerr, verifiedDries Buytaert2002-11-08
| | | | by James Arthur.
* - Applied a PostgreSQL patch from James.Dries Buytaert2002-11-01
|
* - Wrapped some hardcoded colors in "theme_invoke()"s; we can still createDries Buytaert2002-10-22
| | | | | | | | 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.
* - removed function module_rehash().Kjartan Mannes2002-10-17
| | | | | - updated database dump. - removed tables modules, layout and referrer (don't forget to backup!).
* - serializing update_start variable.Kjartan Mannes2002-09-25
|
* - Some PostgreSQL improvements. Patch by James Arthur.Dries Buytaert2002-09-22
|
* - Changed "$watchdog->message" from type "varchar(255)" to type "text".Dries Buytaert2002-08-26
| | | | | Patch by James. For sake of consistency, I updated the MySQL scheme and added a new update entry to "update.php".
* - Removed the unused table and included the sequences table. Patch byDries Buytaert2002-08-22
| | | | jaa.
* - Fixed typo. Patch by Marco.Dries Buytaert2002-08-21
|
* - Applied a (modified) version of Marco's SQL sequence patch.Dries Buytaert2002-08-20
|
* - Bugfix: changed the PostgreSQL database scheme of the session field inDries Buytaert2002-08-18
| | | | the user table. Patch by jaa.
* - Renewed the PostgreSQL database scheme! Patch by jaa.Dries Buytaert2002-08-16
|
* - Made the rating module and its SQL table ASNI compliant. Patch by jaa.Dries Buytaert2002-08-16
|
* - removing cvs table definition.Kjartan Mannes2002-07-31
|
* - feed table should have not null defined for refresh and timestamp.Kjartan Mannes2002-07-31
|
* - Patch my Marco: "session in my users table is actually varchar(32), which ↵Dries Buytaert2002-07-13
| | | | 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."
* - fixed the markup of the collapsed comment view settings.Kjartan Mannes2002-06-15
| | | | | - updated update.php and database.mysql disable a few more modules by default. Without the config options in place to disable things this might confuse users.
* - Removed non-existing theme from both update.php and database.mysql. PatchDries Buytaert2002-06-08
| | | | by Marco.
* - Changed some "default NULL"s to "default NOT NULL"s as this only works onDries Buytaert2002-06-06
| | | | | | | | | | | | | | | | | | 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,
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - 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.
* - Ran the code through 'scripts/code-clean.sh': removed trailing whitespaceDries Buytaert2002-05-20
| | | | (and possibly tabs).
* - fixing a typoKjartan Mannes2002-05-16
|
* - Haven't re-implemented custom in the main tree. Oops.Kjartan Mannes2002-04-29
|
* - updating database.mysql definition.Kjartan Mannes2002-04-29
|
* Poll.module:Steven Wittens2002-04-21
| | | | Forgot to change a 'lid' into a 'nid'
* Updated poll.module:Steven Wittens2002-04-20
| | | | | - Removed obsolete lid column (changed update.php and database.mysql) - Added short help
* - Added Marco's long-awaited taxonmy module and patches - a replacementDries Buytaert2002-04-14
| | | | | | | | | | | | | | | | | | | 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!
* - added default value to enable user block to update.phpKjartan Mannes2002-01-27
| | | | | - did a new dump of the database from a clean upgrade as my local devel is a little infected with additional tables.
* - updating database/database.mysql again. Forgot to remove some contribKjartan Mannes2002-01-21
| | | | module tables.
* - moved user block from theme.inc to user.module.Kjartan Mannes2002-01-21
| | | | | | | | | | * only problem is that the admin.php link is not available until the admin enables the block. * $theme->user is obsolete, will patch the themes properly in a later patch. - moved moderation block from theme.inc to queue.module. * removed theme_moderation_results(). - updated database/database.mysql.
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - PEAR-ification of Drupal by claw: you can now host Drupal on a wideDries Buytaert2001-10-09
| | | | | | | range of databases including MySQL, PostgreSQL, MSSQL, and others. For additional information and an 'how to upgrade', check the mails sent to the mailing list.
* - Changed the authentication and login scheme as discussed on the mailingDries Buytaert2001-08-11
| | | | | | list. - Fixed the export function in book.module (patch my Julian). - Fixed the comment alignment (comments got truncated).
* database.mysqlKjartan Mannes2001-07-24
| | | | - Added link to the SQL definition.
* - Added blog.module to replace diary.module (contrubeted by Julian):Dries Buytaert2001-07-11
| | | | | | | | | | | | + feedback wanted - Added updated import.module (contributed by Julian): + user page do browse the headlines by feed and bundle, to display the item descriptions, etc. - Fixed small bug in common.inc. - Updated database.mysql
* - Updated database.mysqlDries Buytaert2001-07-08
|
* - Made it possible to enter longer username such as 'Gerhard K*llesreit'.Dries Buytaert2001-06-23
| | | | - Updated database.mysql.