Dries Buytaert
5365db7e07
- Patch by Robert: fixed problem with username blocking.
2005-06-23 19:26:51 +00:00
Dries Buytaert
e7cc200eeb
- Patch by deekayen: roll back permission patch.
2005-06-23 05:10:38 +00:00
Dries Buytaert
59af92c8ed
- Updated CHANGELOG.txt
2005-06-22 20:43:52 +00:00
Dries Buytaert
ba233dd3b8
- Patch #25504 by kumo: fixed problem with the weights of book pages not being remembered.
2005-06-22 20:24:11 +00:00
Dries Buytaert
5c8843704c
- Patch #18213 by chx: boostrap system. Modified to work with HEAD, tidied
...
up the documentation a little.
chx: can you double-check whether the global $conf variable is secure?
(That is, make sure it can't be send using the URL or something.)
2005-06-22 20:19:58 +00:00
Dries Buytaert
f3a9a99570
- Patch #25121 by Robrecht J.: changed itemized lists with hardcoded CSS to definition lists.
2005-06-21 18:58:27 +00:00
Dries Buytaert
22ea50dfec
- Patch #21566 by deekayan: fixed user_access() function returning a string and not a boolean. Also improves performance of user_access().
2005-06-21 18:45:30 +00:00
Dries Buytaert
8f82f92a10
- Patch #25398 by Ber: drop.org -> drupal.org.
2005-06-21 18:22:26 +00:00
Dries Buytaert
4c77761efb
- Patch #3962 by deekayen: improved error message when a blocked user attempts to login.
2005-06-21 18:21:08 +00:00
Dries Buytaert
e550f84162
- Patch #16204 by Thox: committed the collapsible form elements patch.
...
NOTE: this patch works well, but the improved node edit form still has
some rough edges. It is important that we continue to improve
usability. Give it a try.
2005-06-21 09:45:45 +00:00
Dries Buytaert
e16e048d57
- Patch #24397 by deekayen: replaced deprecated reference to conf.php.
2005-06-19 19:27:32 +00:00
Dries Buytaert
b3336096a3
- Patch #24766 by deekayen (David): fixed user module showing the epoch instead of 'never'.
2005-06-19 09:06:02 +00:00
Dries Buytaert
eb536bf5ec
- Patch #24157 by chx/Robin/...: changed file_exists() to is_file() to fix several problems with modules using theimage toolkit.
2005-06-19 08:59:06 +00:00
Dries Buytaert
abc16b1d6d
- Patch #25067 by Thox: renamed 'light' and 'dark' to 'odd' and 'even'.
...
TODO: update the "Migrating themes from Drupal 4.6 to Drupal HEAD"-page in
the Drupal handbook!
TODO: update the themes in the contributions repository.
2005-06-19 08:50:46 +00:00
Dries Buytaert
f12d5c5347
- Patch #21918 by budda/Robin: forum icons are broken when you change the forum icon path. TODO 1: the forum icons should probably be configurable on a per-site or per-theme basis. TODO 2: I spent 5 minutes looking for this setting.
2005-06-19 08:43:59 +00:00
Dries Buytaert
a7af266b6d
- Patch #25143 by Robin: use count() instead of is_array() so we don't render code for empty arrays, and such you don't get warnings using PHP5.
2005-06-19 08:13:14 +00:00
Steven Wittens
5cb153e335
- Replacing ugly old "powered by" buttons with better ones.
2005-06-18 16:33:30 +00:00
Dries Buytaert
c50316212b
- Patch #1898 by Djun: more book module improvements including but not limited
...
to OPML export functionality, better code comments, better help texts, etc.
2005-06-07 19:20:20 +00:00
Dries Buytaert
1474632aa0
- Patch #24135 by Moshe: made it possible to ban visitors based on hostname/IP. Banning visitors can either be done from the 'access control' pages, or directly from the statistics pages. This feature is very convenient to block badly behaving crawlers.
2005-06-07 18:54:37 +00:00
Dries Buytaert
d76053f049
- Patch #24450 by Neil: removed some dead code.
2005-06-07 18:39:35 +00:00
Steven Wittens
6ba82cc0c0
- book_render() was broken after a faulty commit. Adding back.
...
See:
http://cvs.drupal.org/viewcvs/drupal/drupal/modules/book.module?r1=1.294&r2=1.295
2005-06-07 08:30:16 +00:00
Dries Buytaert
eb803411d1
- Patch #24003 by Steven: fix problems with node attribute checking (and improve defaults).
2005-06-06 18:59:37 +00:00
Dries Buytaert
8436082fe1
- Removing some whitespace
2005-06-06 14:07:04 +00:00
Dries Buytaert
596843dae6
- Crop long columns.
2005-06-06 14:04:47 +00:00
Steven Wittens
2f28cc0bcc
- #24278 : Emit correct XHTML <link> tag.
2005-06-05 19:10:53 +00:00
Dries Buytaert
78cb173247
- Modified version of patch #1482 by Djun:
...
This patch enables export of books as XML documents.
The XML is DocBook "at the level of structure", but
node contents are wrapped as CDATA, since we
can't be sure that the contents are valid XML.
Several other bugs/feature requests are also
addressed with this patch:
- Fixes bugs
http://drupal.org/node/1898
http://drupal.org/node/1482
http://drupal.org/node/8049
http://drupal.org/node/1899
Should go a long way towards implementing feature request
http://drupal.org/node/2062
It should also be easy to extend this to produce OPML,
for example.
- Adds about 170 lines, of which more than 100 are comments
- Added doxygen comments
- Made doxygen comment format consistent; fixed minor grammatical slips
- A proper Doctype and more informative HTML element is generated
for printer-friendly HTML output.
- Refactored book_print() to use book_recurse().
- Refactored book_recurse(). Applies 'visitor' callback functions to nodes
during weight/title order tree-traversal. The parameterized
visitor callbacks can be used to generate different kinds of output.
There are many other kinds of operations on books which can be implemented
by writing a pre-node/post-node pair of callback functions: word-count/
statistics gathering, comparison, copying, search and replace...
- Introduced book_export() which uses book_recurse() to generate
DocBook-like XML to export book contents in a structured form.
An md5 hash is computed for each node to help import code to
decide if a node needs to be updated or not.
2005-06-05 10:52:04 +00:00
Dries Buytaert
efdd76ad3d
- Patch #22416 : fixed typo that prevented menu item descriptions from showing up in links.
2005-06-05 09:47:13 +00:00
Dries Buytaert
12ea785baf
- Patch #24141 : fix XML UTF-8 bom issue with PHP5.
...
Workaround for the fact that PHP5 cannot parse UTF-8 encoded XML feeds
that start with the so-called "byte order mark".
2005-06-04 14:13:43 +00:00
Dries Buytaert
8d4236c9e4
- urlencode() the subjects in the admin overview page.
2005-06-04 09:52:17 +00:00
Dries Buytaert
263b7e230d
- Fixed registration bug.
2005-06-01 20:21:35 +00:00
Steven Wittens
cb5b2f332c
- #24068 : Fix "undefined is undefined" error in IE5 with drupal.js
2005-06-01 17:43:33 +00:00
Steven Wittens
1a3f0ddb86
- #23685 : urlencode() profile field names and values in the URL (any dynamic data in an url should be urlencoded to prevent characters like # and & from being interpreted by the browser/server).
2005-06-01 04:29:57 +00:00
Steven Wittens
6c4318d21f
- #23736 : Remove dependency of system.module on node.module
2005-06-01 04:17:37 +00:00
Steven Wittens
0cda6e20cf
- #23734 : Replace date() with format_date() in aggregator
2005-06-01 04:03:54 +00:00
Steven Wittens
c928f9c1bb
- #18836 : Cleanup teaser generation code, and refine handling of PHP code teasers.
2005-06-01 03:42:47 +00:00
Steven Wittens
5257b684ff
- #18836 : Cleanup teaser generation code, and refine handling of PHP code teasers.
2005-06-01 03:32:22 +00:00
Steven Wittens
0b008c55ff
- Use & instead of numerical entity in autop.
2005-06-01 03:21:44 +00:00
Steven Wittens
cec393d9df
- Fix node form fieldsets being broken in IE after Safari/Konqueror fix.
2005-05-31 23:23:48 +00:00
Steven Wittens
a597354bcb
- Code cleanup: improve format_plural usage, add some missing placeholder/check calls, and introduce API for <link> tags.
2005-05-31 21:14:27 +00:00
Steven Wittens
025bca28aa
- Forgot about tablesort dependency on pager.
2005-05-31 19:54:31 +00:00
Steven Wittens
8bfe10bb96
- Typo in upload messages: %quote -> %quota
2005-05-31 04:10:21 +00:00
Steven Wittens
b5ece96886
- Fixing charset in mime_header_encode()
2005-05-30 18:08:49 +00:00
Steven Wittens
ba41568963
- #23360 : Chameleon: fix taxonomy terms disappearing if there are no node links.
2005-05-27 05:20:08 +00:00
Steven Wittens
82e606f7ab
- #23700 : Fix some broken t()'s in common.inc
2005-05-26 23:39:25 +00:00
Dries Buytaert
d0390be0bd
- Patch #18275 by Steven: "create content" menu displays extraneous links.
...
(Not sure if this needs to be backported to DRUPAL-4-6.)
2005-05-26 19:29:48 +00:00
Dries Buytaert
500ea7480c
- Patch #22909 by kinai: fixed various errors in the PostgreSQL database scheme.
...
(Yay, more PostgreSQL contributors! :))
2005-05-26 19:23:44 +00:00
Dries Buytaert
2e81e39b51
- Added something about the AJAX auto-complete forms.
2005-05-26 19:20:52 +00:00
Dries Buytaert
0250938e2b
- Patch #17028 by Ber: theme xml_icon should allow inline XML icons.
2005-05-26 19:08:14 +00:00
Dries Buytaert
f68f9111ca
- Patch #23633 by Moshe: improve grouping in default profile page.
2005-05-26 19:03:05 +00:00
Dries Buytaert
e579f4d407
- Patch #23588 by Ber: fixed incorrect call to theme_user_picture.
2005-05-25 19:54:49 +00:00