Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | #323112 by dmitrig01, kkaefer, quicksketch, frando and many many more: Now ↵ | Angie Byron | 2009-04-11 |
| | | | | presenting... Vertical Tabs. Fantastic new UI improvement for node forms and hopefully more in the future. | ||
* | #368064 by catch: Provide a top-level 'International' menu item for ↵ | Angie Byron | 2009-03-31 |
| | | | | localization and translation-related items. | ||
* | #376129 by boombatower, Damien Tournoud, and chx: Change getInfo() to a ↵ | Angie Byron | 2009-03-31 |
| | | | | static method to reduce memory footprint of SimpleTest. | ||
* | #367356 by ultimateboy: Add label above path form for consistency. | Angie Byron | 2009-03-30 |
| | |||
* | #383066 by David Strauss: Rename hook_nodeapi_X to hook_node_X. | Angie Byron | 2009-03-08 |
| | |||
* | - Rollback of #190867. | Dries Buytaert | 2009-01-13 |
| | |||
* | - Patch #348742 by catch: path tests should use drupalCreateNode() instead ↵ | Dries Buytaert | 2009-01-09 |
| | | | | of own createNode(). Code clean-up. | ||
* | - Patch #319356 by recidive: clean up hook_nodeapi_ fucntion signatures and ↵ | Dries Buytaert | 2008-12-09 |
| | | | | documentation because of previous node API clean-ups. | ||
* | - Patch #324313 by catch et al: load multiple nodes and terms at once. | Dries Buytaert | 2008-12-05 |
| | |||
* | - Patch #288039 by sun, ff1, agentrickard, fgm, ultimateboy: improved ↵ | Dries Buytaert | 2008-12-05 |
| | | | | usability of the aliased URL admin page. | ||
* | - Patch #335385 by Dave Reid: fixed maxlength of path alias fields to be ↵ | Dries Buytaert | 2008-11-22 |
| | | | | consistent with the database. | ||
* | - Patch #204106 by catch, Damien Tournoud: added test for translation of ↵ | Dries Buytaert | 2008-10-13 |
| | | | | path aliases. | ||
* | Re-commit of #242873 by pwolanin and bjaspan: Make drupal_set_title() ↵ | Angie Byron | 2008-10-13 |
| | | | | check_plain() by default. | ||
* | Roll-back of #242873: This caused horrendous problems with SimpleTest on ↵ | Angie Byron | 2008-10-12 |
| | | | | some configurations. | ||
* | #282405 by Damien Tournoud, lilou, Dave Reid: Enforce coding standard on elseif. | Angie Byron | 2008-10-12 |
| | |||
* | #242873 by pwolanin and bjaspan: Make drupal_set_title() do check_plain() by ↵ | Angie Byron | 2008-10-11 |
| | | | | default. | ||
* | #318984 by Xano and Dave Reid: Change 'Core - optional' to 'Core' in modules UI. | Angie Byron | 2008-10-11 |
| | |||
* | - Patch #318887 by Dave Reid: clean-up some array shifting code. | Dries Buytaert | 2008-10-09 |
| | |||
* | #313213 by maartenvg, Gábor Hojtsy: Add a 'title' attribute for permissions ↵ | Angie Byron | 2008-10-09 |
| | | | | to allow for localization of permission names | ||
* | - Patch #310212 by justinrandell: killed in _node hook, as well as twelve ↵ | Dries Buytaert | 2008-10-06 |
| | | | | sable tooth tigers. | ||
* | - Patch #161301 by Eaton, Sun, moshe and webchick: make checking for node ↵ | Dries Buytaert | 2008-09-27 |
| | | | | edit forms easier. DX improvement. | ||
* | #108979 by ewhipple, catch, and sun: Order permissions consistently, keep ↵ | Angie Byron | 2008-09-17 |
| | | | | node type related permissions together. | ||
* | - Patch #225450 by Crell, chx, bjaspan, catch, swentel, recidive et al: next ↵ | Dries Buytaert | 2008-08-21 |
| | | | | generation database layer for Drupal 7. | ||
* | - Patch #190867 by Damien Tournoud: remove access check when creating aliases. | Dries Buytaert | 2008-08-03 |
| | |||
* | - Patch #254553 by aclight: fixed E_NOTICE. | Dries Buytaert | 2008-06-21 |
| | |||
* | - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, ↵ | Dries Buytaert | 2008-05-06 |
| | | | | | | | | | | | 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. | ||
* | - Patch #251263 by catch: fixing up many code style issues in the tests. | Dries Buytaert | 2008-04-25 |
| | |||
* | - Patch #249546 by pwolanin: rip menu access inheritance -- was already ↵ | Dries Buytaert | 2008-04-23 |
| | | | | committed to D6. | ||
* | - Added a test framework to Drupal along with a first batch of tests for | Dries Buytaert | 2008-04-20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ... | ||
* | - Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long ↵ | Dries Buytaert | 2008-04-14 |
| | | | | discussion we've decided to make the concatenation operator consistent with the other operators. | ||
* | - Patch #229517 by keith.smith and flobruit: de-html selected interface strings. | Dries Buytaert | 2008-03-13 |
| | |||
* | - Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide ↵ | Dries Buytaert | 2008-02-20 |
| | | | | descriptions for permissions on the permission administration page. | ||
* | - Patch #221384 by webernet: update core compatibility to Drupal 7. | Dries Buytaert | 2008-02-18 |
| | |||
* | #216404 by Rob Loach: path_nodeapi() only worked for users with permissions, ↵ | Gábor Hojtsy | 2008-02-03 |
| | | | | although node loading requires the path to be loaded | ||
* | #207569 by ScoutBaker (minor code style): clean up @see usage in phpdoc blocks | Gábor Hojtsy | 2008-01-08 |
| | |||
* | - Patch #204221 by webernet: code style fixes. | Dries Buytaert | 2007-12-28 |
| | |||
* | #154517 follow up by Desbeers: path_form_alter() was not path alias language ↵ | Gábor Hojtsy | 2007-12-23 |
| | | | | aware | ||
* | #200069 by keith.smith: new standard for 'more information' links in module ↵ | Gábor Hojtsy | 2007-12-14 |
| | | | | help texts, as the handbook we referred to before was renamed | ||
* | #197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, ↵ | Gábor Hojtsy | 2007-12-13 |
| | | | | update to drag and drop functionality, drupal.module removal, etc | ||
* | #198579 by webernet and hswong3i: a huge set of coding style fixes, including: | Gábor Hojtsy | 2007-12-08 |
| | | | | | | | | - whitespaces at end of lines - indentation - control structure usage - whitespace in empty lines - phpdoc comment formatting | ||
* | #154517 follow up by Desbeers: fix saving and updating language aware path ↵ | Gábor Hojtsy | 2007-11-30 |
| | | | | aliases | ||
* | #154517 by chx and Desbeers: usability fixes for path module (required ↵ | Gábor Hojtsy | 2007-11-10 |
| | | | | fields, permission info and resetting the filter made possible), and fixing language usage on nodeapi update in path_nodeapi | ||
* | #166644 by pwolanin: path module was incorrectly using drupal_get_form | Gábor Hojtsy | 2007-08-12 |
| | |||
* | - Patch #163039 by Crell: fixed typo. | Dries Buytaert | 2007-07-30 |
| | |||
* | #162785 patch by swentel: fix missing form_state vars in path forms | Gábor Hojtsy | 2007-07-29 |
| | |||
* | - Patch #162463 by kbahey: fixed notice. | Dries Buytaert | 2007-07-28 |
| | |||
* | - Patch #161178 by Crell: split up path module. | Dries Buytaert | 2007-07-22 |
| | |||
* | #156910 by asimmonds: fix code indentation problems introduced with new code ↵ | Gábor Hojtsy | 2007-07-05 |
| | | | | in this development cycle; only whitespace changes | ||
* | - Rollback of patch #147723: delete API. Talked to Steven and Gabor and we | Dries Buytaert | 2007-07-01 |
| | | | | | | | | | unanimously agreed to rollback the deletion API. We all support the features this patch added, yet not its actual design and implementation. After some talk, we decided that it would be better for Drupal -- in the long term -- not to go with a solution that isn't 100%. We also recognize that in the short term, this patch would have been useful addition. So let's figure out how we can implement this properly in D7. | ||
* | #154064 by pwolanin: get hook_help() up to speed to menu changes, allowing ↵ | Gábor Hojtsy | 2007-06-30 |
| | | | | router path based lookups, and also full path argument lookup with a passed argument array |