summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - #6400 - Nicer arrows for pushbutton templateSteven Wittens2004-08-05
| | | | - Removing gAMA chunk from xtemplate logo.png for less to avoid more gamma issues.
* - Patch #9770 by killes: fixed typo in queue module.Dries Buytaert2004-08-04
|
* - Patch #9497 by gordon: made <!--break--> work even when the teaser lengthDries Buytaert2004-08-04
| | | | is set to unlimited and fixed up some code comments.
* - Patch #9768 by killes: admin/user/edit/$uid is no more, removed some ↵Dries Buytaert2004-08-04
| | | | left-overs.
* - Patch #9657: more intelligent theme() function. Hopefully, Adrian will beDries Buytaert2004-08-04
| | | | able to use this patch too.
* - Patch #7458 by killes: conditionally include xmlrpc.inc.Dries Buytaert2004-08-04
|
* Making the xtemplate logo background transparent to make the Safari gamma ↵Steven Wittens2004-08-04
| | | | bug less obvious.
* - Patch #9757 by Al: improved the aggregator help. Help texts should be to ↵Dries Buytaert2004-08-04
| | | | the point.
* - Patch #9740 by Bart: added missing {} for table prefixing.Dries Buytaert2004-08-04
|
* - Patch #7336 by TDobes: in various parts of Drupal, we use the title ↵Dries Buytaert2004-08-03
| | | | attribute for links to provide a slightly more detailed explanation as to the purpose of a link or where it goes.
* - Partial patch #9643 by Bart:Dries Buytaert2004-08-03
| | | | | + the confirmation before deleting a comment was missing a check_output. + after editing a comment, two pages were shown (two calls to theme('page',..)), replaced this by a drupal_goto.
* - Patch by Jeremy: statistics module improvements.Dries Buytaert2004-08-03
|
* - Simplified the block help a bit by removing some dated information. ItDries Buytaert2004-08-01
| | | | should be simplified more.
* - Fixed broken link + removed redundant form descriptions (there is no pointDries Buytaert2004-08-01
| | | | in repeating the title).
* - Patch by Junyor: fixed typo: 'peformed' -> 'performed'Dries Buytaert2004-08-01
|
* - Patch #9430, backported patch from JonBob: fixed typo: 'that that' -> 'that'Dries Buytaert2004-07-31
|
* - Patch #9654 by Bart: since the $category paramater was added to user_save,Dries Buytaert2004-07-31
| | | | update 80 (moving the profile fields to their own tables) no longer works.
* - Patch #9649 by JonBob: fixed a buglet in the recent book patch. It triedDries Buytaert2004-07-31
| | | | to set book breadcrumbs for nodes that weren't books.
* - Patch by Matt: fixed small typo.Dries Buytaert2004-07-31
|
* - Patch #9650 by Adrian: this change introduces a module_load function, ↵Dries Buytaert2004-07-31
| | | | | | | | | | | | which maintains a list of modules that have already been loaded in a static array, and will not load another module of the same name, or if the file does not exist. Modules can be stored anywhere, as there is now a set of functions called module_get_filename, and module_set_filename .. which allow system_listing and module_list to specify the locations of the files. A new function module_load_all() replaces the hardcoded includes in module_init, and loads all modules which have been enabled, using module_load. module_listing no longer includes files itself, instead it just keeps the listing (and sets the filenames). This patch is a requirement for the multisite configuration patch, as overriding modules are currently being loaded due to the only protection of loading them is include_once.
* - Patch #9543 by JonBob: added node-level access control!Dries Buytaert2004-07-31
|
* - Patch #5347 by JonBob:Dries Buytaert2004-07-30
| | | | | | | | | | | | | | | | | | | | | Here's a new patch that unifies the node/52 and book/view/52 paths for nodes. It involves a small change to hook_view(), which is discussed first: Currently hook_view() expects node modules to return a themed node. However, each module does this the same way; they modify $node as necessary, then call theme('node', $node) and return the result. We can refactor this so that the calling function node_view() calls theme('node') instead. By doing this, it becomes possible for hook_nodeapi('view') to be called after hook_view() where the node contents are filtered, and before theme('node') where the body is enclosed in other HTML. This way the book module can insert its navigation into the body right before the theming. Advantages of this refactoring: - I can use it for book.module to remove the extra viewing path. - The function of hook_nodeapi('view') becomes more like hook_view(), as neither will expect a return value. - We more closely follow the flow of other nodeapi calls, which usually directly follow their corresponding specific node type hooks (instead of preceding them). - The attachment.module people could use it to append their attachments in a list after the node. - Gabor could use it instead of his filter perversion for his "articles in a series" module. - A little less code in each view hook. - The content hook is no longer needed, so that means even less code. Disadvantages: - Any modules written to use nodeapi('view') could be affected (but these would all be post-4.4 modules). - Implementations of hook_view() would need to be updated (but return values would be ignored, so most would work without updates anyway). Now the patch takes advantage of this API shift to inject its navigation at the end of all book nodes, regardless of the viewing path. In fact, since the paths become identical, I've removed the book/view handler entirely. We should probably provide an .htaccess rewrite for this (one is still needed for node/view/nn anyway). At the same time, there is a check in book_block() that shows the block appropriately on these pages.
* Fixing a rather nasty bug with page cache:Steven Wittens2004-07-29
| | | | | | | | The headers stored for cached pages ended in a newline, which caused header("") to get called when serving the page. On some PHP versions (happens on 4.3.3 at least, but not in 5.0), PHP adds a blank header to the HTTP request (i.e. just \r\n) which ends HTTP headers prematurely and adds a newline at the beginning of the page. This was not an issue before because we output HTML. Now that we have GZip compression, this bug caused corruption of the output. :P *phew*
* - Alternative fix for search module bug.Dries Buytaert2004-07-28
|
* - Patch #8497 by JonBob: check the length of a search key before inserting it.Dries Buytaert2004-07-28
|
* - Patch #9547 by Eric: fixed avatar/picture upload bug.Dries Buytaert2004-07-28
|
* - Patch #8531 by drumm: took this date parser from MagpieRSS (conveniently ↵Dries Buytaert2004-07-26
| | | | GPL). The main benefit here is that timezones are handled properly (I have been noticing increasing complaints about that). I tested with a few feeds of different time formats and time zones and everything appeared correctly in my site's local time. Making this another function adds the benefit of parsability by other RSS (or other contexts) and RSS extension handling functions, where the W3C DTF is recomended.
* CSS improvements:Steven Wittens2004-07-25
| | | | | | | - Restoring background coloring for the watchdog logs (was broken) - Making watchdog backgrounds lighter, makes it easier on the eyes and improves readability. - Adjusted the spacing between items on the frontpage a bit to be clearer. - Fixed the vertical stretching of table rows with form controls in them.
* - Fixing broken tablesort due to typo with quotes.Steven Wittens2004-07-25
|
* - Patch #9346 by drumm: improved themability of some aggregator pages.Dries Buytaert2004-07-25
|
* - Patch 9543 by JonBob: use drupal_goto() in menu administration.Dries Buytaert2004-07-25
|
* - Patch #9464 by Moshe: menu.module omitted a pair of braces when callingDries Buytaert2004-07-25
| | | | db_next_id().
* - Patch #9481 by JonBob: fixed small typo in help text.Dries Buytaert2004-07-25
|
* - Patch #9478 by JonBob: allow printf-style arguments in pager_query.Dries Buytaert2004-07-25
| | | | | | Currently pager_query() is the black sheep of the database query family, because it does not allow for printf-style arguments to be inserted in the query. This is a problem because it introduces developer confusion when moving from an unpaged query to a paged one, and it encourages substitution of variables directly into the query, which can bypass our check_query() security feature. This patch adds this ability to pager_query(). The change is backwards-compatible, but a couple calls to the function in core have been changed to use the new capability.
* - Patch #4269 and #4248 by Killes: added missing t()'s to book module.Dries Buytaert2004-07-25
|
* #6599: XTemplate default: removing whitespace in front of doctypeSteven Wittens2004-07-23
|
* - #9287: More doxygen/documentation fixes by JonBobSteven Wittens2004-07-22
|
* System.module improvements:Steven Wittens2004-07-22
| | | | | - #8193: Moving the two instances of the timezone list into a function. - #3859: Adding drupal_goto for module/theme/settings pages. Aside from general drupal_goto usability, this fixes the bug of menu items not immediately appearing after enabling a module.
* - #7295: Fixing issue with latest comments being incorrectly displayed on ↵Steven Wittens2004-07-22
| | | | PostgreSQL
* - Fixing bad strpos usage (have to use the ===/!== operators to check for ↵Steven Wittens2004-07-21
| | | | 'false' in this case)
* - Fixing static -> sticky update so it works for node types with underscores ↵Steven Wittens2004-07-21
| | | | in the name.
* Fixing the date for 4.4.1 in Changelog ;).Steven Wittens2004-07-21
|
* - Patch by Andy: improved help text / module description.Dries Buytaert2004-07-16
|
* - Patch #9177 by James: fixed distributed authentication.Dries Buytaert2004-07-15
|
* - Patch #9290 by Morbus / JonBob / TDobes: SUBTASK removal patch for menu.inc.Dries Buytaert2004-07-15
|
* Removed the 'user' item in the menu which appeared when editing someone ↵Steven Wittens2004-07-14
| | | | else's account.
* - Code and documentation improvements by JonBob.Dries Buytaert2004-07-14
|
* - Patch #9287 by JonBob: made the code style in the three database include ↵Dries Buytaert2004-07-14
| | | | files consistent with Drupal standards, and adds a wealth of Doxygen-style comments to aid developers in writing solid database access code using the API.
* - Patch #9262 by Ber / JonBob: the menu did not build correctly, thus the ↵Dries Buytaert2004-07-14
| | | | additional menu's were never displayed, but were saved. Only the last custom menu was displayed.
* - Patch #7466 by TDobes: comments module would add a link of register even ↵Dries Buytaert2004-07-14
| | | | if "user_register" was set to 0.