Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - added the CVS keyword $Id$ to all files to make future version tracking | natrak | 2001-10-20 |
| | | | | easier. Also changed the <? tag to <?php in some cases. | ||
* | - added the CVS keyword $Id$ to all files to make future version tracking | Kjartan Mannes | 2001-10-20 |
| | | | | easier. Also changed the <? tag to <?php in some cases. | ||
* | - fixed an SQL error | natrak | 2001-10-20 |
| | |||
* | - Updated example.theme: it's being reduced to a minimum as it can inherit | Dries Buytaert | 2001-10-20 |
| | | | | most/all of its functions from the BaseTheme. | ||
* | - Started a theme.inc clean-up. | Dries Buytaert | 2001-10-20 |
| | |||
* | - fixed a problem with node retrival if several nodes had the same title but ↵ | natrak | 2001-10-20 |
| | | | | | | only one was posted and the rest expired/dumped/queued. | ||
* | - modified the variable code so you can override site settings in the config ↵ | Kjartan Mannes | 2001-10-20 |
| | | | | | | | | | | | file by setting them in a $conf variable. This will let you host several domains off the same Drupal installation with the same databases with minor differences in settings. Note: the values can not be changed by users in a GET or POST string. | ||
* | - modified the variable code so you can override site settings in the config ↵ | natrak | 2001-10-20 |
| | | | | | | | | | | | file by setting them in a $conf variable. This will let you host several domains off the same Drupal installation with the same databases with minor differences in settings. Note: the values can not be changed by users in a GET or POST string. | ||
* | - user.module should now return your user settings when you log in and not | Kjartan Mannes | 2001-10-18 |
| | | | | just another log in box. | ||
* | - fixed a SQL typo in node.php: user --> users | Dries Buytaert | 2001-10-17 |
| | | | | - added SQL table keys for the node types | ||
* | - Added a *cool* new Perl script by Alexander. You can use this script | Dries Buytaert | 2001-10-16 |
| | | | | | | | to check your code against the Drupal coding style: "This program tries to show as many improvements as possible with no false positives." | ||
* | - Removed a node's link ID (lid) as discussed on the mailing list. See | Dries Buytaert | 2001-10-16 |
| | | | | | | | | | | | | | | 'updates/3.00-to.x.xx.mysql' for the required MySQL updates. - Renamed some "author" fields to "uid" fields for sake of consistency. - Fixed the coding style of some PHP files. - Fixed the moderation queue (fairly untested though). - Re-introduced the temporary SQL table in _node_get(). - Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'. | ||
* | - blocks will now show up again if 'Enabled: always' | Kjartan Mannes | 2001-10-16 |
| | |||
* | - Renamed the SQL update files to be more consistent with the database | Dries Buytaert | 2001-10-15 |
| | | | | | definitions in the ./database/ directory. And like that we can also start adding .pgsql update files ... | ||
* | - Tidied up the script names a bit ... | Dries Buytaert | 2001-10-15 |
| | |||
* | - removed this script, it is too simple to be true ... | Dries Buytaert | 2001-10-15 |
| | |||
* | - Fixed the script's extention. | Dries Buytaert | 2001-10-15 |
| | |||
* | - Fixed the script's extention: it's a shell script, not a Perl script. | Dries Buytaert | 2001-10-15 |
| | |||
* | - I tidied up most SQL tables to be more consistent with the rest of the | Dries Buytaert | 2001-10-14 |
| | | | | | | | tables: I changed all "id"s to "xid"s where "x" is the first letter of the table name. I also renamed all remaining "userid"s to "uid"s as I mentioned I would do. Take a look at ./drupal/updates/3.00-to-x.xx.sql for the MySQL updates. | ||
* | - Small improvement: quoted all strings when used as an array index. | Dries Buytaert | 2001-10-14 |
| | |||
* | - Small improvement to db_query() to make debuging queries a bit more easy. | Dries Buytaert | 2001-10-14 |
| | |||
* | - Quote string tables indexes (patch by Mike Krus). | Dries Buytaert | 2001-10-14 |
| | |||
* | - Pass theme objects by reference, avoids creating copies and lets called | Dries Buytaert | 2001-10-14 |
| | | | | functions to store data in the theme (patch by Mike Krus). | ||
* | - translate the link (patch by Mike Krus). | Dries Buytaert | 2001-10-14 |
| | |||
* | - Fixed the remaining SQL problems when running MySQL in ANSI mode. | Dries Buytaert | 2001-10-13 |
| | | | | (moderation/comment related) | ||
* | - fixed 4 SQL queries to use ANSI SQL instead: '||' --> 'OR' | Dries Buytaert | 2001-10-12 |
| | |||
* | - fixed a small typo: "hour" --> "hours" | Dries Buytaert | 2001-10-12 |
| | |||
* | - replaced a header("Location: xxx") by a drupal_goto() | Dries Buytaert | 2001-10-12 |
| | |||
* | - added a few missing rollback()'s and corrected a typo | Dries Buytaert | 2001-10-12 |
| | |||
* | - improved the node sorting | Dries Buytaert | 2001-10-11 |
| | |||
* | - added sequence tables | Dries Buytaert | 2001-10-11 |
| | | | | | | | | - fixed bug in node_page() - fixed bug in db_result() - fixed rss glitch | ||
* | - fixed problem with language setting not being saved: patch by Axel | Dries Buytaert | 2001-10-09 |
| | |||
* | - PEAR-ification of Drupal by claw: you can now host Drupal on a wide | Dries Buytaert | 2001-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. | ||
* | - added a comment() function to the base theme: you don't have to overload | Dries Buytaert | 2001-10-07 |
| | | | | | | | it in your custom themes - moved 'theme_account()' to the base theme as '$theme->user()' so that it can be themed. | ||
* | - Added a new theme! | Dries Buytaert | 2001-10-07 |
| | |||
* | - Moved theme 'jeroen' and 'yaroon' to drupal-contrib. | Dries Buytaert | 2001-10-06 |
| | |||
* | - fixed 2 bugs that where introduced by moving the index.php to node_page() | Dries Buytaert | 2001-10-05 |
| | | | | in node.module. | ||
* | - Improved search architecture derived from Axel's new search patches. | Dries Buytaert | 2001-10-03 |
| | | | | | | | (There is room for improvement so let's go from these ... and build on them.) - Removed some $status's by calls to node_status(). | ||
* | - tidied up some "$status"-es and removed "$rstatus". | Dries Buytaert | 2001-10-02 |
| | |||
* | - updated the CHANGELOG | Dries Buytaert | 2001-10-02 |
| | |||
* | - a small module to notify or ping weblogs.com | Dries Buytaert | 2001-10-02 |
| | |||
* | - improved the tracker.module so that it shows all the recent comments | Dries Buytaert | 2001-10-02 |
| | | | | instead of all recent comments to recent nodes. | ||
* | - bugfix: renamed 'conf_default' to 'system_default' | Dries Buytaert | 2001-10-01 |
| | |||
* | - small improvement to 'drupal_goto()' | Dries Buytaert | 2001-09-30 |
| | |||
* | - fixed bug: 'account_perm()' should have been 'user_perm()' | Dries Buytaert | 2001-09-30 |
| | |||
* | - small bugfix in drupal_goto | Dries Buytaert | 2001-09-30 |
| | |||
* | - typo | Dries Buytaert | 2001-09-30 |
| | |||
* | - replaced all 'header("Location: foo")'s by a call to 'drupal_goto()' | Dries Buytaert | 2001-09-30 |
| | | | | | which will append the session ID to the uri 'foo' when PHP is compiled with '--enable-transe-sid'. | ||
* | - small improvement to the "user blogs" block | Dries Buytaert | 2001-09-30 |
| | |||
* | - small update | Dries Buytaert | 2001-09-29 |
| |