summaryrefslogtreecommitdiff
path: root/database
Commit message (Collapse)AuthorAge
* - 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.
* Oops, a rather large commit:Dries Buytaert2001-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Changed meta.module, node.module and index.php to use comma-seperated lists of attributes rather then "foo=a,bar=b" lists. This makes it a a lot easier to use both modules. In addition, error handling can be discarded as it can't be made any simpler, really ... It fits rather nicely in Drupal's design so I'm getting more and more happy with this meta.module (but we are not 100% there yet). - node.module, node.inc: + Improved the node-related admin interface so that navigating back and forth the administrative menus is made both easier and faster. + Removed some redundant database fields from the node table. See 2.00-to-x.xx.sql! + Added 2 news hooks called "node_insert" and "node_update". Just like this is the case with the existing hook "node_delete" these new hooks will automatically get called when a node has been inserted or udpated. Note that this is an optional call-back that only needs to be implemented when required. With the addition of these two hooks, the node mechanism (version 1) is pretty well completed. - watchdog.module: + Fixed bug whit the 'regular messages' query in the watchdog.module. - book.module: + Fixed bug in book.module: the 'parent' was not set properly when updating a book page. + Made it so that older versions of a book page are automatically reactived upon deletion of the most recent version, i.e. when doing a version roll-back. - comment.inc: + Undid Remco's patch to comment.inc; it does not work in some cases. - conf.module: + Fine-tuned some of the options in conf.module a bit. - marvin.theme: + Visual changes to make it look better on Windows browsers. Mind to give some feedback on this? + Fixed 3 HTML typos/bugs. + XHTML-ified the theme at a best effort basis; I didn't carry the XHTML specification with me. + Made use of the theme_slogan variable to display the site's slogan. + As soon we have at least one valid XHTML theme we can wonder on how to integrate other XML namespaces (cfr. MathML story at drop.org). - database.mysql: + Updated database.mysql so that it contains all the latest "database patches".
* CHANGESDries Buytaert2001-05-20
| | | | | | | | | | | | | | | | | | | | | | - Redid settings.module and even renamed it to conf.module. * Settings are now grouped in basic categories like "system settings", "module settings" and "filters". * Added new settings to make Drupal easier to configure and to make some aspects like the watchdog scale better. - Renamed includes/settings.php to includes/conf.php. - Added filter support to conf.module and introduced filter hooks so modules can implement and export new filters. Example filters are an HTML filter (implemented), a profanity filter, an url converter, ASCII smileys to images filter and so on ... - Reworked the check_* functions: user contributed content/input is only verified and filtered once in its lifespan. NOTES - Altough this is a large commit, no database changes are required.
* Added poll.module, a poll module :)Steven Wittens2001-05-19
| | | | | | It's mainly intended as a sideblock-element as there's no real use in having them show up on the mainpage. There's no real poll-browsing system for now either. I still need to write documentation, and I'm not yet satisfied with the node-output (non-sideblock). I should be able to improve it once the $theme->nodebox ideas get finalized.
* - Removed the "history"-field from the SQL table "users" and addedDries Buytaert2001-05-16
| | | | | | | | | | | | | | this information to the "users"-field in both nodes and comments. This database/table change reduces the number of SQL queries and makes Drupal scale better where a lot of voting/moderation takes place. Last but not least it can be considered a new and better foundation for future moderation metrics / algorithms. In other words: it is plain better. --> oops, all voting/moderation results will be lost! --> requires database update, see "2.00-to-x.xx.sql"! - Updated database/database.mysql
* I've restored it to its previous condition... apparently the database.mysql ↵Steven Wittens2001-05-14
| | | | is terribly outdated (didn't know this), so we should probably just wait till the final release to update it.
* Hmmm the "promote" column was missing...Steven Wittens2001-05-14
|
* - Addition: made it so that comments can be enabled/disabled onDries Buytaert2001-04-19
| | | | | | | | | | | | | | | | | a node per node basis, rather then on a category per category basis. The default settings for each individual category can be changed though. Example: it can be setup so that - by default - all stories posted to the category "article" will have comments enabled but stories submitted to "announcement" not. Different configuration schemes can easily be added later. Requires a SQL update, see 2.00-to-x.xx.sql/database.mysql. - Addition: made submit.php only use categories that users can actually submit new content to.
* Another big update so please read this carefully because there is important ↵Dries Buytaert2001-04-16
| | | | | | | | | | | | | | | | information hidden in it. Made it so that we can disable/enable comments on a category by category basis. In order to accomplish this I had to make a few (*temporary*) changes. I moved all comment code from the "module level" (eg. story.module) to the "node level". It was nothing but the logical next step in nodifying drupal. This enables us to add comments to all existing content types including book entries. But also for book entries, this to can be toggled on and off. :-) Moreover module writers don't have to worry about the complex comment logic: it is "abstracted" away. This implies that story.module got smaller, faster and easier to comprehend. :-) In order to accomplish this, I had to update ALL THEMES, which I did - and on my way I updated Goofy, Oranzh and UnConeD - with the previous changes. All themes are up-to-date now! I also had to remove the [ reply to this story ] links, and temporally re-introcuded the "Add comment" button in the "Comment control". Tempora lly that is, UnConeD. ;) I plan to upgrade drop.org either tommorow or wednesday so test away if you have some time to kill. ;) Oh, I also fixed a few bugs and made various small improvements.
* - updated database.mysql fileDries Buytaert2001-04-16
|
* - removed redundant tablesDries Buytaert2001-04-07
|
* - improved rating module: it now shows some basic statistics :-)Dries Buytaert2001-04-07
| | | | | | - updated database files - removed affialiate-site and drupal-site module: maintain them by hand through a box for now will you.
* - fixed bug in common.inc: throttle()Dries Buytaert2001-04-07
| | | | | | | - streamlined method invocation in node.inc - added node_status() function to modules - added NEW (mostly static) page module - added NEW settings module
* A lot of small changes (search-n-replace) make a big commit:Dries Buytaert2001-04-06
| | | | | | | | | | - fixed update bug in book.module - provide a log message when both adding and updating book pages - all configurable variables are now accessed through "variable_get()": - rewrote watchdog and submission throttle and removed watchdog.inc - improved robustness of sections.inc - imporved story.module - updated ./database/database.sql
* - added a new faq module with administration interfaceDries Buytaert2001-03-03
|
* - added comment index for performance sakeDries Buytaert2001-02-27
| | | | | | | - improved comment module - code revision - improved backend module - moreover headlines now work - (automatically) stripped tabs and trailing whitespaces from Jeroen's theme.
* - added fine-grained user permission system which allows us to giveDries Buytaert2001-02-18
| | | | | | | | | certain users access to specific administration sections only. Ex. a FAQ maintainer can only edit the FAQ, and members of an "editorial board" can only edit comments, diaries and stories, .. - code review => rewrote include/user.inc which is much easier now - fixed 4 small bugs
* - More updates on the translation supportDries Buytaert2001-02-17
|