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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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>

0 commit comments

Comments
 (0)