corrade-http-templates – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 # Contributing to jQuery UI
2  
3 Welcome! Thanks for your interest in contributing to jQuery UI. Most of our information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [code](http://contribute.jquery.org/code).
4  
5 You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla).
6  
7 You can find us on [IRC](http://irc.jquery.org), specifically in #jqueryui-dev should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). For other forms of discussion and support, please see the [jQuery UI support center](http://jqueryui.com/support/).
8  
9 ## Getting Involved
10  
11 There are a number of ways to get involved with the development of jQuery UI. 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.
12  
13 This is the best way to contribute to jQuery UI. Please read through the full guide detailing [How to Report Bugs](http://contribute.jquery.org/bug-reports/).
14  
15 ### Weekly Meetings
16  
17 Every week (unless otherwise noted) the jQuery UI team has a meeting to discuss the progress of current work and to bring forward possible new blockers for discussion. The meeting is held on [IRC](http://irc.jquery.org) in the #jquery-meeting channel 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 Wednesdays. Meeting notes are posted on http://meetings.jquery.org/category/ui/ after each meeting.
18  
19 ## Tips for Getting Started
20  
21 ### Environment: Minimum Required
22  
23 If you are contributing changes you will need a fork of jquery-ui (see [Getting the Source](#environment-getting-the-source)). If you just want the source code you could clone jquery-ui directly:
24  
25 ```bash
26 git clone git://github.com/jquery/jquery-ui.git
27 cd jquery-ui
28 ```
29  
30 The tests can run in any local web server. Ideally you should test your patch in appropriate web browsers and if possible run `npm test` to lint the code and run automated tests (this will happen automatically when you create a pull request). See the [Recommended Setup](#environment-recommended-setup) for setting up Node.js so that the `npm test` command works.
31  
32 ### Environment: Getting the Source
33  
34 * Create a fork of the jQuery UI repo on GitHub at http://github.com/jquery/jquery-ui. This will create a fork of jquery-ui in your Github account.
35 * You may want to clone jquery-ui under the path to your web server. If so, change to the required directory
36  
37 ```bash
38 cd /path/to/your/www/root/
39 ```
40  
41 * Clone your jQuery UI git repo.
42  
43 ```bash
44 git clone git://github.com/[USERNAME]/jquery-ui.git
45 cd jquery-ui
46 ```
47  
48 *Note: be sure to replace `[USERNAME]` with your GitHub username.*
49  
50 * Add the official jQuery repository as a remote. We recommend naming it "upstream".
51  
52 ```bash
53 git remote add upstream git://github.com/jquery/jquery-ui.git
54 ```
55  
56 * Get in the habit of pulling in the "upstream" master to stay up to date as jQuery UI receives new commits.
57  
58 ```bash
59 git pull upstream master
60 ```
61  
62 ### Environment: Recommended Setup
63  
64 jQuery UI uses Node.js to automate the building and validation of source code. Here is how to set that up:
65  
66 * Get [Node.js](http://nodejs.org/) (includes NPM, necessary for the next step)
67 * Install local Node.js modules
68  
69 ```bash
70 npm install
71 ```
72  
73 The tests require a local web server and the samples contain some PHP, so a PHP web server may be useful.
74  
75 * Install a web server. Here are some you could use:
76 * Windows: [WAMP download](http://www.wampserver.com/en/)
77 * Mac: [MAMP download](http://www.mamp.info/en/index.html)
78 * Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
79 * [Mongoose (most platforms)](http://code.google.com/p/mongoose/)
80 * [http-server](https://www.npmjs.com/package/http-server)
81  
82 ### Running the Tests
83  
84 To lint the JavaScript, HTML, and CSS, as well as run a smoke test in PhantomJS, run the full test suite through npm:
85  
86 ```bash
87 npm test
88 ```
89  
90 To run the tests for a specific plugin in your browser, open the appropriate file from the `/tests/unit/` directory, for example: `http://localhost/tests/unit/accordion/accordion.html`. The domain will be dependent on your local server configuration; if there is a port, be sure to include it.
91  
92 Ideally you would test in all of our [supported browsers](http://jqueryui.com/browser-support/), but if you don't have all of these browsers available, that's ok.