Skip to content

Commit c3e6ee4

Browse files
committed
Fix urls
1 parent f0f1342 commit c3e6ee4

File tree

7 files changed

+15
-15
lines changed
  • src/app
    • blog
      • 2022-02-14-json-diff-and-patch
      • 2022-02-14-many-worlds
      • 2022-02-14-mongo-neo4j-terminusx
      • 2022-02-14-syntactic-versioning
      • 2022-06-14-terminusdb-10.1.0-the-mule
      • 2022-06-24-blank-nodes-in-rdf
    • docs/access-control-with-javascript

7 files changed

+15
-15
lines changed

src/app/blog/2022-02-14-json-diff-and-patch/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Is it possible to do the same for structured data?
2626

2727
These questions are really at the heart of the distributed part of web3. Web3 has other parts: immutability, cryptographic security, etc. But these other elements do not answer how to perform updates on distributed data stores.*
2828

29-
In seeking the answer to these questions I was led to see a rather simple tool as foundational: [JSON diff and patch](https://terminusdb.com/products/jsondiff/).
29+
In seeking the answer to these questions I was led to see a rather simple tool as foundational: [JSON diff and patch](https://terminusdb.org/docs/json-diff-and-patch/).
3030

3131
JSON, because JSON is the structured data format for the web. This will continue to be true for Web3. Everyone uses JSON for just about everything in our web architecture. Other formats are going to be increasingly used as mere optimizations of JSON. Associative arrays have the beauty of (reasonable) human readability, combined with widespread native support in modern computer programming languages. Both computers and humans can read it, what’s not to love!
3232

src/app/blog/2022-02-14-many-worlds/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ collaboration puzzle?
336336

337337
The first is the concept of structured patches. This issue is very
338338
close to my heart as it is what we are currently working on at
339-
[TerminusDB](https://terminusdb.com), and I've written some
339+
[TerminusDB](https://terminusdb.org), and I've written some
340340
preliminary thoughts about it in a discussion on [patches](https://github.com/terminusdb/terminusdb/discussions/686).
341341

342342
"There is nothing new under the sun" applies here. There are several

src/app/blog/2022-02-14-mongo-neo4j-terminusx/page.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ reference and a way to ensure that we have referential integrity
6767
storage data structures such that we can follow these links
6868
efficiently.
6969

70-
In [TerminusDB](https://terminusdb.com/), we do this using URLs. This borrows from the original
70+
In [TerminusDB](https://terminusdb.org/), we do this using URLs. This borrows from the original
7171
concept of the HTML page, which is itself a structured document with
7272
hyper-links, but one designed for rendering rather than data
7373
manipulation.
@@ -86,9 +86,9 @@ look something like:
8686

8787
We write down the references relative to the base URL prefix which we
8888
assume for our collection, which might be something like
89-
`http://terminusdb.com/db/Terminators/Humans/`. The fully-qualified
89+
`http://terminusdb.org/db/Terminators/Humans/`. The fully-qualified
9090
URL would be rendered as something like:
91-
`http://terminusdb.com/db/Terminators/Humans/Person/Jim+Smith`. This
91+
`http://terminusdb.org/db/Terminators/Humans/Person/Jim+Smith`. This
9292
makes it easier to read and write. But how do we know this is a
9393
reference and not a string? This is an important distinction for
9494
several reasons. It tells us how to index our objects such that
@@ -141,7 +141,7 @@ Web3 existed as a concept.
141141

142142
Unfortunately it never really took off. There are many reasons for
143143
this, some of which are explored in [Graph Fundamentals Part 4: Linked
144-
Data](https://terminusdb.com/blog/graph-fundamentals-part-4-linked-data/).
144+
Data](https://terminusdb.org/blog/graph-fundamentals-part-4-linked-data/).
145145

146146
Part of the reason for this is that RDF is somewhat hard to read, but
147147
even harder to write. Data is *completely* represented in the

src/app/blog/2022-02-14-syntactic-versioning/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ be found, communicated, and applied
9595

9696
And if we were storing information as ASTs, rather than lines of text,
9797
we could store them in a [graph
98-
database](http://terminusdb.com). Imagine the kinds of testing and
98+
database](http://terminusdb.org). Imagine the kinds of testing and
9999
linting which could now take place. You could have a full graph query
100100
language at your disposal to search for problems and perform analysis!
101101

src/app/blog/2022-06-14-terminusdb-10.1.0-the-mule/page.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,12 +204,12 @@ suggestions.
204204

205205
## Documentation Links
206206

207-
[Diff](https://terminusdb.com/docs/index/json-diff-and-patch)
207+
[Diff](https://terminusdb.org/docs/index/json-diff-and-patch)
208208

209-
[Capture IDs](https://terminusdb.com/docs/index/terminusx-db/reference-guides/document-interface?swcfpc=1#capturing-ids-while-inserting-or-replacing-documents)
209+
[Capture IDs](https://terminusdb.org/docs/index/terminusx-db/reference-guides/document-interface?swcfpc=1#capturing-ids-while-inserting-or-replacing-documents)
210210

211-
[Type Inference](https://terminusdb.com/docs/index/terminusx-db/reference-guides/schema?swcfpc=1#inference)
211+
[Type Inference](https://terminusdb.org/docs/index/terminusx-db/reference-guides/schema?swcfpc=1#inference)
212212

213-
[Unconstrained JSON](https://terminusdb.com/docs/index/terminusx-db/reference-guides/schema?swcfpc=1#json-type)
213+
[Unconstrained JSON](https://terminusdb.org/docs/index/terminusx-db/reference-guides/schema?swcfpc=1#json-type)
214214

215-
[Document UI](https://terminusdb.com/docs/index/terminusx-db/how-to-guides/generate-document-user-interfaces/get-started-with-the-documents-user-interface)
215+
[Document UI](https://terminusdb.org/docs/index/terminusx-db/how-to-guides/generate-document-user-interfaces/get-started-with-the-documents-user-interface)

src/app/blog/2022-06-24-blank-nodes-in-rdf/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Everything You Always Wanted to Know About Blank Nodes
5353
https://aidanhogan.com/docs/blank_nodes_jws.pdf
5454
```
5555

56-
[TerminusDB](https://terminusdb.com) makes this a lot easier with the latest release and provides capabilities to automatically derive subject/entity IDs based on either UUIDs, human-readable auto-incrementing values, or a content-aware hash.
56+
[TerminusDB](https://terminusdb.org) makes this a lot easier with the latest release and provides capabilities to automatically derive subject/entity IDs based on either UUIDs, human-readable auto-incrementing values, or a content-aware hash.
5757

5858
Which is really really nice and straightforward.
5959

src/app/docs/access-control-with-javascript/page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For credentials, you can use a JWT token, an API token or basic authentication w
2323

2424
```javascript
2525
//connect with the API token
26-
//(to request a token create an account in https://terminusdb.com/)
26+
//(to request a token create an account in https://terminusdb.org/)
2727
const accessContol = new AccessControl("https://servername.com",
2828
{organization:"my_team_name",
2929
token:"dGVybWludXNkYjovLy9kYXRhL2tleXNfYXB........"})
@@ -115,7 +115,7 @@ The API token to use to connect with DFRNT TerminusDB cloud
115115

116116
##### accessControl.setApiKey(atokenpi)
117117

118-
Sets the API token for the object, to request a token create an account in https://terminusdb.com/
118+
Sets the API token for the object, to request a token create an account in https://terminusdb.org/
119119

120120
Param
121121

0 commit comments

Comments
 (0)