Skip to content

Commit

Permalink
Deploying to gh-pages from @ 169af76 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
axelboc committed Jan 29, 2024
1 parent 11065b7 commit d03476a
Show file tree
Hide file tree
Showing 30 changed files with 236 additions and 13,269 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 4f0ac0233257eb73734a2e84605fd902
config: 88a26a2f84714509f3e88dd4f0f16a51
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified .doctrees/api.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/example.doctree
Binary file not shown.
Binary file modified .doctrees/index.doctree
Binary file not shown.
Binary file modified .doctrees/integration.doctree
Binary file not shown.
Binary file modified .doctrees/low_level.doctree
Binary file not shown.
134 changes: 0 additions & 134 deletions _static/_sphinx_javascript_frameworks_compat.js

This file was deleted.

81 changes: 58 additions & 23 deletions _static/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: 'H5Grove API'
description: 'The API provided by h5grove example implementations.'
version: 1.3.0
version: 2.0.0b0

servers:
- url: http://{ip}:{port}/
Expand Down Expand Up @@ -270,50 +270,51 @@ components:
mixed:
description: Gets data[5, 0:10:2]
value: [5, '0:10:2']

schemas:
# Metadata schemas
attrMetadata:
type: object
description: Attribute metadata. Does not include the value.
properties:
dtype:
$ref: '#/components/schemas/dtype'
name:
type: string
example: 'attr1_name'
shape:
$ref: '#/components/schemas/shape'
type:
$ref: '#/components/schemas/type'
entityMetadata:
type: object
properties:
kind:
enum: ['other']
type: string
name:
type: string
example: 'entity_name'
type:
enum: ['other']
type: string
softLinkMetadata:
allOf:
- $ref: '#/components/schemas/entityMetadata'
- type: object
properties:
kind:
enum: ['soft_link']
type: string
target_path:
type: string
example: '/path/to/linked/entity'
type:
enum: ['soft_link']
type: string
externalLinkMetadata:
allOf:
- $ref: '#/components/schemas/softLinkMetadata'
- type: object
properties:
target_file:
type: string
type:
kind:
enum: ['external_link']
type: string
example: 'path/to/another/file.h5'
target_file:
type: string
resolvedEntityMetadata:
allOf:
- $ref: '#/components/schemas/entityMetadata'
Expand All @@ -328,25 +329,28 @@ components:
- $ref: '#/components/schemas/resolvedEntityMetadata'
- type: object
properties:
kind:
enum: ['dataset']
type: string
shape:
$ref: '#/components/schemas/shape'
type:
$ref: '#/components/schemas/type'
chunks:
$ref: '#/components/schemas/shape'
dtype:
$ref: '#/components/schemas/dtype'
filters:
type: array
items:
$ref: '#/components/schemas/filterInfo'
nullable: true
shape:
$ref: '#/components/schemas/shape'
type:
enum: ['dataset']
type: string
groupMetadata:
allOf:
- $ref: '#/components/schemas/resolvedEntityMetadata'
- type: object
properties:
kind:
enum: ['group']
type: string
children:
type: array
items:
Expand All @@ -356,18 +360,49 @@ components:
- $ref: '#/components/schemas/externalLinkMetadata'
- $ref: '#/components/schemas/resolvedEntityMetadata'
- $ref: '#/components/schemas/softLinkMetadata'
type:
enum: ['group']
type: string
childGroupMetadata:
allOf:
- $ref: '#/components/schemas/resolvedEntityMetadata'
- type: object
properties:
type:
kind:
enum: ['group']
type: string

# Other schemas
type:
type: object
properties:
class:
type: integer
dtype:
$ref: '#/components/schemas/dtype'
size:
type: integer
order:
type: integer
sign:
type: integer
cset:
type: integer
vlen:
type: boolean
tag:
type: string
dims:
$ref: '#/components/schemas/shape'
dims:
$ref: '#/components/schemas/shape'
members:
oneOf:
- type: object
additionalProperties:
$ref: '#/components/schemas/type'
- type: object
additionalProperties:
type: integer
base:
$ref: '#/components/schemas/type'
dtype:
oneOf:
- type: 'string'
Expand Down
23 changes: 22 additions & 1 deletion _static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -324,13 +324,15 @@ aside.sidebar {
p.sidebar-title {
font-weight: bold;
}

nav.contents,
aside.topic,
div.admonition, div.topic, blockquote {
clear: left;
}

/* -- topics ---------------------------------------------------------------- */

nav.contents,
aside.topic,
div.topic {
Expand Down Expand Up @@ -606,6 +608,7 @@ ol.simple p,
ul.simple p {
margin-bottom: 0;
}

aside.footnote > span,
div.citation > span {
float: left;
Expand Down Expand Up @@ -667,6 +670,16 @@ dd {
margin-left: 30px;
}

.sig dd {
margin-top: 0px;
margin-bottom: 0px;
}

.sig dl {
margin-top: 0px;
margin-bottom: 0px;
}

dl > dd:last-child,
dl > dd:last-child > :last-child {
margin-bottom: 0;
Expand Down Expand Up @@ -735,6 +748,14 @@ abbr, acronym {
cursor: help;
}

.translated {
background-color: rgba(207, 255, 207, 0.2)
}

.untranslated {
background-color: rgba(255, 207, 207, 0.2)
}

/* -- code displays --------------------------------------------------------- */

pre {
Expand Down
2 changes: 1 addition & 1 deletion _static/doctools.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Base JavaScript utilities for all Sphinx HTML documentation.
*
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down
2 changes: 1 addition & 1 deletion _static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '1.3.0',
VERSION: '2.0.0b0',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
Loading

0 comments on commit d03476a

Please sign in to comment.