- Oct 15, 2004
-
-
Dries Buytaert authored
- Patch #11577 by drumm: changed t('ago') -> t('%time ago', ...) to make it translatable in languages such as Spanish.
-
- Oct 06, 2004
-
-
Dries Buytaert authored
-
Dries Buytaert authored
-
Dries Buytaert authored
- Usability improvement: the 'recent posts' feature on the user pages lead to a page with a confusing (wrong) title so I shuffled things around a bit and tab-ified it as 'track'.
-
- Sep 16, 2004
-
-
Dries Buytaert authored
- Patch #8179 by JonBob: reintroduced menu caching.
-
- Aug 21, 2004
-
-
Dries Buytaert authored
- Patch by JonBob: for consistency and readability, add brief descriptions of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
-
- Aug 19, 2004
-
-
Dries Buytaert authored
- Code improvements by Stefan: use capital letters for header titles (and added some missing t() functions).
-
- Aug 06, 2004
-
-
Dries Buytaert authored
- Patch #9330: ucfirst() gives problem when used with multibyte charset. Replaced the use of ucfirst() with a CSS-based solution.
-
- Jul 31, 2004
-
-
Dries Buytaert authored
- Patch #9543 by JonBob: added node-level access control!
-
- Jul 25, 2004
-
-
Dries Buytaert authored
- Patch #9478 by JonBob: allow printf-style arguments in pager_query. Currently pager_query() is the black sheep of the database query family, because it does not allow for printf-style arguments to be inserted in the query. This is a problem because it introduces developer confusion when moving from an unpaged query to a paged one, and it encourages substitution of variables directly into the query, which can bypass our check_query() security feature. This patch adds this ability to pager_query(). The change is backwards-compatible, but a couple calls to the function in core have been changed to use the new capability.
-
- Jul 11, 2004
-
-
Dries Buytaert authored
- Patch by Matt: made it possible to alias an URL multiple times.
-
- Jul 08, 2004
-
-
Dries Buytaert authored
- Fixed colspan in tracker table. - Renamed '... your ...' to '... my ...' (cfr. 'my account).
-
Dries Buytaert authored
- Patch #9031 by Morbus: this last tracker patch was broken - for installations where the comment.module is turned on, $comments is never set to 0, and posts that have no comments instead get the value of the last successful comment_num_all. The attached patch corrects this ($comments is set to 0 before we do anything) and also merges the if statements.
-
- Jul 06, 2004
-
-
Dries Buytaert authored
- Patch #9031 by Ber: if the comment module is not available comment_num_all() should not be called.
-
- Jun 20, 2004
-
-
Dries Buytaert authored
-
- Jun 18, 2004
-
-
Dries Buytaert authored
Tabs patch! 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').
-
- May 24, 2004
-
-
Dries Buytaert authored
-
- Apr 21, 2004
-
-
Dries Buytaert authored
- Added support for 403 handling. Patch by JonBob. As a side benefit, 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.
-
- Apr 01, 2004
-
-
Dries Buytaert authored
-
- Mar 29, 2004
-
-
Dries Buytaert authored
- Tiny usability improvement for translators. Patch by Gerhard.
-
- Mar 21, 2004
-
-
Dries Buytaert authored
+ Updated the _user() hook's "$type == 'view'" case to match the "$type == 'edit'" case. That is, both have to return an associtive array of the format array('category' => 'fields'). + Updated the profile pages to group fields by category. Made possible thanks to the above change. + Moved logic out of the theme_ functions.
-
- Mar 20, 2004
-
-
Dries Buytaert authored
-
Dries Buytaert authored
- Tracker and forum module improvements! Note: the CSS of the tracker page has changed. Some CSS files still have to be updated.
-
- Mar 11, 2004
-
-
Dries Buytaert authored
- Rewrote the profile module: + 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.
-
- Feb 21, 2004
-
-
Kjartan Mannes authored
- Extended tracker comments to handle project issues.
-
- Feb 15, 2004
-
-
Dries Buytaert authored
- Patch by Steven: removed redundant permission checks. These are no longer required thanks to the new 404 handling.
-
- Feb 07, 2004
-
-
Dries Buytaert authored
- Patch #5501: fixed invalid HTML in the comment and tracker module.
-
- Jan 31, 2004
-
-
Dries Buytaert authored
- Fixed tracker bug: tracker module has a line of faulty code which tries to get the node name in the old way. Patch by JonBob.
-
- Dec 14, 2003
-
-
Dries Buytaert authored
- Fixed capitalization.
-
- Dec 08, 2003
-
-
Dries Buytaert authored
+ removes the lots of pagers and indirect pager themeing + add the theme_pager() function, which should be called as theme("pager", ...) to get a pager.
-
- Nov 25, 2003
-
-
Dries Buytaert authored
- Committed phase 4 of JonBob's menu system changes.
-
- Nov 23, 2003
-
-
Dries Buytaert authored
- Committed phase 3 of JonBob's menu changes. Adds an API for modules to define titles and breadcrumbs for their pages, and updates the theme system to display them.
-
- Nov 20, 2003
-
-
Dries Buytaert authored
- Patch by JonBob: Phase 2 of the menu system integration project. This unifies the interface used by admin and non-admin pages, and deprecates the _page hook in favor of explicit callbacks from menu(). Breadcrumbs, titles, and help text go away as a result of this patch; they will return in the phase 3 patch, printed by the theme.
-
- Nov 13, 2003
-
-
Dries Buytaert authored
- table(...) -> theme("table", ...)
-
- Nov 09, 2003
-
-
Dries Buytaert authored
- Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.
-
- Nov 08, 2003
-
-
Dries Buytaert authored
- Committed stage 1 of the menu callbacks improvements. Patch by Jonathan.
-
- Oct 09, 2003
-
-
Dries Buytaert authored
- Fixed some link titles that were no longer correct due to the menu changes. - Made sure that the link titles match the page titles.
-
Dries Buytaert authored
- Committed part 3 of Michael's help system improvements: removed the $help parameter from the menu() function.
-
- Oct 07, 2003
-
-
Dries Buytaert authored
- Help system improvements: eliminated the _system hook. Patch by Michael. - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
-
- Oct 03, 2003
-
-
Dries Buytaert authored
- Help improvements and translation improvements from Michael. Thanks!
-