summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - 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.
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - weblogs.module:Dries Buytaert2001-10-31
| | | | | + made it use the new node table scheme + added the site's slogan to the ping
* - added a logout link to the user menu.Kjartan Mannes2001-10-25
| | | | - fixed some untranslated strings in the user.module.
* - 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.
* - 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.
* - user.module should now return your user settings when you log in and notKjartan Mannes2001-10-18
| | | | just another log in box.
* - 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'.
* - 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
|
* - Quote string tables indexes (patch by Mike Krus).Dries Buytaert2001-10-14
|
* - 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
|
* - improved the node sortingDries Buytaert2001-10-11
|
* - added sequence tablesDries Buytaert2001-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 AxelDries Buytaert2001-10-09
|
* - 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.
* - fixed 2 bugs that where introduced by moving the index.php to node_page()Dries Buytaert2001-10-05
| | | | in node.module.
* - Improved search architecture derived from Axel's new search patches.Dries Buytaert2001-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().
* - a small module to notify or ping weblogs.comDries Buytaert2001-10-02
|
* - improved the tracker.module so that it shows all the recent commentsDries Buytaert2001-10-02
| | | | instead of all recent comments to recent nodes.
* - bugfix: renamed 'conf_default' to 'system_default'Dries Buytaert2001-10-01
|
* - fixed bug: 'account_perm()' should have been 'user_perm()'Dries Buytaert2001-09-30
|
* - replaced all 'header("Location: foo")'s by a call to 'drupal_goto()'Dries Buytaert2001-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" blockDries Buytaert2001-09-30
|
* - fixed a SQL bug in the "next / prev" code of book.moduleDries Buytaert2001-09-29
|
* - fixed small glitch in node_del()Dries Buytaert2001-09-28
| | | | | | | | | | | | | | | | | | | | | - fixed small glitch in comment_del() - changed the API of the form() function. The first parameter, the "action"-attribute in the <form>-tag has been made optional. By default, it will be set to "$REQUEST_URI". Why? Because in 98% of the cases we would do: global $REQUEST_URI; $form = form($REQUEST_URI, $form_content); while we can do: $form = form($form_content); now. Update your modules (and sorry for the inconvenience)!
* - bugfix: a permission was missing from the permission tableDries Buytaert2001-09-28
|
* - comment.inc:Dries Buytaert2001-09-28
| | | | | | | + when replying to a comment, the author's name was displayd as being 'anonymous'. - blog.module: + fixed the URLs of the links in the "latest blogs"-block.
* - bugfixDries Buytaert2001-09-28
|
* - a batch of updates, including some experimental changes to the moderationDries Buytaert2001-09-27
| | | | of comments and nodes.
* - book.module: fixed "/admin.php" bug reported by Gerhard.Dries Buytaert2001-09-27
| | | | - search.module: made the search categories translatable.
* - Enhancement: added better help and translations to node.module.Dries Buytaert2001-09-26
| | | | (patch by Alex)
* - fixed a HTML typo as reported by AlexanderDries Buytaert2001-09-26
|
* Bug fixes mostlyKjartan Mannes2001-09-26
| | | | | | | - fixed book.module not generating next/prev links properly - re-added default node options to the admin page - fixed a potential bug in node.php. Nodes with same titles were confusing it at times, should fix the bug reported by Gerhard Killesreiter.
* - added node_page() to list what index.php used to list.Kjartan Mannes2001-09-25
| | | | | - made the front page of the system configurable. Now any <node>_page() can be set as the default page. Default is node_page().
* - removed some death code that is no longer needed due to the factDries Buytaert2001-09-25
| | | | node_del() got updated.
* - bugfix #1: fixed the line that accidentically got cut off by incorrectlyDries Buytaert2001-09-25
| | | | | | | | | | | | | applying a patch. Mea culpa. (reported by Axel) - bugfix #2: incorrect deactivation of the delete link in node_links(). (patch by Axel) - improvement: added confirmation page upon deletion of a node ("Do you really want to delete this node?"), and removed the old and confusing "node has to be blocked first". (patch by Axel)
* - Fixed bug in forum.module: when you enable locales you were unableDries Buytaert2001-09-25
| | | | to create a new forum. (patch by Alexander)
* - Fixed translation bugs (reported by Alexander Schwartz)Dries Buytaert2001-09-24
|
* - fixed bug in poll.module (patch by alex)Dries Buytaert2001-09-23
|
* - improved search module (vaguely derived from axel's code)Dries Buytaert2001-09-22
|
* - fixed HTML/XHTML typosDries Buytaert2001-09-21
|
* - added a new tracker.module (everybody kept nagging about the missingDries Buytaert2001-09-20
| | | | | | | "your drupal" feature). Tracker.module will be improved and expanded during the process. - renamed a link in user.module
* - got rid of some unused warning / error messagesDries Buytaert2001-09-20
|