summaryrefslogtreecommitdiff
path: root/database
Commit message (Collapse)AuthorAge
* - Patch #9983 by Stefan: various code style improvements.Dries Buytaert2004-08-12
|
* *bangs head against wall*Steven Wittens2004-08-12
|
* Moving all legacy handlers into legacy.module.Steven Wittens2004-08-12
|
* - New locale module thanks to Gerhard, Goba, Marco, Kristjan and others.Dries Buytaert2004-08-11
| | | | | | The new locale module provides every functionality on the web interface, so you don't need to edit the configuration files or add columns, when you add a new language. This module is an integration of the old locale and localegettext modules, plus a bunch of logic to parse Gettext Portable Object files (opposed to Machine Object files, as supported by localegettext). Note: I made some minor changes to the context-sensitive help texts and to some of the status messages.
* The Input formats - filter patch has landed. I still need to make update ↵Steven Wittens2004-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instructions for modules and update the hook docs. Here's an overview of the changes: 1) Multiple Input formats: they are complete filter configurations (what filters to use, in what order and with which settings). Input formats are admin-definable, and usage of them is role-dependant. For example, you can set it up so that regular users can only use limited HTML, while admins can free HTML without any tag limitations. The input format can be chosen per content item (nodes, comments, blocks, ...) when you add/edit them. If only a single format is available, there is no choice, and nothing changes with before. The default install (and the upgrade) contains a basic set of formats which should satisfy the average user's needs. 2) Filters have toggles Because now you might want to enable a filter only on some input formats, an explicit toggle is provided by the filter system. Modules do not need to worry about it and filters that still have their own on/off switch should get rid of it. 3) Multiple filters per module This was necessary to accomodate the next change, and it's also a logical extension of the filter system. 4) Embedded PHP is now a filter Thanks to the multiple input formats, I was able to move the 'embedded PHP' feature from block.module, page.module and book.module into a simple filter which executes PHP code. This filter is part of filter.module, and by default there is an input format 'PHP', restricted to the administrator only, which contains this filter. This change means that block.module now passes custom block contents through the filter system. As well as from reducing code duplication and avoiding two type selectors for page/book nodes, you can now combine PHP code with other filters. 5) User-supplied PHP code now requires <?php ?> tags. This is required for teasers to work with PHP code. Because PHP evaluation is now just another step in the filter process, we can't do this. Also, because teasers are generated before filtering, this would result in errors when the teaser generation would cut off a piece of PHP code. Also, regular PHP syntax explicitly includes the <?php ?> tags for PHP files, so it makes sense to use the same convention for embedded PHP in Drupal. 6) Filter caching was added. Benchmarking shows that even for a simple setup (basic html filtering + legacy URL rewriting), filtercache can offer speedups. Unlike the old filtercache, this uses the normal cache table. 7) Filtertips were moved from help into a hook_filter_tips(). This was required to accomodate the fact that there are multiple filters per module, and that filter settings are format dependant. Shoehorning filter tips into _help was ugly and silly. The display of the filter tips is done through the input format selector, so filter_tips_short() no longer exists. 8) A more intelligent linebreak convertor was added, which doesn't stop working if you use block-level tags and which adds <p> tags.
* - Adding an update to convert old taxonomy URL aliases to new ones.Steven Wittens2004-08-07
|
* Added an upgrade path for old URL aliases to node/view, book/view and ↵Steven Wittens2004-08-06
| | | | user/view. This is amongst other things required for old node aliases to appear in the node form.
* - Patch #9330: ucfirst() gives problem when used with multibyte charset.Dries Buytaert2004-08-06
| | | | Replaced the use of ucfirst() with a CSS-based solution.
* #9810: PostgreSQL updates by Adrian.Steven Wittens2004-08-06
|
* - Patch #9740 by Bart: added missing {} for table prefixing.Dries Buytaert2004-08-04
|
* - Patch #7336 by TDobes: in various parts of Drupal, we use the title ↵Dries Buytaert2004-08-03
| | | | attribute for links to provide a slightly more detailed explanation as to the purpose of a link or where it goes.
* - Patch by Jeremy: statistics module improvements.Dries Buytaert2004-08-03
|
* - Patch #9654 by Bart: since the $category paramater was added to user_save,Dries Buytaert2004-07-31
| | | | update 80 (moving the profile fields to their own tables) no longer works.
* - Patch by Matt: fixed small typo.Dries Buytaert2004-07-31
|
* - Patch #9543 by JonBob: added node-level access control!Dries Buytaert2004-07-31
|
* - #7295: Fixing issue with latest comments being incorrectly displayed on ↵Steven Wittens2004-07-22
| | | | PostgreSQL
* - Fixing static -> sticky update so it works for node types with underscores ↵Steven Wittens2004-07-21
| | | | in the name.
* - RDF is not RSS so removing that for now.Dries Buytaert2004-07-12
|
* - 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 by Matt: made it possible to alias an URL multiple times.Dries Buytaert2004-07-11
|
* - Fixes small warningDries Buytaert2004-07-10
|
* - Patch #8509 by Killes and Steven: added support for sending compressedDries Buytaert2004-07-08
| | | | pages. Useful to reduce your site's bandwidth.
* - Added missing homepage column to the comments table in the PostgreSQL scheme.Dries Buytaert2004-07-07
|
* - Patch #8585 by Junyor: sort blog items by creation date. Added some ↵Dries Buytaert2004-06-30
| | | | database indices.
* I refactored quite a bit of the user.module:Dries Buytaert2004-06-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $ diffstat user.patch database/database.mysql | 4 database/database.pgsql | 2 database/updates.inc | 10 - modules/block.module | 20 +- modules/locale.module | 9 modules/profile.module | 108 +++++++---- modules/system.module | 8 modules/user.module | 456 +++++++++++++++++++----------------------------- 8 files changed, 289 insertions(+), 328 deletions(-) More functionality, less code. Here is a list of the changes: - Some user API changes: + When $type is 'form', you have to return an associative array of groups. In turn, each group is an array with a 'title', 'data' and 'weight'. + A new $type has been added, namely 'categories'. User settings can be organized in categories. Categories can be sorted, as can the groups within a category. (Ordering 'categories' is somewhat broken due to a bug in the menu system.) - The 'my account > edit' page will use subtabs for each 'category'. Read: you can break down the account settings into multiple subpages. - Profile module improvements: + Added support for private fields to the profile module! + Improved workflow of profile administration pages. + Improved the form descriptions. - Code improvements: + Unified user_edit() and user_admin_edit(). + Unified and cleaned up the validation code. Fixed some validation glitches too.
* - Patch #7696 by TDobes: renamed 'static' to 'sticky' which is a moreDries Buytaert2004-06-19
| | | | logical name. Requires a database upgrade.
* Tabs patch!Dries Buytaert2004-06-18
| | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
* Patch #7938 by moshe: menu -> {menu}Dries Buytaert2004-05-22
|
* - Patch #7614 by jhriggs: fixed some role related problems.Dries Buytaert2004-05-19
|
* - 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.
* - Return to avoid warning message.Dries Buytaert2004-05-13
|
* - Added support for multiple user roles. Patch by Jim Hriggs.Dries Buytaert2004-05-10
|
* - Patch #7498 by nereocystis: PostgreSQL updates for HEADDries Buytaert2004-05-03
|
* - Various aggregator module improvements. Modified patch by drumm.Dries Buytaert2004-04-27
|
* - Patch #6009 by Matthias: reworked the help texts of the taxonomy module ↵Dries Buytaert2004-04-24
| | | | generated forms. The help text can now be customized.
* - Patch #7286 by LiDave: improved filter table indices. I updated ↵Dries Buytaert2004-04-24
| | | | database/updates.inc as well.
* - 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.
* - Patch #7121 by Adrian: added missing PostgreSQL update function.Dries Buytaert2004-04-13
|
* - Profile module improvement:Dries Buytaert2004-03-27
| | | | | | | | * Made it possible to set certain fields as 'required'. To do: * Mark them as required visually. * Add required fields to the subscription page.
* - Profile module improvements: added a URL-type field to the profile module.Dries Buytaert2004-03-21
| | | | | We can use this for the 'URL of homepage' field on drupal.org. URL fields are rendered as links and are being validated.
* - Profile module improvements:Dries Buytaert2004-03-20
| | | | | | | | + Made it possible to define the page title of the user listing pages. + Used form_group()s for the profile administration page. + Fixed bug in database/updates.inc.
* - Fix #6393 by TDobes: fixed users table after. It was not updated properly ↵Dries Buytaert2004-03-12
| | | | after the recent profile module changes.
* - 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.
* - Removed the MSSQL port as discussed with Moshe.Dries Buytaert2004-03-06
|
* - Patch by Gerhard: move the updates to database/updates.inc so packagingDries Buytaert2004-02-25
| | | | systems can by-pass update.php.
* - Patch 6012 by Adrian: syncs the PostgreSQL port with the current state of ↵Dries Buytaert2004-02-23
| | | | | | | | HEAD, and adds a user notice to add the throttle and bootstrap columns to the system table manually, else update.php will not run. The message includes the SQL statements required for both MySQL and PostgreSQL.
* - Updating update_start value.Kjartan Mannes2004-02-21
|
* - Cleaning up database definition.Kjartan Mannes2004-02-21
|
* - Patch by Killes: drop the 'attributes' field from the 'users' table. ItDries Buytaert2004-02-21
| | | | is no longer used.
* - Added the possibility to reorder filters. Patch by UnConeD.Dries Buytaert2004-02-06
|