summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - #18597: Resolve conflict in column name between queue.module and poll.module.Steven Wittens2005-03-18
|
* - #18879: Pushbutton Header CSS CleanupSteven Wittens2005-03-18
|
* - #18597: Resolve conflict in column name between queue.module and poll.module.Steven Wittens2005-03-18
|
* - #18939 (Stefan): Always use paragraph tags around page help text.Steven Wittens2005-03-18
|
* - #19063: Use module_implements instead of hand-rolled routine.Steven Wittens2005-03-18
|
* - Patch #17161 by Morbus: increase 40-character limit in URL field for comments.Dries Buytaert2005-03-16
|
* - Patch #12497 by Morbus: Just working on a profile reporting idea and ↵Dries Buytaert2005-03-16
| | | | | | | | | spotted that the following fields appear to have incorrect type definitions: profile_values.fid = int(11) profile_values.uid = int(11) These both appear inconsistant with the rest of the database (that I have seen i.e. user tables) where they are defined as int(10). The profile_fields.fid is defined as int(10) also.
* - Patch #18927 by Periastron: as one navigates down through the forum ↵Dries Buytaert2005-03-16
| | | | taxonomy, the title used to change to the current term, but now it always just displays the vocabulary name. I have attached a patch that restores the previous behaviour. It looks like the regression may have been introduced in some changes to theme_forum_display.
* - Patch #13738 by TDobes: theme system fixes:Dries Buytaert2005-03-16
| | | | | | | | | | * Fix a bug which would cause the "configure" link for styles to be broken. * Fix a bug with using drupal_get_filename for theme engines. Although this is not called anywhere in core, we should still fix it for contrib. (i.e. themes that may want to manually invoke a theme engine to create a hybrid theme) * Correct an inaccurate comment in theme.inc * Populate the default primary links with an "edit primary links" link for consistency with the secondary links * remove some unnecessary variables in the theme administration which had misleading and confusing names * replace time-consuming foreach when rendering theme admin page with a more efficient array_key_exists * usability: rather than completely removing the search box checkbox when search.module is disabled, simply disable it. (UI elements shouldn't appear/disappear.)
* - Patch #18983 by Ber: small code improvement.Dries Buytaert2005-03-16
|
* - Patch #14109 by wulff/Morbus: added missing t() funcitonDries Buytaert2005-03-16
|
* - Patch #18861 by nkurz: fixed logic error in taxonomy_node_save().Dries Buytaert2005-03-15
| | | | (Not sure how/when it triggered.)
* - More improvements by Morbus, Goba, TDobes et al:Dries Buytaert2005-03-15
| | | | | | | | | | | | | | | | | | | | | | | Per TDobes' comments: * INSTALL.txt corrected to use 4.3.3, not 4.33. * .htaccess: removed allow_call_time_pass_reference. two confirmations that a) the setting was wrong in the first place, b) there were no adverse affects for the incorrect setting, c) the PHP docs say it is deprecated. * .htaccess: removed short_open_tag. Running grep -r "<? " * across the entire directory tree of both core and contributions only brought up contributions and no core. I agree that the fuller form is better. The following contributions will need to be updated: modules/edit_template/edit_template.module, sandbox/garym/themes/marvin_2k/templates/page.tpl.php, sandbox/killes/compare.php, sandbox/paolino/import/click.php, themes/spreadfirefox/block.tpl.php. For error's sake, I also did a manual verification for "<?" (no space) across core and came up against nothing in addition to the above contribs. Per Goba's comments: * .htaccess: Moved session.auto_start back. * sites/default/settings.php: Removed track_vars. Per mailing list comments: * INSTALL.txt: Added text about the files/ directory, creating it, and permissions. * INSTALL.txt: Added an example of why Drupal requires cron (the search.module) in an attempt to justify why a crontab is a good, nay, required step. And my own further analities: * .htaccess: cleaned up some whitespace valleys (i hate 'em, hate 'em!) and fixed a few stray colons. * settings.php: minor whitespace error.
* - Patch #18696 by Morbus: one '(' too much in taxonomy_term_count_nodes().Dries Buytaert2005-03-13
|
* - Patch #18787 by nysus: when trying to delete a forum or container, ↵Dries Buytaert2005-03-13
| | | | multiple instances of a Drupal page appear nested inside of each other when the confirmation of deletion page is displayed.
* - Patch #18641 by Morbus:Dries Buytaert2005-03-12
| | | | | | | | | | | | | | | | | | | | # The INSTALL.txt no longer contains the SERVER CONFIGURATION block. These settings are now hardcoded into sites/default/settings.php, and are merely scary technical junk here. # The INSTALL.txt has been updated with the latest system requirements. A whole sentence was struck regarding differing versions of PHP for the OSs. # The INSTALL.txt contains URLs to MySQL and PostgreSQL. If we're including the URL for PHP in the same sentence, then there's no reason why we wouldn't include them for the database engines. What are the minimal requirements for the RDBMS? Those should be included here too. # The INSTALL.txt's OPTIONAL COMPONENTS has renamed to OPTIONAL REQUIREMENTS. The only difference between the meaning is the amount of user confusion. # The INSTALL.txt has a new CONTENTS OF THIS FILE, in hopes that people will more immediately notice that there are upgrade instructions at the bottom. # The INSTALL.txt had some potentially confusing lines adjusted, including further clarifications, standarding to "userid" (instead of using both userid and username interchangebly) and so on. # I've moved most of .htaccess php_value's to the ini_set system for /sites/. There are a few reasons for this, chiefly that it is centralizing all the PHP setting modifications to one place. But, this also clears up a few initial configuration issues: first, the user doesn't have to worry about whether they have Apache 1 or 2, and whether they need to change an IfModule line. Also, the running assumption is that these php_value's are /going to work by default anyways/, when the INSTALL.txt suggests otherwise (under OPTIONAL REQUIREMENTS, it talks about "the ability to use local .htaccess files", which suggests that "local .htaccess files" INCLUDING "mod_rewrite" are entirely optional.) Some variables, however, had to remain in .htaccess because they can't be overridden at runtime, but the amount was so small that duplicating them for both Apache 1 and Apache 2 possibilities is no longer a prohibitive concern. # There are two variables in .htaccess that I'm concerned about: track_vars, and allow_call_time_pass_reference. track_vars appears to be no longer necessary (as of 4.0.3, track_vars is always on, and my setting it here had no impact on the results of a phpinfo), and allow_call_time_pass_reference seems, at least here, to ONLY WORK if the .htaccess value is set to "1", and not "On" - meaning that Drupal installations are currently working correctly with its default value (off). According to the PHP docs, this feature is now deprecated. However, since both of these variables require further investigation, track_vars has been moved to settings.php, and allow_call_time_pass_reference has been "fixed" to a 1 (not 'On'). # Along with the changes above for sites/default/settings.php, I've also removed the spacing indent in the documentation, as well as many a few grammatical/punctuation changes here and there. I don't think the leading spacing is "right" according to the style guidelines, but maybe there's a special need for it. Correct me if I'm wrong.
* - Patch #18641 by Morbus: .htaccess improvements. Modified a bit by me.Dries Buytaert2005-03-12
|
* - Patch #18692 by Goba: old comments (comments for nodes having no entry in ↵Dries Buytaert2005-03-12
| | | | the history table anymore) are counted as new comments, since the timestamp retrieved from the history table is used to check for new comments (which is 0, if an entry was not found). This patch sets the timestamp used to check for new comments to the NODE_NEW_LIMIT value at least (which is when the history table was/should have been pruned).
* - Patch #18676 by frjo: When anonymuos users are allowed to add comments ↵Dries Buytaert2005-03-10
| | | | there are a required e-mail field. This field are, as far as i can see, not shown publicly. A user asked me about this and after confirming that it is not shown publicly I added a description that inform the users of this. I have included a patch that add the description "The content of this field is kept private and will not be shown publicly". This is the same description that is used by the profile module.
* - Patch #18465 by nysus: improved the forum container explanation.Dries Buytaert2005-03-09
|
* - Added small note about PHP5 support.Dries Buytaert2005-03-09
|
* - Added small note about PHP5 support.Dries Buytaert2005-03-09
|
* - Removed . We'll reintroduce it when really necessary.Dries Buytaert2005-03-08
|
* - Patch #16914 by chx: avoid that putting a .theme file directly in './themes'Dries Buytaert2005-03-08
| | | | breaks your Drupal. Only themes in './themes/subdir' are picked up now.
* - #18434: (search) Try wildcards automatically if there were no results.Steven Wittens2005-03-08
| | | | - Fix missing format_plural()
* #12369: Linebreak filter should leave <pre> sections alone.Steven Wittens2005-03-07
|
* - Patch #18216: fixed nodeapi settings hook.Dries Buytaert2005-03-07
|
* - Bumped the RSS version from 0.92 to 2.0Dries Buytaert2005-03-07
|
* - Patch #18491: removed the 'access throttle block' permission. It is no ↵Dries Buytaert2005-03-07
| | | | longer used.
* - Removed a reference to conf.phpDries Buytaert2005-03-06
|
* - Renamed some more 'region's to 'sidebar'sDries Buytaert2005-03-06
|
* - Patch #18437 by Mathias: Drupal doesn't allow URL aliases that map to ↵Dries Buytaert2005-03-06
| | | | Userland Manila posts since they usually contain the '$' and are considered an invalid URL. This patch allows '$' in an URL and thus an alias. It also resolves a disparity between the 'allowable characters' of absolute and relative URLs. As far as I can tell, those parts of the regexp should be the same.
* - Patch by Neil: fixed typo.Dries Buytaert2005-03-05
|
* - Fix missing parameter in user.moduleSteven Wittens2005-03-05
|
* - Added a note about PHP5 compliance/support.Dries Buytaert2005-03-05
|
* - Adding paragraph margins which were removed from drupal.cssSteven Wittens2005-03-05
|
* - Patch #18418 by chx: jonbob node_access_view_all patch changed the return ↵Dries Buytaert2005-03-05
| | | | value of node_access_where_sql to empty which breaks nicely all queries which are still using this function. This is a good incentive to upgrade to db_rewrite_sql, yes, but I think it causes confusion, 'cos it is not really trivial why the query suddenly not works. Let's make it trivial -- rename it _node_access_where_sql, it is no longer a function to be called from outside. node_access_join_sql similarly.
* - Patch #18404 by Gerhard: removed incorrect/outdated documentation from a ↵Dries Buytaert2005-03-05
| | | | form description.
* - Patch #18382 by Neil: usability improvement: organized the blocks on the ↵Dries Buytaert2005-03-05
| | | | block administration page by region. (I wanted to do that myself!)
* - Patch #18380 by Neil: putting margins on paragraph tags seems like ↵Dries Buytaert2005-03-05
| | | | something that Drupal.css shouldn't be doing.
* - Fix overzealous session wipingSteven Wittens2005-03-04
|
* #18226: Non-admins were not obeying workflow.Steven Wittens2005-03-04
|
* - Incorrectly filled in %nameSteven Wittens2005-03-03
|
* #18329: Unify confirmation messages (and make them themable)Steven Wittens2005-03-03
|
* - Patch #17955 by Neil: there was a subtle difference between form_select() ↵Dries Buytaert2005-03-03
| | | | and whatever taxonomy was doing.
* - Fixed parse error.Dries Buytaert2005-03-03
|
* - Better upgrade path. Suggested by Neil.Dries Buytaert2005-03-03
|
* - Ignore PHP5's strict warnings for now. The real solution is to rewrite ↵Dries Buytaert2005-03-03
| | | | both xmlrpc.inc and xtemplate.inc.
* - Moving commentSteven Wittens2005-03-03
|
* - #18319: Move encoding conversion out of drupal_xml_parser_create() so it ↵Steven Wittens2005-03-03
| | | | can be used by modules.