|
1 | 1 | # ---------------------- PROJECT SPECIFIC --------------------------- |
2 | 2 |
|
3 | | -site_name: DataJoint Python |
| 3 | +site_name: DataJoint Documentation |
4 | 4 | repo_url: https://github.com/datajoint/datajoint-python |
5 | 5 | repo_name: datajoint/datajoint-python |
6 | 6 | nav: |
7 | | - - DataJoint Python: getting-started/index.md |
| 7 | + - DataJoint Python: index.md |
8 | 8 | - Getting Started: getting-started/index.md |
9 | | - - Existing Pipelines: concepts/existing-pipelines.md |
10 | | - - Query Language: |
11 | | - - Common Commands: query-lang/common-commands.md |
12 | | - - Operators: query-lang/operators.md |
13 | | - - Iteration: query-lang/iteration.md |
14 | | - - Query Caching: query-lang/query-caching.md |
| 9 | + - Concepts: |
| 10 | + - Principles: concepts/principles.md |
| 11 | + - Glossary: concepts/glossary.md |
| 12 | + - System Administration: |
| 13 | + - Database Administration: sysadmin/dba.md |
| 14 | + - File Storage: sysadmin/filestore.md |
| 15 | + - Client Configuration: |
| 16 | + - Install: client/install.md |
| 17 | + - Credentials: client/creds.md |
| 18 | + - Settings: client/settings.md |
| 19 | + - File Stores: client/stores.md |
| 20 | + - Schema Design: |
| 21 | + - Schema Creation: design/schema.md |
| 22 | + - Table Definition: |
| 23 | + - Table Tiers: design/tables/tiers.md |
| 24 | + - Declaration Syntax: design/tables/declare.md |
| 25 | + - Primary Key: design/tables/primary.md |
| 26 | + - Attributes: design/tables/attributes.md |
| 27 | + - Lookup Tables: design/tables/lookup.md |
| 28 | + - Blobs: design/tables/blobs.md |
| 29 | + - Attachments: design/tables/attach.md |
| 30 | + - Filepaths: design/tables/filepath.md |
| 31 | + - Custom Datatypes: design/tables/customtype.md |
| 32 | + - Dependencies: design/tables/dependencies.md |
| 33 | + - Indexes: design/tables/indexes.md |
| 34 | + - Master-Part Relationships: design/tables/master-part.md |
| 35 | + - Schema Diagrams: design/diagrams.md |
| 36 | + - Entity Normalization: design/normalization.md |
| 37 | + - Data Integrity: design/integrity.md |
| 38 | + - Schema Recall: design/recall.md |
| 39 | + - Schema Drop: design/drop.md |
| 40 | + - Schema Modification: design/alter.md |
| 41 | + - Data Manipulations: |
| 42 | + - Insert: manipulation/insert.md |
| 43 | + - Delete: manipulation/delete.md |
| 44 | + - Update: manipulation/update.md |
| 45 | + - Transactions: manipulation/transactions.md |
| 46 | + - Data Queries: |
| 47 | + - Common Commands: query/common-commands.md |
| 48 | + - Fetch: query/fetch.md |
| 49 | + - Iteration: query/iteration.md |
| 50 | + - Operators: query/operators.md |
| 51 | + - Restrict: query/restrict.md |
| 52 | + - Projection: query/project.md |
| 53 | + - Join: query/join.md |
| 54 | + - Aggregation: query/aggregation.md |
| 55 | + - Union: query/union.md |
| 56 | + - Universal Sets: query/universals.md |
| 57 | + - Query Caching: query/query-caching.md |
| 58 | + - Computations: |
| 59 | + - Make Method: compute/make.md |
| 60 | + - Populate: compute/populate.md |
| 61 | + - Key Source: compute/key-source.md |
| 62 | + - Distributed Computing: compute/distributed.md |
| 63 | + - Internals: |
| 64 | + - SQL Transpilation: internal/transpilation.md |
15 | 65 | - Reproducibility: |
16 | 66 | - Table Tiers: reproduce/table-tiers.md |
17 | 67 | - Make Method: reproduce/make-method.md |
| 68 | + - Existing Pipelines: existing-pipelines.md |
18 | 69 | - Tutorials: |
19 | 70 | - tutorials/json.ipynb |
| 71 | + - FAQ: faq.md |
20 | 72 | - Develop: develop.md |
21 | | - - Changelog: about/changelog.md |
| 73 | + - Citation: citation.md |
| 74 | + - Changelog: changelog.md |
22 | 75 | - API: api/ # defer to gen-files + literate-nav |
23 | 76 |
|
24 | 77 | # ---------------------------- STANDARD ----------------------------- |
@@ -50,9 +103,6 @@ theme: |
50 | 103 | name: Switch to light mode |
51 | 104 | plugins: |
52 | 105 | - search |
53 | | - - redirects: |
54 | | - redirect_maps: |
55 | | - "index.md": "getting-started/index.md" |
56 | 106 | - mkdocstrings: |
57 | 107 | default_handler: python |
58 | 108 | handlers: |
@@ -95,11 +145,11 @@ markdown_extensions: |
95 | 145 | - name: mermaid |
96 | 146 | class: mermaid |
97 | 147 | format: !!python/name:pymdownx.superfences.fence_code_format |
| 148 | + - pymdownx.magiclink # Displays bare URLs as links |
| 149 | + - pymdownx.tasklist: # Renders check boxes in tasks lists |
| 150 | + custom_checkbox: true |
98 | 151 | extra: |
99 | 152 | generator: false # Disable watermark |
100 | | - analytics: |
101 | | - provider: google |
102 | | - property: !ENV GOOGLE_ANALYTICS_KEY |
103 | 153 | version: |
104 | 154 | provider: mike |
105 | 155 | social: |
|
0 commit comments