summaryrefslogtreecommitdiff
path: root/modules/statistics.module
Commit message (Collapse)AuthorAge
* - Fixed log views so that the menu doesn't dissapear. (Note: don't use exit()Kjartan Mannes2003-03-09
| | | | in Drupal unless you really need to!)
* - Fixed some typos spotted by Al Maw.Dries Buytaert2003-02-25
|
* - New menu houskeeping. Prototyped by Zbynek.Dries Buytaert2003-02-20
| | | | | | | | | | | | | | | | The following modules need updating: * glossary module * feed module (Breyten's version) * mailhandler module * notify module * project module * smileys module * admin module * style module * taxonomy_dhtml module To avoid unexpected problems menu_add() is deprecated (it will print an error message when used) and menu() should be used instead.
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. RequiDries Buytaert2003-02-09
| | | | red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me.
* - Applied Moshe's _exit patch (slightly modified).Dries Buytaert2003-01-26
| | | | - Fixed bug in system.module.
* - Tidied up XHTML. Patch by Ulf.Dries Buytaert2003-01-23
| | | | - Added missing t() function. Patch by Stefan.
* - Applied Ori's format_plural() patch; see mailing list for details.Dries Buytaert2003-01-21
| | | | NOTE: some modules in the contributions repository might need to be updated.
* - Bugfix: statistics.module can't give referrer statistics other than theDries Buytaert2003-01-16
| | | | external ones with clean URLs. Patch by Ulf Rompe.
* - Ported David's taxonomy patch to Drupal CVS.Dries Buytaert2003-01-09
|
* - Fixed access log update bug introduced during clean URL commit. Patch byDries Buytaert2003-01-07
| | | | Moshe.
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - Made a database query ASNI compliant. Patch by Ax.Dries Buytaert2003-01-05
|
* - The statistics module would sometimes mistake a non-node ID with thatDries Buytaert2003-01-04
| | | | of a node. Thanks David and Jeremy.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Small improvement to the links.Dries Buytaert2002-12-30
|
* - Usability improvement: made the access log, referrer logs and popular postDries Buytaert2002-12-29
| | | | | | tables use the new table rendering functions. - Usability improvement: a couple of strings could not be translated.
* - Some small cosmetic changes.Dries Buytaert2002-12-26
|
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - The statistics module's blocks showed unpublished nodes. Patch by Ax.Dries Buytaert2002-12-10
|
* * Applied slightly modified version of Marco's taxonomy patch:Dries Buytaert2002-12-02
| | | | | | | | | | | | | | | | | - Fixed a bug with get_tree and multiple parents. - Fixed 3 wrong caches (this will avoid some queries). - Extension to taxonomy_term_count_nodes() (feature #159): "currently calling taxonomy_term_count_nodes() returns the amount of nodes in each term, would it be possible to extend this function so that it would only return the amount of nodes of a certain type under each term. - Confirm deleting a vocabulary or a term (requested by Moshe). - Use form_weight() in vocabulary and term forms. - After submitting a term, we end up at the term page (requested by Moshe). - Added status messages when adding, editing and deleting vocabularies and terms - Minor clean ups * Made sure all modules use the same link delimiter; "|" for now.
* - Patch by Jeremy to fix a module loading bug:Dries Buytaert2002-11-29
| | | | | | | | | - module.inc: + added call to _init for all modules - statistics.module: + added statistics_init() + moved all global actions into statistics_init()
* - Applied Jeremy's statistics module patch: made most (if not all) of theDries Buytaert2002-11-28
| | | | strings translatable.
* - Fixed the statistics block titles such that the username is displayed ↵Dries Buytaert2002-11-26
| | | | | | correctly. Reported by Jeremy.
* - Applied Jeremy's statistics module patches:Dries Buytaert2002-11-26
| | | | | | | | | + Fixed "recent users" title/timestamps. + Added statistics_node_delete() function. - Applied Jeremy's node module patches: + Added call to statistics_node_delete(). + Fixed call to taxonomy_node_delete().
* Applied Moshe's patches:Dries Buytaert2002-11-11
| | | | | | | | | | | | - Adds more title info to each line in the block: now showing author and number of comments in a unified way accross all modules. - Added pager support to blog module. - Blog module now uses standard node view, not its own hack which is more theme friendly (http://www.drupal.org/node.php?id=133). - Blog module now uses node_feed() function for making RSS feeds. since all feeds are now consolidated, a couple tweaks to node_feed() and format_rss_* would lead us to support new RSS formats easily. - Fixed bugs where unpublished entries were displayed.
* - Made sure $content is initialized. Patch by James.Dries Buytaert2002-11-09
|
* * Added Jeremy's pager:Dries Buytaert2002-11-09
| | | | | | | | | | | | | | | | | | | | | | | "This is a simple, generic pager for Drupal-CVS. It is designed to be easily themeable and expandable. The code is highly-commented to enhance readability." "Pagers are constructed by combining the provided pieces (all of which can be easily modified to display the text or image you prefer) into your custom pager." * Statistics module fixes by Jeremy: - removed superfluous check for existence of watchdog() - saving changes in admin page displays status and returns same page - no longer return 1971/01/01 in "view statistics" table - switched from "!=" to "<>" in SQL queries for ANSI-SQL compliance - switched from "MAX(timestamp) as timestamp" to "MAX(timestamp) as max_timestamp" moving towards ANSI-SQL compliance. * Added a "theme_item_list" function to format itemized lists. Also changed a couple of modules to take advantage of it. Makes for a more consistent UI.
* Patch by Jeremy:Dries Buytaert2002-11-06
| | | | | | | | | | | | - addressed one of Ax's issues: > = there are quite some "$output .= " which should be "$output > = " > (whenever $output hasn't been initialized before) - combined a few lines that could be accomplished in one step - changed "!" to "." in comment "This site is currently sustaining..." as if a low number, it looks silly.
* - Applied Stefan's locale patches.Dries Buytaert2002-10-29
|
* - Made sure we switching using $delta. Thanks Marco and Gerhard.Dries Buytaert2002-10-29
|
* - Fixing blocks for forum, queue and statistics.Kjartan Mannes2002-10-28
|
* - Removed my superfluous check.Dries Buytaert2002-10-24
|
* - Fixed bug reported by Ax.Dries Buytaert2002-10-21
|
* - Committed Jeremy's incarnation of the statistics module. Last minutesDries Buytaert2002-10-13
| | | | | | | | | | | | | | | changes include: * a couple of coding style changes, renamed some "stats" into "statistics", etc. * removed the "Who's online" block from the user module. * added db_affected_rows() to the resp. database abstraction layers and made the statistics module use db_affected_rows() instead. * added update logic to "update.php".
* - Fixed a "<br />". Patch by Remco.Dries Buytaert2002-10-09
| | | | (Note that I still plan to include Jeremy's statistics module.)
* - Fixed statistics module.Dries Buytaert2002-08-22
|
* - Replaced MySQL-ism by its ANSI SQL counterpart. Patch by jaa.Dries Buytaert2002-08-19
|
* - improved module descriptions.Kjartan Mannes2002-06-08
| | | | | | | - removed admin options for queue and comment module if the modules are not loaded. - nodes are now auto promoted when queue module isn't enabled. - moderation result block is now visible by the node author.
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
* - fixing spaces in url. Bug #192Kjartan Mannes2002-05-21
|
* - Renamed "settings and filters" to "site configuration": you might have toDries Buytaert2002-04-28
| | | | update your user's permissions.
* - bug fixes:Kjartan Mannes2002-04-22
| | | | | | | | | | * fixed mails not being parsed properly. * tracker now shows user name when you view your own recent comments. * link to submission queue now points to the right place. * fixed jabber module. * theme is now activated when changed. - applied Gerhards coding style patch.
* - Applied Marco's big patch, including contributions from Moshe:Dries Buytaert2002-04-20
| | | | | | | | | | | | | | | | | | | | | | + Changed the db_query() API. + Wrapped all links in l(), lm(), la(), ..., drupal_url() functions. + XHTML-ified some HTML. + Wrapped a lot of text in the administrative pages in a t() function. + Replaced all $REQUEST_URI/$PATH_INFOs by request_uri(). + Small bugfixes (eg. bug in book_export_html() and clean-ups (eg. RSS code). + Fixed some bugs in the taxonomy module (eg. tree making bug), added new functionality (eg. new APIs for use by other modules), included Moshe's taxonomy extensions, and some documentation udpates. + ...
* - Added a "queue for moderation"-toggle to a node's admin form andDries Buytaert2001-12-09
| | | | updated the node modules to support this.
* - Included the new documentation and renamed all "referer"s toDries Buytaert2001-12-09
| | | | "referrers" (including the SQL table name). Thanks Greg.
* - Tiny improvement to the order of the results.Dries Buytaert2001-12-02
|
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - added the CVS keyword $Id$ to all files to make future version trackingKjartan Mannes2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.