Dries Buytaert
f6a4263476
- Patch #52015 by mustafau: update timestamps for aggregator news items.
2008-09-03 19:25:08 +00:00
Dries Buytaert
2405ec9ad7
- Patch #302275 by chx: don't use TRUNCATE, use DELETE FROM instead
2008-08-31 14:15:07 +00:00
Dries Buytaert
78fd1a143a
- Patch #245322 by mfb: fixed breadcrumb behavior.
2008-08-16 21:13:32 +00:00
Dries Buytaert
64764bf961
- Patch #43245 by mustafau, Dries, agentrickard, markus_petrux, et al: add an option to not generate blocks for RSS feeds.
2008-08-16 14:48:54 +00:00
Dries Buytaert
6e882d8905
- Patch #293532 by mustafau: when a redirected feed is not parseable Aggregator saves a watchdog entry saying that the feed was updated, however the feed remains unchanged in the database.
2008-08-12 10:42:41 +00:00
Dries Buytaert
73f98066f5
- Patch #291064 by mustafau: improve performance of aggregator by storing an md5 hash for the feed.
2008-08-12 07:00:48 +00:00
Dries Buytaert
c83339e326
- Patch #16282 by mustafau: OPML import improvements.
2008-08-11 07:05:26 +00:00
Dries Buytaert
a993136f8e
- Patch #293614 by mustafau: aggregator files two similar error messages for not parseable feeds.
2008-08-11 07:01:52 +00:00
Dries Buytaert
ab5cdfda61
- Patch #268491 by mustafu, pwolanin, et al: fixed notice after deleting aggregator feed.
2008-08-08 20:09:22 +00:00
Dries Buytaert
5876461d75
- Patch #290561 by mustafu: fixed bug with creating aggregator categories.
2008-08-03 18:17:37 +00:00
Dries Buytaert
6b46092549
- Patch #290561 by mustafu: improved the aggregator category tests.
2008-08-03 18:16:51 +00:00
Dries Buytaert
745ac159fa
- Patch #174179 by mustafu, spatz4000, fgm: heading hierachy was not always consistent.
2008-08-03 16:10:50 +00:00
Dries Buytaert
7010dcd1a3
- Patch #16282 by Arancaytar, mustafau, keith.smith, et al: add OPML import functionality for RSS feeds. Woot.
2008-08-03 05:46:56 +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
e1ef7fb3db
- Patch #278617 by asimmonds: fixed broken link.
2008-07-05 05:57:00 +00:00
Dries Buytaert
6e2358b232
- Patch #270045 by drewish, Susurrus: clean up return values.
2008-06-18 03:36:24 +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
6b88e61700
- Patch #256793 by Senpai and flobruit: code clean up.
2008-05-15 21:27:32 +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
21576021bf
- Patch #249546 by pwolanin: rip menu access inheritance -- was already committed to D6.
2008-04-23 20:01:56 +00:00
Dries Buytaert
d330a6f25b
- Patch #226869 by hswong3i: code style clean-up.
2008-04-23 17:35:07 +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
f5d4287cd5
- Patch #214271 by recidive: improved schema identation.
2008-03-15 12:31:29 +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
38226d51cd
- Patch #208926 by keith.smith: fixed broken link. The external link to the RSS specification changed.
2008-01-15 08:06:32 +00:00
Gábor Hojtsy
78bc68f304
Drupal 6 RC2
2008-01-10 22:47:17 +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
Gábor Hojtsy
b78a990270
#207569 by ScoutBaker (minor code style): clean up @see usage in phpdoc blocks
2008-01-08 10:35:43 +00:00
Dries Buytaert
a88c178b91
- Patch #204221 by webernet: code style fixes.
2007-12-28 12:02:52 +00:00
Gábor Hojtsy
e08abdd252
#194946 by dmitrig01, Pasqualle: christmas cleanup (some code style issues fixed)
2007-12-23 13:17:20 +00:00
Gábor Hojtsy
ac4c8f7ab0
#203274 by Pasqualle: remove excessive witespace from our code (minor)
2007-12-22 23:24:26 +00:00
Gábor Hojtsy
e6a4b82e6e
#196535 by sun, chx, dww: check whether Drupal can issue HTTP requests at all, so we know that this is the cause of problems, not the remote host not responding.
2007-12-20 08:57:55 +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
dbf5d8d370
#197730 by keith.smith: standardize on a much more user friendly cron reference in help texts, explain its importance with more examples in INSTALL.txt
2007-12-19 17:45:43 +00:00
Dries Buytaert
b4f2f168c5
- Patch #199508 by Pancho: parameters for form validation and submission have changed.
2007-12-18 21:39:47 +00:00
Dries Buytaert
c8b1ddf26a
- Patch #164532 by catch, pwolanin, David Strauss, et al.: improve table indicies for common queries.
2007-12-18 12:59:22 +00:00
Gábor Hojtsy
19f807b705
#201468 by blackdog: fix notice in aggregator, when categorization form is saved without picking a category
2007-12-17 13:05:30 +00:00
Gábor Hojtsy
ebbd7ddc01
#198609 by blackdog and myself: fix two notices and remove one stale line in aggregator module
2007-12-17 09:58:04 +00:00
Gábor Hojtsy
b7a2becd15
#197314 by vitezslav.smid (as GHOP 39): improve/add/update phpdoc in aggregator, comment and system modules
2007-12-16 21:01:45 +00:00
Gábor Hojtsy
97b326ff07
#176868 by marcingy: feed_age was misnamed source_age in aggregator variable initialization
2007-12-16 18:27:46 +00:00
Gábor Hojtsy
b038c605cd
#189495 by myself, reviewed by Pasqualle: fix composit text used with t() in aggregator module
2007-12-16 18:06:27 +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
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
5622bce2d5
#198579 by webernet and hswong3i: a huge set of coding style fixes, including:
...
- whitespaces at end of lines
- indentation
- control structure usage
- whitespace in empty lines
- phpdoc comment formatting
2007-12-08 14:06:23 +00:00
Gábor Hojtsy
e16be08d55
#195781 by keith.smith: improve aggregator help text
2007-12-04 16:34:27 +00:00
Dries Buytaert
9a96837b89
- Patch #163246 by keith smith, freso, O Govinda, catch, webchick et al: fixed minor spelling issues and fixed spacing issues.
2007-11-26 16:36:44 +00:00
Gábor Hojtsy
91e980a271
#187881 by mooffie: fix misnamed database table names in schema documentation
2007-11-04 14:33:07 +00:00