summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Fixed a typo that caused quite a few redundant SQL queries.Dries Buytaert2003-01-12
|
* - Added some more URL rewrite rules based on contributions from Gerhard.Dries Buytaert2003-01-12
|
* - Made sure all table headers could be translated.Dries Buytaert2003-01-12
| | | | - Made the book module use the new table rendering function.
* - Rewrite old-style URLs. Based on patch by Gerhard.Dries Buytaert2003-01-11
|
* - Fixed "clean URL" glitch in queue module. Patch by Ax.Dries Buytaert2003-01-11
| | | | - Small improvement to url(). Patch by Ax.
* - Made sure the text doesn't wrap.Dries Buytaert2003-01-10
|
* - Code improvement: forgot to update an URL to the clean URL scheme.Dries Buytaert2003-01-09
|
* - Minor comment module improvements/fixes.Dries Buytaert2003-01-09
|
* - Added Hugo Espuny as the Debian maintainer.Dries Buytaert2003-01-09
|
* - Added some isset()s to kill some "Undefined variable" warnings. Patch byDries Buytaert2003-01-09
| | | | Julio.
* - Ported David's taxonomy patch to Drupal CVS.Dries Buytaert2003-01-09
|
* - Fixed the pager. It might not be 100% correct, but it will work in 95%Dries Buytaert2003-01-09
| | | | of the cases.
* - Bugfix: fixed the SQL query in _forum_topics_read to avoid counting shadowedDries Buytaert2003-01-08
| | | | topics in forums. Patch by David.
* - Made sure the $links array is properly initialized before doing anDries Buytaert2003-01-08
| | | | | array_merge. According to Ori, this fixes a problem when using PHP as an ISAPI module with the Sambar server.
* - Added a few line breaks in the HTML emitted by the table() functionDries Buytaert2003-01-07
| | | | for better readability of the HTML code. Patch by Moshe.
* - Bugfix: RSS auto-discovery was broken due to clean URL work. Patch byDries Buytaert2003-01-07
| | | | Breyten.
* Great patch from Ulf:Dries Buytaert2003-01-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The href target for a new window is "_new", not "new". - Generating <div> sections within <p> sections is forbidden by the XHTML standard. Using just the right aligned <div> should be sufficient and makes XHTML themes possible. (Prove at http://blog.rompe.org/ ) - While parsing the header of an RSS feed one should be aware that there may be more <title> tags in subsections and that POSIX regular expressions are always gready. So make shure we don't get too much. (If you agree that using PCRE instead of the POSIX ones would be generally a good idea, then I am willing to make the patch, but for now I didn't want to mix POSIX and PCRE in one file.) (Prove at http://blog.rompe.org/index.php?q=import/feed/43 , try this feed without my patch) - Some RSS 2.0 feeds don't have a per item <link> section but have the permalink embedded in the <guid> section. This is not perfectly correct and the documentation mentions this possibility only in the examples, but since Dave Winer himself implements it this way it will happen more than once. So, if there is no link available and the guid looks like an address, then use that one. (Prove at http://blog.rompe.org/index.php?q=import/feed/22 , try this feed without my patch) - Don't only write eventually new Feed Header information into the database but also use them immediatly. Reuse the $feed array that is made for it. - If a feed doesn't provide per item titles, make shure to not produce defective markup by cutting the remainder of an entity. Instead of just cutting off anything behing the leading 30 characters of the cleaned description, it seems slicker to use up to 40 characters and split on word boundaries, but not on "&" or ";". (Prove also at http://blog.rompe.org/index.php?q=import/feed/22 . This feed will have title tags starting on February 1st, but I suspect many others without them out there.) With this patch one could consider Drupals aggregator RSS 2.0 ready.
* - Fixed access log update bug introduced during clean URL commit. Patch byDries Buytaert2003-01-07
| | | | Moshe.
* - Fixed links to admin page. Added help text.Dries Buytaert2003-01-07
|
* - Fixed bug in update of taxonomy links.Dries Buytaert2003-01-06
|
* - Forgot to update the taxonomy links. Reported by Adam.Dries Buytaert2003-01-06
|
* - Fixed typo in watchdog(). Reported by Marco.Dries Buytaert2003-01-06
|
* - Some usability improvements requested by Michael.Dries Buytaert2003-01-06
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* Typo ('tat' > 'that')Steven Wittens2003-01-05
|
* - Made a database query ASNI compliant. Patch by Ax.Dries Buytaert2003-01-05
|
* - In the taxonomy administration pages, the dropdown to select a term'sDries Buytaert2003-01-04
| | | | | | parent is supposed to exclude terms that are descendants of the current term, to avoid creating cycles. However, the terms with the first few term IDs are excluded instead. Patch by JonBob.
* - Added a check for register_globals.Dries Buytaert2003-01-04
|
* - The statistics module would sometimes mistake a non-node ID with thatDries Buytaert2003-01-04
| | | | of a node. Thanks David and Jeremy.
* - Added an extra parameter to watchdog() which lets you specifiy an "action"Dries Buytaert2003-01-04
| | | | | | | | | or "operation" link. - Made the main page of the administration section show an overview of all watchdog entries with such action link. - Fixed typo in PostgreSQL database scheme.
* - Added Michael's dummy print.css to avoid watchdog errors.Dries Buytaert2003-01-02
| | | | - Added a comment to explain why we include a dummy stylesheet.
* - Usability improvement; the drop-down menu showed the first vocabulary inDries Buytaert2003-01-02
| | | | the list even though it has not been selected. Reported by Adam Shand.
* Bugfix: when we have to extract a comment's title from the comment's body,Dries Buytaert2003-01-02
| | | | first strip the body's HTML tags or we might get an empty title after all.
* - Bugfix: some variables were not being reset causing wrong links to beDries Buytaert2003-01-02
| | | | displayed. Patch by Ax.
* - Fixed bug that prevented results containing multiple occurences of theDries Buytaert2003-01-01
| | | | search word(s). Patch by Ax.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Improvement: remove vi left-overs.Dries Buytaert2002-12-31
|
* - Simplified the page module. Patch by Marco.Dries Buytaert2002-12-31
|
* - Bugfix: wrapped an RSS item's description in a check_output() to ensureDries Buytaert2002-12-31
| | | | proper markup.
* - Fixed typo. Patch by Marco.Dries Buytaert2002-12-31
|
* Patch by Michael:Dries Buytaert2002-12-30
| | | | | | | | | | | | | | | | | | | | | | | admin.css: * Removed border-bottom for menu list items. The only work around to retain the border-bottom on lists with nested items is to use divs rather than li tags as far as I know. I think the list items are still readable this way. * Made title of site in sidenav more differentiated from menu. * Made color changes so that all headings are the same hue (navy bluish). * Modified th text-align: left; for better readability. Modified border-bottom: 1px solid #ccc; Black addded visual noise. * Modified tr.dark background-color: #ddd, tr.light background-color: #fff; * Changed all colors to #xxx three number hex shortcuts. * Added hr rule to make horizontal rules have height: 1px; color: #ccc; admin.php: * Added 1 line to admin.php to include <link rel="stylesheet" ...>. The stylesheet refers to a misc/print.css stylesheet which may not exist in your misc/ directory. This fixes the flash of unstyled content that users of Win IE 5+ are experiencing. You can use this to specify print styles if you like. See more about this here: http://www.bluerobot.com/web/css/fouc.asp
* - Fixed small braino in the cloud module table.Dries Buytaert2002-12-30
|
* - Small improvement to the links.Dries Buytaert2002-12-30
|
* - Code improvement: menu_tree() will no longer generate empty "<ul></ul>"Dries Buytaert2002-12-30
| | | | constructs.
* - Some small improvements/fixes to the node system. Suggested by Marco.Dries Buytaert2002-12-30
|
* Patch by Marco:Dries Buytaert2002-12-30
| | | | | | | | - rewrote taxonomy_get_tree() for improved performance and cleaner code - fixed a bug in _taxonomy_term_select() with multiple parents - added hooks in vocabulary and term insert, update and delete - fixed a bug in taxonomy_save_vocabulary() (cache_clear_all() was never called)
* - Bugfix: user_save() should not be called for anonymous users. Patch byDries Buytaert2002-12-30
| | | | Marco.
* - Check input given to table rendering functions to avoid warning.Dries Buytaert2002-12-30
|
* - Fixed a typo in the documentation, as well as extended the documentationDries Buytaert2002-12-29
| | | | while I was at it.
* - Added pager support to watchdog. Based on modified patch from Moshe.Dries Buytaert2002-12-29
|