|
1 | 1 | --- |
2 | | -layout: layouts/base.njk |
3 | | -eleventyNavigation: |
4 | | - key: Home |
5 | | - order: 1 |
6 | | -numberOfLatestPostsToShow: 3 |
| 2 | +layout: layouts/wiki.njk |
7 | 3 | --- |
8 | | -{% set postsCount = collections.posts | length %} |
9 | | -{% set latestPostsCount = postsCount | min(numberOfLatestPostsToShow) %} |
10 | | -<h1>Latest {{ latestPostsCount }} Post{% if latestPostsCount != 1 %}s{% endif %}</h1> |
11 | 4 |
|
12 | | -{% set postslist = collections.posts | head(-1 * numberOfLatestPostsToShow) %} |
13 | | -{% set postslistCounter = postsCount %} |
14 | | -{% include "postslist.njk" %} |
15 | | - |
16 | | -{% set morePosts = postsCount - numberOfLatestPostsToShow %} |
17 | | -{% if morePosts > 0 %} |
18 | | -<p>{{ morePosts }} more post{% if morePosts != 1 %}s{% endif %} can be found in <a href="/blog/">the archive</a>.</p> |
19 | | -{% endif %} |
20 | | - |
21 | | -{# List every content page in the project #} |
22 | | -{# |
| 5 | +<p> |
| 6 | +Thanks for coming to report a bug or suggest a feature for jQuery! Before reporting, please take a minute to make sure this is the right place to file your issue. |
| 7 | +</p> |
| 8 | +<p> |
| 9 | + <strong>jQuery plugins:</strong> Report your bug to its author, <strong>not here</strong>. |
| 10 | +</p> |
| 11 | +<p> |
| 12 | + <strong>jQuery Core API Documentation issues:</strong> Problems with the documentation should be reported to <a class="ext-link" href="http://github.com/jquery/api.jquery.com/issues"> |
| 13 | + <span class="icon"></span>api.jquery.com GitHub repository</a>. |
| 14 | +</p> |
| 15 | +<p> |
| 16 | + <strong>jQuery web site issues:</strong> Use the trackers in the <a class="ext-link" href="http://github.com/jquery/"> |
| 17 | + <span class="icon"></span>individual repos</a> for each site by its domain name, e.g., <a class="ext-link" href="http://github.com/jquery/api.jquery.com/issues"> |
| 18 | + <span class="icon"></span>api.jquery.com</a>, <a class="ext-link" href="http://github.com/jquery/jquery.com/issues"> |
| 19 | + <span class="icon"></span>jquery.com</a>. Web site issues may also lie in <a class="ext-link" href="http://github.com/jquery/jquery-wp-content/issues"> |
| 20 | + <span class="icon"></span>jquery-wp-content</a>, and can be filed there if appropriate. If you file an web site issue in the wrong place, we will work to make sure it ends up in the right place, however the jQuery core bug tracker is <strong>not that place.</strong> |
| 21 | +</p> |
| 22 | +<p> |
| 23 | + <strong>jQuery UI (Tabs, Dialog, etc.):</strong> Use the <a class="ext-link" href="http://bugs.jqueryui.com/"> |
| 24 | + <span class="icon"></span>jQuery UI bug tracker</a>. |
| 25 | +</p> |
| 26 | +<p> |
| 27 | + <strong>jQuery Mobile:</strong> Use the <a class="ext-link" href="https://github.com/jquery/jquery-mobile/issues"> |
| 28 | + <span class="icon"></span>jQuery Mobile GitHub tracker</a>. |
| 29 | +</p> |
| 30 | +<p> |
| 31 | + <strong>jQuery core bugs only:</strong> Follow these instructions. |
| 32 | +</p> |
23 | 33 | <ul> |
24 | | - {%- for entry in collections.all %} |
25 | | - <li><a href="{{ entry.url }}"><code>{{ entry.url }}</code></a></li> |
26 | | - {%- endfor %} |
| 34 | + <li> |
| 35 | + <a class="ext-link" href="http://bugs.jquery.com/search?ticket=on"> |
| 36 | + <span class="icon"></span>Search</a> for existing similar tickets. |
| 37 | +</li> |
| 38 | + <li>Create a <strong>minimal</strong> test case on <a class="ext-link" href="http://jsfiddle.net"> |
| 39 | + <span class="icon"></span>jsfiddle.net</a> or <a class="ext-link" href="http://jsbin.com"> |
| 40 | + <span class="icon"></span>jsbin.com</a> demonstrating the issue. Remember that the team only supports the most recent versions; do not report a bug against version 1.7.2 for example. |
| 41 | +</li> |
| 42 | + <li>Read <a class="ext-link" href="http://docs.jquery.com/How_to_Report_Bugs"> |
| 43 | + <span class="icon"></span>How to Report Bugs</a> before creating a ticket. |
| 44 | +</li> |
| 45 | + <li>File your bug at the <a class="ext-link" href="https://github.com/jquery/jquery/issues"> |
| 46 | + <span class="icon"></span>jQuery Issue Tracker</a>. |
| 47 | +</li> |
27 | 48 | </ul> |
28 | | -#} |
|
0 commit comments