summaryrefslogtreecommitdiff
path: root/modules/poll/poll.module
Commit message (Collapse)AuthorAge
* - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, ↵Dries Buytaert2008-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 #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long ↵Dries Buytaert2008-04-14
| | | | discussion we've decided to make the concatenation operator consistent with the other operators.
* - Patch #216072 by recidive, David Rothstein, ptalindstrom et al: switched ↵Dries Buytaert2008-04-10
| | | | | | | | | | | 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.
* - Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide ↵Dries Buytaert2008-02-20
| | | | descriptions for permissions on the permission administration page.
* - Patch #209236 by traxer: added a validation function for the poll form.Dries Buytaert2008-01-15
|
* #153998 by David_Rothstein and myself: clean up permissions in book, blog, ↵Gábor Hojtsy2008-01-09
| | | | blogapi, forum and locale modules
* - Patch #202078 by chx: fixed poll AHAH problem with caching.Dries Buytaert2008-01-04
|
* #203582 by David_Rothstein: some core hook_access() implementations are not ↵Gábor Hojtsy2008-01-01
| | | | using the passed in account
* #204996 by chx: poll bar theme gets NULL as default, so use that here as wellGábor Hojtsy2007-12-31
|
* - Patch #204996 by chx: fixed access check and warning in poll module.Dries Buytaert2007-12-31
|
* #67895 patch by myself, tested by JirkaRybka and blackdog: move poll votes ↵Gábor Hojtsy2007-12-17
| | | | with poll options, when an option is removed, instead of dropping all old votes, solving an old data loss bug
* #200069 by keith.smith: new standard for 'more information' links in module ↵Gábor Hojtsy2007-12-14
| | | | help texts, as the handbook we referred to before was renamed
* #189025 by AjK: fix two small E_ALL bugs in poll.moduleGábor Hojtsy2007-12-14
|
* #197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, ↵Gábor Hojtsy2007-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 Hojtsy2007-12-08
| | | | | | | | - whitespaces at end of lines - indentation - control structure usage - whitespace in empty lines - phpdoc comment formatting
* #196667 (GHOP 45) by fberci: add '@ingroup themeable' to all themeable functionsGábor Hojtsy2007-12-06
|
* - Patch #162381 by Heine et al: properly escape strings.Dries Buytaert2007-11-28
|
* #120960 by blakehall, JirkaRybka, catch: improve usability of content ↵Gábor Hojtsy2007-11-26
| | | | editing permission names
* #189009 by AjK: edit own poll permission was missing from poll module ↵Gábor Hojtsy2007-11-05
| | | | (although available for other content types)
* - Patch #89196 by catch, keith, earnie, webchick et al: string massaging.Dries Buytaert2007-10-25
|
* #184198 by Eaton: move button title change in polls to the theme, so it does ↵Gábor Hojtsy2007-10-22
| | | | not interfere with the cached form
* #184867 by deekayen, catch and keith.smith: fix some spelling errors in our ↵Gábor Hojtsy2007-10-21
| | | | source code and messages printed
* #184199 by quicksketch: proper weights for poll form fields, so the fields ↵Gábor Hojtsy2007-10-17
| | | | are not reordered
* - Patch #155870 by quicksketch et al: AHAH-ification of the poll module.Dries Buytaert2007-10-17
|
* #72487 by chx, pwolanin and moshe weitzman: let node_access() work on ↵Gábor Hojtsy2007-10-11
| | | | arbitrary users, so independent user access checks can be done in a request
* #172642 by dvessel: block theme file name suggestion for poll nodesGábor Hojtsy2007-09-06
|
* - Patch #172836 by Crell: split poll module.Dries Buytaert2007-09-05
|
* #170677 by chx: roll back poll data loading to the load operationGábor Hojtsy2007-08-30
|
* - Patch #168028 by dvessler, merlinofchaos, pwolanin et al: both theme ↵Dries Buytaert2007-08-26
| | | | functions and templates may need include files. Flush your caches.
* #111127 by chx: cache node_load(), so heavy operations loading data from ↵Gábor Hojtsy2007-08-25
| | | | external sources and only invoked once (note that you should do everything dynamic in the view op, not the load op)
* #110511 by bjaspan: poll listing page should have a 'count_sql' because the ↵Gábor Hojtsy2007-08-09
| | | | original query uses group by, so it is not countable properly
* - Patch #163723 by Eaton and Frando: fix default page.tpl markup (and ↵Dries Buytaert2007-08-02
| | | | removed some whitespace).
* - Patch #162871 by merlinofchaos: poll module cleanup + tplified the module.Dries Buytaert2007-08-02
|
* - Rollback of patch #147723: delete API. Talked to Steven and Gabor and weDries Buytaert2007-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 Hojtsy2007-06-30
| | | | router path based lookups, and also full path argument lookup with a passed argument array
* #147723: Deletion API (by hunmonk). Woop woop.Steven Wittens2007-06-22
|
* - Patch #146667 by Eaton: correct builder argument ordering, eliminate ↵Dries Buytaert2007-06-04
| | | | redundant arguments
* - Patch #146470 by Eaton et al: standardize form API3 hook parameter order.Dries Buytaert2007-05-28
|
* - Patch #142773 by kbahey: made Drupal work correctly when behind a reverse ↵Dries Buytaert2007-05-25
| | | | proxy.
* - Patch #138706 by eaton, chx, webchick, yched et al: form api 3 ... yay. :)Dries Buytaert2007-05-14
|
* - Patch #128082 by Goba et al: Allow localization of built-in menu items.Dries Buytaert2007-04-30
|
* - Patch #130987 by merlinofchaos: added theme registry for easier themability.Dries Buytaert2007-04-06
|
* #130971: Kitchen sink (E_NOTICE compliance / Code style / Bugfix in book toc)Steven Wittens2007-03-27
|
* - Patch #113603 by chx: first crack at re-implementing tabs.Dries Buytaert2007-02-11
|
* - Patch #34755 by chx et al: faster menu system. HEAD is temporary broken ↵Dries Buytaert2007-01-24
| | | | and there is no upgrade path yet.
* #104617 by robertDouglass. Use more efficient stlye which hits the static cache.Neil Drumm2006-12-25
|
* - Patch #102413 by yched: path node/add/[poll|forum|blog] defined twice.Dries Buytaert2006-12-10
|
* - Patch #92992 by webchick and neclimdul: clean up documentation that is ↵Dries Buytaert2006-11-21
| | | | superseded by the new 'by module' administration dashboard.
* #84146: Use 'Sentence capitalization' for menu items, page titles, form ↵Steven Wittens2006-10-22
| | | | items, etc
* - Patch #87957 by Eaton: poll module form fixes.Dries Buytaert2006-10-09
|