Skip to content

Commit

Permalink
docs: fix numerics and move connection apis elsewhere
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 27, 2023
1 parent 9b9cd03 commit 95bb2e0
Showing 1 changed file with 36 additions and 22 deletions.
58 changes: 36 additions & 22 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ website:
contents:
- section: Expression API
contents:
- reference/connection.qmd
- reference/expression-tables.qmd
- reference/selectors.qmd
- reference/expression-generic.qmd
Expand All @@ -159,6 +158,10 @@ website:
contents:
- reference/scalar-udfs.qmd

- section: Connection APIs
contents:
- reference/connection.qmd

- section: Configuration
contents:
- reference/ContextAdjustment.qmd
Expand Down Expand Up @@ -189,20 +192,6 @@ quartodoc:
desc: "APIs for manipulating table, column and scalar expressions"
package: ibis.expr.types
contents:
- kind: page
package: ibis
path: connection
summary:
name: Connection API
desc: Create and manage backend connections.
contents:
- name: connect
package: ibis.backends.base
- name: get_backend
dynamic: true
- name: set_backend
dynamic: true

- kind: page
path: expression-tables
package: ibis.expr.types.relations
Expand Down Expand Up @@ -305,27 +294,35 @@ quartodoc:

- kind: page
path: expression-numeric
package: ibis.expr.types.numeric
summary:
name: Numeric and Boolean expressions
desc: Integer, floating point, decimal, and boolean expressions.
contents:
- NumericValue
- NumericColumn
- IntegerValue
- IntegerColumn
- FloatingValue
- DecimalValue
- name: NumericValue
package: ibis.expr.types.numeric
- name: NumericColumn
package: ibis.expr.types.numeric
- name: IntegerValue
package: ibis.expr.types.numeric
- name: IntegerColumn
package: ibis.expr.types.numeric
- name: FloatingValue
package: ibis.expr.types.numeric
- name: DecimalValue
package: ibis.expr.types.numeric
- name: BooleanValue
package: ibis.expr.types.logical
- name: and_
dynamic: true
package: ibis
- name: or_
dynamic: true
package: ibis
- name: negate
package: ibis.expr.api
- name: random
dynamic: true
package: ibis

- kind: page
path: expression-strings
Expand Down Expand Up @@ -479,6 +476,23 @@ quartodoc:
dynamic: true
- Schema

- title: Connection APIs
package: ibis.expr.operations.udf
contents:
- kind: page
package: ibis
path: connection
summary:
name: Top-level connection APIs
desc: Create and manage backend connections.
contents:
- name: connect
package: ibis.backends.base
- name: get_backend
dynamic: true
- name: set_backend
dynamic: true

- title: UDFs
desc: "User-defined function APIs"
package: ibis.expr.operations.udf
Expand Down

0 comments on commit 95bb2e0

Please sign in to comment.