summaryrefslogtreecommitdiff
path: root/CHANGELOG.txt
Commit message (Collapse)AuthorAge
* - Setting the version number to '4.5.0 RC'.Dries Buytaert2004-10-09
|
* - Added a note about PostgreSQL no longer depending on PEAR.Dries Buytaert2004-10-04
|
* - Drupal does not fully support PHP5 yet.Dries Buytaert2004-09-30
|
* - Added small note about PHP5 compatibility.Dries Buytaert2004-09-27
|
* - Reworded an item for clarify.Dries Buytaert2004-09-21
|
* - Added a note about the forum module performance improvements.Dries Buytaert2004-09-16
|
* Adding a note to CHANGELOG about the template system changes.Steven Wittens2004-08-20
|
* - Small change to the wording of the 'note'.Dries Buytaert2004-08-18
|
* Adding a note about the locale.module to CHANGELOG.Steven Wittens2004-08-17
|
* - Updated the CHANGELOG.txt.Dries Buytaert2004-08-17
|
* Added note about filter patch.Steven Wittens2004-08-10
|
* Added a note about the use of drupal_goto()/redirects.Steven Wittens2004-08-10
|
* Clarifying the comment.module change a bit.Steven Wittens2004-08-10
|
* - Patch #9543 by JonBob: added node-level access control!Dries Buytaert2004-07-31
|
* - Patch #5347 by JonBob:Dries Buytaert2004-07-30
| | | | | | | | | | | | | | | | | | | | | Here's a new patch that unifies the node/52 and book/view/52 paths for nodes. It involves a small change to hook_view(), which is discussed first: Currently hook_view() expects node modules to return a themed node. However, each module does this the same way; they modify $node as necessary, then call theme('node', $node) and return the result. We can refactor this so that the calling function node_view() calls theme('node') instead. By doing this, it becomes possible for hook_nodeapi('view') to be called after hook_view() where the node contents are filtered, and before theme('node') where the body is enclosed in other HTML. This way the book module can insert its navigation into the body right before the theming. Advantages of this refactoring: - I can use it for book.module to remove the extra viewing path. - The function of hook_nodeapi('view') becomes more like hook_view(), as neither will expect a return value. - We more closely follow the flow of other nodeapi calls, which usually directly follow their corresponding specific node type hooks (instead of preceding them). - The attachment.module people could use it to append their attachments in a list after the node. - Gabor could use it instead of his filter perversion for his "articles in a series" module. - A little less code in each view hook. - The content hook is no longer needed, so that means even less code. Disadvantages: - Any modules written to use nodeapi('view') could be affected (but these would all be post-4.4 modules). - Implementations of hook_view() would need to be updated (but return values would be ignored, so most would work without updates anyway). Now the patch takes advantage of this API shift to inject its navigation at the end of all book nodes, regardless of the viewing path. In fact, since the paths become identical, I've removed the book/view handler entirely. We should probably provide an .htaccess rewrite for this (one is still needed for node/view/nn anyway). At the same time, there is a check in book_block() that shows the block appropriately on these pages.
* Fixing the date for 4.4.1 in Changelog ;).Steven Wittens2004-07-21
|
* - Added URL aliases for 'index.rdf' and 'rss.xml'. Google, Feedster andDries Buytaert2004-07-11
| | | | | possibly other crawlers try fetching these frequently as can be seen from the watchdog logs. Made possible by the recent path module change.
* - Patch #8509 by Killes and Steven: added support for sending compressedDries Buytaert2004-07-08
| | | | pages. Useful to reduce your site's bandwidth.
* - Changed the way status messages are printed as per Kristjan's suggestion:Dries Buytaert2004-07-08
| | | | | | | | | | http://drupal.org/files/issues/error_messages_list.png (issue #9138). drupal_set_message() has been changed to group message by type and a helper function, theme_status_message(), is added to display the messages. Chameleon and Xtemplate have been updated to use this new function. - Updated CHANGELOG.txt.
* - Patch #8382 by jseng/junyor: allows autodiscovery of BloggerAPI via RSD.Dries Buytaert2004-07-06
|
* - Updated CHANGELOG.txtDries Buytaert2004-07-04
|
* - More updatesDries Buytaert2004-06-27
|
* - Patch #8670 by asimmonds: more spelling fixes.Dries Buytaert2004-06-21
|
* - Patch #8681 by asimmonds: more help text updatesDries Buytaert2004-06-21
|
* - Added a note about the tabs.Dries Buytaert2004-06-19
|
* - Patch #7350 by Mathias: return part a taxonomy tree to a user-definedDries Buytaert2004-05-31
| | | | | | depth/level. - Updated CHANGELOG.txt.
* - Made it possible for anonymous users to leave their name, e-mail addressDries Buytaert2004-05-18
| | | | and the URL of their homepage. Patch by Pablo.
* - Made the recent news items page, the source pages and the categorizationDries Buytaert2004-05-13
| | | | | pages use pagers. Removed the 'Items per page' setting and made Drupal remember news items much longer.
* - Added support for multiple user roles. Patch by Jim Hriggs.Dries Buytaert2004-05-10
|
* - Patch #7581 by bylund: made the archive module's calendar accessible.Dries Buytaert2004-05-05
|
* - Updated the CHANGELOGDries Buytaert2004-05-01
|
* - Patch by Adrian: added support for multiple database connections.Dries Buytaert2004-04-30
|
* - Patch #6791: mark required fields. Modified patch by Michelangelo.Dries Buytaert2004-04-24
|
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-04-21
| | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
* - Patch by JonBob/Jonathan: reworked the menu system so that menus areDries Buytaert2004-04-15
| | | | | | | | | | | | configurable! Menu items can be disabled, repositioned, added and so on. Upgrading to requires you to run update.php. This functionality depricates some of the 'navigation modules' in the contributions repository. Furthermore, modules can now 'suggest' menu items and site adminstrators can choose to enable them. Modules in the contributions repository should try to take advantage of this.
* Added 4.4 release date.Steven Wittens2004-04-07
|
* - Rewrote the profile module:Dries Buytaert2004-03-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added a 'created' field to the users table and renamed the 'timestamp' fied to 'changed' (cfr. node table). Update.php will try to determine a 'created' timestamp for existing users. + The profile module no longer uses serialized data but has its own set of tables. Known existing profile data is migrated by these new tables. TODO: migrate the birthday field. + The profile fields can be grouped, and within each group, profile fields can be sorted using weights. + The profile pages can be themed. + The profiles can be browsed based on certain properties/settings. + Change the _user hook: (i) 'private_view' and 'public_view' are merged into 'view' as there are no private fields and (ii) 'edit_form' has been renamed to 'edit'. + Avatar handling has been refactored and is now part of the user module. The users table has a dedicted 'picture' field. + Simplified the way themes should use display/visualize pictures or avatars. + Made it possible for administrators to replace or delete avatars. + ... I hope this make for a good base to build on collectively.
* - Set the version number.Dries Buytaert2004-03-01
|
* - We have a new theme.Dries Buytaert2004-02-23
|
* - Patch 5592 by Goba: let drupal_map_assoc() rule. :-)Dries Buytaert2004-02-15
- Renamed CHANGELOG to CHANGELOG.txt for Windows uses.