Dries Buytaert
c0cb68abcc
- Patch #319356 by recidive: clean up hook_nodeapi_ fucntion signatures and documentation because of previous node API clean-ups.
2008-12-09 11:30:25 +00:00
Dries Buytaert
eda100b83d
- Patch #338403 by drewish: code comments clean-up.
2008-11-25 13:14:29 +00:00
Dries Buytaert
39f4e0ebcd
- Patch #233407 by R.Muilwijk, catch, flobruit, et al: remove hardcoded references to blog module.
2008-11-01 18:23:12 +00:00
Angie Byron
8292bdd40a
Re-commit of #242873 by pwolanin and bjaspan: Make drupal_set_title() check_plain() by default.
2008-10-13 00:33:05 +00:00
Angie Byron
a3a420c3e6
Roll-back of #242873 : This caused horrendous problems with SimpleTest on some configurations.
2008-10-12 06:27:06 +00:00
Angie Byron
f76acb2d9d
#282405 by Damien Tournoud, lilou, Dave Reid: Enforce coding standard on elseif.
2008-10-12 04:30:09 +00:00
Angie Byron
ecf7ad41d0
#242873 by pwolanin and bjaspan: Make drupal_set_title() do check_plain() by default.
2008-10-11 21:11:02 +00:00
Angie Byron
7e02f2f782
#318984 by Xano and Dave Reid: Change 'Core - optional' to 'Core' in modules UI.
2008-10-11 02:33:14 +00:00
Angie Byron
3a0d4322ae
#206138 by pwolanin: Rename mis-named 'module' attribute in node types.
2008-10-08 03:27:56 +00:00
Dries Buytaert
026af5df34
- Patch #310212 by justinrandell, catch, et all: killed in _user hook, as well as two small kittens.
2008-10-06 11:30:12 +00:00
Dries Buytaert
f4d6bb190d
- Patch #237189 by catch, sepeck, birdmanx35: improved blog module description.
2008-07-22 20:00:55 +00:00
Dries Buytaert
57fe5103da
- Patch #252013 by Eaton, pwolanin, Susurrus et al: drupal_render() now printes #markup, not #value.
2008-07-16 21:59:29 +00:00
Dries Buytaert
ed086130de
- Patch #276174 by nbz: avoid calling check_plain() twice.
2008-07-05 11:55:32 +00:00
Dries Buytaert
c6c26b5e23
- Patch #247423 by boombatower: code style fixes for the tests.
2008-05-30 07:30:53 +00:00
Dries Buytaert
9a1a6c6467
- Patch #259496 by ksenzee and Desbeers: fixed a permission bug discovered by the tests. Yay.
2008-05-22 19:27:13 +00:00
Dries Buytaert
658b27c9ec
- Patch #257644 by Senpai: code cleanup.
2008-05-13 18:15:07 +00:00
Dries Buytaert
2e18cb8924
- Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, flobruit
...
et al. Can you say 'registry'? Drupal now maintains an internal registry of
all functions or classes in the system, allowing it to lazy-load code files as
needed (reducing the amount of code that must be parsed on each request). The
list of included files is cached per menu callback for subsequent loading by
the menu router. This way, a given page request will have all the code it needs
but little else, minimizing time spent parsing unneeded code.
2008-05-06 12:18:54 +00:00
Dries Buytaert
d1bc889242
- Patch #227830 by JohnAlbin: link attributes added to l() incorrectly.
2008-05-02 15:11:05 +00:00
Dries Buytaert
a7f12c0326
- Patch #251263 by catch: fixing up many code style issues in the tests.
2008-04-25 18:26:02 +00:00
Dries Buytaert
21576021bf
- Patch #249546 by pwolanin: rip menu access inheritance -- was already committed to D6.
2008-04-23 20:01:56 +00:00
Dries Buytaert
af474609e3
- Added a test framework to Drupal along with a first batch of tests for
...
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
2008-04-20 18:24:07 +00:00
Dries Buytaert
56d2664a90
- Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long discussion we've decided to make the concatenation operator consistent with the other operators.
2008-04-14 17:48:46 +00:00
Dries Buytaert
79b016d915
- Patch #216072 by recidive, David Rothstein, ptalindstrom et al: switched from numeric block IDs to string IDs.
...
The short explanation is that Drupal uses a lot of numeric deltas in the block system; blocks are identified by the 'module' and the 'delta'. In early Drupal, delta was numeric, but somewhere along the line it was changed to be possibly a string. In modern Drupal, block overrides are easily done via block-MODULE-DELTA.tpl.php. The primary motivation to switch to string IDs everywhere is to make these deltas friendlier to themers:
block-user-0.tpl.php --> block-user-navigation.tpl.php
block-user-1.tpl.php --> block-user-login.tpl.php
You get the picture.
2008-04-10 10:28:23 +00:00
Dries Buytaert
584f3e886a
- Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide descriptions for permissions on the permission administration page.
2008-02-20 13:46:43 +00:00
Dries Buytaert
b05db1f176
- Patch #221384 by webernet: update core compatibility to Drupal 7.
2008-02-18 19:19:49 +00:00
Dries Buytaert
44eb6d6992
- Patch #139290 by Arancaytar, Rob Loach, GreenLED, matt et al: when a user has no blog posts, show a status message.
2008-02-10 18:58:28 +00:00
Dries Buytaert
b8a1eab1fb
- Patch #210131 by dvessel, catch, John, et al: updated jQuery library.
2008-02-06 19:38:28 +00:00
Gábor Hojtsy
536fe2bbfb
#210479 by catch, dvessel: add newlines to list items, so inline display and RTL issues are resolved
2008-01-21 12:05:36 +00:00
Gábor Hojtsy
33f455d2df
#153998 by David_Rothstein and myself: clean up permissions in book, blog, blogapi, forum and locale modules
2008-01-09 09:51:35 +00:00
Dries Buytaert
a88c178b91
- Patch #204221 by webernet: code style fixes.
2007-12-28 12:02:52 +00:00
Gábor Hojtsy
6a95c27147
#202425 by keith.smith: standardize reference to block placement page as 'blocks administration page' to avoid any confusion
2007-12-19 19:13:29 +00:00
Gábor Hojtsy
b6532a4fdb
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
2007-12-14 18:08:50 +00:00
Gábor Hojtsy
20e652246f
#199822 by Nick Lewis: items array was not initialized in blog_feed_last()
2007-12-14 10:40:51 +00:00
Gábor Hojtsy
c6d841c096
#197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, update to drag and drop functionality, drupal.module removal, etc
2007-12-13 09:34:40 +00:00
Gábor Hojtsy
76cc2b94ae
#43447 by Kobus, add1sun and keith.smith: improve blog module help text, also removing ages old reference to import module
2007-11-26 23:35:12 +00:00
Gábor Hojtsy
022c9fccaf
#185893 by Rob Loach: only provide blog page for users having permission to blog
2007-11-04 15:45:15 +00:00
Dries Buytaert
8653f140c6
- Patch #186554 by Jo Wouters: fixed undefined variable.
2007-10-25 17:44:38 +00:00
Dries Buytaert
1cf05b0019
- Patch #89196 by catch, keith, earnie, webchick et al: string massaging.
2007-10-25 15:32:56 +00:00
Gábor Hojtsy
4e187261ab
#177497 by chx and Desbeers: revive Drupal 5's menu_set_location() functionality by introducing menu_set_item() (for consistency in function naming), thus fixing a regression in the current development code. Also fixing some misuse of menu_set_location() by using drupal_set_breadcrumb() instead.
2007-10-25 08:24:43 +00:00
Gábor Hojtsy
8903cda5ca
#179519 by chx, webchick and Desbeers: fix blog/[uid] to only display posts for that user and also set proper title
2007-10-24 11:17:01 +00:00
Gábor Hojtsy
8cd97cdd7d
#147492 by flobruit: make 'more' links themeable
2007-10-22 09:36:05 +00:00
Gábor Hojtsy
0ada4f136a
#72487 by chx, pwolanin and moshe weitzman: let node_access() work on arbitrary users, so independent user access checks can be done in a request
2007-10-11 16:37:43 +00:00
Dries Buytaert
b134b023e1
- Patch #163191 by hswong3i: removed db_num_rows() for compatibility with Oracle and DB2. Also a performance improvement.
2007-08-12 15:55:36 +00:00
Dries Buytaert
80213aff3c
- Patch #159634 by Crell: split the blog module.
2007-07-22 06:48:25 +00:00
Dries Buytaert
b6c069ad7d
- Patch #20295 by pyromanfo, webchick, Gurpartap Singh et al: allow forum topics to be custom node types.
2007-07-02 17:08:36 +00:00
Gábor Hojtsy
9e6ef53c2c
#154064 by pwolanin: get hook_help() up to speed to menu changes, allowing router path based lookups, and also full path argument lookup with a passed argument array
2007-06-30 19:46:58 +00:00
Steven Wittens
e7d31327cf
#144397 : Use drupal_render for user profiles and convert to themer-friendly .tpl.php files.
2007-06-21 04:38:41 +00:00
Dries Buytaert
29eb5a6284
- Patch #146910 by dww: only allow enabling modules with the same Drupal core compatibility version.
2007-06-08 05:50:58 +00:00
Dries Buytaert
7d4f2836ba
- Patch #128082 by Goba et al: Allow localization of built-in menu items.
2007-04-30 17:03:29 +00:00
Dries Buytaert
1cd3b7a01f
- Patch #128600 by scott.mclewin and spatz4000: ambigious field use in SQL query.
2007-04-23 17:04:34 +00:00