Skip to content

Commit

Permalink
chore: Renamed namespaces and path from iql to gensql
Browse files Browse the repository at this point in the history
  • Loading branch information
KingMob committed May 2, 2024
1 parent 59af168 commit bc1c0a7
Show file tree
Hide file tree
Showing 14 changed files with 362 additions and 357 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# InferenceQL documentation
# GenSQL documentation

The InferenceQL documentation website.
The GenSQL documentation website.

## Contributing

See [`CONTRIBUTING.md`](https://github.com/InferenceQL/documentation/blob/main/CONTRIBUTING.md).
See [`CONTRIBUTING.md`](https://github.com/OpenGen/GenSQL.documentation/blob/main/CONTRIBUTING.md).
6 changes: 3 additions & 3 deletions antora-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ antora:
extensions:
- ./lib/my-extension.js
site:
title: InferenceQL
title: GenSQL
start_page: start-page::start-page.adoc
content:
sources:
- url: ./
start_path: docs
- url: https://github.com/InferenceQL/inferenceql.query
- url: https://github.com/OpenGen/GenSQL.query
start_path: docs
- url: [email protected]:InferenceQL/inferenceql.structure-learning.git
- url: [email protected]:OpenGen/GenSQL.structure-learning.git
start_path: docs
ui:
bundle:
Expand Down
4 changes: 2 additions & 2 deletions bb.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:tasks {:init (def image-name "inferenceql.documentation")
{:tasks {:init (def image-name "gensql.documentation")

docker:build {:depends [site:build]
:doc "Build Docker image"
Expand All @@ -24,7 +24,7 @@

server:run {:doc "Run web server"
:task (do (println "Navigate to: http://localhost:8080")
(shell "clojure -M -m inferenceql.documentation"))}
(shell "clojure -M -m gensql.documentation"))}

js:deps {:doc "Fetch JavaScript dependencies"
:task (shell "pnpm install")}
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
crypto-password/crypto-password {:mvn/version "0.3.0"}
http-kit/http-kit {:mvn/version "2.3.0"}
ring-jetty-component/ring-jetty-component {:mvn/version "0.3.1"}
inferenceql/inferenceql.query {:git/url "https://github.com/InferenceQL/inferenceql.query.git"
:git/sha "00390d198f4b21e8812688eedaa304ffe69eae16"}
gensql/gensql.query {:git/url "https://github.com/OpenGen/GenSQL.query.git"
:git/sha "32adb67ff07c1bba67255384adbe30d80d4e0f9f"}
ring/ring-core {:mvn/version "1.9.5"}}
:aliases {:jibbit {:deps {io.github.atomisthq/jibbit
{:git/tag "v0.1.14"
Expand Down
2 changes: 1 addition & 1 deletion dev/user.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns user
(:require [clojure.tools.namespace.repl :as repl]
[com.stuartsierra.component :as component]
[inferenceql.documentation.components :as components]))
[gensql.documentation.components :as components]))

(def system nil)

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* xref:structure-learning::quick-start.adoc[Quickstart]
* xref:structure-learning::structure-learning.adoc[Structure learning]
* Languages
** xref:query::iql-permissive.adoc[IQL-permissive]
** xref:query::iql-strict.adoc[IQL-strict]
** xref:query::gensql-permissive.adoc[GenSQL-permissive]
** xref:query::gensql-strict.adoc[GenSQL-strict]
18 changes: 9 additions & 9 deletions docs/modules/ROOT/pages/start-page.adoc
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
= Platform Documentation
Ulli Schaechtle <u[email protected]>

This site hosts technical documentation for the InferenceQL platform.
This site hosts technical documentation for the GenSQL platform.

== Disclaimer

**InferenceQL is pre-alpha / unreleased software.** There are known and unknown isues and bugs. Crashes are expected. This software should not be expected to treat your data securely.
**GenSQL is pre-alpha / unreleased software.** There are known and unknown issues and bugs. Crashes are expected. This software should not be expected to treat your data securely.

== Content

Welcome to our first attempt to document the InferenceQL platform. The
Welcome to our first attempt to document the GenSQL platform. The
documentation covers:

* xref:structure-learning::quick-start.adoc[Quickstart]

* xref:structure-learning::structure-learning.adoc[Structure learning]

* Inference Query language
** xref:query::iql-permissive.adoc[Query language (IQL-permissive)]
** xref:query::iql-permissive.adoc[Research Query Language -- aimed at PL researchers (IQL-permissive)]
** xref:query::gensql-permissive.adoc[Query language (GenSQL-permissive)]
** xref:query::gensql-permissive.adoc[Research Query Language -- aimed at PL researchers (GenSQL-permissive)]

We recommend all users begin with the xref:structure-learning::quick-start.adoc[Quickstart] tutorial.

== Open-source code

Please find our open source code https://github.com/OpenIQL[here].
Please find our open source code https://github.com/OpenGen[here].

== Citation

Please cite this work as: Ulrich Schaechtle, Cameron Freer, Zane Shelby, Feras Saad, and Vikash Mansinghka. "Bayesian
AutoML for Databases via the InferenceQL Probabilistic Programming System."
AutoML for Databases via the GenSQL Probabilistic Programming System."
AutoML Conference 2022 - Workshop Track. Find the PDF https://2022.automl.cc/wp-content/uploads/2022/07/bayesian_automl_for_databases_.pdf[here].

== License

All of InferenceQL is open source and licensed under Apache 2.0. At times, the
InferenceQL teams maintains private repos hosting components of InferenceQL to
All of GenSQL is open source and licensed under Apache 2.0. At times, the
GenSQL teams maintains private repos hosting components of GenSQL to
prepare an OSS release. If you happen to have privileged private access -
please don't share it pre-release.

Expand Down
6 changes: 3 additions & 3 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# fly.toml file generated for inferenceql-documentation on 2022-07-06T12:30:52-04:00
# fly.toml file generated for gensql-documentation on 2022-07-06T12:30:52-04:00

app = "inferenceql-documentation"
app = "gensql-documentation"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []

[build]
image = "inferenceql-documentation"
image = "gensql-documentation"

[env]
PORT = "8080"
Expand Down
4 changes: 2 additions & 2 deletions jib.edn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{:main inferenceql.documentation
:target-image {:image-name "inferenceql.documentation"
{:main gensql.documentation
:target-image {:image-name "gensql.documentation"
:type :docker}}
6 changes: 3 additions & 3 deletions lib/my-extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const child_process = require("child_process");
const fs = require("fs");
const path = require("path");

const repoURL = "https://github.com/InferenceQL/inferenceql.query.git";
const repoURL = "https://github.com/OpenGen/GenSQL.query.git";

const jsFile = function(worktree) {
return path.join(worktree, "out", "main.js");
Expand All @@ -15,7 +15,7 @@ const isBuilt = function(worktree) {
}

const build = function (worktree) {
console.log(`Building inferenceql.query: ${worktree}…`);
console.log(`Building gensql.query: ${worktree}…`);
const stdout = child_process.execSync("clojure -M:js-build", {
stdio: "inherit",
cwd: worktree
Expand All @@ -38,7 +38,7 @@ module.exports.register = (context) => {
const buffer = fs.readFile(jsFile(worktree), (err, data) => {
if (err) throw err;
const buffer = Buffer.from(data);
siteCatalog.addFile({ contents: buffer, out: { path: "inferenceql.query.js" } })
siteCatalog.addFile({ contents: buffer, out: { path: "gensql.query.js" } })
});
}
});
Expand Down
Loading

0 comments on commit bc1c0a7

Please sign in to comment.