Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #39024 by Zen: comments that should be in the moderation queue get ↵ | Dries Buytaert | 2005-11-27 |
| | | | | published. | ||
* | - Patch #37798 by Neil: fixed problem with node settings. | Dries Buytaert | 2005-11-27 |
| | |||
* | - Patch #39013 by drumm: more logical naming of themeable functions | Dries Buytaert | 2005-11-27 |
| | |||
* | - Patch #37798 by Neil: allow non-workflow form elements on the node type ↵ | Dries Buytaert | 2005-11-25 |
| | | | | settings page. | ||
* | - Patch #38575 by Neil: fixed infinite loop in comment.module. | Dries Buytaert | 2005-11-23 |
| | |||
* | - Patch #38491 by Neil: refactor comment viewing controls to _execute model. | Dries Buytaert | 2005-11-22 |
| | |||
* | - Patch #35726 by asimmonds: post_process -> build_after | Dries Buytaert | 2005-11-22 |
| | |||
* | - Patch #35726 by asimmonds/chx: converted the comment module to the forms ↵ | Dries Buytaert | 2005-11-21 |
| | | | | API's _execute model. | ||
* | - Patch #34295 by assimonds: added missing defines to comment.module. Improves | Dries Buytaert | 2005-11-15 |
| | | | | readability of the code. | ||
* | - Patch #34295 by DrupalJapan and chx: | Dries Buytaert | 2005-11-13 |
| | | | | | + Fixed problem with configuration of comment display options. + Introduced defines for the various comment settings. | ||
* | - Add missing url()s around form actions (these would break without clean URLs) | Steven Wittens | 2005-11-13 |
| | |||
* | - Patch #35644 by webchick: forms API simplificiations. | Dries Buytaert | 2005-11-12 |
| | |||
* | - Patch #36727 by Goba: fixed incorrect use of drupal_goto(). | Dries Buytaert | 2005-11-08 |
| | |||
* | - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵ | Dries Buytaert | 2005-11-01 |
| | | | | help of core modules! / | ||
* | - #34645: Make $links in theme_comment consistent with theme_node (Stefan) | Steven Wittens | 2005-10-20 |
| | |||
* | - Typo | Steven Wittens | 2005-10-20 |
| | |||
* | - Code style | Steven Wittens | 2005-10-20 |
| | |||
* | - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes. | Dries Buytaert | 2005-10-11 |
| | |||
* | - Patch #33433 by chx: fixed a number of form API problems. | Dries Buytaert | 2005-10-08 |
| | | | | | | | | | | | * Default form value * Leftover debug function in form.inc * PHP5 issue with comment date (I got this patch from another issue) * Validation error fix (was calling legacy form validate) * Lots o' warnings on comment preview * Filter tips plus argument (gremlins. I swear this was not there.) * Message to clear what's going on with system settings * Non-freetagging taxonomies fixed | ||
* | - Patch #29465: new form API by Adrian et al. | Dries Buytaert | 2005-10-07 |
| | | | | | | | TODO: + The contact.module was broken; a new patch for contact.module is needed. + Documentation is needed. + The most important modules need to be updated ASAP. | ||
* | - Patch by chx: fixed validation check. | Dries Buytaert | 2005-10-01 |
| | |||
* | - Add some extra options. | Dries Buytaert | 2005-09-29 |
| | |||
* | - Patch #26031 by leafish_dylan: fixed comment pager (broken SQL query). | Dries Buytaert | 2005-09-27 |
| | |||
* | - Patch #28786 by Neil: moved pagers out of table. | Dries Buytaert | 2005-09-27 |
| | |||
* | - Patch #28786 by Neil: move pagers out of table. | Dries Buytaert | 2005-09-24 |
| | |||
* | Patch #19934 by Morbus, chx: conf_init() should strip out port numbers in ↵ | Dries Buytaert | 2005-09-19 |
| | | | | bootstrap.inc. | ||
* | - Patch #29866 by Florian, Uwe: made the recent comments block only show ↵ | Dries Buytaert | 2005-09-19 |
| | | | | comments on public nodes. | ||
* | - Patch #28420 by Jeremy: provide a more generic interface that can be used | Dries Buytaert | 2005-09-18 |
| | | | | | | | | to validate other form submissions, not just comments. Two new functions are introduced, form_token() and form_validate(). The first function uses a private key and a public key to set a token in a hidden field. The second function validates the token. The comment and contect module are updated to use these functions. | ||
* | - Patch #3986 by James (and Boris :)):consolidated all feed-related settings ↵ | Dries Buytaert | 2005-09-18 |
| | | | | | | | | | | | in one place. * adds a "feed settings" section to admin/settings where 2 new settings are introduced: * number of items per feed * default length of feed descriptions (title only, teaser, full) * patches all of core to obey the above - including the new aggregator (out) feeds * adds support for adding namespaces in _nodeapi('rss item') - which means things like iTunes RSS and yahoo's media rss can be implemented by the appropriate modules (i.e. audio.module) * includes some additional info in the default node feed - specifically the element (links directly to comments) - and dc:creator - to show node author information. | ||
* | - Patch #16140 by Gerhard: cure array_merge() warning due to invalide menu ↵ | Dries Buytaert | 2005-09-07 |
| | | | | callback. | ||
* | - Patch #7582 by Gerhard: improved node revisions! | Dries Buytaert | 2005-08-30 |
| | | | | | | | | | | All node revisions were stored in a serialized field in the node table and retrieved for _each_ page view although they are rarely needed. We created a separate revisions table which would be in principle identical to the node table, only that it could have several old copies of the same node. This also allows us to revision-related information, and to provide log entries to non-book pages when a new revision is being created. TODO: 1. Provide upgrade instructions for node module maintainers! 2. Upgrade modules that implement node types. 3. Provide an upgarde path for revisions. Dependency on the upgrade system. | ||
* | - Renamed 'user comments' to 'comment options' for consistency.' | Dries Buytaert | 2005-08-28 |
| | |||
* | - Patch #29385 by chx: no ?> add end of files. | Dries Buytaert | 2005-08-25 |
| | |||
* | - Patch #23620 by Robin: don't hard code forms into comment.module. Will be | Dries Buytaert | 2005-08-17 |
| | | | | depricated by form API patch though. Hopefully helps migration. | ||
* | - Patch #27737 by Gerhard: format_name($object) -> theme('username', $object). | Dries Buytaert | 2005-08-01 |
| | | | | | | Usernames can now be themed; eg. an icon/avatar could be added. TODO: update contributed modules + update the migration docs. | ||
* | - #27551: Rename check_output() to check_markup(). Needs contrib updates! | Steven Wittens | 2005-07-29 |
| | |||
* | - #27624, #27614, #27627: dead code | Steven Wittens | 2005-07-29 |
| | |||
* | - #25285: Use correct permission for node form comment admin | Steven Wittens | 2005-07-25 |
| | |||
* | - Fixed typo reported by Stefan: theem -> theme | Dries Buytaert | 2005-07-20 |
| | |||
* | - Modified patch #18656 by Moshe: unifies the admin comment form and the ↵ | Dries Buytaert | 2005-07-19 |
| | | | | | | usual comment form, similar to what we did for nodes. This resulted lots of duplicate code removal. Also gave administrators the ability to change the author and timestamp of a comment. Also removed comment links from the bottom of the comment preview box (as we did for nodes) Modifications: fixed breadcrumbs, tidied up delete confirmation page to be consistent with node deletions.. | ||
* | - Patch #25634 by chx: simplified node_load(). | Dries Buytaert | 2005-07-17 |
| | |||
* | - Removed tab. | Dries Buytaert | 2005-07-05 |
| | |||
* | - Fixed problems with filter formats and problem with XML-RPC server. | Dries Buytaert | 2005-06-29 |
| | |||
* | - Patch #25603 by Stefan: made the sizes of forms consistent. | Dries Buytaert | 2005-06-27 |
| | | | | TODO: document the defaults in the PHPdoc comments. | ||
* | - Patch #16204 by Thox: committed the collapsible form elements patch. | Dries Buytaert | 2005-06-21 |
| | | | | | | NOTE: this patch works well, but the improved node edit form still has some rough edges. It is important that we continue to improve usability. Give it a try. | ||
* | - #23285: Allow theming of comment previews, like node previews. | Steven Wittens | 2005-05-22 |
| | |||
* | - Patch #22804 by Cvbge: fixed typo in documentation. | Dries Buytaert | 2005-05-14 |
| | |||
* | - Patch #21221 by Robert: make status values in comment.module defined ↵ | Dries Buytaert | 2005-05-05 |
| | | | | constants for readability. | ||
* | - Patch 20910 by chx: centralize print theme page. | Dries Buytaert | 2005-04-24 |
| | |||
* | - Modified patch #18215 by ankur: make sure the comment statistics update ↵ | Dries Buytaert | 2005-04-08 |
| | | | | after approval in the moderation queue. |