Skip to content

Commit

Permalink
chore: minor change of links in studio
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Jan 14, 2025
1 parent c909b91 commit 6f7eb80
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
Below all the active connections. Keep in mind that HTTP connections are stateless, so no database is retained and usually
after a short timeout (seconds) they are killed. Binary connections, instead, remain in life until the connection
client closes it. Binary connections are used by the
<a target="_blank" href="https://www.orientdb.com/docs/{{version}}/console/Console-Commands.html">Orient Console
<a target="_blank" href="https://orientdb.dev/docs/{{version}}/console/Console-Commands.html">Orient Console
</a>
tool and by any Orient Java applications that uses the native
<a target="_blank" href="https://www.orientdb.com/docs/{{version}}/java/Java-API.html">Java API</a>
<a target="_blank" href="https://orientdb.dev/docs/{{version}}/java/Java-API.html">Java API</a>
</div>
</div>
<br/>
Expand Down
2 changes: 1 addition & 1 deletion studio/src/app/core/services/wiki.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class WikiService {
constructor() {
this.version =
STUDIO_VERSION.indexOf("SNAPSHOT") == -1 ? STUDIO_VERSION : "last";
this.wikiBase = "https://www.orientdb.com/docs/" + this.version + "/";
this.wikiBase = "https://orientdb.dev/docs/" + this.version + "/";
}

resolveWiki(urlWiki) {
Expand Down
2 changes: 1 addition & 1 deletion studio/src/controllers/login-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LoginModule.controller("LoginController", ['$scope', '$rootScope', '$routeParams

$scope.server = "http://localhost:2480"

var doc = "https://www.orientdb.com/docs/" + Database.getVersion() + "/security/Security.html"
var doc = "https://orientdb.dev/docs/" + Database.getVersion() + "/security/Security.html"
$scope.link = {link: doc};

$scope.sso = false;
Expand Down
2 changes: 1 addition & 1 deletion studio/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

<!--<footer class="footer">-->
<!--<div class="container">-->
<!--<p class="text-muted">&copy; Copyright 2017 <a href="https://orientdb.com" target="_blank">OrientDB LTD</a>.</p>-->
<!--<p class="text-muted">&copy; Copyright 2017 <a href="https://orientdb.dev" target="_blank">OrientDB LTD</a>.</p>-->
<!--</div>-->
<!--</footer>-->

Expand Down
4 changes: 2 additions & 2 deletions studio/src/services/database-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ database.factory("Database", [
function(DatabaseApi, localStorageService, SchemaService, $location) {
var version =
STUDIO_VERSION.indexOf("SNAPSHOT") == -1 ? STUDIO_VERSION : "last";
var wikiBase = "https://www.orientdb.com/docs/" + version + "/";
var oWikiBase = "https://www.orientdb.com/docs/" + version + "/";
var wikiBase = "https://orientdb.dev/docs/" + version + "/";
var oWikiBase = "https://orientdb.dev/docs/" + version + "/";
var current = {
name: null,
username: null,
Expand Down
2 changes: 1 addition & 1 deletion studio/src/views/server/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h3>Official OrientDB Studio tool</h3>
<p><b>Home Page</b> : <a href="https://github.com/orientechnologies/orientdb-studio">https://github.com/orientechnologies/orientdb-studio</a>
</p>

<p><b>Copyrights</b> : <a href="https://orientdb.com"> OrientDB LTD</a></p>
<p><b>Copyrights</b> : <a href="https://orientdb.dev"> OrientDB LTD</a></p>

<p><b>License</b> : Apache 2</p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions studio/src/views/server/conn.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Below all the active connections. Keep in mind that HTTP connections are stateless, so no database is retained and usually after a short timeout (seconds) they are killed. Binary connections, instead, remain in life until the connection client closes it. Binary connections are used by the
<a target="_blank" href="https://www.orientdb.com/docs/{{version}}/console/Console-Commands.html">Orient Console</a>
<a target="_blank" href="https://orientdb.dev/docs/{{version}}/console/Console-Commands.html">Orient Console</a>
tool and by any Orient Java applications that uses the native
<a target="_blank" href="https://www.orientdb.com/docs/{{version}}/java/Java-API.html">Java API</a>
<a target="_blank" href="https://orientdb.dev/docs/{{version}}/java/Java-API.html">Java API</a>


<div class="row">
Expand Down
4 changes: 2 additions & 2 deletions studio/src/views/server/general/conn.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
Below all the active connections. Keep in mind that HTTP connections are stateless, so no database is retained and
usually after a short timeout (seconds) they are killed. Binary connections, instead, remain in life until the
connection client closes it. Binary connections are used by the
<a target="_blank" href="https://www.orientdb.com/docs/{{version}}/console/Console-Commands.html">Orient
<a target="_blank" href="https://orientdb.dev/docs/{{version}}/console/Console-Commands.html">Orient
Console</a>
tool and by any Orient Java applications that uses the native
<a target="_blank" href="https://www.orientdb.com/docs/{{version}}/java/Java-API.html">Java API</a>
<a target="_blank" href="https://orientdb.dev/docs/{{version}}/java/Java-API.html">Java API</a>
</div>
</div>
<br/>
Expand Down

0 comments on commit 6f7eb80

Please sign in to comment.