Fix #12423. Ensure we can .apply() before we try.
[jquery.git] / CONTRIBUTING.md
blob8f24c79c9bf57592e25637dd2f0669a5ce59105b
1 # Contributing to jQuery
3 1. [Getting Involved](#getting-involved)
4 2. [Discussion](#discussion)
5 3. [How To Report Bugs](#how-to-report-bugs)
6 4. [Core Style Guide](#jquery-core-style-guide)
7 5. [Tips For Bug Patching](#tips-for-jquery-bug-patching)
11 ## Getting Involved
13 There are a number of ways to get involved with the development of jQuery core. Even if you've never contributed code to an Open Source project before, we're always looking for help identifying bugs, writing and reducing test cases and documentation.
16 This is the best way to contribute to jQuery core. Please read through the full guide detailing [How to Report Bugs](#How-to-Report-Bugs).
18 ## Discussion
20 ### Forum and IRC
22 The jQuery core development team frequently tracks posts on the [http://forum.jquery.com/developing-jquery-core jQuery Development Forum]. If you have longer posts or questions please feel free to post them there. If you think you've found a bug please [file it in the bug tracker](#How-to-Report-Bugs).
24 Additionally most of the jQuery core development team can be found in the [http://webchat.freenode.net/?channels=jquery-dev #jquery-dev] IRC channel on irc.freenode.net.
26 ### Weekly Status Meetings
28 Every week (unless otherwise noted) the jQuery core dev team has a meeting to discuss the progress of current work and to bring forward possible new blocker bugs for discussion.
30 The meeting is held in the [#jquery-meeting](http://webchat.freenode.net/?channels=jquery-meeting) IRC channel on irc.freenode.net at [Noon EST](http://www.timeanddate.com/worldclock/fixedtime.html?month=1&day=17&year=2011&hour=12&min=0&sec=0&p1=43) on Mondays.
32 [Past Meeting Notes](https://docs.google.com/document/d/1MrLFvoxW7GMlH9KK-bwypn77cC98jUnz7sMW1rg_TP4/edit?hl=en)
35 ## How to Report Bugs
37 ### Make sure it is a jQuery bug
39 Many bugs reported to our bug tracker are actually bugs in user code, not in jQuery code. Keep in mind that just because your code throws an error and the console points to a line number inside of jQuery, this does *not* mean the bug is a jQuery bug; more often than not, these errors result from providing incorrect arguments when calling a jQuery function.
41 If you are new to jQuery, it is usually a much better idea to ask for help first in the [http://forum.jquery.com/using-jquery Using jQuery Forum] or the [http://webchat.freenode.net/?channels=%23jquery jQuery IRC channel]. You will get much quicker support, and you will help avoid tying up the jQuery team with invalid bug reports. These same resources can also be useful if you want to confirm that your bug is indeed a bug in jQuery before filing any tickets.
44 ### Disable any browser extensions
46 Make sure you have reproduced the bug with all browser extensions and add-ons disabled, as these can sometimes cause things to break in interesting and unpredictable ways. Try using incognito, stealth or anonymous browsing modes.
49 ### Try the latest version of jQuery
51 Bugs in old versions of jQuery may have already been fixed. In order to avoid reporting known issues, make sure you are always testing against the [latest build](http://code.jquery.com/jquery.js).
53 ### Try an older version of jQuery
55 Sometimes, bugs are introduced in newer versions of jQuery that do not exist in previous versions. When possible, it can be useful to try testing with an older release.
57 ### Reduce, reduce, reduce!
59 When you are experiencing a problem, the most useful thing you can possibly do is to [http://webkit.org/quality/reduction.html reduce your code] to the bare minimum required to reproduce the issue. This makes it *much* easier to isolate and fix the offending code. Bugs that are reported without reduced test cases take on average 9001% longer to fix than bugs that are submitted with them, so you really should try to do this if at all possible.
61 ## jQuery Core Style Guide
63 See: [jQuery Core Style Guide](http://docs.jquery.com/JQuery_Core_Style_Guidelines)
65 ## Tips For Bug Patching
68 ### Environment: localhost w/ PHP, Node & Grunt
70 Starting in jQuery 1.8, a newly overhauled development workflow has been introduced. In this new system, we rely on node & gruntjs to automate the building and validation of source code—while you write code.
72 The Ajax tests still depend on PHP running locally*, so make sure you have the following installed:
74 * Some kind of localhost server program that supports PHP (any will do)
75 * Node.js
76 * NPM (comes with the latest version of Node.js)
77 * Grunt (install with: `npm install grunt -g`
80 Maintaining a list of platform specific instructions is outside of the scope of this document and there is plenty of existing documentation for the above technologies.
82 * The PHP dependency will soon be shed in favor of an all-node solution.
85 ### Build a Local Copy of jQuery
87 Create a fork of the jQuery repo on github at http://github.com/jquery/jquery
89 Change directory to your web root directory, whatever that might be:
91 ```bash
92 $ cd /path/to/your/www/root/
93 ```
95 Clone your jQuery fork to work locally
97 ```bash
98 $ git clone git@github.com:username/jquery.git
99 ```
101 Change directory to the newly created dir jquery/
103 ```bash
104 $ cd jquery
107 Add the jQuery master as a remote. I label mine "upstream"
109 ```bash
110 $ git remote add upstream git://github.com/jquery/jquery.git
113 Get in the habit of pulling in the "upstream" master to stay up to date as jQuery receives new commits
115 ```bash
116 $ git pull upstream master
119 Run the Grunt tools:
121 ```bash
122 $ grunt && grunt watch
125 Now open the jQuery test suite in a browser at http://localhost/test. If there is a port, be sure to include it.
127 Success! You just built and tested jQuery!
130 ### Fix a bug from a ticket filed at bugs.jquery.com: ===
132 **NEVER write your patches to the master branch** - it gets messy (I say this from experience!)
134 **ALWAYS USE A "TOPIC" BRANCH!** Like so (#### = the ticket #)...
136 Make sure you start with your up-to-date master:
138 ```bash
139 $ git checkout master
142 Create and checkout a new branch that includes the ticket #
144 ```bash
145 $ git checkout -b bug_####
147 # ( Explanation: this useful command will:
148 # "checkout" a "-b" (branch) by the name of "bug_####"
149 # or create it if it doesn't exist )
152 Now you're on branch: bug_####
154 Determine the module/file you'll be working in...
156 Open up the corresponding /test/unit/?????.js and add the initial failing unit tests. This may seem awkward at first, but in the long run it will make sense. To truly and efficiently patch a bug, you need to be working against that bug.
158 Next, open the module files and make your changes
160 Run http://localhost/test --> **ALL TESTS MUST PASS**
162 Once you're satisfied with your patch...
164 Stage the files to be tracked:
166 ```bash
167 $ git add filename
168 # (you can use "git status" to list the files you've changed)
172 ( I recommend NEVER, EVER using "git add . " )
174 Once you've staged all of your changed files, go ahead and commit them
176 ```bash
177 $ git commit -m "Brief description of fix. Fixes #0000"
180 For a multiple line commit message, leave off the `-m "description"`.
182 You will then be led into vi (or the text editor that you have set up) to complete your commit message.
184 Then, push your branch with the bug fix commits to your github fork
186 ```bash
187 $ git push origin -u bug_####
190 Before you tackle your next bug patch, return to the master:
192 ```bash
193 $ git checkout master
198 ### Test Suite Tips...
200 During the process of writing your patch, you will run the test suite MANY times. You can speed up the process by narrowing the running test suite down to the module you are testing by either double clicking the title of the test or appending it to the url. The following examples assume you're working on a local repo, hosted on your localhost server.
202 Example:
204 http://localhost/test/?filter=css
206 This will only run the "css" module tests. This will significantly speed up your development and debugging.
208 **ALWAYS RUN THE FULL SUITE BEFORE COMMITTING AND PUSHING A PATCH!**
211 ### jQuery supports the following browsers:
213 * Chrome Current-1
214 * Safari Current-1
215 * Firefox Current-1
216 * IE 6+
217 * Opera Current-1