summaryrefslogtreecommitdiff
path: root/modules/tracker
Commit message (Collapse)AuthorAge
...
* - Patch by Matt: made it possible to alias an URL multiple times.Dries Buytaert2004-07-11
|
* - Fixed colspan in tracker table.Dries Buytaert2004-07-08
| | | | - Renamed '... your ...' to '... my ...' (cfr. 'my account).
* - Patch #9031 by Morbus: this last tracker patch was broken - for ↵Dries Buytaert2004-07-08
| | | | 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.
* - Patch #9031 by Ber: if the comment module is not available comment_num_all()Dries Buytaert2004-07-06
| | | | should not be called.
* - Patch #8681 by stefan: fixed some broken URLs and help texts.Dries Buytaert2004-06-20
|
* 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').
* - More code improvements by JonBob.Dries Buytaert2004-05-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.
* - Remove redundant line. Patch by killes.Dries Buytaert2004-04-01
|
* - Tiny usability improvement for translators. Patch by Gerhard.Dries Buytaert2004-03-29
|
* - More profile module improvements:Dries Buytaert2004-03-21
| | | | | | | | | | | + 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.
* Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.Dries Buytaert2004-03-20
|
* - Tracker and forum module improvements!Dries Buytaert2004-03-20
| | | | | Note: the CSS of the tracker page has changed. Some CSS files still have to be updated.
* - 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.
* - Coding style fixes.Kjartan Mannes2004-02-21
| | | | - Extended tracker comments to handle project issues.
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Patch #5501: fixed invalid HTML in the comment and tracker module.Dries Buytaert2004-02-07
|
* - Fixed tracker bug: tracker module has a line of faulty code which triesDries Buytaert2004-01-31
| | | | to get the node name in the old way. Patch by JonBob.
* - Fixed capitalization.Dries Buytaert2003-12-14
|
* - Improvements by Goba:Dries Buytaert2003-12-08
| | | | | | + 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.
* - Committed phase 4 of JonBob's menu system changes.Dries Buytaert2003-11-25
|
* - Committed phase 3 of JonBob's menu changes. Adds an API for modules toDries Buytaert2003-11-23
| | | | | define titles and breadcrumbs for their pages, and updates the theme system to display them.
* - Patch by JonBob:Dries Buytaert2003-11-20
| | | | | | | | 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.
* - table(...) -> theme("table", ...)Dries Buytaert2003-11-13
|
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Committed stage 1 of the menu callbacks improvements. Patch by Jonathan.Dries Buytaert2003-11-08
|
* - Fixed some link titles that were no longer correct due to the menu changes.Dries Buytaert2003-10-09
| | | | - Made sure that the link titles match the page titles.
* - Committed part 3 of Michael's help system improvements: removed the $helpDries Buytaert2003-10-09
| | | | parameter from the menu() function.
* - Help system improvements: eliminated the _system hook. Patch by Michael.Dries Buytaert2003-10-07
| | | | | | - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
* - Help improvements and translation improvements from Michael. Thanks!Dries Buytaert2003-10-03
|
* - Url aliasing improvements. Patch by Matt. See mailing list for moreDries Buytaert2003-09-30
| | | | information.
* - Associate a callback with the menu links! (This callback is not yet beingDries Buytaert2003-09-28
| | | | | | | | | called but will be as soon the remaining links have been transformed to use the menu system.) - Made sure the menu does not render links with no callback and no children. Like this, the 'create content' link is not being shown when the user has no permission to add any content.
* - Committed Al's new admin link texts. Remarks:Dries Buytaert2003-09-27
| | | | | | | 1) As explained by Al, there is still a glitch with the 'create content' menu. 2) The user module part of the patch did not apply due to Kjartan's earlier patch.
* - Committed the admin menu integration patch. Thanks Adrian, Stefan and others.Dries Buytaert2003-09-26
|
* - Gerhard's uid 0 patches. These patches bring various performanceDries Buytaert2003-09-09
| | | | improvements. Requires a database update.
* - Fixed the tracker author sort. Patch by Moshe.Dries Buytaert2003-09-06
|
* Patches from Moshe:Dries Buytaert2003-08-25
| | | | | | | | - Tracker module: adds a missing call to tablesort_pager(). - Tablesort: + add 'title' attributes + let arbitrary querystring params flow through to pager links + removed ugly border around the arrow
* - Applied Moshe's tablesort patch! Note that I changed the arrow imagesDries Buytaert2003-08-21
| | | | because those of Moshe where not identical.
* - Updated the tracker module to the new help system scheme.Dries Buytaert2003-08-20
|
* - Bugfix: changed 'INNER JOIN' back to 'LEFT JOIN'.Dries Buytaert2003-08-15
|
* - Commited the URL aliasing patch. Thanks Matt.Dries Buytaert2003-07-16
| | | | This update requires you to run update.php!
* - Changed some INNER JOINs back to LEFT JOINs. Patch by Gerhard. Not testedDries Buytaert2003-07-16
| | | | by me.
* - Performance improvement: changed a fair amount of "left joins" to "innerDries Buytaert2003-07-12
| | | | joins". Patch by Gerhard.
* - Committed a slightly modified version of Slavica's table prefix patch.Dries Buytaert2003-07-10
|
* - Made the tracker module link to your own posts. Patch 79 from Gerhard.Dries Buytaert2003-07-09
| | | | | | - Added a permalink to the Xtemplate theme. Requested by Scott. - Added pager support to the locale module.
* - Made it easier to translate some text on the tracker page. Patch #71 byDries Buytaert2003-07-08
| | | | Stefan.
* - Bugfix: made request_uri() rewrite ( and ) with their entity equivalentsDries Buytaert2003-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to avoid XSS attacks! Patch by Al, Moshe, Marco, Kjartan and me. - Bugfix: the admin module does now import drupal.css prior to admin.css. Patch by me. - Bugfix: the admin module was still emitting a <base href=""> tag. I removed this as it is been taken care of by theme_head(); Patch by me. - Bugfix: made the tracker module's pager only consider published pages. Patch by Moshe. - Bugfix: cured some typos in the comment module's help function. Patch by Marco. - Bugfix: fixed a typo in the pager_display() that caused optional attributes to be discarded. - Bugfix: made the Xtemplate emit empty boxes like any other theme does. Patch by Al. - Bugfix: fixed broken link on the statistics module's log page. Reported by Kjartan. - CSS improvements: made the HTML output emitted by the tracker module look nicer. Patch by Moshe and Al. - CSS improvements: added CSS classes for form elements. Patch by Al. - CSS improvements: added a vertical gap between the last form item and the submit button. Patch by Al. Note that Opera 6 is not picking up this CSS but apparently others browsers such as Konqueror do. - Xtemplate improvements: changed the color of the selected day in the archive module's calendar. Patch by Al. - Usability improvements: made the "birthday" field of the profile module look nicer. Patch by Al. ------ - TODO: it might be a good idea to emit the following meta tag in the theme_head() function: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> Currently, some themes (and modules!) emit this while others don't. This would also make it possible to change the charset site-wide. - TODO: now we added support for td.dark and td.light to drupal.css, maybe it can be removed from admin.css as well as xtemplate.css?
* - Applied Michael Caerwyn's "%s -> %d" patch.Dries Buytaert2003-05-07
| | | | - Changed all occurences of '%d' to %d as suggested on the mailing list.
* - Fixed typo.Dries Buytaert2003-05-02
|
* - Fixed critical bug #1539; incorrect use of pager_query().Dries Buytaert2003-05-02
|