summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - Show a non-clickable example "link" when previewing comments. Should fixDries Buytaert2003-06-12
| | | | bug #1437 for all themes (incl. theme Marvin and theme UnConeD).
* - Bugfix: charset fixes/clean-up. Patch #52 by Al.Dries Buytaert2003-06-12
| | | | | | | | | | - Improvement: renamed some theme functions of the forum module for sake of consistency/readability. Patch #2 by Kristjan. - Improvement: usability improvements to the Xtemplate theme. Patch #3 by Kristjan. - Improvement: CSS'ified the book module pages. Patch #3 by Al. (I simplified the "l ocation" part. Al's approach gave you a bit more power but I'm not sure anyone wants to change that. Besides, this will change as soon we integrate the menu system so I kept it easy for now.)
* - Bugfix: when clean URLs are enabled, the cookie path was not always set ↵Dries Buytaert2003-06-11
| | | | | | correctly when the user logged using the user block from within a subdirectory. Patch by Ulf Rompe.
* - Bugfix: fixed the CREATE FUNCTION in database.mssql as it needs to be ↵Dries Buytaert2003-06-11
| | | | | | | | | | | | | | | | | | | | | | | | prefixed with GO for some obscure reason. Patch by Kjartan. - Bugfix: fixed the defaults for blocks in database.mssql so the NOT NULL fields get values. Patch by Kjartan. - Bugfix: changed check_form() to use htmlspecialchars() instead of drupal_specialchars() as this caused Drupal to emit incorrect form items in presence of quotes. Example: <input type="submit" class="form-submit" name="op" value="Submit "top nodes" block changes" /> IMO, drupal_specialchars() is better called xmlspecialchars() to avoid confusion. - Bugfix: when an anonymous user visits a site, they shouldn't see any content (except the login block, if it is enabled) unless they have the "access content" permissions. Patch by Matt Westgate. - Improvement: improved the error checking and the error messages in the profile module. Updated the code to match the Drupal coding conventions. Modified patch from Matt Westgate. - Improvement: don't generate the <base href=""> tag in the base theme; it is already emitted by theme_head(). Patch by Kristjan. - Improvement: don't execute any SQL queries when checking the permissions of user #1. Patch by Kjartan. - Improvement: made a scalable layout form that works in IE and that behaves better with narrow themes. Part of patch #51 by Al. - Improvement: removed some redundant print statements from the comment module. Modified patch from Craig Courtney.
* - Bugfix: an administrator could not edit the avator through the admin ↵Dries Buytaert2003-06-10
| | | | interface because it used the global $user object inside its functions rather then the user to be edited. Patch by Matt Westgate.
* Patch be Matt Westgate:Dries Buytaert2003-06-10
| | | | | | - Bugfix: in the user_admin_edit() function, the data array returned from the callback modules was not being merged into the edit array. - Bugfix: added enctype="multipart/form-data" to the form tag so that we can update things like the avatar image in the admin interface.
* - Documentation improvements: improved and updated the block module ↵Dries Buytaert2003-06-10
| | | | | | | | | | | | | | | | documentation. Patch #44 by Al. We should add some real-life path examples! - Fixed the "blog it" image size. Patch #49 by Al. - Some SQL performance improvements to the forum module. This should also be more PostgreSQL safe. Patch by me. mysql> SELECT n.nid, n.created AS timestamp, u.name AS name, u.uid AS uid FROM forum f, node n LEFT JOIN users u ON n.uid = u.uid WHERE f.tid = 2 AND n.nid = f.nid AND n.type = 'forum' AND n.status = 1 ORDER BY timestamp DESC LIMIT 1, 0; ==> 0.63 sec changed to: mysql> SELECT n.nid, n.created AS timestamp, u.name AS name, u.uid AS uid FROM forum f LEFT JOIN node n ON n.nid = f.nid LEFT JOIN users u ON n.uid = u.uid WHERE f.tid = 2 AND n.nid = f.nid AND n.type = 'forum' AND n.status = 1 ORDER BY timestamp DESC LIMIT 1, 0; ==> 0.00 sec
* - Bring back the "blog it" icon. Patch #47 by Al. Thanks.Dries Buytaert2003-06-08
| | | | (I don't like the suggested icon so I suggest we continue to use the existing one, which I don't like either but oh well. Thoughts?)
* - Fixes CSS for archive calendar so that you can make non-link days paddedDries Buytaert2003-06-08
| | | | | in a sensible fashion. Also removes table width 100% and puts that in css. Patch #48 by Al.
* - Fixed two broken links in the "administration > content management >Dries Buytaert2003-06-08
| | | | post overview" page.
* - Made it possible to link search results. Patch by Ax.Dries Buytaert2003-06-08
| | | | - Removed some high ASCII characters from the code. Patch by Ax.
* - Charset simpliciations. Patch #46 by Al.Dries Buytaert2003-06-08
|
* - Fixed various forum module queries such that they work with PostgreSQL.Dries Buytaert2003-06-08
|
* - Bugfix: fixed approval e-mail and tidied up the e-mail handling. Patch #43 byDries Buytaert2003-06-08
| | | | Al. Fixes bug #1828.
* - Bugfix: added trailing slash to URL. Patch #39 by Al. Fixes bug #1848.Dries Buytaert2003-06-08
|
* Fixed some typoes...Steven Wittens2003-06-08
|
* - Bugfix: clicking the "Login" button after having created the first userDries Buytaert2003-06-07
| | | | redirected you to an incorrect page. Patch by Moshe.
* - Check the destrination URL before redirecting.Dries Buytaert2003-06-07
|
* - Bugfix: if you clicked on an archive date in the calendar block andDries Buytaert2003-06-07
| | | | | then select a new date via the form the block still displays the original click as the "selected" date. Patch by Craig Courtney.
* - Dropped check_input(); use check_query() instead.Dries Buytaert2003-06-06
| | | | - Made the statistics module use referer_uri() for security's sake.
* - Removed a redundant check_input().Dries Buytaert2003-06-06
|
* - Removed a redundant check_query().Dries Buytaert2003-06-06
| | | | - Removed a bogus check_input().
* - Bugfix: removed redundant check_input()s such that quotes are handledDries Buytaert2003-06-06
| | | | properly. You couldn't use a username or passwords that had quotes.
* - Bugfix: fixed problem when register globals is turned off. Patch ↵Dries Buytaert2003-06-06
| | | | | | 0037.poll.register_globals.patch by Al. (Can't we make the result URL look nicer?)
* - Bugfix: fixed the login problem due to incorrect use of drupal_goto().Dries Buytaert2003-06-06
| | | | Gerhard's patch was not 100% correct and I found a better alternative.
* - WOOOT! Patch by Al.Dries Buytaert2003-06-06
|
* - Bugfix: removed call to dead function. Patch by Al. Bug #1852.Dries Buytaert2003-06-05
|
* - Usability improvements: in the calendar, only add a link for days on whichDries Buytaert2003-06-05
| | | | | | new nodes have been posted. Patch by Al. Al: I modified the query slightly - it will check whether 'status = 1'.
* - More charset patches by Al.Dries Buytaert2003-06-05
|
* - Bugfix: better charset support for non-ISO-8859-1 languages. Patch ↵Dries Buytaert2003-06-05
| | | | | | | | | | | | | | | | | | 0029.charset.fixes.patch by Al. Could East Asia test this please. - Bugfix: made the "moderate" field behave. Patch 0030.queue.module.help.and.settings.form.patch by Al. - Documentation: revised a large part of the help texts / documentation! Al's 0024.* patches. - Documentation: added a glossary to the help module. Patch 0025.help.module.glossary.patch by Al and Michael. - Usability: first step towards unifying the terminology used in the cloud module. Patch by 0028.site.cloud.rationalize.name.patch Al. - Usability + CSS improvements: revamped the node form and removed all tables. Patch 0027.node.form.rewrite.patch by Al. - CSS improvements: patch 0026.admin.css.small.improvement.patch by Al. - Updated the MAINTAINERS file.
* - Bugfix: renamed the SQL field 'types' to 'nodes' because 'types' is a ↵Dries Buytaert2003-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | reserved keyword in MySQL 4. This fixes critical bug #1618. Patch by Marco. ==> This fix requires to run update.php! - Bugfix: made sessions work without warnings when register_globals is turned off. The solution is to use $_SESSION instead of session_register(). This fixes critical bug #1797. Patch by Marco. - Bugfix: sometimes error messages where being discarded when previewing a node. Patch by Craig Courtney. - Bugfix: fixed charset problems. This fixes critical bug #1549. Patch '0023.charset.patch' by Al. - Code improvements: removed some dead code from the comment module. Patch by Marco. - Documentation improvements: polished the node module help texts and form descriptions. Patch '0019.node.module.help.patch' by Al. - CSS improvements all over the map! Patch '0021.more.css.patch' by Al. - GUI improvements: improved the position of Druplicon in the admin menu. Patch '0020.admin.logo.patch' by Al. - GUI improvements: new logos for theme Marvin and theme UnConeD. Logos by Kristjan Jansen. - GUI improvements: small changes to the output emitted by the profile module. Suggestions by Steven Wittens. - GUI improvements: small fixes to Xtemplate. Patch '0022.xtemplate.css.patch' by Al. TODO: - Some modules such as the buddy list module and the annotation module in the contributions repository are also using session_register(). They should be updated. We should setup a task on Drupal. - There is code emitting '<div align="right">' which doesn't validate. - Does our XML feeds validate with the charset changes? - The forum module's SQL doesn't work properly on PostgreSQL.
* - Usability improvements to the node form. Patch by Al. Will incorporateDries Buytaert2003-06-03
| | | | | | | | | | some of Moshe's node form work later on. TODO: - I just spotted a problem with the promote field; it does not seem to be "sticky" when you click the preview button. I checked and this was also the case prior to applying this patch.
* - CSS improvements: use form functions wrapped in a <div> instead ofDries Buytaert2003-06-03
| | | | | | | hard-coded form elements. Modified patch by Kristjan. I added some CSS to drupal.css to center the text and ordered the list of CSS tags alphabetically.
* - Fixed some translation bugs in the profile module. (I wasn't going toDries Buytaert2003-06-03
| | | | | commit this yet but I accidentically did so now I've cleaned it up.) Original patch by Matt. Thanks for spotting the t() problem Al.
* - Bugfix: made request_uri() rewrite ( and ) with their entity equivalentsDries Buytaert2003-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to avoid XSS attacks! Patch by Al, Moshe, Marco, Kjartan and me. - Bugfix: the admin module does now import drupal.css prior to admin.css. Patch by me. - Bugfix: the admin module was still emitting a <base href=""> tag. I removed this as it is been taken care of by theme_head(); Patch by me. - Bugfix: made the tracker module's pager only consider published pages. Patch by Moshe. - Bugfix: cured some typos in the comment module's help function. Patch by Marco. - Bugfix: fixed a typo in the pager_display() that caused optional attributes to be discarded. - Bugfix: made the Xtemplate emit empty boxes like any other theme does. Patch by Al. - Bugfix: fixed broken link on the statistics module's log page. Reported by Kjartan. - CSS improvements: made the HTML output emitted by the tracker module look nicer. Patch by Moshe and Al. - CSS improvements: added CSS classes for form elements. Patch by Al. - CSS improvements: added a vertical gap between the last form item and the submit button. Patch by Al. Note that Opera 6 is not picking up this CSS but apparently others browsers such as Konqueror do. - Xtemplate improvements: changed the color of the selected day in the archive module's calendar. Patch by Al. - Usability improvements: made the "birthday" field of the profile module look nicer. Patch by Al. ------ - TODO: it might be a good idea to emit the following meta tag in the theme_head() function: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> Currently, some themes (and modules!) emit this while others don't. This would also make it possible to change the charset site-wide. - TODO: now we added support for td.dark and td.light to drupal.css, maybe it can be removed from admin.css as well as xtemplate.css?
* - Removed the module field from the locale search form. It won't work andDries Buytaert2003-06-02
| | | | | | there is no easy replacement. - Wrapped the strings in htmlentities() such that one can see the HTML.
* - Fixed the blog it link to work with register globals off. Patch by Al.Dries Buytaert2003-06-02
|
* - Resized two textfields for UI consistentcy. Patch by Stefan.Dries Buytaert2003-06-02
|
* - Fixed critical bug #1788: cloud module pings too much. Modified patch byDries Buytaert2003-06-01
| | | | | | Kjartan. This update requires some database changes so make sure to run update.php.
* Removed node_get_node_from_nid() and modified node_load() to take an ↵Dries Buytaert2003-06-01
| | | | optional 2nd arguments to return a specified revision. Patch be Kjartan.
* - Documentation fixes by Kjartan.Dries Buytaert2003-05-31
|
* - Bugfix: the forum module's "view" function should also call check_output().Dries Buytaert2003-05-31
|
* - CSS improvements to the calendar of the archive module. Updated the XtemplateDries Buytaert2003-05-31
| | | | theme and theme Marvin to take advantage of this. Patch by Al. Pretty stuff.
* - Committed Al's rollback fixes and the title improvements. Thanks again.Dries Buytaert2003-05-31
|
* - Small usability improvement by Al.Dries Buytaert2003-05-31
|
* - Better CSS for the poll module.Dries Buytaert2003-05-30
|
* - Fixed a warning. Patch by Jacobo Tarrio.Dries Buytaert2003-05-30
|
* - Fixed bug 1763: changing comment preferences now works again. Tested withDries Buytaert2003-05-30
| | | | authenticated and anonymous users. Patch by Marco.
* Patch by Al:Dries Buytaert2003-05-30
| | | | | | | | - Made the import module use theme_item_list() instead of emitting the HTML and CSS itself. - Renamed the "blog-it" tag to "icon" so it can be used for other (but similar) purposes.
* - "Administration overview" -> "sitemap"Dries Buytaert2003-05-29
|