summaryrefslogtreecommitdiff
path: root/modules/node.module
Commit message (Collapse)AuthorAge
* - #17870: Add preview CSS class to node preview (drumm)Steven Wittens2005-02-27
|
* - Patch #17687 by Gerhard: removed some cruft.Dries Buytaert2005-02-21
|
* - Fixing broken search after sql rewrite patchesSteven Wittens2005-02-19
| | | | - Minor code style fixes.
* - Patch #16558 by JonBob: improved performance of node access checks.Dries Buytaert2005-02-18
|
* - Fixed broken colspan. Reported by asimmonds.Dries Buytaert2005-02-14
|
* - Fixed broken colspan.Dries Buytaert2005-02-11
|
* - Patch #16960 by Goba: fixed content type options.Dries Buytaert2005-02-10
|
* - Patch #16246 by Moshe: "Here is a patch for node.module since thta hunk ↵Dries Buytaert2005-02-10
| | | | failed last time. Note that I've removed the 'delete' link since it doesn't work and is mostly obsolete with the 'mass delete' feature. I've also added smart destination andling to the 'url alias delete' feature."
* - Fixing broken drupal_goto() after node submission on PHP5.Steven Wittens2005-02-04
|
* - PHP5 fix due object references: node previewing should not put node output ↵Steven Wittens2005-02-04
| | | | into form.
* - Fix warning due to old session variable.Steven Wittens2005-02-02
|
* #10296: Clean up admin - content:Steven Wittens2005-02-02
| | | | | | | | - Mass-delete functionality (with confirmation) - Flexible filtering for the overview table based on status, type and taxonomy. - Missing drupal_goto's - Clean up watchdog messages - Remove some dead code
* - Patch #16513 by James (slightly modified): export categories and ↵Dries Buytaert2005-02-01
| | | | | | enclosures to RSS feeds (and made RSS feeds extensible). NOTE: this needs to be documented.
* - Patch #16111 by chx: fixed some bugs in the db_rewrite_sql() code.Dries Buytaert2005-01-31
|
* - Patch #16253 by Goba: incremental improvements to the new content markers.Dries Buytaert2005-01-30
| | | | Goba: it would be nice if one of the core themes would showcase this functionality. ;-)
* - Patch #16111 by chx: generalized node_rewrite_query to db_rewrite_query.Dries Buytaert2005-01-29
|
* - Patch #6025 by Jeremy: avoid data to get lost when two users are editing a ↵Dries Buytaert2005-01-27
| | | | node at the same time.
* - Patch #16192 by Neil: moved the submission guidelines found in forum, ↵Dries Buytaert2005-01-26
| | | | story, and blog and the minimum number of words found in story and blog (blog had a slight bug) into the node module.
* - Modified patch #14170 by Neil: improved default workflow (default node ↵Dries Buytaert2005-01-24
| | | | | | type) configuration page. Modified the patch to remove some redundant code, to translate strings, and to better use the menu system.
* - I had to modify chx's patch/change because it did not work with PHP5. ↵Dries Buytaert2005-01-23
| | | | Please double-check.
* - Patch #16026 by chx: fixed node-level permissions.Dries Buytaert2005-01-23
|
* Documenting a tricky regexp.Steven Wittens2005-01-22
|
* - Another code style fix.Steven Wittens2005-01-19
|
* - Fix tracker pager count query being wrong (it did not return a count but a ↵Steven Wittens2005-01-19
| | | | | | set, and it counted nodes with more than 1 comment as multiple nodes). - Clean up various SQL queries: removing literally inserted data (db_escape_string is evil!), fixing single "%" which should be "%%", fixing integers being compared as strings.
* - #15500: Fix tracker not showing nodes without comments.Steven Wittens2005-01-19
| | | | - Tiny code style fix
* - The real code fixes ;)Steven Wittens2005-01-17
|
* - Reversing bad commit, sorry everyone.Steven Wittens2005-01-17
|
* - Various code style fixesSteven Wittens2005-01-17
|
* - Patch #14731 by chx: made it possible to rewrite node queries.Dries Buytaert2005-01-16
|
* - Make the search settings page more user-friendly.Steven Wittens2005-01-11
|
* - Fixing a couple of watchdog() calls.Steven Wittens2005-01-09
|
* - Patch #13260 by UnConeD: watchdog module improvements.Dries Buytaert2005-01-09
| | | | | | | | | | We added a 'severity' column to watchdog(): watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link); * Specify a severity in case you are reporting a warning or error. * The $link-parameter is now the fourth parameter instead of the third. TODO: document this in the upgrade guide.
* - Patch #14917 by UnConeD/Steven:Dries Buytaert2004-12-31
| | | | | | | | 1) The different types of search, which used to be radio button options in the search form, are now subtabs of "search" (default "search/node"). This seems better from a UI point of view, but also has another advantage: modules which implement a custom search form (flexinode, project) can add it as a subtab of search. This means that all search forms will be located in the same place, and also without needing an extra api call to search.module. 2) The current code was a bit hackish, as the indexing of comments along with nodes was hardcoded in node.module. Instead, I created a nodeapi operation "update index" which allows modules to add more data for a node that is being indexed. Comments are now indexed using this mechanism and from comment.module, which is a lot cleaner. 3) The search results format was also hardcoded to include "N comments". I replaced this with a nodeapi operation "search result" and moved the comment code to comment.module where it belongs. This op is quite useful, as for example I also modified upload.module to add "N attachments" to a search result if any are present.
* - Patch #6308 by gordon: allow node_submit() to be used by external interfaces.Dries Buytaert2004-12-26
|
* #11548: node.module - Ensure that only valid fields are savedSteven Wittens2004-12-24
|
* - Patch #14709 by matteo: added missing call to the nodeapi's 'view' hook.Dries Buytaert2004-12-23
|
* #12793: Remove dependency of node.module on search.module.Steven Wittens2004-12-20
|
* - Patch #13907 by Neil: less ways to set the page title.Dries Buytaert2004-12-15
| | | | | | | * Less logic in theme code. * Encourages use of the menu system. * Easier to find where a title or breadcrumb comes from in other people's code because there are less places to look. Look in menu and then grep for the appropriate set function. Looking for calls to theme_page() is hard because there are too many of them. * Very slightly more efficient.
* - Removed some cruft: left-over xxx_help_page() functions.Dries Buytaert2004-12-11
|
* - Refactored the queue module: removed the queue module's field from the ↵Dries Buytaert2004-12-07
| | | | | | | | | | node table. With help from Gerhard. - Slight addition to INSTALL.txt with regard to PHP versions. - Updated/reworded some node type descriptions as per Boris' suggestions. - Adding missing {} around a table name in update.php.
* Search: indexing should invoke nodeapi to catch all user-visible data (e.g. ↵Steven Wittens2004-12-02
| | | | file attachment names).
* - Patch #10697 by matteo: avoid that administrators can create nodes with ↵Dries Buytaert2004-11-29
| | | | the wrong node type.
* - Modified patch #11840 by Stefan: added conctext-sensitive help text to the ↵Dries Buytaert2004-11-27
| | | | 'revision'-page.
* - Patch #6166 by Moshe: node preview should not display links. Push the ↵Dries Buytaert2004-11-23
| | | | | | | | links to the theme instead of the theme having to pull them in using node_link(). TODO: 1. Update theme upgrade instructions in the handbook: node_link() is gone. 2. Remove page_link() just like we removed node_link().
* - Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve ↵Dries Buytaert2004-11-23
| | | | consistency.
* - Patch 13180 by chx: renamed check_query() to db_escape_string() and ↵Dries Buytaert2004-11-21
| | | | | | implemtented it properly per database backend. Read the manual for pg_escape_string: "Use of this function is recommended instead of addslashes()." Or read sqlite_escape_string: "addslashes() should NOT be used to quote your strings for SQLite queries; it will lead to strange results when retrieving your data."
* Search.module:Steven Wittens2004-11-18
| | | | | - Caching index statistics - Minor code cleanup
* Search indexing bug: last updated timestamp needs to take last comment ↵Steven Wittens2004-11-18
| | | | timestamp into account.
* - Patch #8506 by Gerhard: added basic node_load() caching.Dries Buytaert2004-11-17
|
* - Patch #12783 by Stefan: various small consistency/usability improvements.Dries Buytaert2004-11-15
|