summaryrefslogtreecommitdiff
path: root/modules/statistics
Commit message (Collapse)AuthorAge
...
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Patch #5111 by Bart: fixed inconsistent default values.Dries Buytaert2004-02-15
|
* - Patch 5592 by Goba: let drupal_map_assoc() rule. :-)Dries Buytaert2004-02-15
| | | | - Renamed CHANGELOG to CHANGELOG.txt for Windows uses.
* - Patch #5766 by Moshe: replace getenv() with $_SERVER.Dries Buytaert2004-02-10
|
* - Patch #5567 by Goba: fixed t() functions, cleanup of locale module's help,Dries Buytaert2004-02-01
| | | | fixed translation issues in taxonomy module, etc.
* Patch 5287 by Stefan: multiline help texts should become inside a single ↵Dries Buytaert2004-01-23
| | | | $output.
* - Patch #5021: clean up URLs in _help texts. Patch by UnConeD.Dries Buytaert2004-01-11
|
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Updated the calls to menu() to use MENU_HIDE instead of 1Dries Buytaert2003-12-17
|
* - Show the top nodes on admin/statistics. Patch by James Walker.Dries Buytaert2003-12-10
|
* - 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.
* - Patch 185 by Ax: fixed undefined variables, synchronized xtemplate with ↵Dries Buytaert2003-12-04
| | | | sf, etc.
* - Better separation between throttle and statistics module code. Patch by ↵Dries Buytaert2003-11-30
| | | | Jeremy.
* - More throttle improvements. Patch by Jeremy.Dries Buytaert2003-11-29
|
* - Fixed incompatibility between the pager and statistics moduleDries Buytaert2003-11-27
|
* Patch by Jeremy:Dries Buytaert2003-11-27
| | | | | | | | - removed statistics_init() -- auto-throttle logic moved to statistics_exit() - renamed internal-only update_throttle() to _update_throttle() - removed some odd white spaces - fixed 'Popular content' block's subtitles to actually display
* Statistics module patch by Jeremy:Dries Buytaert2003-11-26
| | | | | | | | | | | - removed custom user-page configuration - added user-page configuration as group into statistics_settings() - inlined logic to display user-page within statistics_page() - changed references of "top content" to "most popular content" - updated help to reflect recent changes - removed references to title/subtitle text configuration - properly load _settings data for popular content block - fix admin pages to display referrers and top nodes (don't return...)
* - Improved usability of the statistics module's setting page. Patch byDries Buytaert2003-11-25
| | | | Jeremy.
* Statistics module improvements by Jeremy:Dries Buytaert2003-11-25
| | | | | | - Remove custom configuration of "admin/system/block/top nodes block". - Three remaining configuration options moved to "admin/system/modules/statistics". - Move simple logic to display block within statistics_block().
* - Moved the "Who's online" block from the statistics module to the user moduleDries Buytaert2003-11-25
| | | | | as the code no longer relies on the statistics module. In addition, some code has been simplified and other bits have been removed. Patch by Jeremy.
* - 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.
* - Performance improvement: changed a LEFT JOIN to an INNER JOIN. Patch #157Dries Buytaert2003-11-19
| | | | by Gerhard.
* - table(...) -> theme("table", ...)Dries Buytaert2003-11-13
|
* - Added missing break statements. Patch by Chris. Fixes bug 4055.Dries Buytaert2003-11-11
|
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Usability improvement: replaced many selection boxes by radio buttons.Dries Buytaert2003-11-07
| | | | Patch by Stefan.
* - Bugfix: fixed usernames being shown in the "Who is online" block afterDries Buytaert2003-10-28
| | | | | | | | | you logged out. Patch by Jeremy. - Bugfix: fixed the authmap table in the MSSQL scheme. Patch by Moshe. - Bugfix: properly themes some error messages in the user module. Patch by Moshe.
* - Bugfix: set the timestamp of the node counters. Patch by Moshe.Dries Buytaert2003-10-23
|
* - Bugfix: renamed the 'statistics' table to 'node_counter' as 'statistics' isDries Buytaert2003-10-22
| | | | | | | | a reserved SQL keyword. Required for both PostgreSQL and MSSQL. Patch by Adrian. - Bugfix: renamed the 'path' table to 'url_alias' as 'path' is a reserved SQL keyword. Required for both PostgreSQL and MSSQL. Patch by Adrian.
* Patch by Moshe:Dries Buytaert2003-10-17
| | | | | | | | | | | | | - comment.module: fixed an ambigous 'timestamp' query - forum.module: prev/next links no longer excerpt from the title+body in their title attribute. they now excerpt from only their title. this is more consistent with rest of drupal, and GROUP BY on node.body which isn't appreciated by MSSQL. also replaced some '' with NULL which caused errors in MSSQL - statistics.module: replaced a USING join with a standard ON join. USING is not as widely supported, and functionally equivalent.
* - Bugfix: in the access log, the "post" column shows "n/a" for every lineDries Buytaert2003-10-13
| | | | regardless of whether a node is involved. Patch by Jonathan.
* - Fixed translation bugs with statistics module. Patch by Gabor.Dries Buytaert2003-10-12
| | | | | | - Removed 'homepage' field from user table. Patch by Gabor. - Added 'real name' field to the profile module. Patch by Gabor.
* - Fixed some link titles that were no longer correct due to the menuDries Buytaert2003-10-09
| | | | | | changes. - Fixed some broken links.
* - 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.
* - Translation fix: made the 'Who is online' block 100% translatable.Dries Buytaert2003-10-04
|
* - 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.
* - Block module fixes. Patch by Kjartan.Dries Buytaert2003-09-28
|
* - Made sure all menu items can be translated. Path by Goba.Dries Buytaert2003-09-28
|
* - 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
|
* - Fixed problem introduced by partial integration of the administration pages.Dries Buytaert2003-09-20
|
* - Committed a partial administration page integration patch.Dries Buytaert2003-09-19
|
* - Gerhard's uid 0 patches. These patches bring various performanceDries Buytaert2003-09-09
| | | | improvements. Requires a database update.
* - Fixing a broken query when tracking by host.Kjartan Mannes2003-08-31
|
* - Made the statistics module use the new help system. Patch by Michael.Dries Buytaert2003-08-25
| | | | - Increased the number of nodes shown on the admin top nodes page.
* Implemented more suggestions by Keith:Dries Buytaert2003-08-22
| | | | | | | | | | | | | | - Made sure the 'Topic' title is only shown above the topics, not the icons. - Automatically shorten the username when it is too long. I implemented this as part of format_name() and could therefore nuke some code in the statistics module. This is change is somewhat experimental and I'm willing to revert or change this if a number of people aren't too happy with this behavior. - Left align the dates and authors: makes it easier/faster to scan. - Made the little tablesort arrows clickable.