Skip to content

Commit ec840d5

Browse files
committed
Remove CDATA where it wrapped <desc> content.
Not needed after @scottgonzalez fixes the xsl in grunt-jquery-content
1 parent 8810ad4 commit ec840d5

29 files changed

+52
-52
lines changed

entries/ajaxComplete.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<desc>The function to be invoked.</desc>
88
</argument>
99
</signature>
10-
<desc><![CDATA[Register a handler to be called when Ajax requests complete. This is an <a href="http://docs.jquery.com/Ajax_Events">AjaxEvent</a>.]]></desc>
10+
<desc>Register a handler to be called when Ajax requests complete. This is an <a href="http://docs.jquery.com/Ajax_Events">AjaxEvent</a>.</desc>
1111
<longdesc>
1212
<p>Whenever an Ajax request completes, jQuery triggers the <code>ajaxComplete</code> event. Any and all handlers that have been registered with the <code>.ajaxComplete()</code> method are executed at this time.</p>
1313
<p>To observe this method in action, we can set up a basic Ajax load request:</p>
@@ -43,4 +43,4 @@
4343
</example>
4444
<category slug="ajax/global-ajax-event-handlers"/>
4545
<category slug="version/1.0"/>
46-
</entry>
46+
</entry>

entries/ajaxError.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<desc>The function to be invoked.</desc>
88
</argument>
99
</signature>
10-
<desc><![CDATA[Register a handler to be called when Ajax requests complete with an error. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.]]></desc>
10+
<desc>Register a handler to be called when Ajax requests complete with an error. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.</desc>
1111
<longdesc>
1212
<p>Whenever an Ajax request completes with an error, jQuery triggers the <code>ajaxError</code> event. Any and all handlers that have been registered with the <code>.ajaxError()</code> method are executed at this time.</p>
1313
<p>To observe this method in action, set up a basic Ajax load request.</p>
@@ -39,4 +39,4 @@
3939
</example>
4040
<category slug="ajax/global-ajax-event-handlers"/>
4141
<category slug="version/1.0"/>
42-
</entry>
42+
</entry>

entries/ajaxSend.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<desc>The function to be invoked.</desc>
88
</argument>
99
</signature>
10-
<desc><![CDATA[Attach a function to be executed before an Ajax request is sent. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.]]></desc>
10+
<desc>Attach a function to be executed before an Ajax request is sent. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.</desc>
1111
<longdesc>
1212
<p>Whenever an Ajax request is about to be sent, jQuery triggers the <code>ajaxSend</code> event. Any and all handlers that have been registered with the <code>.ajaxSend()</code> method are executed at this time.</p>
1313
<p>To observe this method in action, we can set up a basic Ajax load request:</p>
@@ -39,4 +39,4 @@
3939
</example>
4040
<category slug="ajax/global-ajax-event-handlers"/>
4141
<category slug="version/1.0"/>
42-
</entry>
42+
</entry>

entries/ajaxStart.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<desc>The function to be invoked.</desc>
88
</argument>
99
</signature>
10-
<desc><![CDATA[Register a handler to be called when the first Ajax request begins. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.]]></desc>
10+
<desc>Register a handler to be called when the first Ajax request begins. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.</desc>
1111
<longdesc>
1212
<p>Whenever an Ajax request is about to be sent, jQuery checks whether there are any other outstanding Ajax requests. If none are in progress, jQuery triggers the <code>ajaxStart</code> event. Any and all handlers that have been registered with the <code>.ajaxStart()</code> method are executed at this time.</p>
1313
<p>To observe this method in action, we can set up a basic Ajax load request:</p>
@@ -33,4 +33,4 @@
3333
</example>
3434
<category slug="ajax/global-ajax-event-handlers"/>
3535
<category slug="version/1.0"/>
36-
</entry>
36+
</entry>

entries/ajaxStop.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<entry type="method" name="ajaxStop" return="jQuery">
33
<title>.ajaxStop()</title>
4-
<desc><![CDATA[Register a handler to be called when all Ajax requests have completed. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.]]></desc>
4+
<desc>Register a handler to be called when all Ajax requests have completed. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.</desc>
55
<signature>
66
<added>1.0</added>
77
<argument name="handler()" type="Function">
@@ -33,4 +33,4 @@
3333
</example>
3434
<category slug="ajax/global-ajax-event-handlers"/>
3535
<category slug="version/1.0"/>
36-
</entry>
36+
</entry>

entries/ajaxSuccess.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<desc>The function to be invoked.</desc>
88
</argument>
99
</signature>
10-
<desc><![CDATA[Attach a function to be executed whenever an Ajax request completes successfully. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.]]></desc>
10+
<desc>Attach a function to be executed whenever an Ajax request completes successfully. This is an <a href='http://docs.jquery.com/Ajax_Events'>Ajax Event</a>.</desc>
1111
<longdesc>
1212
<p>Whenever an Ajax request completes successfully, jQuery triggers the <code>ajaxSuccess</code> event. Any and all handlers that have been registered with the <code>.ajaxSuccess()</code> method are executed at this time.</p>
1313
<p>To observe this method in action, we can set up a basic Ajax load request:</p>
@@ -41,4 +41,4 @@
4141
</example>
4242
<category slug="ajax/global-ajax-event-handlers"/>
4343
<category slug="version/1.0"/>
44-
</entry>
44+
</entry>

entries/context.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<signature>
55
<added>1.3</added>
66
</signature>
7-
<desc><![CDATA[The DOM node context originally passed to <code>jQuery()</code>; if none was passed then context will likely be the document.]]></desc>
7+
<desc>The DOM node context originally passed to <code>jQuery()</code>; if none was passed then context will likely be the document.</desc>
88
<longdesc>
99
<p>The <code>.live()</code> method for binding event handlers uses this property to determine the root element to use for its event delegation needs.</p>
1010
<p>The value of this property is typically equal to <code>document</code>, as this is the default context for jQuery objects if none is supplied. The context may differ if, for example, the object was created by searching within an <code>&lt;iframe&gt;</code> or XML document.</p>
@@ -28,4 +28,4 @@
2828
<category slug="internals"/>
2929
<category slug="properties/jquery-object-instance-properties"/>
3030
<category slug="version/1.3"/>
31-
</entry>
31+
</entry>

entries/deferred.notify.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
</desc>
1010
</argument>
1111
</signature>
12-
<desc><![CDATA[ Call the progressCallbacks on a Deferred object with the given <code>args</code>. ]]></desc>
12+
<desc> Call the progressCallbacks on a Deferred object with the given <code>args</code>. </desc>
1313
<longdesc>
1414
<p>Normally, only the creator of a Deferred should call this method; you can prevent other code from changing the Deferred's state or reporting status by returning a restricted Promise object through deferred.promise().</p>
1515
<p>When <code>deferred.notify</code> is called, any progressCallbacks added by <a href="http://api.jquery.com/deferred.then/"><code>deferred.then</code></a> or <a href="http://api.jquery.com/deferred.progress/"><code>deferred.progress</code></a> are called. Callbacks are executed in the order they were added. Each callback is passed the <code>args</code> from the <code>.notify()</code>. Any calls to <code>.notify()</code> after a Deferred is resolved or rejected (or any progressCallbacks added after that) are ignored. For more information, see the documentation for <a href="http://api.jquery.com/category/deferred-object/">Deferred object</a>.</p>
1616
</longdesc>
1717
<category slug="deferred-object"/>
1818
<category slug="version/1.7"/>
19-
</entry>
19+
</entry>

entries/deferred.notifyWith.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
</desc>
1515
</argument>
1616
</signature>
17-
<desc><![CDATA[ Call the progressCallbacks on a Deferred object with the given context and <code>args</code>. ]]></desc>
17+
<desc> Call the progressCallbacks on a Deferred object with the given context and <code>args</code>. </desc>
1818
<longdesc>
1919
<p>Normally, only the creator of a Deferred should call this method; you can prevent other code from changing the Deferred's state or reporting status by returning a restricted Promise object through deferred.promise().</p>
2020
<p>When <code>deferred.notifyWith</code> is called, any progressCallbacks added by <a href="http://api.jquery.com/deferred.then/"><code>deferred.then</code></a> or <a href="http://api.jquery.com/deferred.progress/"><code>deferred.progress</code></a> are called. Callbacks are executed in the order they were added. Each callback is passed the <code>args</code> from the <code>.notifyWith()</code>. Any calls to <code>.notifyWith()</code> after a Deferred is resolved or rejected (or any progressCallbacks added after that) are ignored. For more information, see the documentation for <a href="http://api.jquery.com/category/deferred-object/">Deferred object</a>.</p>
2121
</longdesc>
2222
<category slug="deferred-object"/>
2323
<category slug="version/1.7"/>
24-
</entry>
24+
</entry>

entries/deferred.reject.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
</desc>
1010
</argument>
1111
</signature>
12-
<desc><![CDATA[ Reject a Deferred object and call any failCallbacks with the given <code>args</code>. ]]></desc>
12+
<desc> Reject a Deferred object and call any failCallbacks with the given <code>args</code>. </desc>
1313
<longdesc>
1414
<p>Normally, only the creator of a Deferred should call this method; you can prevent other code from changing the Deferred's state by returning a restricted Promise object through <a href="http://api.jquery.com/deferred.promise/"><code>deferred.promise()</code></a>.</p>
1515
<p>When the Deferred is rejected, any failCallbacks added by <a href="http://api.jquery.com/deferred.then/"><code>deferred.then</code></a> or <a href="http://api.jquery.com/deferred.fail/"><code>deferred.fail</code></a> are called. Callbacks are executed in the order they were added. Each callback is passed the <code>args</code> from the <code>deferred.reject()</code> call. Any failCallbacks added after the Deferred enters the rejected state are executed immediately when they are added, using the arguments that were passed to the <code>.reject()</code> call. For more information, see the documentation for <a href="http://api.jquery.com/category/deferred-object/">Deferred object</a>.</p>
1616
</longdesc>
1717
<category slug="deferred-object"/>
1818
<category slug="version/1.5"/>
19-
</entry>
19+
</entry>

entries/deferred.rejectWith.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
</desc>
1515
</argument>
1616
</signature>
17-
<desc><![CDATA[ Reject a Deferred object and call any failCallbacks with the given <code>context</code> and <code>args</code>. ]]></desc>
17+
<desc> Reject a Deferred object and call any failCallbacks with the given <code>context</code> and <code>args</code>. </desc>
1818
<longdesc>
1919
<p>Normally, only the creator of a Deferred should call this method; you can prevent other code from changing the Deferred's state by returning a restricted Promise object through <a href="http://api.jquery.com/deferred.promise/"><code>deferred.promise()</code></a>.</p>
2020
<p>When the Deferred is rejected, any failCallbacks added by <a href="/deferred.then/"><code>deferred.then</code></a> or <a href="/deferred.fail/"><code>deferred.fail</code></a> are called. Callbacks are executed in the order they were added. Each callback is passed the <code>args</code> from the <code>deferred.reject()</code> call. Any failCallbacks added after the Deferred enters the rejected state are executed immediately when they are added, using the arguments that were passed to the <code>.reject()</code> call. For more information, see the documentation for <a href="/category/deferred-object/">Deferred object</a>.</p>
2121
</longdesc>
2222
<category slug="deferred-object"/>
2323
<category slug="version/1.5"/>
24-
</entry>
24+
</entry>

entries/deferred.resolve.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
</desc>
1010
</argument>
1111
</signature>
12-
<desc><![CDATA[ Resolve a Deferred object and call any doneCallbacks with the given <code>args</code>. ]]></desc>
12+
<desc> Resolve a Deferred object and call any doneCallbacks with the given <code>args</code>. </desc>
1313
<longdesc>
1414
<p>When the Deferred is resolved, any doneCallbacks added by <a href="/deferred.then/"><code>deferred.then</code></a> or <a href="/deferred.done/"><code>deferred.done</code></a> are called. Callbacks are executed in the order they were added. Each callback is passed the <code>args</code> from the <code>.resolve()</code>. Any doneCallbacks added after the Deferred enters the resolved state are executed immediately when they are added, using the arguments that were passed to the <code>.resolve()</code> call. For more information, see the documentation for <a href="/category/deferred-object/">Deferred object</a>.</p>
1515
</longdesc>
1616
<category slug="deferred-object"/>
1717
<category slug="version/1.5"/>
18-
</entry>
18+
</entry>

entries/deferred.resolveWith.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
</desc>
1515
</argument>
1616
</signature>
17-
<desc><![CDATA[ Resolve a Deferred object and call any doneCallbacks with the given <code>context</code> and <code>args</code>. ]]></desc>
17+
<desc> Resolve a Deferred object and call any doneCallbacks with the given <code>context</code> and <code>args</code>. </desc>
1818
<longdesc>
1919
<p>Normally, only the creator of a Deferred should call this method; you can prevent other code from changing the Deferred's state by returning a restricted Promise object through <a href="http://api.jquery.com/deferred.promise/"><code>deferred.promise()</code></a>.</p>
2020
<p>When the Deferred is resolved, any doneCallbacks added by <a href="/deferred.then/"><code>deferred.then</code></a> or <a href="/deferred.done/"><code>deferred.done</code></a> are called. Callbacks are executed in the order they were added. Each callback is passed the <code>args</code> from the <code>.resolve()</code>. Any doneCallbacks added after the Deferred enters the resolved state are executed immediately when they are added, using the arguments that were passed to the <code>.resolve()</code> call. For more information, see the documentation for <a href="/category/deferred-object/">Deferred object</a>.</p>
2121
</longdesc>
2222
<category slug="deferred-object"/>
2323
<category slug="version/1.5"/>
24-
</entry>
24+
</entry>

entries/die.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<entry type="method" name="die" return="jQuery" deprecated="1.7">
33
<title>.die()</title>
4-
<desc><![CDATA[Remove event handlers previously attached using <code>.live()</code> from the elements.]]></desc>
4+
<desc>Remove event handlers previously attached using <code>.live()</code> from the elements.</desc>
55
<signature>
66
<added>1.4.1</added>
77
</signature>

entries/eq-selector.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<desc>Zero-based index of the element to match.</desc>
99
</argument>
1010
</signature>
11-
<desc><![CDATA[Select the element at index <code>n</code> within the matched set.]]></desc>
11+
<desc>Select the element at index <code>n</code> within the matched set.</desc>
1212
<longdesc>
1313
<p>The index-related selectors (<code>:eq()</code>, <code>:lt()</code>, <code>:gt()</code>, <code>:even</code>, <code>:odd</code>) filter the set of elements that have matched the expressions that precede them. They narrow the set down based on the order of the elements within this matched set. For example, if elements are first selected with a class selector (<code>.myclass</code>) and four elements are returned, these elements are given indices <code>0</code> through <code>3</code> for the purposes of these selectors.</p>
1414
<p>Note that since JavaScript arrays use <em>0-based indexing</em>, these selectors reflect that fact. This is why <code>$('.myclass:eq(1)')</code> selects the second element in the document with the class myclass, rather than the first. In contrast, <code>:nth-child(n)</code> uses <em>1-based indexing</em> to conform to the CSS specification.</p>
@@ -55,4 +55,4 @@ $("ul.nav li:nth-child(2)").css( "color", "red" );
5555
<category slug="selectors/basic-filter-selectors"/>
5656
<category slug="selectors/jquery-selector-extensions"/>
5757
<category slug="version/1.0"/>
58-
</entry>
58+
</entry>

entries/even-selector.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<signature>
66
<added>1.0</added>
77
</signature>
8-
<desc><![CDATA[Selects even elements, zero-indexed. See also <a href="/Selectors/odd">odd</a>.]]></desc>
8+
<desc>Selects even elements, zero-indexed. See also <a href="/Selectors/odd">odd</a>.</desc>
99
<longdesc>
1010
<p>In particular, note that the <em>0-based indexing</em> means that, counter-intuitively, <code>:even</code> selects the first element, third element, and so on within the matched set.</p>
1111
</longdesc>
@@ -30,4 +30,4 @@
3030
<category slug="selectors/basic-filter-selectors"/>
3131
<category slug="selectors/jquery-selector-extensions"/>
3232
<category slug="version/1.0"/>
33-
</entry>
33+
</entry>

entries/event.isDefaultPrevented.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<signature>
55
<added>1.3</added>
66
</signature>
7-
<desc><![CDATA[Returns whether <a href="/event.preventDefault">event.preventDefault()</a> was ever called on this event object. ]]></desc>
7+
<desc>Returns whether <a href="/event.preventDefault">event.preventDefault()</a> was ever called on this event object. </desc>
88
<longdesc> </longdesc>
99
<example>
1010
<desc>Checks whether event.preventDefault() was called.</desc>
@@ -16,4 +16,4 @@
1616
</example>
1717
<category slug="events/event-object"/>
1818
<category slug="version/1.3"/>
19-
</entry>
19+
</entry>

entries/event.isPropagationStopped.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<signature>
55
<added>1.3</added>
66
</signature>
7-
<desc><![CDATA[ Returns whether <a href="/event.stopPropagation">event.stopPropagation()</a> was ever called on this event object. ]]></desc>
7+
<desc> Returns whether <a href="/event.stopPropagation">event.stopPropagation()</a> was ever called on this event object. </desc>
88
<longdesc>
99
<p>This event method is described in the <a href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/events.html#Events-Event-isPropagationStopped">W3C DOM Level 3 specification</a>.</p>
1010
</longdesc>
@@ -35,4 +35,4 @@ $("button").click(function(event) {
3535
</example>
3636
<category slug="events/event-object"/>
3737
<category slug="version/1.3"/>
38-
</entry>
38+
</entry>

entries/event.result.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<signature>
55
<added>1.3</added>
66
</signature>
7-
<desc><![CDATA[The last value returned by an event handler that was triggered by this event, unless the value was <code>undefined</code>.]]></desc>
7+
<desc>The last value returned by an event handler that was triggered by this event, unless the value was <code>undefined</code>.</desc>
88
<longdesc>
99
<p>This property can be useful for getting previous return values of custom events. </p>
1010
</longdesc>
@@ -25,4 +25,4 @@ $("button").click(function(event) {
2525
</example>
2626
<category slug="events/event-object"/>
2727
<category slug="version/1.3"/>
28-
</entry>
28+
</entry>

entries/gt-selector.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<desc>Zero-based index.</desc>
99
</argument>
1010
</signature>
11-
<desc><![CDATA[Select all elements at an index greater than <code>index</code> within the matched set.]]></desc>
11+
<desc>Select all elements at an index greater than <code>index</code> within the matched set.</desc>
1212
<longdesc>
1313
<p>
1414
<strong>index-related selectors</strong>
@@ -31,4 +31,4 @@
3131
<category slug="selectors/basic-filter-selectors"/>
3232
<category slug="selectors/jquery-selector-extensions"/>
3333
<category slug="version/1.0"/>
34-
</entry>
34+
</entry>

0 commit comments

Comments
 (0)