aboutsummaryrefslogtreecommitdiffstats
path: root/includes/api/ApiEmailUser.php
Commit message (Collapse)AuthorAgeFilesLines
...
* Correct the address of the FSF in some of the GPL headersDerk-Jan Hartman2010-06-211-1/+1
| | | | | | | 59 Temple Place -> 51 Franklin Street Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/68353
* Remove arrays from getDescription where we are only using 1 lineSam Reed2010-05-251-3/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/66893
* Mixture of things.Sam Reed2010-05-111-0/+1
| | | | | | | | | | | Couple of class comments Normalisation of "." usage at end of lines (removed) Normalisation of {prefix}parameter as per bug 23461 Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/66232
* Stylize Api upto dateSam Reed2010-04-171-3/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/65183
* Overhaul Special:EmailUser, use HTMLForm, a SpecialPage-derived class, and ↵Happy-melon2010-04-101-11/+12
| | | | | | | general tidy up. Message change got muddled into r64901. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/64903
* ApiEmailUser.php: fix copyright symbol, spacing and coding style tweaks, ↵Jack Phoenix2010-02-221-26/+33
| | | | | | | spaces -> tabs, trimmed off trailing whitespace Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/62823
* Followup to r62557 as per Roans commentSam Reed2010-02-161-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/62599
* Refactor requiresToken to getTokenSalt - Returns salt if exists, null if no ↵Sam Reed2010-02-151-2/+2
| | | | | | | | | | | | | salt, else false if no token required Move sessionfailure (token validation checking) up a couple of levels Part of bug 21991 Followup to r62482 and r62504 Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/62557
* Start of "Bug 21991 - Move common query parameter (uc, rc) validation, ↵Sam Reed2010-02-141-3/+4
| | | | | | | | | | | | | token requiringness/checking to ApiBase/Similar" Move token requringness check to the ApiMain Adding an exception if we're using "gettoken" (block/unblock) Remove array( 'missingparam', 'token' ), from the getPossibleErrors of modules that set requireToken method to true Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/62482
* Change layout of the mustBePosted format to standardise itSam Reed2010-02-141-1/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/62478
* Start of blanket coverage of dieUsageMsg in getPossibleErrorsSam Reed2010-02-131-0/+9
| | | | | | | | | Only basic ones done. Couple of other modules done manually Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/62402
* Add/remove whitelines to increase readability in API code filesSam Reed2010-01-231-3/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/61437
* stylize.php on API codeAryeh Gregor2010-01-111-6/+6
| | | | | | | | | | | | "I wouldn't object to stylizing the API code to bring it in line with the rest of MW on principle, but I'm not gonna bother myself." --Roan <http://www.mediawiki.org/wiki/Special:Code/MediaWiki/60657#c5108> If you're seeing this commit in blames, tell your blame tool to ignore whitespace, e.g., git blame -w or svn blame -x -w. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/60930
* * API: (bug 17774) API pretends action=query doesn't exist for users without ↵Roan Kattouw2009-03-061-4/+5
| | | | | | | | | | | | read rights * Instead of hiding read-restricted modules, throw an error when a user without read rights tries to use them * Do the same for write modules when $wgEnableWriteAPI is false * Indicate whether a module needs read or write rights in action=help and action=paraminfo * BREAKING CHANGE: action=purge now requires write rights and, for anonymous users, a POST request Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/48091
* Revert r46512 (Add "check" parameter to action=email) and its followups ↵Roan Kattouw2009-01-311-21/+5
| | | | | | | r46515 and r46517. This functionality is already present in list=users (as usprop=emailable), where it belongs Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46642
* Also return why the target user is not validBryan Tong Minh2009-01-291-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46547
* Kill code duplication & other style tweaksBryan Tong Minh2009-01-291-11/+11
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46546
* Forgot to remove thatX!2009-01-291-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46517
* Per 46512#c1554, moving check to before required params, returns a result ↵X!2009-01-291-7/+17
| | | | | | | rather than an error, and it must be posted. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46515
* Add "check" parameter to action=emailX!2009-01-291-2/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/46512
* API:Roan Kattouw2008-09-251-1/+0
| | | | | | | | * Title::moveTo() has been returning a getUserPermissionsErrors()-like array for ages now, let's use it correctly in ApiMove and skip the double-checks * Remove some outdated TODO/FIXME comments Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/41269
* API: Uniformizing descriptions for write modulesRoan Kattouw2008-09-071-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/40595
* missing svn:keywords propertyAlexandre Emsenhuber2008-09-041-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/40460
* * Fixup validation methods in UserEmailForm a bit so that they don't return ↵Bryan Tong Minh2008-08-271-2/+7
| | | | | | | | | arrays when it's not necessary. * Add email errors to the API's message map Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/40080
* Revert r39793 "* (bug 13879) Special:EmailUser shows a form in case no user ↵Brion Vibber2008-08-211-2/+0
| | | | | | | | | | | | was specified" for the moment * Recipient name seems to be output raw into HTML form; this is insecure * We've lost the link to the target's user page in the primary use case (followed 'email this user' link) * Behavior if you misspell a name doesn't look very nice; you can't just fix it and resubmit the form, you have to hit 'back' from an error page and hope your browser isn't one that deletes all your form data :D Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/39799
* * (bug 13879) Special:EmailUser shows a form in case no user was specifiedBryan Tong Minh2008-08-211-0/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/39793
* ... and should have also made this an arrayBryan Tong Minh2008-06-021-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/35759
* Forgot to return successBryan Tong Minh2008-06-021-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/35758
* Put ratelimiter and edittoken checking in backend.Bryan Tong Minh2008-06-021-11/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/35755
* API: Add action=emailuserBryan Tong Minh2008-06-011-0/+117
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/35681