├── .github ├── pull_request_template.md └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── HACKING.md ├── LICENSE ├── LICENSE.openssl ├── LICENSE.python ├── Makefile ├── README.rst ├── RPC-methods.md ├── bundle.zip ├── code-of-conduct.md ├── docs ├── flowchart.svg └── node-conversion-example.svg ├── poetry.lock ├── pyproject.toml ├── snooty ├── __init__.py ├── __main__.py ├── builders │ ├── __init__.py │ ├── man.py │ └── test_man.py ├── bundle.zip ├── config.toml ├── diagnostics.py ├── eventparser.py ├── flutter.py ├── gizaparser │ ├── __init__.py │ ├── apiargs.py │ ├── domain.py │ ├── extracts.py │ ├── nodes.py │ ├── options.py │ ├── parse.py │ ├── release.py │ ├── steps.py │ ├── test_domain.py │ ├── test_extracts.py │ ├── test_nodes.py │ ├── test_parse.py │ ├── test_release.py │ └── test_steps.py ├── icon_names.py ├── intersphinx.py ├── language_server.py ├── main.py ├── n.py ├── page.py ├── page_database.py ├── parse_cache.py ├── parser.py ├── performance_report.py ├── postprocess.py ├── rstparser.py ├── rstspec.toml ├── specparser.py ├── target_database.py ├── taxonomy.py ├── taxonomy.toml ├── test_diagnostic.py ├── test_intersphinx.py ├── test_language_server.py ├── test_main.py ├── test_mongodb_domain.py ├── test_openapi.py ├── test_page_database.py ├── test_parser.py ├── test_postprocess.py ├── test_postprocess_old_and_monolithic.py ├── test_project.py ├── test_sharedinclude.py ├── test_specparser.py ├── test_types.py ├── test_util.py ├── tinydocutils │ ├── README.md │ ├── __init__.py │ ├── directives.py │ ├── frontend.py │ ├── nodes.py │ ├── parsers.py │ ├── roles.py │ ├── roman.py │ ├── statemachine.py │ ├── states.py │ ├── urischemes.py │ └── utils.py ├── types.py ├── util.py └── util_test.py ├── snootycli.py ├── stubs ├── bson.pyi ├── fett.pyi ├── imagesize.pyi ├── networkx │ ├── __init__.pyi │ └── exception.pyi ├── pyls_jsonrpc │ ├── __init__.pyi │ ├── dispatchers.pyi │ ├── endpoint.pyi │ └── streams.pyi ├── pymongo │ ├── __init__.pyi │ ├── collection.pyi │ ├── cursor.pyi │ ├── database.pyi │ └── operations.pyi └── yaml │ ├── __init__.pyi │ ├── composer.pyi │ ├── constructor.pyi │ ├── error.pyi │ ├── nodes.pyi │ ├── resolver.pyi │ └── scanner.pyi ├── test_data ├── bad_project │ └── snooty.toml ├── compass-explain-plan-with-index-raw-json.png ├── driver-examples │ ├── pythonexample.py │ └── rstexample.rst ├── empty_project │ └── snooty.toml ├── get-preview │ ├── snooty.toml │ └── source │ │ ├── includes │ │ ├── extracts-test.yaml │ │ ├── release-pinning.yaml │ │ └── steps-test.yaml │ │ └── index.txt ├── getfiles │ ├── files1 │ │ ├── 1.toml │ │ ├── 2.toml │ │ ├── 3.toml │ │ ├── 3.txt │ │ ├── dup │ │ ├── escape │ │ ├── files2 │ │ ├── loop │ │ ├── loop1 │ │ │ ├── loop1.toml │ │ │ └── loop2 │ │ ├── loop2 │ │ │ ├── loop1 │ │ │ └── loop2.toml │ │ └── subdirectory │ │ │ └── 5.toml │ └── files2 │ │ ├── 3.toml │ │ ├── loop │ │ └── subdirectory │ │ └── 4.toml ├── merge_conflict │ ├── snooty.toml │ └── source │ │ └── index.txt ├── nested_project │ ├── snooty.toml │ └── source │ │ ├── 1.rst │ │ ├── non_project_dir │ │ ├── 4.rst │ │ └── project_d │ │ │ ├── snooty.toml │ │ │ └── source │ │ │ └── 5.rst │ │ └── project_b │ │ ├── snooty.toml │ │ └── source │ │ ├── 2.rst │ │ ├── another_non_project_dir │ │ └── 5.rst │ │ └── project_c │ │ ├── snooty.toml │ │ └── source │ │ └── 3.rst ├── not_a_project │ └── placeholder ├── test_facets │ ├── snooty.toml │ └── source │ │ ├── driver-examples │ │ ├── driver.rst │ │ ├── facets.toml │ │ └── nest │ │ │ ├── facets.toml │ │ │ └── nest.txt │ │ ├── facets.toml │ │ └── index.txt ├── test_gizaparser │ ├── snooty.toml │ └── source │ │ └── includes │ │ ├── extracts-test-parent.yaml │ │ ├── extracts-test.yaml │ │ ├── release-base-repeat.yaml │ │ ├── release-base.yaml │ │ ├── release-specifications.yaml │ │ ├── steps-test-child.yaml │ │ ├── steps-test-grandchild.yaml │ │ └── steps-test.yaml ├── test_intersphinx │ ├── django.inv │ ├── ecosystem.inv │ ├── manual.inv │ ├── snooty.toml │ └── source │ │ ├── c.txt │ │ ├── community-supported-drivers.txt │ │ ├── contents.txt │ │ ├── csharp.txt │ │ ├── cxx.txt │ │ ├── driver-compatibility-reference.txt │ │ ├── drivers.txt │ │ ├── go.txt │ │ ├── includes │ │ ├── atlas-connect-blurb.rst │ │ ├── attention-docs-eol.rst │ │ ├── connection-snippets │ │ │ └── x509-snippets │ │ │ │ ├── c-connection.c │ │ │ │ ├── cpp-connection.cpp │ │ │ │ ├── csharp-connection.cs │ │ │ │ ├── go-connection.go │ │ │ │ ├── java-connection.java │ │ │ │ ├── node-connection.js │ │ │ │ ├── php-connection.php │ │ │ │ ├── python-connection.py │ │ │ │ ├── ruby-connection.rb │ │ │ │ └── scala-connection.scala │ │ ├── driver-compatibility-caveat.rst │ │ ├── driver-table.rst │ │ ├── extracts-additional-information.yaml │ │ ├── extracts-driver-compatibility-matrix-base.yaml │ │ ├── extracts-driver-compatibility-matrix.yaml │ │ ├── fact-authenticate-with-java-gssapi.rst │ │ ├── fact-authenticate-with-java-x509.rst │ │ ├── fact-authenticate-with-java.rst │ │ ├── hadoop-eol-spark.rst │ │ ├── help-links-c.rst │ │ ├── help-links-csharp.rst │ │ ├── help-links-cxx.rst │ │ ├── help-links-general.rst │ │ ├── help-links-go.rst │ │ ├── help-links-java.rst │ │ ├── help-links-motor.rst │ │ ├── help-links-node.rst │ │ ├── help-links-php.rst │ │ ├── help-links-pymongo.rst │ │ ├── help-links-rust.rst │ │ ├── help-links-scala.rst │ │ ├── help-links-swift.rst │ │ ├── language-compatibility-table-c.rst │ │ ├── language-compatibility-table-csharp.rst │ │ ├── language-compatibility-table-cxx.rst │ │ ├── language-compatibility-table-go.rst │ │ ├── language-compatibility-table-java-rs.rst │ │ ├── language-compatibility-table-java.rst │ │ ├── language-compatibility-table-motor.rst │ │ ├── language-compatibility-table-node.rst │ │ ├── language-compatibility-table-perl.rst │ │ ├── language-compatibility-table-php.rst │ │ ├── language-compatibility-table-python.rst │ │ ├── language-compatibility-table-rust.rst │ │ ├── language-compatibility-table-scala.rst │ │ ├── language-compatibility-table-swift.rst │ │ ├── mongodb-compatibility-table-c.rst │ │ ├── mongodb-compatibility-table-csharp.rst │ │ ├── mongodb-compatibility-table-cxx.rst │ │ ├── mongodb-compatibility-table-go.rst │ │ ├── mongodb-compatibility-table-java-rs.rst │ │ ├── mongodb-compatibility-table-java.rst │ │ ├── mongodb-compatibility-table-motor.rst │ │ ├── mongodb-compatibility-table-node.rst │ │ ├── mongodb-compatibility-table-perl.rst │ │ ├── mongodb-compatibility-table-python.rst │ │ ├── mongodb-compatibility-table-rust.rst │ │ ├── mongodb-compatibility-table-scala.rst │ │ ├── mongodb-compatibility-table-swift.rst │ │ ├── older-server-versions-unsupported.rst │ │ ├── php-mongodb-compatibility-table.rst │ │ ├── replacement-mms.rst │ │ ├── steps-fle-configure-the-mongodb-client.yaml │ │ ├── steps-fle-convert-to-a-remote-master-key.yaml │ │ ├── steps-fle-create-data-encryption-key.yaml │ │ ├── table-driver-syntax.rst │ │ ├── table-driver-syntax.yaml │ │ ├── table-sql-to-mongo-to-cpp-examples.rst │ │ ├── table-sql-to-mongo-to-cpp-examples.yaml │ │ └── unicode-checkmark.rst │ │ ├── index.txt │ │ ├── java-drivers.txt │ │ ├── java.txt │ │ ├── motor.txt │ │ ├── node.txt │ │ ├── perl.txt │ │ ├── php-libraries.txt │ │ ├── php.txt │ │ ├── platforms │ │ ├── amazon-ec2.txt │ │ ├── red-hat-enterprise-linux.txt │ │ ├── windows-azure.txt │ │ └── windows.txt │ │ ├── pymongo.txt │ │ ├── python.txt │ │ ├── reactive-streams.txt │ │ ├── rust.txt │ │ ├── scala.txt │ │ ├── specs.txt │ │ ├── swift.txt │ │ ├── tools │ │ ├── hadoop.txt │ │ └── munin.txt │ │ ├── tutorial │ │ ├── authenticate-with-csharp-driver.txt │ │ ├── backup-and-restore-mongodb-on-amazon-ec2.txt │ │ ├── configure-red-hat-enterprise-linux-identity-management.txt │ │ ├── getting-started-with-hadoop.txt │ │ └── manage-red-hat-enterprise-linux-identity-management.txt │ │ ├── use-cases.txt │ │ └── use-cases │ │ ├── category-hierarchy.txt │ │ ├── client-side-field-level-encryption-guide.txt │ │ ├── client-side-field-level-encryption-local-key-to-kms.txt │ │ ├── hadoop.txt │ │ ├── hierarchical-aggregation.txt │ │ ├── http-interfaces.txt │ │ ├── inventory-management.txt │ │ ├── metadata-and-asset-management.txt │ │ ├── product-catalog.txt │ │ ├── storing-comments.txt │ │ └── storing-log-data.txt ├── test_mongodb_domain │ ├── snooty.toml │ └── source │ │ ├── images │ │ └── pink.png │ │ └── index.txt ├── test_parser │ ├── includes │ │ ├── sample_code.js │ │ ├── sample_code.py │ │ ├── sample_prefixes.c │ │ └── sample_rst.rst │ ├── openapi-admin-v3.yaml │ ├── sample.jpg │ ├── sample.png │ └── sample@2x.png ├── test_parser_failure │ ├── snooty.toml │ └── source │ │ └── test.rst ├── test_postprocessor │ ├── snooty.toml │ └── source │ │ ├── a-program.txt │ │ ├── circular.txt │ │ ├── folder │ │ └── doc.txt │ │ ├── includes │ │ ├── option-version.rst │ │ ├── substitution.rst │ │ └── test.rst │ │ ├── index.txt │ │ ├── nested.txt │ │ ├── note.txt │ │ ├── page1.txt │ │ ├── page2.txt │ │ ├── page3.txt │ │ ├── page4.txt │ │ ├── page5.txt │ │ └── refrole.txt ├── test_project │ ├── snooty.toml │ └── source │ │ ├── driver-examples │ │ └── DocumentationExamples.cs │ │ ├── facets.toml │ │ ├── general-features-tools.svg │ │ ├── images │ │ └── compass-create-database.png │ │ └── index.txt ├── test_project_embedding_includes │ ├── snooty.toml │ └── source │ │ ├── images │ │ └── compass-create-database.png │ │ ├── includes │ │ ├── include_child.rst │ │ ├── steps-migrate-compose-pr.yaml │ │ └── test_rst.rst │ │ └── index.txt ├── test_quiz.rst ├── test_tabs.rst └── test_tabs_options.rst └── tools ├── bump_version.py ├── fetch-pyston.sh ├── lint_changelog.py ├── run_pyinstaller.py ├── test_bump_version.py └── test_lint_changelog.py /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/LICENSE.openssl -------------------------------------------------------------------------------- /LICENSE.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/LICENSE.python -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/README.rst -------------------------------------------------------------------------------- /RPC-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/RPC-methods.md -------------------------------------------------------------------------------- /bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/bundle.zip -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /docs/flowchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/docs/flowchart.svg -------------------------------------------------------------------------------- /docs/node-conversion-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/docs/node-conversion-example.svg -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /snooty/__init__.py: -------------------------------------------------------------------------------- 1 | """The Snooty documentation writer's tool.""" 2 | 3 | __version__ = "0.20.15.dev" 4 | -------------------------------------------------------------------------------- /snooty/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/__main__.py -------------------------------------------------------------------------------- /snooty/builders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/builders/__init__.py -------------------------------------------------------------------------------- /snooty/builders/man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/builders/man.py -------------------------------------------------------------------------------- /snooty/builders/test_man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/builders/test_man.py -------------------------------------------------------------------------------- /snooty/bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/bundle.zip -------------------------------------------------------------------------------- /snooty/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/config.toml -------------------------------------------------------------------------------- /snooty/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/diagnostics.py -------------------------------------------------------------------------------- /snooty/eventparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/eventparser.py -------------------------------------------------------------------------------- /snooty/flutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/flutter.py -------------------------------------------------------------------------------- /snooty/gizaparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/__init__.py -------------------------------------------------------------------------------- /snooty/gizaparser/apiargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/apiargs.py -------------------------------------------------------------------------------- /snooty/gizaparser/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/domain.py -------------------------------------------------------------------------------- /snooty/gizaparser/extracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/extracts.py -------------------------------------------------------------------------------- /snooty/gizaparser/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/nodes.py -------------------------------------------------------------------------------- /snooty/gizaparser/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/options.py -------------------------------------------------------------------------------- /snooty/gizaparser/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/parse.py -------------------------------------------------------------------------------- /snooty/gizaparser/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/release.py -------------------------------------------------------------------------------- /snooty/gizaparser/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/steps.py -------------------------------------------------------------------------------- /snooty/gizaparser/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/test_domain.py -------------------------------------------------------------------------------- /snooty/gizaparser/test_extracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/test_extracts.py -------------------------------------------------------------------------------- /snooty/gizaparser/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/test_nodes.py -------------------------------------------------------------------------------- /snooty/gizaparser/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/test_parse.py -------------------------------------------------------------------------------- /snooty/gizaparser/test_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/test_release.py -------------------------------------------------------------------------------- /snooty/gizaparser/test_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/gizaparser/test_steps.py -------------------------------------------------------------------------------- /snooty/icon_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/icon_names.py -------------------------------------------------------------------------------- /snooty/intersphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/intersphinx.py -------------------------------------------------------------------------------- /snooty/language_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/language_server.py -------------------------------------------------------------------------------- /snooty/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/main.py -------------------------------------------------------------------------------- /snooty/n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/n.py -------------------------------------------------------------------------------- /snooty/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/page.py -------------------------------------------------------------------------------- /snooty/page_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/page_database.py -------------------------------------------------------------------------------- /snooty/parse_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/parse_cache.py -------------------------------------------------------------------------------- /snooty/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/parser.py -------------------------------------------------------------------------------- /snooty/performance_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/performance_report.py -------------------------------------------------------------------------------- /snooty/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/postprocess.py -------------------------------------------------------------------------------- /snooty/rstparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/rstparser.py -------------------------------------------------------------------------------- /snooty/rstspec.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/rstspec.toml -------------------------------------------------------------------------------- /snooty/specparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/specparser.py -------------------------------------------------------------------------------- /snooty/target_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/target_database.py -------------------------------------------------------------------------------- /snooty/taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/taxonomy.py -------------------------------------------------------------------------------- /snooty/taxonomy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/taxonomy.toml -------------------------------------------------------------------------------- /snooty/test_diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_diagnostic.py -------------------------------------------------------------------------------- /snooty/test_intersphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_intersphinx.py -------------------------------------------------------------------------------- /snooty/test_language_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_language_server.py -------------------------------------------------------------------------------- /snooty/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_main.py -------------------------------------------------------------------------------- /snooty/test_mongodb_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_mongodb_domain.py -------------------------------------------------------------------------------- /snooty/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_openapi.py -------------------------------------------------------------------------------- /snooty/test_page_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_page_database.py -------------------------------------------------------------------------------- /snooty/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_parser.py -------------------------------------------------------------------------------- /snooty/test_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_postprocess.py -------------------------------------------------------------------------------- /snooty/test_postprocess_old_and_monolithic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_postprocess_old_and_monolithic.py -------------------------------------------------------------------------------- /snooty/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_project.py -------------------------------------------------------------------------------- /snooty/test_sharedinclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_sharedinclude.py -------------------------------------------------------------------------------- /snooty/test_specparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_specparser.py -------------------------------------------------------------------------------- /snooty/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_types.py -------------------------------------------------------------------------------- /snooty/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/test_util.py -------------------------------------------------------------------------------- /snooty/tinydocutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/README.md -------------------------------------------------------------------------------- /snooty/tinydocutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/__init__.py -------------------------------------------------------------------------------- /snooty/tinydocutils/directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/directives.py -------------------------------------------------------------------------------- /snooty/tinydocutils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/frontend.py -------------------------------------------------------------------------------- /snooty/tinydocutils/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/nodes.py -------------------------------------------------------------------------------- /snooty/tinydocutils/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/parsers.py -------------------------------------------------------------------------------- /snooty/tinydocutils/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/roles.py -------------------------------------------------------------------------------- /snooty/tinydocutils/roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/roman.py -------------------------------------------------------------------------------- /snooty/tinydocutils/statemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/statemachine.py -------------------------------------------------------------------------------- /snooty/tinydocutils/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/states.py -------------------------------------------------------------------------------- /snooty/tinydocutils/urischemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/urischemes.py -------------------------------------------------------------------------------- /snooty/tinydocutils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/tinydocutils/utils.py -------------------------------------------------------------------------------- /snooty/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/types.py -------------------------------------------------------------------------------- /snooty/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/util.py -------------------------------------------------------------------------------- /snooty/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snooty/util_test.py -------------------------------------------------------------------------------- /snootycli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/snootycli.py -------------------------------------------------------------------------------- /stubs/bson.pyi: -------------------------------------------------------------------------------- 1 | def encode(document: object) -> bytes: ... 2 | -------------------------------------------------------------------------------- /stubs/fett.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/fett.pyi -------------------------------------------------------------------------------- /stubs/imagesize.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/imagesize.pyi -------------------------------------------------------------------------------- /stubs/networkx/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/networkx/__init__.pyi -------------------------------------------------------------------------------- /stubs/networkx/exception.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/networkx/exception.pyi -------------------------------------------------------------------------------- /stubs/pyls_jsonrpc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubs/pyls_jsonrpc/dispatchers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pyls_jsonrpc/dispatchers.pyi -------------------------------------------------------------------------------- /stubs/pyls_jsonrpc/endpoint.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pyls_jsonrpc/endpoint.pyi -------------------------------------------------------------------------------- /stubs/pyls_jsonrpc/streams.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pyls_jsonrpc/streams.pyi -------------------------------------------------------------------------------- /stubs/pymongo/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pymongo/__init__.pyi -------------------------------------------------------------------------------- /stubs/pymongo/collection.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pymongo/collection.pyi -------------------------------------------------------------------------------- /stubs/pymongo/cursor.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pymongo/cursor.pyi -------------------------------------------------------------------------------- /stubs/pymongo/database.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pymongo/database.pyi -------------------------------------------------------------------------------- /stubs/pymongo/operations.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/pymongo/operations.pyi -------------------------------------------------------------------------------- /stubs/yaml/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/yaml/__init__.pyi -------------------------------------------------------------------------------- /stubs/yaml/composer.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/yaml/composer.pyi -------------------------------------------------------------------------------- /stubs/yaml/constructor.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/yaml/constructor.pyi -------------------------------------------------------------------------------- /stubs/yaml/error.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/yaml/error.pyi -------------------------------------------------------------------------------- /stubs/yaml/nodes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/yaml/nodes.pyi -------------------------------------------------------------------------------- /stubs/yaml/resolver.pyi: -------------------------------------------------------------------------------- 1 | class BaseResolver: 2 | DEFAULT_MAPPING_TAG: str = ... 3 | -------------------------------------------------------------------------------- /stubs/yaml/scanner.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/stubs/yaml/scanner.pyi -------------------------------------------------------------------------------- /test_data/bad_project/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/bad_project/snooty.toml -------------------------------------------------------------------------------- /test_data/compass-explain-plan-with-index-raw-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/compass-explain-plan-with-index-raw-json.png -------------------------------------------------------------------------------- /test_data/driver-examples/pythonexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/driver-examples/pythonexample.py -------------------------------------------------------------------------------- /test_data/driver-examples/rstexample.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/empty_project/snooty.toml: -------------------------------------------------------------------------------- 1 | name = "test_data" 2 | -------------------------------------------------------------------------------- /test_data/get-preview/snooty.toml: -------------------------------------------------------------------------------- 1 | name = "get-preview" 2 | -------------------------------------------------------------------------------- /test_data/get-preview/source/includes/extracts-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/get-preview/source/includes/extracts-test.yaml -------------------------------------------------------------------------------- /test_data/get-preview/source/includes/release-pinning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/get-preview/source/includes/release-pinning.yaml -------------------------------------------------------------------------------- /test_data/get-preview/source/includes/steps-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/get-preview/source/includes/steps-test.yaml -------------------------------------------------------------------------------- /test_data/get-preview/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/get-preview/source/index.txt -------------------------------------------------------------------------------- /test_data/getfiles/files1/1.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files1/2.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files1/3.toml: -------------------------------------------------------------------------------- 1 | ../files2/3.toml -------------------------------------------------------------------------------- /test_data/getfiles/files1/3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files1/dup: -------------------------------------------------------------------------------- 1 | subdirectory -------------------------------------------------------------------------------- /test_data/getfiles/files1/escape: -------------------------------------------------------------------------------- 1 | ../../ -------------------------------------------------------------------------------- /test_data/getfiles/files1/files2: -------------------------------------------------------------------------------- 1 | ../files2 -------------------------------------------------------------------------------- /test_data/getfiles/files1/loop: -------------------------------------------------------------------------------- 1 | ../files2/loop -------------------------------------------------------------------------------- /test_data/getfiles/files1/loop1/loop1.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files1/loop1/loop2: -------------------------------------------------------------------------------- 1 | ../loop2 -------------------------------------------------------------------------------- /test_data/getfiles/files1/loop2/loop1: -------------------------------------------------------------------------------- 1 | ../loop1 -------------------------------------------------------------------------------- /test_data/getfiles/files1/loop2/loop2.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files1/subdirectory/5.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files2/3.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/getfiles/files2/loop: -------------------------------------------------------------------------------- 1 | ../files1/loop -------------------------------------------------------------------------------- /test_data/getfiles/files2/subdirectory/4.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/merge_conflict/snooty.toml: -------------------------------------------------------------------------------- 1 | name = "merge_conflict" 2 | -------------------------------------------------------------------------------- /test_data/merge_conflict/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/merge_conflict/source/index.txt -------------------------------------------------------------------------------- /test_data/nested_project/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/nested_project/snooty.toml -------------------------------------------------------------------------------- /test_data/nested_project/source/1.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/non_project_dir/4.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/non_project_dir/project_d/snooty.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/non_project_dir/project_d/source/5.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/project_b/snooty.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/project_b/source/2.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/project_b/source/another_non_project_dir/5.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/project_b/source/project_c/snooty.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/nested_project/source/project_b/source/project_c/source/3.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/not_a_project/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/test_facets/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/snooty.toml -------------------------------------------------------------------------------- /test_data/test_facets/source/driver-examples/driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/source/driver-examples/driver.rst -------------------------------------------------------------------------------- /test_data/test_facets/source/driver-examples/facets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/source/driver-examples/facets.toml -------------------------------------------------------------------------------- /test_data/test_facets/source/driver-examples/nest/facets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/source/driver-examples/nest/facets.toml -------------------------------------------------------------------------------- /test_data/test_facets/source/driver-examples/nest/nest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/source/driver-examples/nest/nest.txt -------------------------------------------------------------------------------- /test_data/test_facets/source/facets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/source/facets.toml -------------------------------------------------------------------------------- /test_data/test_facets/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_facets/source/index.txt -------------------------------------------------------------------------------- /test_data/test_gizaparser/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/snooty.toml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/extracts-test-parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/extracts-test-parent.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/extracts-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/extracts-test.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/release-base-repeat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/release-base-repeat.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/release-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/release-base.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/release-specifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/release-specifications.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/steps-test-child.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/steps-test-child.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/steps-test-grandchild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/steps-test-grandchild.yaml -------------------------------------------------------------------------------- /test_data/test_gizaparser/source/includes/steps-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_gizaparser/source/includes/steps-test.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/django.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/django.inv -------------------------------------------------------------------------------- /test_data/test_intersphinx/ecosystem.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/ecosystem.inv -------------------------------------------------------------------------------- /test_data/test_intersphinx/manual.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/manual.inv -------------------------------------------------------------------------------- /test_data/test_intersphinx/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/snooty.toml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/c.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/community-supported-drivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/community-supported-drivers.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/contents.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/csharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/csharp.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/cxx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/cxx.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/driver-compatibility-reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/driver-compatibility-reference.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/drivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/drivers.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/go.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/atlas-connect-blurb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/atlas-connect-blurb.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/attention-docs-eol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/attention-docs-eol.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/c-connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/c-connection.c -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/cpp-connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/cpp-connection.cpp -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/csharp-connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/csharp-connection.cs -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/go-connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/go-connection.go -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/java-connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/java-connection.java -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/node-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/node-connection.js -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/php-connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/php-connection.php -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/python-connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/python-connection.py -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/ruby-connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/ruby-connection.rb -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/scala-connection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/connection-snippets/x509-snippets/scala-connection.scala -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/driver-compatibility-caveat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/driver-compatibility-caveat.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/driver-table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/driver-table.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/extracts-additional-information.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/extracts-additional-information.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/extracts-driver-compatibility-matrix-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/extracts-driver-compatibility-matrix-base.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/extracts-driver-compatibility-matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/extracts-driver-compatibility-matrix.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/fact-authenticate-with-java-gssapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/fact-authenticate-with-java-gssapi.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/fact-authenticate-with-java-x509.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/fact-authenticate-with-java-x509.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/fact-authenticate-with-java.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/fact-authenticate-with-java.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/hadoop-eol-spark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/hadoop-eol-spark.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-c.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-csharp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-csharp.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-cxx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-cxx.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-general.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-go.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-go.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-java.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-java.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-motor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-motor.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-node.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-php.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-php.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-pymongo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-pymongo.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-rust.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-rust.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-scala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-scala.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/help-links-swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/help-links-swift.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-c.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-csharp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-csharp.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-cxx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-cxx.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-go.rst: -------------------------------------------------------------------------------- 1 | The MongoDB Go driver requires Go 1.10 or later. 2 | -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-java-rs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-java-rs.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-java.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-java.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-motor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-motor.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-node.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-perl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-perl.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-php.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-php.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-python.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-rust.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-rust.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-scala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-scala.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/language-compatibility-table-swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/language-compatibility-table-swift.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-c.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-csharp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-csharp.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-cxx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-cxx.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-go.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-go.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-java-rs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-java-rs.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-java.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-java.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-motor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-motor.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-node.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-perl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-perl.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-python.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-rust.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-rust.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-scala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-scala.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/mongodb-compatibility-table-swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/mongodb-compatibility-table-swift.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/older-server-versions-unsupported.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/older-server-versions-unsupported.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/php-mongodb-compatibility-table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/php-mongodb-compatibility-table.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/replacement-mms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/replacement-mms.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/steps-fle-configure-the-mongodb-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/steps-fle-configure-the-mongodb-client.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/steps-fle-convert-to-a-remote-master-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/steps-fle-convert-to-a-remote-master-key.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/steps-fle-create-data-encryption-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/steps-fle-create-data-encryption-key.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/table-driver-syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/table-driver-syntax.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/table-driver-syntax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/table-driver-syntax.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/table-sql-to-mongo-to-cpp-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/table-sql-to-mongo-to-cpp-examples.rst -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/table-sql-to-mongo-to-cpp-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/includes/table-sql-to-mongo-to-cpp-examples.yaml -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/includes/unicode-checkmark.rst: -------------------------------------------------------------------------------- 1 | .. |checkmark| unicode:: U+2713 2 | -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/index.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/java-drivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/java-drivers.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/java.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/motor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/motor.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/node.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/perl.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/php-libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/php-libraries.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/php.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/platforms/amazon-ec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/platforms/amazon-ec2.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/platforms/red-hat-enterprise-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/platforms/red-hat-enterprise-linux.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/platforms/windows-azure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/platforms/windows-azure.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/platforms/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/platforms/windows.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/pymongo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/pymongo.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/python.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/reactive-streams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/reactive-streams.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/rust.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/scala.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/scala.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/specs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/specs.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/swift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/swift.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tools/hadoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tools/hadoop.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tools/munin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tools/munin.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tutorial/authenticate-with-csharp-driver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tutorial/authenticate-with-csharp-driver.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tutorial/backup-and-restore-mongodb-on-amazon-ec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tutorial/backup-and-restore-mongodb-on-amazon-ec2.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tutorial/configure-red-hat-enterprise-linux-identity-management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tutorial/configure-red-hat-enterprise-linux-identity-management.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tutorial/getting-started-with-hadoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tutorial/getting-started-with-hadoop.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/tutorial/manage-red-hat-enterprise-linux-identity-management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/tutorial/manage-red-hat-enterprise-linux-identity-management.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/category-hierarchy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/category-hierarchy.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/client-side-field-level-encryption-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/client-side-field-level-encryption-guide.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/client-side-field-level-encryption-local-key-to-kms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/client-side-field-level-encryption-local-key-to-kms.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/hadoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/hadoop.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/hierarchical-aggregation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/hierarchical-aggregation.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/http-interfaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/http-interfaces.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/inventory-management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/inventory-management.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/metadata-and-asset-management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/metadata-and-asset-management.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/product-catalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/product-catalog.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/storing-comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/storing-comments.txt -------------------------------------------------------------------------------- /test_data/test_intersphinx/source/use-cases/storing-log-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_intersphinx/source/use-cases/storing-log-data.txt -------------------------------------------------------------------------------- /test_data/test_mongodb_domain/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_mongodb_domain/snooty.toml -------------------------------------------------------------------------------- /test_data/test_mongodb_domain/source/images/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_mongodb_domain/source/images/pink.png -------------------------------------------------------------------------------- /test_data/test_mongodb_domain/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_mongodb_domain/source/index.txt -------------------------------------------------------------------------------- /test_data/test_parser/includes/sample_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/includes/sample_code.js -------------------------------------------------------------------------------- /test_data/test_parser/includes/sample_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/includes/sample_code.py -------------------------------------------------------------------------------- /test_data/test_parser/includes/sample_prefixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/includes/sample_prefixes.c -------------------------------------------------------------------------------- /test_data/test_parser/includes/sample_rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/includes/sample_rst.rst -------------------------------------------------------------------------------- /test_data/test_parser/openapi-admin-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/openapi-admin-v3.yaml -------------------------------------------------------------------------------- /test_data/test_parser/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/sample.jpg -------------------------------------------------------------------------------- /test_data/test_parser/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser/sample.png -------------------------------------------------------------------------------- /test_data/test_parser/sample@2x.png: -------------------------------------------------------------------------------- 1 | sample.png -------------------------------------------------------------------------------- /test_data/test_parser_failure/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_parser_failure/snooty.toml -------------------------------------------------------------------------------- /test_data/test_parser_failure/source/test.rst: -------------------------------------------------------------------------------- 1 | 2 | .. literalinclude:: 3 | 4 | -------------------------------------------------------------------------------- /test_data/test_postprocessor/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/snooty.toml -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/a-program.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/a-program.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/circular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/circular.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/folder/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/folder/doc.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/includes/option-version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/includes/option-version.rst -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/includes/substitution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/includes/substitution.rst -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/includes/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/includes/test.rst -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/index.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/nested.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/note.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/page1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/page1.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/page2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/page2.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/page3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/page3.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/page4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/page4.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/page5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/page5.txt -------------------------------------------------------------------------------- /test_data/test_postprocessor/source/refrole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_postprocessor/source/refrole.txt -------------------------------------------------------------------------------- /test_data/test_project/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project/snooty.toml -------------------------------------------------------------------------------- /test_data/test_project/source/driver-examples/DocumentationExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project/source/driver-examples/DocumentationExamples.cs -------------------------------------------------------------------------------- /test_data/test_project/source/facets.toml: -------------------------------------------------------------------------------- 1 | [[facets]] 2 | category = "target_product" 3 | value = "atlas" 4 | -------------------------------------------------------------------------------- /test_data/test_project/source/general-features-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project/source/general-features-tools.svg -------------------------------------------------------------------------------- /test_data/test_project/source/images/compass-create-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project/source/images/compass-create-database.png -------------------------------------------------------------------------------- /test_data/test_project/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project/source/index.txt -------------------------------------------------------------------------------- /test_data/test_project_embedding_includes/snooty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project_embedding_includes/snooty.toml -------------------------------------------------------------------------------- /test_data/test_project_embedding_includes/source/images/compass-create-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project_embedding_includes/source/images/compass-create-database.png -------------------------------------------------------------------------------- /test_data/test_project_embedding_includes/source/includes/include_child.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project_embedding_includes/source/includes/include_child.rst -------------------------------------------------------------------------------- /test_data/test_project_embedding_includes/source/includes/steps-migrate-compose-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project_embedding_includes/source/includes/steps-migrate-compose-pr.yaml -------------------------------------------------------------------------------- /test_data/test_project_embedding_includes/source/includes/test_rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project_embedding_includes/source/includes/test_rst.rst -------------------------------------------------------------------------------- /test_data/test_project_embedding_includes/source/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_project_embedding_includes/source/index.txt -------------------------------------------------------------------------------- /test_data/test_quiz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_quiz.rst -------------------------------------------------------------------------------- /test_data/test_tabs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_tabs.rst -------------------------------------------------------------------------------- /test_data/test_tabs_options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/test_data/test_tabs_options.rst -------------------------------------------------------------------------------- /tools/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/tools/bump_version.py -------------------------------------------------------------------------------- /tools/fetch-pyston.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/tools/fetch-pyston.sh -------------------------------------------------------------------------------- /tools/lint_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/tools/lint_changelog.py -------------------------------------------------------------------------------- /tools/run_pyinstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/tools/run_pyinstaller.py -------------------------------------------------------------------------------- /tools/test_bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/tools/test_bump_version.py -------------------------------------------------------------------------------- /tools/test_lint_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/snooty-parser/HEAD/tools/test_lint_changelog.py --------------------------------------------------------------------------------