summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-09-13 18:55:53 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-09-13 18:55:53 -0700
commit014a7b078c60496140bc1f22767de11bd947d4a9 (patch)
treecc0250e7480dd232facf9b4ea4d2cf20420583ab
parent72dcbd31801b82160e6cfe5d31c5c612e3130d42 (diff)
Pick up removal of "Requires 1.5" from manuals
-rw-r--r--.gitignore1
-rw-r--r--manual/index.html48
-rw-r--r--manual/v1.5/index.html48
-rw-r--r--sitemap.xml14
4 files changed, 56 insertions, 55 deletions
diff --git a/.gitignore b/.gitignore
index ef64ea18..0e6c3362 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,6 +19,7 @@ jq.1
# Autotools junk
.libs
.deps
+.dirstamp
libtool
*.log
stamp-h1
diff --git a/manual/index.html b/manual/index.html
index d90b1255..57812a2b 100644
--- a/manual/index.html
+++ b/manual/index.html
@@ -2377,10 +2377,10 @@ map(foo) | from_entries</code>, useful for doing some operation to all keys and
</section>
- <section id="\[Requires1.5\]`flatten`,`flatten(depth)`">
+ <section id="`flatten`,`flatten(depth)`">
<h3>
-[Requires 1.5] <code>flatten</code>, <code>flatten(depth)</code>
+<code>flatten</code>, <code>flatten(depth)</code>
</h3>
@@ -5189,10 +5189,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
<p>evaluates to: true, true, false, false.</p>
- <section id="\[Requires1.5\]`test(val)`,`test(regex;flags)`">
+ <section id="`test(val)`,`test(regex;flags)`">
<h3>
-[Requires 1.5] <code>test(val)</code>, <code>test(regex; flags)</code>
+<code>test(val)</code>, <code>test(regex; flags)</code>
</h3>
@@ -5249,10 +5249,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`match(val)`,`match(regex;flags)`">
+ <section id="`match(val)`,`match(regex;flags)`">
<h3>
-[Requires 1.5] <code>match(val)</code>, <code>match(regex; flags)</code>
+<code>match(val)</code>, <code>match(regex; flags)</code>
</h3>
@@ -5389,10 +5389,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`capture(val)`,`capture(regex;flags)`">
+ <section id="`capture(val)`,`capture(regex;flags)`">
<h3>
-[Requires 1.5] <code>capture(val)</code>, <code>capture(regex; flags)</code>
+<code>capture(val)</code>, <code>capture(regex; flags)</code>
</h3>
@@ -5428,10 +5428,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`scan(regex)`,`scan(regex;flags)`">
+ <section id="`scan(regex)`,`scan(regex;flags)`">
<h3>
-[Requires 1.5] <code>scan(regex)</code>, <code>scan(regex; flags)</code>
+<code>scan(regex)</code>, <code>scan(regex; flags)</code>
</h3>
@@ -5456,10 +5456,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`splits(regex)`,`splits(regex;flags)`">
+ <section id="`splits(regex)`,`splits(regex;flags)`">
<h3>
-[Requires 1.5] <code>splits(regex)</code>, <code>splits(regex; flags)</code>
+<code>splits(regex)</code>, <code>splits(regex; flags)</code>
</h3>
@@ -5470,10 +5470,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`sub(regex;tostring)``sub(regex;string;flags)`">
+ <section id="`sub(regex;tostring)``sub(regex;string;flags)`">
<h3>
-[Requires 1.5] <code>sub(regex; tostring)</code> <code>sub(regex; string; flags)</code>
+<code>sub(regex; tostring)</code> <code>sub(regex; string; flags)</code>
</h3>
@@ -5484,10 +5484,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`gsub(regex;string)`,`gsub(regex;string;flags)`">
+ <section id="`gsub(regex;string)`,`gsub(regex;string;flags)`">
<h3>
-[Requires 1.5] <code>gsub(regex; string)</code>, <code>gsub(regex; string; flags)</code>
+<code>gsub(regex; string)</code>, <code>gsub(regex; string; flags)</code>
</h3>
@@ -6666,7 +6666,7 @@ Complex assignments
"`all`, `all(condition)`, `all(generator; condition)`" : "`all`,`all(condition)`,`all(generator;condition)`",
- "\\[Requires 1.5\\] `flatten`, `flatten(depth)`" : "\\[Requires1.5\\]`flatten`,`flatten(depth)`",
+ "`flatten`, `flatten(depth)`" : "`flatten`,`flatten(depth)`",
"`range(upto)`, `range(from;upto)` `range(from;upto;by)`" : "`range(upto)`,`range(from;upto)``range(from;upto;by)`",
@@ -6768,21 +6768,21 @@ Complex assignments
,
- "\\[Requires 1.5\\] `test(val)`, `test(regex; flags)`" : "\\[Requires1.5\\]`test(val)`,`test(regex;flags)`",
+ "`test(val)`, `test(regex; flags)`" : "`test(val)`,`test(regex;flags)`",
- "\\[Requires 1.5\\] `match(val)`, `match(regex; flags)`" : "\\[Requires1.5\\]`match(val)`,`match(regex;flags)`",
+ "`match(val)`, `match(regex; flags)`" : "`match(val)`,`match(regex;flags)`",
- "\\[Requires 1.5\\] `capture(val)`, `capture(regex; flags)`" : "\\[Requires1.5\\]`capture(val)`,`capture(regex;flags)`",
+ "`capture(val)`, `capture(regex; flags)`" : "`capture(val)`,`capture(regex;flags)`",
- "\\[Requires 1.5\\] `scan(regex)`, `scan(regex; flags)`" : "\\[Requires1.5\\]`scan(regex)`,`scan(regex;flags)`",
+ "`scan(regex)`, `scan(regex; flags)`" : "`scan(regex)`,`scan(regex;flags)`",
"`split(regex; flags)`" : "`split(regex;flags)`",
- "\\[Requires 1.5\\] `splits(regex)`, `splits(regex; flags)`" : "\\[Requires1.5\\]`splits(regex)`,`splits(regex;flags)`",
+ "`splits(regex)`, `splits(regex; flags)`" : "`splits(regex)`,`splits(regex;flags)`",
- "\\[Requires 1.5\\] `sub(regex; tostring)` `sub(regex; string; flags)`" : "\\[Requires1.5\\]`sub(regex;tostring)``sub(regex;string;flags)`",
+ "`sub(regex; tostring)` `sub(regex; string; flags)`" : "`sub(regex;tostring)``sub(regex;string;flags)`",
- "\\[Requires 1.5\\] `gsub(regex; string)`, `gsub(regex; string; flags)`" : "\\[Requires1.5\\]`gsub(regex;string)`,`gsub(regex;string;flags)`",
+ "`gsub(regex; string)`, `gsub(regex; string; flags)`" : "`gsub(regex;string)`,`gsub(regex;string;flags)`",
"Regular expressions (PCRE)" : "RegularexpressionsPCRE"
,
diff --git a/manual/v1.5/index.html b/manual/v1.5/index.html
index a3c62ec4..00181a58 100644
--- a/manual/v1.5/index.html
+++ b/manual/v1.5/index.html
@@ -2257,10 +2257,10 @@ map(foo) | from_entries</code>, useful for doing some operation to all keys and
</section>
- <section id="\[Requires1.5\]`flatten`,`flatten(depth)`">
+ <section id="`flatten`,`flatten(depth)`">
<h3>
-[Requires 1.5] <code>flatten</code>, <code>flatten(depth)</code>
+<code>flatten</code>, <code>flatten(depth)</code>
</h3>
@@ -5016,10 +5016,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
<p>evaluates to: true, true, false, false.</p>
- <section id="\[Requires1.5\]`test(val)`,`test(regex;flags)`">
+ <section id="`test(val)`,`test(regex;flags)`">
<h3>
-[Requires 1.5] <code>test(val)</code>, <code>test(regex; flags)</code>
+<code>test(val)</code>, <code>test(regex; flags)</code>
</h3>
@@ -5076,10 +5076,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`match(val)`,`match(regex;flags)`">
+ <section id="`match(val)`,`match(regex;flags)`">
<h3>
-[Requires 1.5] <code>match(val)</code>, <code>match(regex; flags)</code>
+<code>match(val)</code>, <code>match(regex; flags)</code>
</h3>
@@ -5216,10 +5216,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`capture(val)`,`capture(regex;flags)`">
+ <section id="`capture(val)`,`capture(regex;flags)`">
<h3>
-[Requires 1.5] <code>capture(val)</code>, <code>capture(regex; flags)</code>
+<code>capture(val)</code>, <code>capture(regex; flags)</code>
</h3>
@@ -5255,10 +5255,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`scan(regex)`,`scan(regex;flags)`">
+ <section id="`scan(regex)`,`scan(regex;flags)`">
<h3>
-[Requires 1.5] <code>scan(regex)</code>, <code>scan(regex; flags)</code>
+<code>scan(regex)</code>, <code>scan(regex; flags)</code>
</h3>
@@ -5283,10 +5283,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`splits(regex)`,`splits(regex;flags)`">
+ <section id="`splits(regex)`,`splits(regex;flags)`">
<h3>
-[Requires 1.5] <code>splits(regex)</code>, <code>splits(regex; flags)</code>
+<code>splits(regex)</code>, <code>splits(regex; flags)</code>
</h3>
@@ -5297,10 +5297,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`sub(regex;tostring)``sub(regex;string;flags)`">
+ <section id="`sub(regex;tostring)``sub(regex;string;flags)`">
<h3>
-[Requires 1.5] <code>sub(regex; tostring)</code> <code>sub(regex; string; flags)</code>
+<code>sub(regex; tostring)</code> <code>sub(regex; string; flags)</code>
</h3>
@@ -5311,10 +5311,10 @@ STRING | FILTER( [REGEX, FLAGS] )</code></pre>
</section>
- <section id="\[Requires1.5\]`gsub(regex;string)`,`gsub(regex;string;flags)`">
+ <section id="`gsub(regex;string)`,`gsub(regex;string;flags)`">
<h3>
-[Requires 1.5] <code>gsub(regex; string)</code>, <code>gsub(regex; string; flags)</code>
+<code>gsub(regex; string)</code>, <code>gsub(regex; string; flags)</code>
</h3>
@@ -6489,7 +6489,7 @@ Complex assignments
"`all`, `all(condition)`, `all(generator; condition)`" : "`all`,`all(condition)`,`all(generator;condition)`",
- "\\[Requires 1.5\\] `flatten`, `flatten(depth)`" : "\\[Requires1.5\\]`flatten`,`flatten(depth)`",
+ "`flatten`, `flatten(depth)`" : "`flatten`,`flatten(depth)`",
"`range(upto)`, `range(from;upto)` `range(from;upto;by)`" : "`range(upto)`,`range(from;upto)``range(from;upto;by)`",
@@ -6589,21 +6589,21 @@ Complex assignments
,
- "\\[Requires 1.5\\] `test(val)`, `test(regex; flags)`" : "\\[Requires1.5\\]`test(val)`,`test(regex;flags)`",
+ "`test(val)`, `test(regex; flags)`" : "`test(val)`,`test(regex;flags)`",
- "\\[Requires 1.5\\] `match(val)`, `match(regex; flags)`" : "\\[Requires1.5\\]`match(val)`,`match(regex;flags)`",
+ "`match(val)`, `match(regex; flags)`" : "`match(val)`,`match(regex;flags)`",
- "\\[Requires 1.5\\] `capture(val)`, `capture(regex; flags)`" : "\\[Requires1.5\\]`capture(val)`,`capture(regex;flags)`",
+ "`capture(val)`, `capture(regex; flags)`" : "`capture(val)`,`capture(regex;flags)`",
- "\\[Requires 1.5\\] `scan(regex)`, `scan(regex; flags)`" : "\\[Requires1.5\\]`scan(regex)`,`scan(regex;flags)`",
+ "`scan(regex)`, `scan(regex; flags)`" : "`scan(regex)`,`scan(regex;flags)`",
"`split(regex; flags)`" : "`split(regex;flags)`",
- "\\[Requires 1.5\\] `splits(regex)`, `splits(regex; flags)`" : "\\[Requires1.5\\]`splits(regex)`,`splits(regex;flags)`",
+ "`splits(regex)`, `splits(regex; flags)`" : "`splits(regex)`,`splits(regex;flags)`",
- "\\[Requires 1.5\\] `sub(regex; tostring)` `sub(regex; string; flags)`" : "\\[Requires1.5\\]`sub(regex;tostring)``sub(regex;string;flags)`",
+ "`sub(regex; tostring)` `sub(regex; string; flags)`" : "`sub(regex;tostring)``sub(regex;string;flags)`",
- "\\[Requires 1.5\\] `gsub(regex; string)`, `gsub(regex; string; flags)`" : "\\[Requires1.5\\]`gsub(regex;string)`,`gsub(regex;string;flags)`",
+ "`gsub(regex; string)`, `gsub(regex; string; flags)`" : "`gsub(regex;string)`,`gsub(regex;string;flags)`",
"Regular expressions (PCRE)" : "RegularexpressionsPCRE"
,
diff --git a/sitemap.xml b/sitemap.xml
index 2088e103..9a52f39e 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,37 +2,37 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://stedolan.github.io/jq</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-13</lastmod>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>https://stedolan.github.io/jq/tutorial/</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-11</lastmod>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>https://stedolan.github.io/jq/manual/</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-14</lastmod>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>https://stedolan.github.io/jq/manual/v1.3/</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-13</lastmod>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>https://stedolan.github.io/jq/manual/v1.4/</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-13</lastmod>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>https://stedolan.github.io/jq/manual/v1.5/</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-14</lastmod>
<changefreq>monthly</changefreq>
</url>
<url>
<loc>https://stedolan.github.io/jq/download/</loc>
- <lastmod>2015-08-20</lastmod>
+ <lastmod>2015-09-13</lastmod>
<changefreq>monthly</changefreq>
</url>
</urlset>