summaryrefslogtreecommitdiff
path: root/modules/openid/openid.module
Commit message (Collapse)AuthorAge
...
* - Patch #118345 by sun | nedjo, pwolanin, webchick: DIE hook_user_form() + ↵Dries Buytaert2009-09-22
| | | | hook_user_register() DIE!
* Patch #579366 by sun, litwol | chx, Dries: simplified form API redirection ↵Dries Buytaert2009-09-21
| | | | handling. I can actually understand it now. ;-).
* #365597 by mfb, Jody Lynn: Don't show access denied when logging in via ↵Angie Byron2009-09-17
| | | | OpenID to user/login.
* SA-CORE-2009-008Angie Byron2009-09-16
|
* - Patch #319840 by Aron Novak, darren.ferguson: added hook to the OpenID ↵Dries Buytaert2009-09-13
| | | | module for returning data when a user has logged in.
* #497118 by chx, catch, pwolanin, JoshuaRogers, and Jacob Singh: Remove the ↵Angie Byron2009-08-24
| | | | function registry. While the hope was that this would result in improved performance for low-end hosts, it comes at the expense of critical development experience problems and less benefit than something like APC. Class registry remains intact to facilitate autoloading.
* Of all the patches to accidentally commit without a message. :( Rolling back ↵Angie Byron2009-08-24
| | | | registry rip. Let's try that again.
* *** empty log message ***Angie Byron2009-08-24
|
* #326539 by JohnAlbin, sun, cha0s, ultimateboy, Rob Loach, Damien Tournoud: ↵Angie Byron2009-08-22
| | | | Convert 'class' attribute to use an array, not a string.
* - Patch #491972 by Berdir, webchick: clean-up of user/profile related hooks ↵Dries Buytaert2009-08-12
| | | | and APIs.
* - Patch #497612 by Moshe Weitzman et al: harden user login by correctly ↵Dries Buytaert2009-06-30
| | | | using the form API. Complete commit now. Thank you, thank you.
* - Patch #222044 by c960657: better support for different OpenID versions.Dries Buytaert2009-06-10
|
* #339466 follow-up by c960657: Remove url() around OpenID help links.Angie Byron2009-06-07
|
* - Patch #477944 by Damien Tournoud: fix and streamline page cache and ↵Dries Buytaert2009-06-02
| | | | session handling.
* - Patch #472642 by stella, agentrickard: remove 'implementation of' ↵Dries Buytaert2009-05-27
| | | | nominalizations from Docblocks.
* - Patch #471070 by stella: millions of code style fixes.Dries Buytaert2009-05-24
|
* - Patch #251245 by c960657: added tests for the OpenID module. The test ↵Dries Buytaert2009-04-29
| | | | module implements a dummy OpenID provider/server. Most impressive patch of the month.
* - Patch #333156 by stella: add ability to configure the default country.Dries Buytaert2009-03-17
|
* #404244 by cwgordon7: Fix indentation in OpenID module.Angie Byron2009-03-17
|
* - Patch #322344 by merlinofchaos, Frando, catch, sun: form improvements from ↵Dries Buytaert2009-03-14
| | | | Views.
* #287178 follow-up by dereine and Dave Reid: Fix notice in OpenID module ↵Angie Byron2009-03-01
| | | | which is referencing missing form_id variable.
* - Patch #366949 by c960657: use parse_url(, PHP_URL_xxx).Dries Buytaert2009-02-01
|
* #339466 by patryk: Replace the OpenID link in user help with official link.Angie Byron2009-01-22
|
* #287178 by justinrandell: Break up various hook_form_alter()s to ↵Angie Byron2009-01-22
| | | | hook_form_FORM_ID_alters().
* - Patch #201122 by c960657, Moshe Weitzman: never write anonymous sessions, ↵Dries Buytaert2009-01-19
| | | | unless something has been written to . This is an important performance improvements -- as long as you use modules that use carefully. It might be good to report some analytics about this in the performance settings page so administrators can see if there is a 'broken' module.
* - Patch #245990 by pwolanin: further clean-up of the HTTP request status ↵Dries Buytaert2009-01-14
| | | | fail problem.
* - Patch #352470 by scor: fixed typos and grammar in comments.Dries Buytaert2008-12-30
|
* - Patch #337783 by Dave Reid, drewish: array-itize drupal_http_requests()'s ↵Dries Buytaert2008-12-26
| | | | parameters.
* - Patch #280625 by catch, pwolanin, swentel, et al: added an OpenID delete ↵Dries Buytaert2008-11-22
| | | | confirm form.
* - Patch #266358 by Rob Loach, mfer: use array in drupal_add_css().Dries Buytaert2008-10-26
|
* #282405 by Damien Tournoud, lilou, Dave Reid: Enforce coding standard on elseif.Angie Byron2008-10-12
|
* - Patch #310212 by justinrandell, catch, et all: killed in _user hook, as ↵Dries Buytaert2008-10-06
| | | | well as two small kittens.
* - Patch #305645 by pwolanin: ['REQUEST_TIME'] -> REQUEST_TIME. Improved ↵Dries Buytaert2008-09-17
| | | | developer experience.
* - Patch #302763 by Dave Reid, Rob Loach: replace time() by ['REQUEST_TIME'] ↵Dries Buytaert2008-09-06
| | | | as per Rasmus' suggestion. Removed drupal_referrer() for consistency.
* - Patch #245329 by christefano and dmitrig01: code comment love.Dries Buytaert2008-07-24
|
* - Patch #252013 by Eaton, pwolanin, Susurrus et al: drupal_render() now ↵Dries Buytaert2008-07-16
| | | | printes #markup, not #value.
* - 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 #249546 by pwolanin: rip menu access inheritance -- was already ↵Dries Buytaert2008-04-23
| | | | committed to D6.
* - Patch #245826 by Jax: trust_root is not set for OpenID 1.0 due to an ↵Dries Buytaert2008-04-14
| | | | undefined variable.
* - 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 #181578 by Moshe: removed distributed authentication code from ↵Dries Buytaert2008-02-18
| | | | user_save(). Factored the relevant code out to a separate function.
* - Patch #210131 by dvessel, catch, John, et al: updated jQuery library.Dries Buytaert2008-02-06
|
* #216022 reported by johnnysxip, patch by walkah: (SA-2008-016) OpenID - ↵Gábor Hojtsy2008-01-30
| | | | Incorrect claimed_id returned for OpenID 2.0 and other minor OpenID 2.0 compliance fixes
* #207863 by mikey_p, Pancho: use module_load_include() as intendedGábor Hojtsy2008-01-30
|
* #208556 by Pancho: fix broken display of OpenID linksGábor Hojtsy2008-01-29
|
* #204705 by pwolanin: abort user_save on SQL errors, to avoid data corruptionGábor Hojtsy2008-01-10
|
* #196535 by sun, chx, dww: check whether Drupal can issue HTTP requests at ↵Gábor Hojtsy2007-12-20
| | | | all, so we know that this is the cause of problems, not the remote host not responding.
* #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
* #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
* - Patch #163246 by keith smith, freso, O Govinda, catch, webchick et al: ↵Dries Buytaert2007-11-26
| | | | fixed minor spelling issues and fixed spacing issues.