| Commit message (Collapse) | Author | Age |
|
|
|
| |
in Drupal unless you really need to!)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
| |
red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me.
|
|
|
|
| |
- Fixed bug in system.module.
|
|
|
|
| |
- Added missing t() function. Patch by Stefan.
|
|
|
|
| |
NOTE: some modules in the contributions repository might need to be updated.
|
|
|
|
| |
external ones with clean URLs. Patch by Ulf Rompe.
|
| |
|
|
|
|
| |
Moshe.
|
| |
|
| |
|
|
|
|
| |
of a node. Thanks David and Jeremy.
|
|
|
|
| |
snappier (performance improvement).
|
| |
|
|
|
|
|
|
| |
tables use the new table rendering functions.
- Usability improvement: a couple of strings could not be translated.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
|
|
|
|
|
| |
- module.inc:
+ added call to _init for all modules
- statistics.module:
+ added statistics_init()
+ moved all global actions into statistics_init()
|
|
|
|
| |
strings translatable.
|
|
|
|
|
|
| |
correctly.
Reported by Jeremy.
|
|
|
|
|
|
|
|
|
| |
+ 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().
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
"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.
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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".
|
|
|
|
| |
(Note that I still plan to include Jeremy's statistics module.)
|
| |
|
| |
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
| |
|
|
|
|
| |
update your user's permissions.
|
|
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ 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.
+ ...
|
|
|
|
| |
updated the node modules to support this.
|
|
|
|
| |
"referrers" (including the SQL table name). Thanks Greg.
|
| |
|
|
|
|
| |
information available on the mailing list.
|
|
|
|
| |
easier. Also changed the <? tag to <?php in some cases.
|