Skip to content

Commit 72e3f00

Browse files
Url fix final (#298)
* Hugo rebuild all branches * Hugo rebuild all branches * Hugo rebuild all branches
1 parent da36c29 commit 72e3f00

File tree

140 files changed

+6029
-2740
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+6029
-2740
lines changed

published/basic/3/index.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -500,42 +500,42 @@ <h1 id="data-types-and-schema">Data types and Schema</h1>
500500
<table>
501501
<thead>
502502
<tr>
503-
<th style="text-align:left">Dgraph Type</th>
504-
<th style="text-align:left">Description</th>
503+
<th align="left">Dgraph Type</th>
504+
<th align="left">Description</th>
505505
</tr>
506506
</thead>
507507
<tbody>
508508
<tr>
509-
<td style="text-align:left"><code>default</code></td>
510-
<td style="text-align:left">default type (It is a neutral type)</td>
509+
<td align="left"><code>default</code></td>
510+
<td align="left">default type (It is a neutral type)</td>
511511
</tr>
512512
<tr>
513-
<td style="text-align:left"><code>int</code></td>
514-
<td style="text-align:left">signed 64 bit integer</td>
513+
<td align="left"><code>int</code></td>
514+
<td align="left">signed 64 bit integer</td>
515515
</tr>
516516
<tr>
517-
<td style="text-align:left"><code>float</code></td>
518-
<td style="text-align:left">double precision floating-point number</td>
517+
<td align="left"><code>float</code></td>
518+
<td align="left">double precision floating-point number</td>
519519
</tr>
520520
<tr>
521-
<td style="text-align:left"><code>string</code></td>
522-
<td style="text-align:left">string</td>
521+
<td align="left"><code>string</code></td>
522+
<td align="left">string</td>
523523
</tr>
524524
<tr>
525-
<td style="text-align:left"><code>bool</code></td>
526-
<td style="text-align:left">boolean</td>
525+
<td align="left"><code>bool</code></td>
526+
<td align="left">boolean</td>
527527
</tr>
528528
<tr>
529-
<td style="text-align:left"><code>dateTime</code></td>
530-
<td style="text-align:left">RFC3339 time format with optional timezone eg: 2006-01-02T15:04:05.999999999+10:00 or 2006-01-02T15:04:05.999999999</td>
529+
<td align="left"><code>dateTime</code></td>
530+
<td align="left">RFC3339 time format with optional timezone eg: 2006-01-02T15:04:05.999999999+10:00 or 2006-01-02T15:04:05.999999999</td>
531531
</tr>
532532
<tr>
533-
<td style="text-align:left"><code>geo</code></td>
534-
<td style="text-align:left">geometries stored using <a href="https://github.com/twpayne/go-geom">go-geom</a></td>
533+
<td align="left"><code>geo</code></td>
534+
<td align="left">geometries stored using <a href="https://github.com/twpayne/go-geom">go-geom</a></td>
535535
</tr>
536536
<tr>
537-
<td style="text-align:left"><code>password</code></td>
538-
<td style="text-align:left">encrypted value</td>
537+
<td align="left"><code>password</code></td>
538+
<td align="left">encrypted value</td>
539539
</tr>
540540
</tbody>
541541
</table>

published/basic/5/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -492,15 +492,15 @@ <h2 class="lesson__title">Queries describe graphs</h2>
492492
<p>Compare the JSON result to the structure of the query and note, for
493493
example, that the <code>friend</code> edge matched a number of nodes and each is
494494
represented in the JSON.</p>
495-
<p>Something to try: How about Michael’s friends' pets, or Michael&rsquo;s
496-
friends' friends.</p>
495+
<p>Something to try: How about Michael’s friends&rsquo; pets, or Michael&rsquo;s
496+
friends&rsquo; friends.</p>
497497

498498
<div class="expandable">
499499
<a data-action="toggle-expandable" href="#expand">
500500
<i class="fa fa-caret-down"></i> Show answer
501501
</a>
502502
<div class="expandable-content">
503-
<p>Query Michael&rsquo;s friends' pets:</p>
503+
<p>Query Michael&rsquo;s friends&rsquo; pets:</p>
504504
<pre><code>{
505505
michael_friends_pets(func: eq(name@., &quot;Michael&quot;)) {
506506
name
@@ -513,7 +513,7 @@ <h2 class="lesson__title">Queries describe graphs</h2>
513513
}
514514
}
515515
}
516-
</code></pre><p>Query Michael&rsquo;s friends' friends:</p>
516+
</code></pre><p>Query Michael&rsquo;s friends&rsquo; friends:</p>
517517
<pre><code>{
518518
michael_friends_friends(func: allofterms(name@., &quot;Michael&quot;)) {
519519
name
@@ -531,9 +531,9 @@ <h2 class="lesson__title">Queries describe graphs</h2>
531531
</div>
532532

533533
<p>The idea is to formulate the query as a traversal
534-
through the graph, following edges to the desired data. The <code>uid</code>&rsquo;s in the JSON output allow
534+
through the graph, following edges to the desired data. The <code>uid</code>'s in the JSON output allow
535535
interpretation as a graph rather than a tree. See, for example, the
536-
cycles in Michael&rsquo;s friends' friends.</p>
536+
cycles in Michael&rsquo;s friends&rsquo; friends.</p>
537537

538538

539539
</div>

published/basic/index.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
<description>Recent content in Basics on A Tour of Dgraph</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Mon, 17 Sep 2018 16:11:42 +1000</lastBuildDate><atom:link href="https://dgraph.io/tour/basic/index.xml" rel="self" type="application/rss+xml" />
9+
<lastBuildDate>Mon, 17 Sep 2018 16:11:42 +1000</lastBuildDate>
10+
11+
<atom:link href="https://dgraph.io/tour/basic/index.xml" rel="self" type="application/rss+xml" />
12+
13+
1014
<item>
1115
<title>Hello World</title>
1216
<link>https://dgraph.io/tour/basic/1/</link>
@@ -206,4 +210,4 @@ Check out the list of sections again, go back and review anything that wasn&amp;
206210
</item>
207211

208212
</channel>
209-
</rss>
213+
</rss>

published/blocksvars/10/index.html

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -490,51 +490,51 @@ <h2 class="lesson__title">Value variables: math functions</h2>
490490
<table>
491491
<thead>
492492
<tr>
493-
<th style="text-align:center">Operator</th>
494-
<th style="text-align:center">Accepted Type</th>
495-
<th style="text-align:center">Notes</th>
493+
<th align="center">Operator</th>
494+
<th align="center">Accepted Type</th>
495+
<th align="center">Notes</th>
496496
</tr>
497497
</thead>
498498
<tbody>
499499
<tr>
500-
<td style="text-align:center"><code>+</code> <code>-</code> <code>*</code> <code>/</code> <code>%</code></td>
501-
<td style="text-align:center"><code>int</code> and <code>float</code></td>
502-
<td style="text-align:center"></td>
500+
<td align="center"><code>+</code> <code>-</code> <code>*</code> <code>/</code> <code>%</code></td>
501+
<td align="center"><code>int</code> and <code>float</code></td>
502+
<td align="center"></td>
503503
</tr>
504504
<tr>
505-
<td style="text-align:center"><code>min</code> <code>max</code></td>
506-
<td style="text-align:center">All types except <code>geo</code> and <code>bool</code></td>
507-
<td style="text-align:center"></td>
505+
<td align="center"><code>min</code> <code>max</code></td>
506+
<td align="center">All types except <code>geo</code> and <code>bool</code></td>
507+
<td align="center"></td>
508508
</tr>
509509
<tr>
510-
<td style="text-align:center"><code>&lt;</code> <code>&gt;</code> <code>&lt;=</code> <code>&gt;=</code> <code>==</code> <code>!=</code></td>
511-
<td style="text-align:center">All, except <code>geo</code> and <code>bool</code></td>
512-
<td style="text-align:center">boolean result</td>
510+
<td align="center"><code>&lt;</code> <code>&gt;</code> <code>&lt;=</code> <code>&gt;=</code> <code>==</code> <code>!=</code></td>
511+
<td align="center">All, except <code>geo</code> and <code>bool</code></td>
512+
<td align="center">boolean result</td>
513513
</tr>
514514
<tr>
515-
<td style="text-align:center"><code>floor</code> <code>ceil``ln</code> <code>exp</code> <code>sqrt</code></td>
516-
<td style="text-align:center"><code>int</code> and <code>float</code></td>
517-
<td style="text-align:center"></td>
515+
<td align="center"><code>floor</code> <code>ceil``ln</code> <code>exp</code> <code>sqrt</code></td>
516+
<td align="center"><code>int</code> and <code>float</code></td>
517+
<td align="center"></td>
518518
</tr>
519519
<tr>
520-
<td style="text-align:center"><code>since</code></td>
521-
<td style="text-align:center"><code>date</code></td>
522-
<td style="text-align:center">number of seconds (<code>float</code>) from the time specified</td>
520+
<td align="center"><code>since</code></td>
521+
<td align="center"><code>date</code></td>
522+
<td align="center">number of seconds (<code>float</code>) from the time specified</td>
523523
</tr>
524524
<tr>
525-
<td style="text-align:center"><code>pow(a, b)</code></td>
526-
<td style="text-align:center"><code>int</code> and <code>float</code></td>
527-
<td style="text-align:center"><code>a^b</code></td>
525+
<td align="center"><code>pow(a, b)</code></td>
526+
<td align="center"><code>int</code> and <code>float</code></td>
527+
<td align="center"><code>a^b</code></td>
528528
</tr>
529529
<tr>
530-
<td style="text-align:center"><code>logbase(a,b)</code></td>
531-
<td style="text-align:center"><code>int</code> and <code>float</code></td>
532-
<td style="text-align:center"><code>log(a)</code> to the base <code>b</code></td>
530+
<td align="center"><code>logbase(a,b)</code></td>
531+
<td align="center"><code>int</code> and <code>float</code></td>
532+
<td align="center"><code>log(a)</code> to the base <code>b</code></td>
533533
</tr>
534534
<tr>
535-
<td style="text-align:center"><code>cond(a, b, c)</code></td>
536-
<td style="text-align:center"><code>a</code> must be a boolean</td>
537-
<td style="text-align:center">selects <code>b</code> if <code>a</code> is true else <code>c</code></td>
535+
<td align="center"><code>cond(a, b, c)</code></td>
536+
<td align="center"><code>a</code> must be a boolean</td>
537+
<td align="center">selects <code>b</code> if <code>a</code> is true else <code>c</code></td>
538538
</tr>
539539
</tbody>
540540
</table>

published/blocksvars/2/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@ <h2 class="lesson__title">Query Variables</h2>
496496
</ul>
497497
<p>Variables don&rsquo;t affect the semantics of the query at the point they
498498
are defined.</p>
499-
<p>Query variables are used by <code>uid(&lt;variable-name&gt;)</code>. Variables evaluate to all <code>uid</code>&rsquo;s matched in the query by the block they are
499+
<p>Query variables are used by <code>uid(&lt;variable-name&gt;)</code>. Variables evaluate to all <code>uid</code>'s matched in the query by the block they are
500500
defined against. In particular, note that, variables are <code>uid</code> lists, not the graph
501-
matched by the block, and that the variable evaluates to all <code>uid</code>&rsquo;s the block matches for the whole query, not the <code>uid</code>&rsquo;s matched by any one branch.</p>
501+
matched by the block, and that the variable evaluates to all <code>uid</code>'s the block matches for the whole query, not the <code>uid</code>'s matched by any one branch.</p>
502502
<p>It is an error to define a variable but not use it.</p>
503503
<p>Let&rsquo;s look at the options for query variables in turn.</p>
504504

published/blocksvars/index.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
<description>Recent content in Blocksvars on A Tour of Dgraph</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Tue, 02 May 2017 11:01:12 +1000</lastBuildDate><atom:link href="https://dgraph.io/tour/blocksvars/index.xml" rel="self" type="application/rss+xml" />
9+
<lastBuildDate>Tue, 02 May 2017 11:01:12 +1000</lastBuildDate>
10+
11+
<atom:link href="https://dgraph.io/tour/blocksvars/index.xml" rel="self" type="application/rss+xml" />
12+
13+
1014
<item>
1115
<title>Multiple Named Query Blocks</title>
1216
<link>https://dgraph.io/tour/blocksvars/1/</link>
@@ -152,4 +156,4 @@ Next up, string and geo searching. Or use the index to go to another topic.</des
152156
</item>
153157

154158
</channel>
155-
</rss>
159+
</rss>

published/categories/index.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<link>https://dgraph.io/tour/categories/</link>
66
<description>Recent content in Categories on A Tour of Dgraph</description>
77
<generator>Hugo -- gohugo.io</generator>
8-
<language>en-us</language><atom:link href="https://dgraph.io/tour/categories/index.xml" rel="self" type="application/rss+xml" />
8+
<language>en-us</language>
9+
10+
<atom:link href="https://dgraph.io/tour/categories/index.xml" rel="self" type="application/rss+xml" />
11+
12+
913
</channel>
10-
</rss>
14+
</rss>

published/dgraph-1.0.16/basic/3/index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -496,38 +496,38 @@ <h2 class="lesson__title">Data types and Schema</h2>
496496
<table>
497497
<thead>
498498
<tr>
499-
<th style="text-align:left">Dgraph Type</th>
500-
<th style="text-align:left">Description</th>
499+
<th align="left">Dgraph Type</th>
500+
<th align="left">Description</th>
501501
</tr>
502502
</thead>
503503
<tbody>
504504
<tr>
505-
<td style="text-align:left"><code>int</code></td>
506-
<td style="text-align:left">signed 64 bit integer</td>
505+
<td align="left"><code>int</code></td>
506+
<td align="left">signed 64 bit integer</td>
507507
</tr>
508508
<tr>
509-
<td style="text-align:left"><code>float</code></td>
510-
<td style="text-align:left">double precision floating point number</td>
509+
<td align="left"><code>float</code></td>
510+
<td align="left">double precision floating point number</td>
511511
</tr>
512512
<tr>
513-
<td style="text-align:left"><code>string</code></td>
514-
<td style="text-align:left">string</td>
513+
<td align="left"><code>string</code></td>
514+
<td align="left">string</td>
515515
</tr>
516516
<tr>
517-
<td style="text-align:left"><code>bool</code></td>
518-
<td style="text-align:left">boolean</td>
517+
<td align="left"><code>bool</code></td>
518+
<td align="left">boolean</td>
519519
</tr>
520520
<tr>
521-
<td style="text-align:left"><code>id</code></td>
522-
<td style="text-align:left">identifiers stored as strings</td>
521+
<td align="left"><code>id</code></td>
522+
<td align="left">identifiers stored as strings</td>
523523
</tr>
524524
<tr>
525-
<td style="text-align:left"><code>dateTime</code></td>
526-
<td style="text-align:left">RFC3339 time format with optional timezone eg: 2006-01-02T15:04:05.999999999+10:00 or 2006-01-02T15:04:05.999999999</td>
525+
<td align="left"><code>dateTime</code></td>
526+
<td align="left">RFC3339 time format with optional timezone eg: 2006-01-02T15:04:05.999999999+10:00 or 2006-01-02T15:04:05.999999999</td>
527527
</tr>
528528
<tr>
529-
<td style="text-align:left"><code>geo</code></td>
530-
<td style="text-align:left">geometries stored using <a href="https://github.com/twpayne/go-geom">go-geom</a></td>
529+
<td align="left"><code>geo</code></td>
530+
<td align="left">geometries stored using <a href="https://github.com/twpayne/go-geom">go-geom</a></td>
531531
</tr>
532532
</tbody>
533533
</table>

published/dgraph-1.0.16/basic/5/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -492,15 +492,15 @@ <h2 class="lesson__title">Queries describe graphs</h2>
492492
<p>Compare the JSON result to the structure of the query and note, for
493493
example, that the <code>friend</code> edge matched a number of nodes and each is
494494
represented in the JSON.</p>
495-
<p>Something to try: How about Michael’s friends' pets, or Michael&rsquo;s
496-
friends' friends.</p>
495+
<p>Something to try: How about Michael’s friends&rsquo; pets, or Michael&rsquo;s
496+
friends&rsquo; friends.</p>
497497

498498
<div class="expandable">
499499
<a data-action="toggle-expandable" href="#expand">
500500
<i class="fa fa-caret-down"></i> Show answer
501501
</a>
502502
<div class="expandable-content">
503-
<p>Query Michael&rsquo;s friends' pets:</p>
503+
<p>Query Michael&rsquo;s friends&rsquo; pets:</p>
504504
<pre><code>{
505505
michael_friends_pets(func: eq(name, &quot;Michael&quot;)) {
506506
name
@@ -513,7 +513,7 @@ <h2 class="lesson__title">Queries describe graphs</h2>
513513
}
514514
}
515515
}
516-
</code></pre><p>Query Michael&rsquo;s friends' friends:</p>
516+
</code></pre><p>Query Michael&rsquo;s friends&rsquo; friends:</p>
517517
<pre><code>{
518518
michael_friends_friends(func: allofterms(name, &quot;Michael&quot;)) {
519519
name
@@ -531,9 +531,9 @@ <h2 class="lesson__title">Queries describe graphs</h2>
531531
</div>
532532

533533
<p>The idea is to formulate the query as a traversal
534-
through the graph, following edges to the desired data. The <code>uid</code>&rsquo;s in the JSON output allow
534+
through the graph, following edges to the desired data. The <code>uid</code>'s in the JSON output allow
535535
interpretation as a graph rather than a tree. See, for example, the
536-
cycles in Michael&rsquo;s friends' friends.</p>
536+
cycles in Michael&rsquo;s friends&rsquo; friends.</p>
537537

538538

539539
</div>

published/dgraph-1.0.16/basic/index.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
<description>Recent content in Basics on A Tour of Dgraph</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Mon, 17 Sep 2018 16:11:42 +1000</lastBuildDate><atom:link href="https://dgraph.io/tour/dgraph-1.0.16/basic/index.xml" rel="self" type="application/rss+xml" />
9+
<lastBuildDate>Mon, 17 Sep 2018 16:11:42 +1000</lastBuildDate>
10+
11+
<atom:link href="https://dgraph.io/tour/dgraph-1.0.16/basic/index.xml" rel="self" type="application/rss+xml" />
12+
13+
1014
<item>
1115
<title>Hello World</title>
1216
<link>https://dgraph.io/tour/dgraph-1.0.16/basic/1/</link>
@@ -207,4 +211,4 @@ Check out the list of sections again, go back and review anything that wasn&amp;
207211
</item>
208212

209213
</channel>
210-
</rss>
214+
</rss>

0 commit comments

Comments
 (0)