summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Made the node forms support "help texts": it is not possible to configureDries Buytaert2001-11-03
| | | | | | | | | | | | | | | | | | | | | | | Drupal to display submission guidelines, or any other kind of explanation such as "NO TEST POSTS", for example. - Added node versioning: it is possible to create revisions, to view old revisions and to roll-back to older revisions. You'll need to apply a SQL update. I'm going to work on the book module now, so I might be changing a few things to enable collaborative, moderated revisions - but feel free to send some first feedback, if you like. - Added some configuration options which can be used to set the minimum number of words a blog/story should consist of. Hopefully this will be usefull to stop the (almost empty) test blogs. - Various improvements: + Fine-tuned new node permission system. + Fine-tuned the functions in node.inc. + Fine-tuned some forms. + XHTML-ified some code.
* - Added error handling support to the <node>_form hook.Dries Buytaert2001-11-01
|
* - Changed the Druplicon logo (courtesey of UnConeD)Dries Buytaert2001-11-01
|
* - Another batch of updates/improvements:Dries Buytaert2001-11-01
| | | | | | | | | | | | | | | + introduced basic node permissions ("create", "delete", "update" and "view") at the node level: it's up to the "<$node->type>_module" to hide gory details (if any). + made the "blog it"-feature in the blog and import module work with the new node system, in specific with the new centralized forms. + made it possible to update blogs. + made the page module work with the new node system. + various smaller improvements.
* - Added first, preliminary version of mail-to-sql to CVS.Dries Buytaert2001-11-01
|
* - remamed the logoDries Buytaert2001-11-01
|
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - We'll no longer need submit.php: it is going to be replaced by functionsDries Buytaert2001-10-31
| | | | in the new node.module.
* - weblogs.module:Dries Buytaert2001-10-31
| | | | | + made it use the new node table scheme + added the site's slogan to the ping
* - Made some improvements/updates to the database abstraction layer.Dries Buytaert2001-10-31
|
* - added a logout link to the user menu.Kjartan Mannes2001-10-25
| | | | - fixed some untranslated strings in the user.module.
* - Updated the CHANGELOG; added a few notes about Drupal 3.0.1Dries Buytaert2001-10-23
|
* - small update to the INSTALL fileDries Buytaert2001-10-23
|
* - Added an ini_set(...) to conf.php to solve history/cache browsing issuesDries Buytaert2001-10-23
| | | | on some Drupal/PHP installations.
* - Updated the coding style checker. (patch by Alex)Dries Buytaert2001-10-23
|
* - added a path field to the blocks. Its a regexp to define which pages younatrak2001-10-22
| | | | | | | want the blocks to show up on. - updated the help. - did some XMLification. - SQL update script has a new table collumn which needs to be applied.
* - added a path field to the blocks. Its a regexp to define which pages youKjartan Mannes2001-10-22
| | | | | | | want the blocks to show up on. - updated the help. - did some XMLification. - SQL update script has a new table collumn which needs to be applied.
* - added a new configuration option that lets you set various index.phpKjartan Mannes2001-10-20
| | | | | | | | | | | variables. Example: set site_frontpage to "node" and site_frontpage_extra to "$meta = 'news'" and only nodes with that meta tag will be displayed on your main page. This requires some internal knowledge of how the various modules work and what settings can be passed to <module>_page() functions.
* - missed a file in my last large $id$ commit.Kjartan Mannes2001-10-20
|
* - updated CHANGELOG.Kjartan Mannes2001-10-20
|
* - added the CVS keyword $Id$ to all files to make future version trackingnatrak2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - added the CVS keyword $Id$ to all files to make future version trackingKjartan Mannes2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - fixed an SQL errornatrak2001-10-20
|
* - Updated example.theme: it's being reduced to a minimum as it can inheritDries Buytaert2001-10-20
| | | | most/all of its functions from the BaseTheme.
* - Started a theme.inc clean-up.Dries Buytaert2001-10-20
|
* - fixed a problem with node retrival if several nodes had the same title but ↵natrak2001-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 Mannes2001-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 ↵natrak2001-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 notKjartan Mannes2001-10-18
| | | | just another log in box.
* - fixed a SQL typo in node.php: user --> usersDries Buytaert2001-10-17
| | | | - added SQL table keys for the node types
* - Added a *cool* new Perl script by Alexander. You can use this scriptDries Buytaert2001-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. SeeDries Buytaert2001-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 Mannes2001-10-16
|
* - Renamed the SQL update files to be more consistent with the databaseDries Buytaert2001-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 Buytaert2001-10-15
|
* - removed this script, it is too simple to be true ...Dries Buytaert2001-10-15
|
* - Fixed the script's extention.Dries Buytaert2001-10-15
|
* - Fixed the script's extention: it's a shell script, not a Perl script.Dries Buytaert2001-10-15
|
* - I tidied up most SQL tables to be more consistent with the rest of theDries Buytaert2001-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 Buytaert2001-10-14
|
* - Small improvement to db_query() to make debuging queries a bit more easy.Dries Buytaert2001-10-14
|
* - Quote string tables indexes (patch by Mike Krus).Dries Buytaert2001-10-14
|
* - Pass theme objects by reference, avoids creating copies and lets calledDries Buytaert2001-10-14
| | | | functions to store data in the theme (patch by Mike Krus).
* - translate the link (patch by Mike Krus).Dries Buytaert2001-10-14
|
* - Fixed the remaining SQL problems when running MySQL in ANSI mode.Dries Buytaert2001-10-13
| | | | (moderation/comment related)
* - fixed 4 SQL queries to use ANSI SQL instead: '||' --> 'OR'Dries Buytaert2001-10-12
|
* - fixed a small typo: "hour" --> "hours"Dries Buytaert2001-10-12
|
* - replaced a header("Location: xxx") by a drupal_goto()Dries Buytaert2001-10-12
|
* - added a few missing rollback()'s and corrected a typoDries Buytaert2001-10-12
|
* - improved the node sortingDries Buytaert2001-10-11
|