| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
- Fixed issue with drupal_get_path_alias(): should return false for non-aliased URLs.
|
|
|
|
|
|
|
| |
+ Added drupal_http_request().
+ Replaced rssfeeds with OPML feed subscription list.
+ Added support for pubDate.
+ Added support for conditional gets using ETag and Last-Modified.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
/**
* Wrapper around xml_parser_create() which extracts the encoding from the XML
* data first and sets the output encoding to UTF-8. This function should be
* used instead of xml_parser_create(), because PHP's XML parser doesn't check
* the input encoding itself.
*
* This is also where unsupported encodings should be converted.
* Callers should take this into account: $data might have been changed after
* the call.
*
* @param $data The XML data which will be parsed later.
*/
|
|
|
|
|
|
|
|
| |
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)
|
| |
|
|
|
|
| |
Kjartan.
|
|
|
|
|
|
| |
patch by
Kjartan.
|
| |
|
| |
|
|
|
|
|
|
| |
better
fix.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
the options are not rendered in bold.
|
|
|
|
|
|
|
|
| |
tags.
To be discussed and investigated: when a form element has no title an empty
<label> tag will be emitted (eg. "remember me" checkbox). This doesn't make
sense but is our best option for now.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
custom 404 page in the administration page. As a result, error.php could be
removed.
|
|
|
|
|
|
| |
version
of form_submit() which allows the creation of HTML buttons.
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ Simplified cache logic in drupal_get_path_map().
+ Added check to see if errors should be reported to error_handler().
+ Use proper db_query() syntax in throttle(), and use $_ENV instead of
getenv().
+ Changed fix_gpc_magic() to use array_walk (C functions will always be
faster), and renamed _fix_gpc_magic_array() to _fix_gpc_magic().
+ Renamed $node in array2object() to $array.
+ Renamed $node in object2array() to $object.
+ Minor other coding method tweaks.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- Fixed metaWeblog/Blogger incompatibilities in blogger.editPost and
blogger.getRecentPosts.
- Fixed coding style deviations.
- Fixed access checks, now requires maintain personal blog.
- Fixed taxonomy integration.
- Fixed blogger.getUserInfo
- Improved user login/access error messages.
|
| |
|
|
|
|
| |
under heave load.
|
|
|
|
|
|
|
| |
Contributed themes and modules need to be updated:
- modules: status() is no more; use drupal_set_message() instead.
- themes: use drupal_get_message() to check for status messages and
visualize them.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* fixes all doxygen warnings [#]_ in the current code base
+ changes @param style from phpDocumentor (@param type $var desc) to doxygen (@param $var desc)
+ documents all undocumented parameters
+ escapes / fixes html warnings
+ fixes @defgroup in theme.inc
* adds more groupings [#]_
+ drupal_{set|get}_title, drupal_{set|get}_breadcrumb
+ pager.inc: pager_api (pager_query(), pager_display()), pager pieces
* adds a new group "themeable" which contains all themeable functions.
|
|
|
|
|
| |
define titles and breadcrumbs for their pages, and updates the theme
system to display them.
|
|
|
|
| |
- Used legend and fieldset tags for the configuration page.
|
|
|
|
|
| |
theme_form_element() function to improve themeability. I left form_item()
and the calls to form_item() intact for now.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Patch by Stefan.
- Usability improvement: introduced a form_group() function and updated
the node and comment module to take advantage of it. Patch #149 by
Eric Farris.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
some of the configuration settings.
- Improvement: removed a left-over from Drupal 4.2.0 (dead code).
- Improvement: replaced hard-coded XHTML around the XML icons with class="xml-icon".
- Improvement: removed the custom navigation menus shown at the top of the "user information page" and integrated them in the new navigation block. The "my account" link in the navigation menu will unfold. Also removed the "delete account" link/functionality (for now).
- Improvement: fix for "magic quotes" settings. Patch by Steven. I also removed check_php_settings().
- Improvement: block themability improvements. Modified patch from Ax and Steve/CodeMonkeyX.
- Fixed bug #2617: editing user information does not work. Patch by Kjartan.
|
|
|
|
|
|
|
|
| |
a reserved SQL keyword. Required for both PostgreSQL and MSSQL. Patch by
Adrian.
- Bugfix: renamed the 'path' table to 'url_alias' as 'path' is a reserved SQL
keyword. Required for both PostgreSQL and MSSQL. Patch by Adrian.
|
|
|
|
| |
by Matt.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Moshe.
- Fixed bug #3642: removed duplicate settings from user page. Patch #14 by Moshe.
- Fixed bug #3503: added 'forum topic' link to the 'create content' menu. Patch
by Gobar. I think this might be more intuitive and consistent code-wise; I don't
want to introduce small hacks.
- Cache improvement: small cache improvement to prevent SQL errors. Patch by
Jeremy.
|
|
|
|
| |
form.
|