Skip to content

Commit

Permalink
fix asdoc compilation issue mikechambers#152 and mikechambers#153 fro…
Browse files Browse the repository at this point in the history
…m original fork
  • Loading branch information
sangupta committed Apr 30, 2012
1 parent c943a4c commit fa0832b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/com/adobe/net/URI.as
Original file line number Diff line number Diff line change
Expand Up @@ -830,15 +830,15 @@ package com.adobe.net
* is used. This URI class supports the common "param=value"
* style query syntax via the get/setQueryValue() and
* get/setQueryByMap() functions. Those functions should be used
* instead if the common syntax is being used.
* instead if the common syntax is being used.</p>
*
* <p>The URI RFC does not specify any particular
* syntax for the query part of a URI. It is intended to allow
* any format that can be agreed upon by the two communicating hosts.
* However, most systems have standardized on the typical CGI
* format:</p>
*
* <listing>http://site.com/script.php?param1=value1&param2=value2</listing>
* <listing>http://site.com/script.php?param1=value1&amp;param2=value2</listing>
*
* <p>This class has specific support for this query syntax</p>
*
Expand Down Expand Up @@ -1062,7 +1062,7 @@ package com.adobe.net
/**
* Get the value for the specified named in the query part. This
* assumes the query part of the URI is in the common
* "name1=value1&name2=value2" syntax. Do not call this function
* "name1=value1&amp;name2=value2" syntax. Do not call this function
* if you are using a custom query syntax.
*
* @param name name of the query value to get.
Expand Down Expand Up @@ -1241,7 +1241,7 @@ package com.adobe.net
* intended to be called on each individual "name" and "value"
* in the query making sure that nothing in the name or value
* strings contain characters that would conflict with the query
* syntax (e.g. '=' and '&').
* syntax (e.g. '=' and '&amp;').
*
* @param unescaped unescaped string that is to be escaped.
*
Expand Down Expand Up @@ -1483,7 +1483,7 @@ package com.adobe.net
* Get the ".xyz" file extension from the filename in the URI.
* For example, if we have the following URI:
*
* <listing>http://something.com/path/to/my/page.html?form=yes&name=bob#anchor</listing>
* <listing>http://something.com/path/to/my/page.html?form=yes&amp;name=bob#anchor</listing>
*
* <p>This will return ".html".</p>
*
Expand Down

0 comments on commit fa0832b

Please sign in to comment.