CINXE.COM
User Contribution Search
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link href="/static/common.css" rel="stylesheet" type="text/css" /> <link href="/static/diff.css" rel="stylesheet" type="text/css" /> <title>User Contribution Search</title> <!--<script type="text/javascript" src="//static.toolforge.org/res/jquery/2.1.0/jquery.min.js"></script>--> <script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> <script type="text/javascript"> var urlParams={};(function(){var a,b=/\+/g,c=/([^&=]+)=?([^&]*)/g,d=function(a){return decodeURIComponent(a.replace(b," "))},e=window.location.search.substring(1);while(a=c.exec(e))urlParams[d(a[1])]=d(a[2])})(); // http://stackoverflow.com/questions/901115/how-can-i-get-query-string-values function setTheParams() { var elem; for (var key in urlParams) { elem = $("#" + key); if (elem.prop("type") == 'checkbox') elem.prop("checked", 1); else elem.val(urlParams[key]); } } $(document).ready(setTheParams); </script> </head> <body onload="initForm();"> <h1>User Contribution Search</h1> <p>This tool will search through a page's history and return edits made by a particular user on that page.</p> <p>Expand the "Help & Tips" section at the bottom of this page for help with using this tool effectively.</p> <div id=indexform> <form action="usersearch.py" method=GET> <div id="formalign"> <label for=name>Username:</label> <input type=text id=name name=name autofocus /> <label for=page>Page:</label> <input type=text id=page name=page /> <label for=server>Database:</label> <input type=text id=server name=server value=enwiki /> <label for=max>Max number of edits to return: <span class="small">(default=100, max=500)</span> </label> <input type=text id=max name=max maxlength=3 size=5 /> </div> <div style="clear:both; padding-top:10px;"> <label for=noredirect>Don't resolve redirects</label> <input type=checkbox id=noredirect name=noredirect disabled /> <label for=wildcards>Allow wildcards in page title (*)</label> <input type=checkbox id=wildcards name=wildcards disabled /> <label for=casesensitive>Page title is case sensitive (only applies when wildcards are used)</label> <input type=checkbox id=casesensitive name=casesensitive disabled /> <button type="submit">Submit</button> </div> </form> </div> <br/> <a onclick="$('#helpdiv').toggle()">Help & Tips</a> <div id="helpdiv" style="display:none"> <ul> <li><b>Don't resolve redirects</b> — Normally, the tool will try to resolve redirects, so if you use "WP:ANI" for the page name, it will resolve it to "Wikipedia:Administrators' noticeboard/Incidents". However, in the rare case that you want to list a user's contributions to a page that is currently a redirect, check this checkbox.</li> <li><b>Allow wildcards in page title</b> — To search through a range of pages, use asterisks in the page name for wildcards. Note that wildcards do not work in the namespace, so "User*:Snottywong" won't return edits from "User:Snottywong" and "User talk:Snottywong". Use wildcards only after the colon.</li> <li><b>Page title is case sensitive</b> — When wildcards are enabled, the pages search is not case sensitive unless this checkbox is checked. This option has no effect when wildcards are not enabled.</li> </ul> </div> <br /> <br /> <small> Elapsed time: 0.0 seconds. <br /> 07:17:48, 24 Nov 2024 </small> <div id=footer> <a href="https://toolforge.org/"> <img src="/static/res/logos/powered-by-tool-labs-2.png" alt="Powered by Toolforge" style="float: left"/> </a> <small> © 2016 <a href="https://en.wikipedia.org/wiki/User:Σ">User:Σ</a> </small> </div> </body> </html>