summaryrefslogtreecommitdiff
path: root/modules/node/node.module
Commit message (Collapse)AuthorAge
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-04-21
| | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
* - Patch by JonBob/Jonathan: reworked the menu system so that menus areDries Buytaert2004-04-15
| | | | | | | | | | | | configurable! Menu items can be disabled, repositioned, added and so on. Upgrading to requires you to run update.php. This functionality depricates some of the 'navigation modules' in the contributions repository. Furthermore, modules can now 'suggest' menu items and site adminstrators can choose to enable them. Modules in the contributions repository should try to take advantage of this.
* Truncate UTF-8 patch. Introduced a new function truncate_utf8() for chopping ↵Steven Wittens2004-04-15
| | | | off strings at unsure locations, without risking incomplete UTF-8 data.
* Missing semi-colon for HTML entity.Steven Wittens2004-04-05
|
* Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.Dries Buytaert2004-03-20
|
* - Rewrote the profile module:Dries Buytaert2004-03-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added a 'created' field to the users table and renamed the 'timestamp' fied to 'changed' (cfr. node table). Update.php will try to determine a 'created' timestamp for existing users. + The profile module no longer uses serialized data but has its own set of tables. Known existing profile data is migrated by these new tables. TODO: migrate the birthday field. + The profile fields can be grouped, and within each group, profile fields can be sorted using weights. + The profile pages can be themed. + The profiles can be browsed based on certain properties/settings. + Change the _user hook: (i) 'private_view' and 'public_view' are merged into 'view' as there are no private fields and (ii) 'edit_form' has been renamed to 'edit'. + Avatar handling has been refactored and is now part of the user module. The users table has a dedicted 'picture' field. + Simplified the way themes should use display/visualize pictures or avatars. + Made it possible for administrators to replace or delete avatars. + ... I hope this make for a good base to build on collectively.
* - Patch #4902 by Goba: fix URLs in RSS feeds.Dries Buytaert2004-03-06
| | | | | | + Make all channel links absolute. + Always set the $base_url as xml:base, thus providing a solid base for relative URLs.
* - Patch 6140 by Goba: fix the 'read more'-link behavior.Dries Buytaert2004-03-06
|
* - Removed broken throttle.Dries Buytaert2004-03-01
|
* - Patch #6129 by Goba: fixed dependencies on search module.Dries Buytaert2004-02-29
|
* - Patch 6066 by Adrian: PostgreSQL does not return 'affected rows' when doingDries Buytaert2004-02-26
| | | | | | | | a select statement. Even though PEAR supports this functionality, it fails silently when using PostgreSQL. We use the db_num_rows() function instead to return the amount of rows returned. (According to Killes, the MySQL manual also states that it should not return affected rows on a 'select' statement.)
* - Added a short note about the node-trim-length setting. Many people seem to ↵Steven Wittens2004-02-19
| | | | expect that changing it updates existing teasers too.
* - Patch 5683 by JonBob: changes the multiple type delimiter from / to -.Dries Buytaert2004-02-16
|
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Patch 5592 by Goba: introduced a new function, drupal_map_assoc().Dries Buytaert2004-02-12
|
* - Patch 4902 by Goba:Dries Buytaert2004-02-11
| | | | | | | | | | | | | + only adds an optional parameter to url() and l(), so individual links can be set to be absolute + modifies drupal_goto() to accept the parameters of url() without the $absolute parameter, so cleaner invocations can be used + rework of some code in node_feed, making it much better to look at (the current code uses foreach with an immediate brake to get the first key of the associative array, geeeeez) + added xml:base to the rss tag generated by node_feed() + set all user mail URLs to be absolute + fix a small fragmented URL in user.module
* - Patch by Gerhard: fixed instance of format_pluralDries Buytaert2004-02-11
|
* - Improved welcome messageSteven Wittens2004-02-09
|
* - Modified format_date() to handle timezones properly.Kjartan Mannes2004-02-08
|
* - Added a welcome message written by Steven.Dries Buytaert2004-02-08
|
* - Removing timezone fix that crept in.Kjartan Mannes2004-02-08
|
* - Fixed codying style, typos, osbolete help.Kjartan Mannes2004-02-08
|
* - Fixed problem with multiple node types. Patch by JonBob.Dries Buytaert2004-02-06
|
* Rolling back a couple of incorrect replacements in Dries' ↵Steven Wittens2004-02-02
| | | | double-to-single-quotes patch.
* - Changed 1100+ double quotes to single quotes.Dries Buytaert2004-02-01
|
* - Patch #5575 by Stefan: fixed invalid XHTML code in the node and taxonomy ↵Dries Buytaert2004-02-01
| | | | module.
* - Patch #5526 by Kjartan: cleaned up node_page(), show a 404 when the nodeDries Buytaert2004-01-31
| | | | could not be found.
* - Modified node and comments to not be marked as new when they are 30 days old.Kjartan Mannes2004-01-29
|
* - Patch 5049 by JonBob: allow a module to define multiple node types.Dries Buytaert2004-01-27
|
* - Patch #5393 by Goba: changes the search hook return value, and requires an ↵Dries Buytaert2004-01-26
| | | | | | | | | | | array containing two elements, the first being the requested title, and the second being the result list. Advantages: * Cleaner search code in common.inc * Po extraction is possible and works fine * No hardcoded exceptions for node and comment modules, since any module can return results in order of relevance (or another order)
* Patch 5287 by Stefan: multiline help texts should become inside a single ↵Dries Buytaert2004-01-23
| | | | $output.
* - Removed the $help parameter from the _form hook. The help, typicallyDries Buytaert2004-01-17
| | | | submission guidelines, should be emmitted using the _help hook.
* Patch 5114 by Kjartan:Dries Buytaert2004-01-14
| | | | | | | - Adds drupal_set_header() and drupal_get_headers(). - Cache now stores custom headers. - Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head(). - Added RSS autodiscover links to node, blog and taxonomy pages.
* - Patch 4859: new drupal_unpack() consolidates duplicate code and makes itDries Buytaert2004-01-13
| | | | | easy to show avatars next to nodes and comments. Patch by Moshe. As a showcase, maybe Xtemplate should have an option to enable/disable avatars?
* - Patch #5021: clean up URLs in _help texts. Patch by UnConeD.Dries Buytaert2004-01-11
|
* - Applied patch #4949: node_prepare() wastes resources. Patch by Goba.Dries Buytaert2004-01-11
|
* Round 3 of aggregator improvements:Dries Buytaert2004-01-11
| | | | | | | | | | | | | | | - Added support for new tags: + Optinal feed image: <image> tag. + Dublin core dates: <dc:date> <dcterms:created>, <dcterms:issued>, <dcterms:modified>. - Usability improvements: + On the administration page, made the feed/bundle titles link to the feeds/bundles' pages. On the feed/bundle's page, made the 'Last updated' field link to the administration page. + Moved the 'syndication' menu one level down. - Updated some content sensitive help. - Further improved themeability. - Fixed some invalid HTML.
* - Fixed bug #4965: typo in the help text.Dries Buytaert2004-01-06
|
* Committed filter separation patch: all filter-related things are now in ↵Steven Wittens2004-01-05
| | | | | | | | filter.module (which is a required module). To do this cleanly, I reorganised some bits of system.module: there is now a generic handler available for simple variable-get/set based configuration pages. Look at filter_admin() or system_view() for example usage. (based on the patch by Goba)
* - Patch 4916: improved preparation of $node->teaser and $node->body. Patch byDries Buytaert2004-01-02
| | | | Goba.
* - Patch #4093: only invoke check_output() once for performance's sake. PatchDries Buytaert2004-01-02
| | | | by Goba.
* General filtering improvementsSteven Wittens2003-12-30
| | | | | | - Re-added STYLE/ON*= filtering (this got lost a while ago due to reorganisation) - Added form_group's to node.module's filter options - Fixed incorrect filter usage in poll.module
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Usability improvements to the 'create content' section. Patch by Goba.Dries Buytaert2003-12-22
|
* - Updated the calls to menu() to use MENU_HIDE instead of 1Dries Buytaert2003-12-17
|
* Patch by Kjartan:Dries Buytaert2003-12-17
| | | | | | | - Adds possibility to hide menu item when it has no children. (Fixes the node/add problem when user doesn't have access to create any node types.) - More doxygen comments.
* - Fixed missing pager_display -> theme('pager').Kjartan Mannes2003-12-08
|
* - 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.
* - Usability improvement: just print a status message after a nodeDries Buytaert2003-12-08
| | | | submission/update instead of using a separate page. Patch 186 by Moshe.
* - Tidied up the DoxyGen comments. Patch by Kjartan.Dries Buytaert2003-12-08
|