diff --git a/reference/calendar/functions/jdtounix.xml b/reference/calendar/functions/jdtounix.xml index be40ad72ea..6f3075acca 100644 --- a/reference/calendar/functions/jdtounix.xml +++ b/reference/calendar/functions/jdtounix.xml @@ -15,9 +15,7 @@ This function will return a Unix timestamp corresponding to the Julian Day given in jday or &false; if - jday is not inside the Unix epoch - (Gregorian years between 1970 and 2037 or 2440588 <= - jday <= 2465342 ). The time returned is + jday is outside of the allowed range. The time returned is UTC. @@ -30,7 +28,8 @@ jday - A julian day number between 2440588 and 2465342. + A julian day number between 2440588 and 106751993607888 + on 64bit systems, or between 2440588 and 2465443 on 32bit systems. @@ -41,10 +40,34 @@ &reftitle.returnvalues; - The unix timestamp for the start (midnight, not noon) of the given Julian day. + The unix timestamp for the start (midnight, not noon) of the given Julian day, + &return.falseforfailure;. + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 7.3.24, 7.4.12 + + The upper limit of jday has been extended. Previously, + it was 2465342 regardless of the architecture. + + + + + + + &reftitle.seealso; diff --git a/reference/tidy/tidynode/ishtml.xml b/reference/tidy/tidynode/ishtml.xml index 75b61cfbbf..01cad60a05 100644 --- a/reference/tidy/tidynode/ishtml.xml +++ b/reference/tidy/tidynode/ishtml.xml @@ -3,7 +3,7 @@ tidyNode::isHtml - Checks if a node is part of a HTML document + Checks if a node is an element node &reftitle.description; @@ -12,17 +12,40 @@ - Tells if the node is part of HTML document. + Tells if the node is an element node, but not the root node of the document. &reftitle.returnvalues; - Returns &true; if the node is part of a HTML document, &false; otherwise. + Returns &true; if the node is an element node, but not the root node of the document, &false; otherwise. + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 7.3.24, 7.4.12 + + This function has been fixed to have reasonable behavior. Previously, + almost any node was reported as being an HTML node. + + + + + + + &reftitle.examples; @@ -88,9 +111,9 @@ function get_nodes($node) { # html node #1 -title'; ?><# +title'; ?><# /* JSTE code */ - alert('Hello World'); + alert('Hello World'); #> @@ -108,28 +131,19 @@ Hello WorldOutside HTML # html node #2 -title'; ?><# +title'; ?><# /* JSTE code */ - alert('Hello World'); + alert('Hello World'); #> # html node #3 -title'; ?> - -# html node #4 -<# - /* JSTE code */ - alert('Hello World'); -#> - -# html node #5 -# html node #6 +# html node #4 Hello WorldOutside HTML - - -# html node #7 - - -# html node #8 -<% - /* ASP code */ - response.write("Hello World!") -%> - -# html node #9 - - - -# html node #10 -Hello World - -# html node #11 -Outside HTML ]]>