├── test ├── __init__.py └── test_giza.py ├── giza ├── test │ ├── __init__.py │ └── data │ │ ├── extracts-one.yaml │ │ ├── extracts-two.yaml │ │ ├── release-one.yaml │ │ ├── steps-two.yaml │ │ └── toc-two.yaml ├── giza │ ├── jeerah │ │ └── __init__.py │ ├── tools │ │ ├── __init__.py │ │ └── timing.py │ ├── content │ │ ├── __init__.py │ │ ├── apiargs │ │ │ └── __init__.py │ │ ├── examples │ │ │ └── __init__.py │ │ ├── extract │ │ │ ├── __init__.py │ │ │ └── inheritance.py │ │ ├── glossary │ │ │ ├── __init__.py │ │ │ ├── views.py │ │ │ └── inheritance.py │ │ ├── options │ │ │ └── __init__.py │ │ ├── post │ │ │ └── __init__.py │ │ ├── release │ │ │ ├── __init__.py │ │ │ ├── inheritance.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── tocs │ │ │ └── __init__.py │ │ └── replacements.py │ ├── operations │ │ ├── __init__.py │ │ └── changelog.py │ ├── libgiza │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── data-inheritance │ │ │ │ ├── example-add-three.yaml │ │ │ │ ├── example-add-one.yaml │ │ │ │ └── example-add-two.yaml │ │ └── __init__.py │ ├── quickstart │ │ ├── source │ │ │ ├── .static │ │ │ │ └── .stub │ │ │ └── index.txt │ │ ├── .gitignore │ │ ├── config │ │ │ ├── pdfs.yaml │ │ │ ├── sphinx_local.yaml │ │ │ ├── integration.yaml │ │ │ ├── push.yaml │ │ │ ├── intersphinx.yaml │ │ │ └── build_conf.yaml │ │ └── makefile │ ├── config │ │ ├── error.py │ │ └── assets.py │ ├── __init__.py │ └── corp.py ├── docs │ ├── .gitignore │ ├── source │ │ ├── api │ │ │ ├── nav │ │ │ │ ├── tools.txt │ │ │ │ ├── core.txt │ │ │ │ ├── translate.txt │ │ │ │ ├── content-post.txt │ │ │ │ ├── operations.txt │ │ │ │ ├── config.txt │ │ │ │ └── content.txt │ │ │ ├── content │ │ │ │ ├── helper.txt │ │ │ │ ├── links.txt │ │ │ │ ├── table.txt │ │ │ │ ├── assets.txt │ │ │ │ ├── post │ │ │ │ │ ├── slides.txt │ │ │ │ │ ├── manpages.txt │ │ │ │ │ ├── json_output.txt │ │ │ │ │ ├── gettext.txt │ │ │ │ │ ├── singlehtml.txt │ │ │ │ │ ├── latex.txt │ │ │ │ │ ├── archives.txt │ │ │ │ │ └── sites.txt │ │ │ │ ├── steps │ │ │ │ │ ├── views.txt │ │ │ │ │ ├── tasks.txt │ │ │ │ │ ├── models.txt │ │ │ │ │ └── inheritance.txt │ │ │ │ ├── hash.txt │ │ │ │ ├── includes.txt │ │ │ │ ├── examples │ │ │ │ │ ├── views.txt │ │ │ │ │ ├── tasks.txt │ │ │ │ │ ├── models.txt │ │ │ │ │ └── inheritance.txt │ │ │ │ ├── images.txt │ │ │ │ ├── source.txt │ │ │ │ ├── robots.txt │ │ │ │ ├── dependencies.txt │ │ │ │ ├── redirects.txt │ │ │ │ ├── tocs │ │ │ │ │ ├── views.txt │ │ │ │ │ ├── tasks.txt │ │ │ │ │ ├── models.txt │ │ │ │ │ └── inheritance.txt │ │ │ │ ├── options.txt │ │ │ │ ├── param.txt │ │ │ │ ├── sphinx.txt │ │ │ │ ├── intersphinx.txt │ │ │ │ ├── release.txt │ │ │ │ ├── tocs.txt │ │ │ │ ├── examples.txt │ │ │ │ └── steps.txt │ │ │ ├── translate │ │ │ │ ├── corpora.txt │ │ │ │ ├── model_results.txt │ │ │ │ ├── model.txt │ │ │ │ ├── translation.txt │ │ │ │ └── utils.txt │ │ │ ├── operations │ │ │ │ ├── clean.txt │ │ │ │ ├── make.txt │ │ │ │ ├── generate.txt │ │ │ │ ├── git.txt │ │ │ │ ├── quickstart.txt │ │ │ │ ├── deploy.txt │ │ │ │ ├── translate.txt │ │ │ │ ├── tx.txt │ │ │ │ ├── includes.txt │ │ │ │ ├── packaging.txt │ │ │ │ ├── configuration.txt │ │ │ │ ├── sphinx_cmds.txt │ │ │ │ └── http_serve.txt │ │ │ ├── core │ │ │ │ ├── app.txt │ │ │ │ └── task.txt │ │ │ └── tools │ │ │ │ └── command.txt │ │ ├── tutorial.txt │ │ ├── core.txt │ │ ├── api.txt │ │ ├── .static │ │ │ ├── sitemap.xml │ │ │ └── osd.xml │ │ └── index.txt │ ├── config │ │ ├── pdfs.yaml │ │ ├── sphinx_local.yaml │ │ ├── integration.yaml │ │ ├── push.yaml │ │ ├── intersphinx.yaml │ │ └── build_conf.yaml │ └── makefile ├── makefile └── requirements.txt ├── pharaoh ├── gizaext │ ├── __init__.py │ ├── protected.re │ └── documentation │ │ ├── translate_baseline.yaml │ │ └── translate_best.yaml ├── test │ ├── __init__.py │ ├── test_files │ │ ├── empty.txt │ │ ├── small.en │ │ ├── small.es │ │ ├── test_dir │ │ │ ├── f3 │ │ │ ├── d1 │ │ │ │ └── f4.txt │ │ │ ├── f1.txt │ │ │ ├── f2.txt │ │ │ └── f5.yaml │ │ ├── f3 │ │ ├── f1 │ │ ├── doc_filler.txt │ │ ├── f2 │ │ ├── flip_text.txt │ │ ├── flipped.txt │ │ ├── medium.en │ │ ├── medium.es │ │ ├── merged.txt │ │ ├── large.en │ │ ├── large.es │ │ ├── files.json │ │ ├── users.json │ │ └── about.po │ └── configs_test │ │ ├── one_corpus.yaml │ │ ├── even_corpora.yaml │ │ ├── hidden_corpora.yaml │ │ ├── bad_perc_corpora.yaml │ │ ├── bad_perc_corpora2.yaml │ │ ├── bad_perc_corpora3.yaml │ │ ├── bad_file_corpus.yaml │ │ ├── uneven_corpora.yaml │ │ └── corpora.yaml ├── pharaoh │ ├── app │ │ ├── __init__.py │ │ ├── static │ │ │ ├── javascript │ │ │ │ └── sorttable.js │ │ │ └── bootstrap │ │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── templates │ │ │ ├── 423.html │ │ │ ├── language_picker.html │ │ │ ├── pagination.html │ │ │ └── base.html │ │ ├── logging.conf │ │ └── flask_app.py │ ├── __init__.py │ └── config.yaml └── setup.py ├── themes ├── mongodb │ ├── formats.html │ ├── src │ │ ├── navbar │ │ │ ├── widgetData.json │ │ │ └── menu.js │ │ ├── css │ │ │ ├── mws.css │ │ │ ├── marian.css │ │ │ ├── navbar │ │ │ │ ├── constants.css │ │ │ │ ├── bem-components │ │ │ │ │ ├── navbar-brand.css │ │ │ │ │ ├── label.css │ │ │ │ │ ├── tutorials.css │ │ │ │ │ ├── navbar-seperator.css │ │ │ │ │ ├── filter-header.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── spinner.css │ │ │ │ │ ├── navbar-download.css │ │ │ │ │ ├── tutorial-search.css │ │ │ │ │ ├── navbar.css │ │ │ │ │ ├── navbar-search.css │ │ │ │ │ ├── copy-button.css │ │ │ │ │ ├── menu.css │ │ │ │ │ └── button.css │ │ │ │ ├── README.md │ │ │ │ ├── bem-components.css │ │ │ │ ├── navbar.css │ │ │ │ └── search.css │ │ │ ├── landing │ │ │ │ ├── landing.css │ │ │ │ ├── bem-components │ │ │ │ │ ├── announcement.css │ │ │ │ │ ├── main.css │ │ │ │ │ └── block.css │ │ │ │ ├── bem-components.css │ │ │ │ └── grid.css │ │ │ ├── stitch │ │ │ │ ├── stitch-tabs.css │ │ │ │ ├── reference-block.css │ │ │ │ └── icomoon.css │ │ │ ├── uriwriter.css │ │ │ ├── auth-table.css │ │ │ ├── charts-icons.css │ │ │ ├── config-table.css │ │ │ ├── sequence.css │ │ │ ├── bordered-figure.css │ │ │ ├── pills.css │ │ │ ├── toggle.css │ │ │ ├── fonts.css │ │ │ └── manual │ │ │ │ └── icomoon.css │ │ ├── landing │ │ │ ├── landing-list.js │ │ │ └── landing.js │ │ ├── README.md │ │ ├── main │ │ │ ├── copyButtonsController.js │ │ │ └── feedbackController.js │ │ ├── js │ │ │ ├── componentVersionSelector.js │ │ │ ├── componentCloseOpen.js │ │ │ ├── componentEcosystemLinkTrack.js │ │ │ ├── componentFeedback.js │ │ │ └── componentAtlas.js │ │ ├── postcss.config.js │ │ └── widgets │ │ │ └── deluge │ │ │ └── BinaryQuestion.js │ ├── static │ │ ├── fonts │ │ │ ├── charts.ttf │ │ │ ├── charts.woff │ │ │ ├── charts.woff2 │ │ │ ├── MMSIcons-Regular.ttf │ │ │ ├── MMSIcons-Regular.woff │ │ │ ├── MMSIcons-Regular.woff2 │ │ │ ├── MMSOrgIcons-Regular.ttf │ │ │ ├── MMSOrgIcons-Regular.woff │ │ │ ├── fontawesome4-webfont.ttf │ │ │ ├── MMSOrgIcons-Regular.woff2 │ │ │ ├── fontawesome4-webfont.woff │ │ │ └── fontawesome4-webfont.woff2 │ │ └── images │ │ │ ├── page-icon.png │ │ │ ├── icon-search.png │ │ │ ├── mongodb-logo.png │ │ │ ├── page-icon-active.png │ │ │ ├── caret-right-solid.svg │ │ │ ├── minus-square-regular.svg │ │ │ ├── minus-square-regular-active.svg │ │ │ ├── plus-square-regular.svg │ │ │ ├── file-alt-regular.svg │ │ │ ├── plus-square-regular-active.svg │ │ │ └── file-alt-regular-active.svg │ ├── adblock.html │ ├── resources.html │ ├── theme.conf │ ├── translations.html │ └── linktags.html ├── epub_mongodb │ ├── theme.conf │ ├── layout.html │ └── epub-cover.html ├── ecosystem │ ├── intrasites.html │ ├── eco-adblock.html │ ├── pagenav.html │ ├── theme.conf │ ├── footer.html │ └── eco-adblock-header.html ├── mms-onprem │ ├── onprem-adblock.html │ ├── theme.conf │ └── onprem-adblock-header.html ├── drivers │ ├── pagenav.html │ ├── theme.conf │ └── page.html ├── mms-cloud │ ├── cloud-adblock.html │ ├── pagenav.html │ ├── theme.conf │ └── cloud-adblock-header.html ├── primer │ ├── pagenav.html │ ├── theme.conf │ ├── footer.html │ └── page.html ├── realm │ ├── realm-adblock.html │ ├── pagenav.html │ ├── theme.conf │ └── realm-adblock-header.html ├── stitch │ ├── stitch-adblock.html │ ├── pagenav.html │ ├── theme.conf │ └── stitch-adblock-header.html ├── wip │ ├── pagenav.html │ └── theme.conf ├── compass │ ├── compass-adblock.html │ ├── pagenav.html │ ├── theme.conf │ ├── footer.html │ └── compass-adblock-header.html ├── database-tools │ ├── pagenav.html │ ├── theme.conf │ └── footer.html ├── mms-managed │ ├── cloud-adblock.html │ ├── theme.conf │ └── pagenav.html ├── spark-connector │ ├── spark-adblock.html │ ├── pagenav.html │ ├── theme.conf │ ├── footer.html │ └── spark-adblock-header.html ├── mongoid │ ├── pagenav.html │ ├── theme.conf │ └── footer.html ├── php-library │ ├── pagenav.html │ ├── theme.conf │ └── footer.html ├── ruby-driver │ ├── pagenav.html │ ├── theme.conf │ └── footer.html ├── charts │ ├── pagenav.html │ ├── footer.html │ └── theme.conf ├── datalake │ ├── pagenav.html │ ├── footer.html │ └── theme.conf ├── mongocli │ ├── pagenav.html │ ├── footer.html │ └── theme.conf ├── bi-connector │ ├── pagenav.html │ ├── theme.conf │ └── footer.html ├── kubernetes-operator │ ├── pagenav.html │ ├── footer.html │ └── theme.conf ├── meta-driver │ ├── pagenav.html │ ├── footer.html │ └── theme.conf ├── training │ ├── pagenav.html │ ├── mms-resources.html │ ├── theme.conf │ ├── footer.html │ └── jiracollector.html ├── manual │ ├── pagenav.html │ ├── theme.conf │ └── footer.html ├── mongodb-default │ ├── theme.conf │ └── page.html ├── mms │ ├── mms-resources.html │ ├── page.html │ ├── theme.conf │ └── page-layout.html └── guides │ └── theme.conf ├── tools ├── atlas-api-automation │ ├── whitelist.txt │ ├── .gitignore │ └── README.md └── world-builder │ └── README.rst ├── data ├── stitch-published-branches.yaml ├── guides-published-branches.yaml ├── realm-published-branches.yaml ├── atlas-open-service-broker-published-branches.yaml ├── compass-published-branches.yaml ├── node-driver-published-branches.yaml ├── build_config.yaml ├── mms-published-branches.yaml ├── charts-published-branches.yaml ├── mongoid-published-branches.yaml ├── spark-connector-published-branches.yaml ├── kubernetes-operator-published-branches.yaml ├── bi-connector-published-branches.yaml ├── kafka-connector-published-branches.yaml ├── ruby-driver-published-branches.yaml ├── php-library-published-branches.yaml ├── manual-published-branches.yaml └── mongocli-published-branches.yaml ├── .gitignore └── sphinxext ├── eval.py └── accordion.py /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/jeerah/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/gizaext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/mongodb/formats.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/pharaoh/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/apiargs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/glossary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/post/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/release/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/content/tocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/libgiza/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/small.en: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /pharaoh/test/test_files/small.es: -------------------------------------------------------------------------------- 1 | hola -------------------------------------------------------------------------------- /pharaoh/test/test_files/test_dir/f3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/giza/quickstart/source/.static/.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/f3: -------------------------------------------------------------------------------- 1 | 3a 2 | 3b 3 | 3c -------------------------------------------------------------------------------- /pharaoh/test/test_files/test_dir/d1/f4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/test_dir/f1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/test_dir/f2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/test_dir/f5.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/mongodb/src/navbar/widgetData.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/f1: -------------------------------------------------------------------------------- 1 | 1a 2 | 1b 3 | 4 | 1c -------------------------------------------------------------------------------- /pharaoh/test/test_files/doc_filler.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 -------------------------------------------------------------------------------- /pharaoh/test/test_files/f2: -------------------------------------------------------------------------------- 1 | 2a 2 | 2b 3 | 2c 4 | 2d 5 | 2e 6 | 2f -------------------------------------------------------------------------------- /themes/mongodb/src/css/mws.css: -------------------------------------------------------------------------------- 1 | .mws-root { border: 0; } 2 | -------------------------------------------------------------------------------- /tools/atlas-api-automation/whitelist.txt: -------------------------------------------------------------------------------- 1 | GET /ignore/this/route -------------------------------------------------------------------------------- /giza/docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | docs-tools 3 | source/includes/hash.rst 4 | -------------------------------------------------------------------------------- /pharaoh/gizaext/protected.re: -------------------------------------------------------------------------------- 1 | <.*> 2 | :.*: 3 | \|.*\| 4 | ``.*`` 5 | `.*` 6 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/marian.css: -------------------------------------------------------------------------------- 1 | .marian { 2 | margin-left: 25px; 3 | } 4 | -------------------------------------------------------------------------------- /tools/atlas-api-automation/.gitignore: -------------------------------------------------------------------------------- 1 | mms.api.json 2 | diff_list.txt 3 | .mypy_cache -------------------------------------------------------------------------------- /giza/giza/quickstart/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | docs-tools 3 | source/includes/hash.rst 4 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/constants.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --navbar-height: 45px; 3 | } 4 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/flip_text.txt: -------------------------------------------------------------------------------- 1 | hello, judah 2 | hi, how are you 3 | 4 | a 5 | bc 6 | good -------------------------------------------------------------------------------- /themes/mongodb/src/landing/landing-list.js: -------------------------------------------------------------------------------- 1 | import util from './util.js'; 2 | util.setupList(); 3 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/flipped.txt: -------------------------------------------------------------------------------- 1 | haduj ,olleh 2 | uoy era woh ,ih 3 | 4 | a 5 | cb 6 | doog 7 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/navbar-brand.css: -------------------------------------------------------------------------------- 1 | .navbar-brand { 2 | height: 23px; 3 | } 4 | -------------------------------------------------------------------------------- /giza/giza/quickstart/source/index.txt: -------------------------------------------------------------------------------- 1 | ======== 2 | Welcome! 3 | ======== 4 | 5 | Welcome to this new docs site! 6 | -------------------------------------------------------------------------------- /themes/epub_mongodb/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = epub.css 4 | pygments_style = none 5 | -------------------------------------------------------------------------------- /themes/ecosystem/intrasites.html: -------------------------------------------------------------------------------- 1 | {% include "intrasite-manual.html" %} 2 | 3 | {% include "intrasite-about.html" %} 4 | -------------------------------------------------------------------------------- /giza/docs/source/api/nav/tools.txt: -------------------------------------------------------------------------------- 1 | ========== 2 | Giza Tools 3 | ========== 4 | 5 | .. toctree:: 6 | 7 | /api/tools/command 8 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/medium.en: -------------------------------------------------------------------------------- 1 | e1-m 2 | e2-m 3 | e3-m 4 | e4-m 5 | e5-m 6 | e6-m 7 | e7-m 8 | e8-m 9 | e9-m 10 | e10-m -------------------------------------------------------------------------------- /pharaoh/test/test_files/medium.es: -------------------------------------------------------------------------------- 1 | s1-m 2 | s2-m 3 | s3-m 4 | s4-m 5 | s5-m 6 | s6-m 7 | s7-m 8 | s8-m 9 | s9-m 10 | s10-m -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/charts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/charts.ttf -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/charts.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/charts.woff -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/charts.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/charts.woff2 -------------------------------------------------------------------------------- /themes/mongodb/static/images/page-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/images/page-icon.png -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/label.css: -------------------------------------------------------------------------------- 1 | .label { 2 | &--secondary { 3 | color: var(--grey-secondary); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /themes/mongodb/static/images/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/images/icon-search.png -------------------------------------------------------------------------------- /themes/mongodb/static/images/mongodb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/images/mongodb-logo.png -------------------------------------------------------------------------------- /giza/docs/source/tutorial.txt: -------------------------------------------------------------------------------- 1 | ========= 2 | Tutorials 3 | ========= 4 | 5 | .. toctree:: 6 | 7 | /tutorial/set-up-giza 8 | /tutorial/use-giza 9 | -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/MMSIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/MMSIcons-Regular.ttf -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/MMSIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/MMSIcons-Regular.woff -------------------------------------------------------------------------------- /themes/mongodb/static/images/page-icon-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/images/page-icon-active.png -------------------------------------------------------------------------------- /pharaoh/pharaoh/app/static/javascript/sorttable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/pharaoh/pharaoh/app/static/javascript/sorttable.js -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/MMSIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/MMSIcons-Regular.woff2 -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/MMSOrgIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/MMSOrgIcons-Regular.ttf -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/MMSOrgIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/MMSOrgIcons-Regular.woff -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/fontawesome4-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/fontawesome4-webfont.ttf -------------------------------------------------------------------------------- /themes/mongodb/src/README.md: -------------------------------------------------------------------------------- 1 | Source for MongoDB documentation JS and CSS. 2 | 3 | To build: 4 | * Ensure you have GNU Make and Node.js 5 | * Run `make` 6 | -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/MMSOrgIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/MMSOrgIcons-Regular.woff2 -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/fontawesome4-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/fontawesome4-webfont.woff -------------------------------------------------------------------------------- /themes/mongodb/static/fonts/fontawesome4-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/themes/mongodb/static/fonts/fontawesome4-webfont.woff2 -------------------------------------------------------------------------------- /pharaoh/test/test_files/merged.txt: -------------------------------------------------------------------------------- 1 | + 1a 2 | - 2a 3 | ~ 3a 4 | 5 | + 1b 6 | - 2b 7 | ~ 3b 8 | 9 | + 10 | - 2c 11 | ~ 3c 12 | 13 | + 1c 14 | - 2d 15 | 16 | -------------------------------------------------------------------------------- /giza/docs/config/pdfs.yaml: -------------------------------------------------------------------------------- 1 | source: 'index' 2 | title: 'Manual' 3 | output: 'manual.tex' 4 | author: 'MongoDB Documentation Project' 5 | class: 'howto' 6 | tag: 'guide' 7 | ... -------------------------------------------------------------------------------- /giza/docs/source/api/nav/core.txt: -------------------------------------------------------------------------------- 1 | ==================== 2 | Core Giza Mechanisms 3 | ==================== 4 | 5 | .. toctree:: 6 | 7 | /api/core/app 8 | /api/core/task 9 | -------------------------------------------------------------------------------- /giza/giza/quickstart/config/pdfs.yaml: -------------------------------------------------------------------------------- 1 | source: 'index' 2 | title: 'Manual' 3 | output: 'manual.tex' 4 | author: 'MongoDB Documentation Project' 5 | class: 'howto' 6 | tag: 'guide' 7 | ... -------------------------------------------------------------------------------- /themes/mongodb/src/css/landing/landing.css: -------------------------------------------------------------------------------- 1 | @import '../colors'; 2 | @import '../fonts'; 3 | @import 'base'; 4 | @import 'grid'; 5 | @import 'bem-components'; 6 | @import '../tabs'; 7 | -------------------------------------------------------------------------------- /themes/mongodb/src/main/copyButtonsController.js: -------------------------------------------------------------------------------- 1 | import * as componentCopyButtons from '../js/componentCopyButtons'; 2 | 3 | $(() => { 4 | componentCopyButtons.setup(); 5 | }); 6 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/helper.txt: -------------------------------------------------------------------------------- 1 | ============================= 2 | ``helper`` -- Content Helpers 3 | ============================= 4 | 5 | .. autofunction:: giza.content.helper.edition_check 6 | -------------------------------------------------------------------------------- /pharaoh/pharaoh/app/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/pharaoh/pharaoh/app/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /pharaoh/pharaoh/app/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/pharaoh/pharaoh/app/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /pharaoh/pharaoh/app/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/docs-tools/HEAD/pharaoh/pharaoh/app/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /themes/mms-onprem/onprem-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /themes/mongodb/adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
6 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/README.md: -------------------------------------------------------------------------------- 1 | These files used to live in 10gen/docs-tutorials, and were compiled with 2 | node-sass. Now that we have them merged in here, we should refactor at 3 | some point. 4 | -------------------------------------------------------------------------------- /themes/mongodb/src/landing/landing.js: -------------------------------------------------------------------------------- 1 | import util from './util.js'; 2 | 3 | document.addEventListener('DOMContentLoaded', (event) => { 4 | util.setupSidebar(); 5 | util.setupFeedback(); 6 | }); 7 | -------------------------------------------------------------------------------- /giza/docs/source/api/translate/corpora.txt: -------------------------------------------------------------------------------- 1 | ================================ 2 | ``corpora`` -- Corpus Generation 3 | ================================ 4 | 5 | .. automodule:: giza.translate.corpora 6 | :members: 7 | -------------------------------------------------------------------------------- /themes/ecosystem/eco-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/tutorials.css: -------------------------------------------------------------------------------- 1 | .tutorials { 2 | padding: 0 40px; 3 | 4 | &--no-results { 5 | &__suggestions { 6 | list-style-position: inside; 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/links.txt: -------------------------------------------------------------------------------- 1 | ============================== 2 | ``links`` -- Generate Symlinks 3 | ============================== 4 | 5 | .. automodule:: giza.content.links 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/table.txt: -------------------------------------------------------------------------------- 1 | ================================ 2 | ``table`` -- Generate RST Tables 3 | ================================ 4 | 5 | .. automodule:: giza.content.table 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/translate/model_results.txt: -------------------------------------------------------------------------------- 1 | ================================ 2 | ``model_results`` -- Result Data 3 | ================================ 4 | 5 | .. automodule:: giza.translate.model_results 6 | :members: 7 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/navbar-seperator.css: -------------------------------------------------------------------------------- 1 | .navbar-seperator { 2 | background-color: var(--grey-secondary); 3 | display: inline-block; 4 | height: 16px; 5 | margin: 0 6px; 6 | width: 1px; 7 | } 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/translate/model.txt: -------------------------------------------------------------------------------- 1 | ======================================= 2 | ``model`` -- Data Schema and Validation 3 | ======================================= 4 | 5 | .. automodule:: giza.translate.model 6 | :members: 7 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/large.en: -------------------------------------------------------------------------------- 1 | e1-l 2 | e2-l 3 | e3-l 4 | e4-l 5 | e5-l 6 | e6-l 7 | e7-l 8 | e8-l 9 | e9-l 10 | e10-l 11 | e11-l 12 | e12-l 13 | e13-l 14 | e14-l 15 | e15-l 16 | e16-l 17 | e17-l 18 | e18-l 19 | e19-l 20 | e20-l -------------------------------------------------------------------------------- /pharaoh/test/test_files/large.es: -------------------------------------------------------------------------------- 1 | s1-l 2 | s2-l 3 | s3-l 4 | s4-l 5 | s5-l 6 | s6-l 7 | s7-l 8 | s8-l 9 | s9-l 10 | s10-l 11 | s11-l 12 | s12-l 13 | s13-l 14 | s14-l 15 | s15-l 16 | s16-l 17 | s17-l 18 | s18-l 19 | s19-l 20 | s20-l -------------------------------------------------------------------------------- /themes/drivers/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( titles_only=1) }} 9 | -------------------------------------------------------------------------------- /themes/mms-cloud/cloud-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /themes/primer/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( titles_only=1) }} 9 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/assets.txt: -------------------------------------------------------------------------------- 1 | =================================== 2 | ``assets`` -- Embedded Repositories 3 | =================================== 4 | 5 | .. automodule:: giza.content.assets 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/slides.txt: -------------------------------------------------------------------------------- 1 | ================================= 2 | ``Slides`` -- Process HTML Slides 3 | ================================= 4 | 5 | .. automodule:: giza.content.post.slides 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/steps/views.txt: -------------------------------------------------------------------------------- 1 | ================================ 2 | ``views`` -- Rendering for Steps 3 | ================================ 4 | 5 | .. automodule:: giza.content.steps.views 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/clean.txt: -------------------------------------------------------------------------------- 1 | ================================== 2 | ``clean`` -- Clean Build Artifacts 3 | ================================== 4 | 5 | .. automodule:: giza.operations.clean 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/make.txt: -------------------------------------------------------------------------------- 1 | =================================== 2 | ``make`` -- Makefile Emulation Mode 3 | =================================== 4 | 5 | .. automodule:: giza.operations.make 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/translate/translation.txt: -------------------------------------------------------------------------------- 1 | ====================================== 2 | ``translation`` -- Machine Translation 3 | ====================================== 4 | 5 | .. automodule:: giza.translate.translation 6 | :members: 7 | -------------------------------------------------------------------------------- /giza/docs/source/api/translate/utils.txt: -------------------------------------------------------------------------------- 1 | =========================================== 2 | ``utills`` -- Translation Utility Functions 3 | =========================================== 4 | 5 | .. automodule:: giza.translate.utils 6 | :members: 7 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/steps/tasks.txt: -------------------------------------------------------------------------------- 1 | ================================== 2 | ``tasks`` -- Integration for Steps 3 | ================================== 4 | 5 | .. automodule:: giza.content.steps.tasks 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/generate.txt: -------------------------------------------------------------------------------- 1 | ================================== 2 | ``generate`` -- Content Generation 3 | ================================== 4 | 5 | .. automodule:: giza.operations.generate 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/git.txt: -------------------------------------------------------------------------------- 1 | ===================================== 2 | ``git`` -- Version Control Management 3 | ===================================== 4 | 5 | .. automodule:: giza.operations.git 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/core.txt: -------------------------------------------------------------------------------- 1 | ============= 2 | Core Concepts 3 | ============= 4 | 5 | .. toctree:: 6 | 7 | /core/giza 8 | /core/build-process 9 | /core/coding-practices 10 | /core/content-generation 11 | /core/parallelism 12 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/hash.txt: -------------------------------------------------------------------------------- 1 | ========================================= 2 | ``hash`` -- Build Metadata File Generator 3 | ========================================= 4 | 5 | .. automodule:: giza.content.hash 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/includes.txt: -------------------------------------------------------------------------------- 1 | ===================================== 2 | ``includes`` -- Include File Overview 3 | ===================================== 4 | 5 | .. automodule:: giza.content.includes 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/steps/models.txt: -------------------------------------------------------------------------------- 1 | =================================== 2 | ``models`` -- Data Models for Steps 3 | =================================== 4 | 5 | .. automodule:: giza.content.steps.models 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/core/app.txt: -------------------------------------------------------------------------------- 1 | ============================= 2 | ``app`` -- Process Management 3 | ============================= 4 | 5 | .. automodule:: giza.core.app 6 | 7 | .. autoclass:: BuildApp 8 | :members: 9 | :undoc-members: 10 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/quickstart.txt: -------------------------------------------------------------------------------- 1 | ================================== 2 | ``quickstart`` -- Project Creation 3 | ================================== 4 | 5 | .. automodule:: giza.operations.quickstart 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/ecosystem/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( collapse=false, titles_only=1) }} 9 | -------------------------------------------------------------------------------- /themes/mms-cloud/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( collapse=false, titles_only=1) }} 9 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/examples/views.txt: -------------------------------------------------------------------------------- 1 | =================================== 2 | ``views`` -- Rendering for Examples 3 | =================================== 4 | 5 | .. automodule:: giza.content.examples.views 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/images.txt: -------------------------------------------------------------------------------- 1 | ========================================= 2 | ``images`` -- Image Generator and Display 3 | ========================================= 4 | 5 | .. automodule:: giza.content.images 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/source.txt: -------------------------------------------------------------------------------- 1 | ======================================== 2 | ``source`` -- Prepare and Process Source 3 | ======================================== 4 | 5 | .. automodule:: giza.content.source 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/deploy.txt: -------------------------------------------------------------------------------- 1 | ======================================= 2 | ``deploy`` -- Build Artifact Deployment 3 | ======================================= 4 | 5 | .. automodule:: giza.operations.deploy 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/stitch/stitch-tabs.css: -------------------------------------------------------------------------------- 1 | span.caption-text { font-weight: bold; } 2 | div.literal-block-wrapper.copyable-code-block { padding: 0; } 3 | div.tabs__content > div > div:nth-child(1) { margin-top: 0; } 4 | ul.tab-strip { margin-bottom: 0 } 5 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/examples/tasks.txt: -------------------------------------------------------------------------------- 1 | ===================================== 2 | ``tasks`` -- Integration for Examples 3 | ===================================== 4 | 5 | .. automodule:: giza.content.examples.tasks 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/manpages.txt: -------------------------------------------------------------------------------- 1 | ====================================== 2 | ``manpages`` -- Process Manpage Output 3 | ====================================== 4 | 5 | .. automodule:: giza.content.post.manpages 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/robots.txt: -------------------------------------------------------------------------------- 1 | =========================================== 2 | ``robots`` -- Generate ``robots.txt`` Files 3 | =========================================== 4 | 5 | .. automodule:: giza.content.robots 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/uriwriter.css: -------------------------------------------------------------------------------- 1 | .uriwriter__form .mongodb-form__input { 2 | font-family: var(--monospace); 3 | } 4 | 5 | #hostlist > input { 6 | margin-top: 25px; 7 | } 8 | 9 | #hostlist > input:first-of-type { 10 | margin-top: 0; 11 | } 12 | -------------------------------------------------------------------------------- /themes/realm/realm-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /themes/stitch/stitch-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /themes/wip/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( collapse=false, titles_only=1) }} 9 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/examples/models.txt: -------------------------------------------------------------------------------- 1 | ====================================== 2 | ``models`` -- Data Models for Examples 3 | ====================================== 4 | 5 | .. automodule:: giza.content.examples.models 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/compass/compass-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
-------------------------------------------------------------------------------- /themes/mongodb/src/css/stitch/reference-block.css: -------------------------------------------------------------------------------- 1 | .reference-block { 2 | padding: 0px !important; 3 | & .button-code-block { 4 | border-left: 5px solid #494747; 5 | & pre { 6 | padding: 2px 12px 24px 12px !important; 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /themes/realm/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( collapse=false, titles_only=1) }} 9 | -------------------------------------------------------------------------------- /themes/stitch/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( collapse=false, titles_only=1) }} 9 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/dependencies.txt: -------------------------------------------------------------------------------- 1 | ========================================= 2 | ``dependencies`` -- Dependency Resolution 3 | ========================================= 4 | 5 | .. automodule:: giza.content.dependencies 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/json_output.txt: -------------------------------------------------------------------------------- 1 | ======================================= 2 | ``json_output`` -- Processing JSON Data 3 | ======================================= 4 | 5 | .. automodule:: giza.content.post.json_output 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/giza/operations/changelog.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import argh 3 | 4 | logger = logging.getLogger('giza.jeerah.client') 5 | 6 | 7 | @argh.expects_obj 8 | @argh.arg("changelog_version", default=None) 9 | @argh.named("cl") 10 | def main(args): 11 | pass 12 | -------------------------------------------------------------------------------- /themes/database-tools/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ toctree( collapse=false, titles_only=1) }} 9 | -------------------------------------------------------------------------------- /themes/mms-managed/cloud-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
6 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/redirects.txt: -------------------------------------------------------------------------------- 1 | ============================================= 2 | ``redirects`` -- Generate ``.htaccess`` Files 3 | ============================================= 4 | 5 | .. automodule:: giza.content.redirects 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/tocs/views.txt: -------------------------------------------------------------------------------- 1 | ============================================= 2 | ``views`` -- Rendering for Tables of Contents 3 | ============================================= 4 | 5 | .. automodule:: giza.content.tocs.views 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/translate.txt: -------------------------------------------------------------------------------- 1 | ============================================ 2 | ``translate`` -- Machine Translation Control 3 | ============================================ 4 | 5 | .. automodule:: giza.operations.translate 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/tx.txt: -------------------------------------------------------------------------------- 1 | ================================================ 2 | ``tx`` -- Translation Generation and Integration 3 | ================================================ 4 | 5 | .. automodule:: giza.operations.tx 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/spark-connector/spark-adblock.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |
6 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/gettext.txt: -------------------------------------------------------------------------------- 1 | ============================================= 2 | ``gettext`` -- Translation Catalog Processing 3 | ============================================= 4 | 5 | .. automodule:: giza.content.post.gettext 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/singlehtml.txt: -------------------------------------------------------------------------------- 1 | ========================================== 2 | ``singlehtml`` -- Process SingleHTML Output 3 | ========================================== 4 | 5 | .. automodule:: giza.content.post.singlehtml 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/tocs/tasks.txt: -------------------------------------------------------------------------------- 1 | =============================================== 2 | ``tasks`` -- Integration for Tables of Contents 3 | =============================================== 4 | 5 | .. automodule:: giza.content.tocs.tasks 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/options.txt: -------------------------------------------------------------------------------- 1 | ================================================== 2 | ``options`` -- Generate Commandline Option Content 3 | ================================================== 4 | 5 | .. automodule:: giza.content.options 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/param.txt: -------------------------------------------------------------------------------- 1 | =================================================== 2 | ``param`` -- Generate Tables for Function Arguments 3 | =================================================== 4 | 5 | .. automodule:: giza.content.param 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/latex.txt: -------------------------------------------------------------------------------- 1 | ================================================ 2 | ``latex`` -- Process TeX and Generate PDF Output 3 | ================================================ 4 | 5 | .. automodule:: giza.content.post.latex 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/tocs/models.txt: -------------------------------------------------------------------------------- 1 | ================================================ 2 | ``models`` -- Data Models for Tables of Contents 3 | ================================================ 4 | 5 | .. automodule:: giza.content.tocs.models 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/test/data/extracts-one.yaml: -------------------------------------------------------------------------------- 1 | ref: _wt-fsync-lock-compatibility 2 | content: 3 | With WiredTiger the {{operation}} *cannot* guarantee that the data 4 | files do not change. As a result, do not use these methods to ensure 5 | consistency for the purposes of creating backups. 6 | ... -------------------------------------------------------------------------------- /giza/docs/source/api.txt: -------------------------------------------------------------------------------- 1 | ======== 2 | Giza API 3 | ======== 4 | 5 | Giza contains a number of components: 6 | 7 | .. toctree:: 8 | 9 | /api/nav/config 10 | /api/nav/content 11 | /api/nav/operations 12 | /api/nav/core 13 | /api/nav/tools 14 | /api/nav/translate 15 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/sphinx.txt: -------------------------------------------------------------------------------- 1 | ===================================================== 2 | ``sphinx`` -- Run ``sphinx-build`` and Process Output 3 | ===================================================== 4 | 5 | .. automodule:: giza.content.sphinx 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/nav/translate.txt: -------------------------------------------------------------------------------- 1 | ================ 2 | Giza Translation 3 | ================ 4 | 5 | .. toctree:: 6 | 7 | /api/translate/corpora 8 | /api/translate/model 9 | /api/translate/model_results 10 | /api/translate/translation 11 | /api/translate/utils 12 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/includes.txt: -------------------------------------------------------------------------------- 1 | ================================================= 2 | ``includes`` -- Implicit Dependency Introspection 3 | ================================================= 4 | 5 | .. automodule:: giza.operations.includes 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/packaging.txt: -------------------------------------------------------------------------------- 1 | ================================================= 2 | ``packaging`` -- Reusable Build Artifact Creation 3 | ================================================= 4 | 5 | .. automodule:: giza.operations.packaging 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/mongoid/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/intersphinx.txt: -------------------------------------------------------------------------------- 1 | =================================================== 2 | ``intersphinx`` -- Download Interpshinx Inventories 3 | =================================================== 4 | 5 | .. automodule:: giza.content.intersphinx 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/configuration.txt: -------------------------------------------------------------------------------- 1 | ================================================ 2 | ``configuration`` -- Configuration Introspection 3 | ================================================ 4 | 5 | .. automodule:: giza.operations.configuration 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/sphinx_cmds.txt: -------------------------------------------------------------------------------- 1 | ================================================= 2 | ``sphinx_cmds`` -- Sphinx Generation Processes 3 | ================================================= 4 | 5 | .. automodule:: giza.operations.sphinx_cmds 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /giza/giza/quickstart/makefile: -------------------------------------------------------------------------------- 1 | MAKEFLAGS += -j -r --no-print-directory 2 | 3 | %: 4 | giza make $@ 5 | 6 | help: 7 | @echo "Use 'make ', where is a Sphinx target (e.g. 'html', 'latex')" 8 | @echo "See 'http://docs.mongodb.org/manual/meta' for more information." 9 | 10 | -------------------------------------------------------------------------------- /themes/php-library/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /themes/ruby-driver/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /giza/docs/source/api/operations/http_serve.txt: -------------------------------------------------------------------------------- 1 | ===================================================== 2 | ``http_serve`` -- Local Development Server Management 3 | ===================================================== 4 | 5 | .. automodule:: giza.operations.http_serve 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/landing/bem-components/announcement.css: -------------------------------------------------------------------------------- 1 | .announcement { 2 | max-width: 775px; 3 | 4 | &__header { 5 | font-weight: bold; 6 | margin-bottom: 24px; 7 | } 8 | 9 | &__body { 10 | color: var(--grey-secondary); 11 | margin-bottom: 24px; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/archives.txt: -------------------------------------------------------------------------------- 1 | ======================================================= 2 | ``archives`` -- Downloadable Archives for Build Targets 3 | ======================================================= 4 | 5 | .. automodule:: giza.content.post.archives 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/charts/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /themes/compass/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /themes/datalake/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /themes/mongocli/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /themes/bi-connector/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/steps/inheritance.txt: -------------------------------------------------------------------------------- 1 | ======================================================= 2 | ``inheritance`` -- Inheritance Implementation for Steps 3 | ======================================================= 4 | 5 | .. automodule:: giza.content.steps.inheritance 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/kubernetes-operator/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /themes/spark-connector/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/post/sites.txt: -------------------------------------------------------------------------------- 1 | ============================================================== 2 | ``sites`` -- Process Primary Site Output and Generate Sitemaps 3 | ============================================================== 4 | 5 | .. automodule:: giza.content.post.sites 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/meta-driver/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {{ version_selector() }} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | 12 | 13 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/landing/bem-components.css: -------------------------------------------------------------------------------- 1 | @import 'bem-components/main'; /*TODO: dedup from tutorials, but did make some changes...*/ 2 | 3 | @import 'bem-components/card'; 4 | @import 'bem-components/toc'; /* TODO: dedup from tutorials*/ 5 | 6 | @import 'bem-components/block'; 7 | 8 | @import 'bem-components/announcement'; -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/filter-header.css: -------------------------------------------------------------------------------- 1 | .filter-header { 2 | display: flex; 3 | margin-bottom: 25px; 4 | 5 | &__title { 6 | flex: 1; 7 | } 8 | 9 | &__clear { 10 | color: var(--grey-primary); 11 | cursor: pointer; 12 | flex: 1; 13 | text-align: right; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/examples/inheritance.txt: -------------------------------------------------------------------------------- 1 | ========================================================== 2 | ``inheritance`` -- Inheritance Implementation for Exmaples 3 | ========================================================== 4 | 5 | .. automodule:: giza.content.examples.inheritance 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /pharaoh/pharaoh/app/templates/423.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title %}423 Error{% endblock %} 3 | {% block content %} 4 | {{file}} is already being edited by somebody else, please consider editing a different file 5 |
6 | {{language}} Files 7 | {% endblock %} -------------------------------------------------------------------------------- /giza/docs/makefile: -------------------------------------------------------------------------------- 1 | MAKEFLAGS += -j -r --no-print-directory 2 | 3 | output = build 4 | tools = $(output)/docs-tools 5 | 6 | %: 7 | giza make $@ 8 | 9 | help: 10 | @echo "Use 'make ', where is a Sphinx target (e.g. 'html', 'latex')" 11 | @echo "See 'http://docs.mongodb.org/manual/meta' for more information." 12 | 13 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/auth-table.css: -------------------------------------------------------------------------------- 1 | /* Custom CSS for auth provider configuration tables in Stitch Docs */ 2 | .auth-table { 3 | 4 | & td { 5 | & .line-block { 6 | margin: 0; 7 | } 8 | & p.first, p.last { 9 | margin-bottom: 0; 10 | } 11 | } 12 | 13 | } 14 | 15 | 16 | -------------------------------------------------------------------------------- /themes/mongoid/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | repo_name = REPONAME 8 | jira_project = JIRA 9 | google_analytics = GACODE 10 | project = PROJECT 11 | translations = LANGUAGES 12 | language = LANGUAGE 13 | base_url = https://www.mongodb.com/docs 14 | -------------------------------------------------------------------------------- /themes/ecosystem/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | repo_name = REPONAME 8 | jira_project = JIRA 9 | google_analytics = GACODE 10 | project = PROJECT 11 | translations = LANGUAGES 12 | language = LANGUAGE 13 | base_url = https://www.mongodb.com/docs 14 | -------------------------------------------------------------------------------- /themes/php-library/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | repo_name = REPONAME 8 | jira_project = JIRA 9 | google_analytics = GACODE 10 | project = PROJECT 11 | translations = LANGUAGES 12 | language = LANGUAGE 13 | base_url = https://www.mongodb.com/docs 14 | -------------------------------------------------------------------------------- /themes/ruby-driver/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | repo_name = REPONAME 8 | jira_project = JIRA 9 | google_analytics = GACODE 10 | project = PROJECT 11 | translations = LANGUAGES 12 | language = LANGUAGE 13 | base_url = https://www.mongodb.com/docs 14 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/tocs/inheritance.txt: -------------------------------------------------------------------------------- 1 | ==================================================================== 2 | ``inheritance`` -- Inheritance Implementation for Tables of Contents 3 | ==================================================================== 4 | 5 | .. automodule:: giza.content.tocs.inheritance 6 | :members: 7 | :undoc-members: 8 | -------------------------------------------------------------------------------- /themes/mongodb/src/navbar/menu.js: -------------------------------------------------------------------------------- 1 | import PropTypes from 'prop-types'; 2 | import preact from 'preact'; 3 | 4 | function Menu(props) { 5 | return (
    6 | { props.children } 7 |
); 8 | } 9 | 10 | Menu.propTypes = { 11 | 'children': PropTypes.arrayOf(PropTypes.node) 12 | }; 13 | 14 | export default Menu; 15 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/release.txt: -------------------------------------------------------------------------------- 1 | ============================================================= 2 | ``release`` -- Generate Content for Installation Instructions 3 | ============================================================= 4 | 5 | .. deprecated:: 0.4.0 6 | 7 | .. automodule:: giza.content.release 8 | :members: 9 | :undoc-members: 10 | -------------------------------------------------------------------------------- /themes/training/pagenav.html: -------------------------------------------------------------------------------- 1 |

2 | {{ shorttitle }} 3 | {% for v in theme_version_selector %} 4 | {% if v.current %} 5 | {{ v.text }} 6 | {% endif %} 7 | {% endfor %} 8 |

9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | -------------------------------------------------------------------------------- /data/stitch-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'beta' 4 | active: 5 | - 'master' 6 | stable: '' 7 | upcoming: '' 8 | git: 9 | branches: 10 | manual: 'master' 11 | published: 12 | - 'master' 13 | # the branches/published list **must** be ordered from most to 14 | # least recent release. 15 | ... 16 | -------------------------------------------------------------------------------- /themes/manual/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 |

7 | 8 | {% if project != 'mongodb-meta' %}{{ version_selector() }}{% endif %} 9 | 10 | {{ toctree( collapse=false, titles_only=1) }} 11 | 12 | 13 | -------------------------------------------------------------------------------- /data/guides-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'master' 4 | active: 5 | - 'master' 6 | stable: '' 7 | upcoming: '' 8 | git: 9 | branches: 10 | manual: 'master' 11 | published: 12 | - 'master' 13 | # the branches/published list **must** be ordered from most to 14 | # least recent release. 15 | ... 16 | -------------------------------------------------------------------------------- /data/realm-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'master' 4 | active: 5 | - 'master' 6 | stable: '' 7 | upcoming: master 8 | git: 9 | branches: 10 | manual: 'master' 11 | published: 12 | - 'master' 13 | # the branches/published list **must** be ordered from most to 14 | # least recent release. 15 | ... 16 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/tocs.txt: -------------------------------------------------------------------------------- 1 | ======================================= 2 | ``tocs`` -- Tables of Content Generator 3 | ======================================= 4 | 5 | .. automodule:: giza.content.tocs 6 | 7 | .. toctree:: 8 | 9 | /api/content/tocs/models 10 | /api/content/tocs/views 11 | /api/content/tocs/inheritance 12 | /api/content/tocs/tasks 13 | -------------------------------------------------------------------------------- /data/atlas-open-service-broker-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - '1.0' 4 | active: 5 | - '1.0' 6 | stable: '1.0' 7 | upcoming: '' 8 | git: 9 | branches: 10 | manual: 'master' 11 | published: 12 | - 'master' 13 | # the branches/published list **must** be ordered from most to 14 | # least recent release. 15 | ... 16 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/examples.txt: -------------------------------------------------------------------------------- 1 | =================================== 2 | ``examples`` -- Structured Examples 3 | =================================== 4 | 5 | .. automodule:: giza.content.examples 6 | 7 | .. toctree:: 8 | 9 | /api/content/examples/models 10 | /api/content/examples/views 11 | /api/content/examples/inheritance 12 | /api/content/examples/tasks 13 | -------------------------------------------------------------------------------- /giza/docs/source/api/content/steps.txt: -------------------------------------------------------------------------------- 1 | ========================================= 2 | ``steps`` -- Procedural Content Generator 3 | ========================================= 4 | 5 | .. automodule:: giza.content.steps 6 | 7 | .. toctree:: 8 | 9 | /api/content/steps/models 10 | /api/content/steps/views 11 | /api/content/steps/inheritance 12 | /api/content/steps/tasks 13 | -------------------------------------------------------------------------------- /themes/mms-managed/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mms 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | manual_path = PATH 9 | google_analytics = GACODE 10 | version = VERSION 11 | version_selector = VERSION_SELECTOR 12 | stable = STABLE 13 | edition = EDITION 14 | nav_excluded = NAV 15 | base_url = https://www.mongodb.com/docs 16 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/charts-icons.css: -------------------------------------------------------------------------------- 1 | .charts-icon { 2 | -moz-osx-font-smoothing: grayscale; 3 | -webkit-font-smoothing: antialiased; 4 | display: inline-block; 5 | font-style: normal; 6 | font-variant: normal; 7 | text-rendering: auto; 8 | line-height: 1; 9 | font-family: 'ChartsIcons'; 10 | } 11 | 12 | .charts-icon-geoglobe::before { 13 | content: '\0041'; 14 | } 15 | -------------------------------------------------------------------------------- /themes/mongodb-default/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | repo_name = REPONAME 9 | jira_project = JIRA 10 | google_analytics = GACODE 11 | project = PROJECT 12 | translations = LANGUAGES 13 | language = LANGUAGE 14 | version = VERSION 15 | sitename = MongoDB 16 | nav_excluded = NAVB 17 | -------------------------------------------------------------------------------- /giza/docs/source/api/tools/command.txt: -------------------------------------------------------------------------------- 1 | ====================================== 2 | ``command`` -- Shell Command Execution 3 | ====================================== 4 | 5 | .. automodule:: giza.tools.command 6 | 7 | .. autoclass:: CommandResult 8 | :members: 9 | :undoc-members: 10 | 11 | .. autoexception:: CommandError 12 | 13 | .. autofunction:: command 14 | 15 | .. autofunction:: verbose_command 16 | -------------------------------------------------------------------------------- /themes/mongodb/static/images/caret-right-solid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /giza/docs/source/api/nav/content-post.txt: -------------------------------------------------------------------------------- 1 | ======================= 2 | Content Post Processing 3 | ======================= 4 | 5 | .. toctree:: 6 | 7 | /api/content/post/archives 8 | /api/content/post/gettext 9 | /api/content/post/json_output 10 | /api/content/post/latex 11 | /api/content/post/manpages 12 | /api/content/post/singlehtml 13 | /api/content/post/sites 14 | /api/content/post/slides 15 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/main.css: -------------------------------------------------------------------------------- 1 | @import '../constants'; 2 | 3 | .main { 4 | display: flex; 5 | width: 100%; 6 | 7 | &__title { 8 | margin-bottom: 30px; 9 | padding: 0 40px; 10 | } 11 | 12 | &__content { 13 | flex: 1; 14 | margin-left: auto; 15 | margin-right: auto; 16 | margin-top: 45px; 17 | max-width: 900px; /* TODO: Check with Melissa */ 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/mongodb/src/main/feedbackController.js: -------------------------------------------------------------------------------- 1 | import * as componentFeedback from '../js/componentFeedback'; 2 | 3 | $(() => { 4 | // Monkey-patch jQuery to add the removed load() event handler. 5 | // This is required by the JIRA issue collector 🙄 6 | jQuery.fn.load = function(callback) { $(window).on('load', callback); }; 7 | 8 | componentFeedback.init(); 9 | componentFeedback.setup(); 10 | }); 11 | -------------------------------------------------------------------------------- /data/compass-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'latest stable' 4 | - 'beta' 5 | active: 6 | - 'master' 7 | - 'beta' 8 | stable: '' 9 | upcoming: beta 10 | git: 11 | branches: 12 | manual: 'master' 13 | published: 14 | - 'master' 15 | - 'beta' 16 | # the branches/published list **must** be ordered from most to 17 | # least recent release. 18 | ... 19 | -------------------------------------------------------------------------------- /giza/giza/libgiza/test/data-inheritance/example-add-three.yaml: -------------------------------------------------------------------------------- 1 | ref: three-first 2 | source: 3 | file: example-add-two.yaml 4 | ref: two-second 5 | --- 6 | ref: three-second 7 | pre: | 8 | Grouping the documents by the ``item`` field, the following operation 9 | uses the :group:`$first` accumulator to compute the first sales date for 10 | each item: 11 | post: "The operation returns the following results:" 12 | ... 13 | -------------------------------------------------------------------------------- /data/node-driver-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'master' 4 | - 'foo' 5 | active: 6 | - 'master' 7 | - 'foo' 8 | stable: 'foo' 9 | upcoming: null 10 | git: 11 | branches: 12 | manual: 'master' 13 | published: 14 | - 'master' 15 | - 'docs-migration' 16 | # the branches/published list **must** be ordered from most to 17 | # least recent release. 18 | ... 19 | -------------------------------------------------------------------------------- /giza/docs/config/sphinx_local.yaml: -------------------------------------------------------------------------------- 1 | project: 'giza' 2 | master_doc: 'index' 3 | logo: ".static/logo.png" 4 | paths: 5 | static: ['source/.static'] 6 | theme: 7 | name: 'mongodb-default' 8 | project: 'giza' 9 | google_analytics: 'UA-0000000-0' 10 | book_path_base: 'Giza' 11 | repo: 'docs-tools' 12 | jira: 'DOCS' 13 | sitename: 'Giza' 14 | nav_excluded: [] 15 | sidebars: 16 | '**': 17 | - 'pagenav.html' 18 | ... -------------------------------------------------------------------------------- /giza/docs/source/api/core/task.txt: -------------------------------------------------------------------------------- 1 | =================================== 2 | ``task`` -- Work Unit Encapsulation 3 | =================================== 4 | 5 | .. automodule:: giza.core.task 6 | 7 | .. autoclass:: Task 8 | :members: 9 | :undoc-members: 10 | 11 | .. autoclass:: MapTask 12 | :members: 13 | :undoc-members: 14 | 15 | .. autofunction:: check_dependency 16 | 17 | .. autofunction:: check_hashed_dependency 18 | -------------------------------------------------------------------------------- /giza/giza/quickstart/config/sphinx_local.yaml: -------------------------------------------------------------------------------- 1 | project: 'manual' 2 | master_doc: 'index' 3 | logo: ".static/logo.png" 4 | paths: 5 | static: ['source/.static'] 6 | theme: 7 | name: 'manual' 8 | project: 'manual' 9 | google_analytics: 'UA-0000000-0' 10 | book_path_base: 'Manual' 11 | repo: 'docs' 12 | jira: 'DOCS' 13 | sitename: 'Docs' 14 | nav_excluded: [] 15 | sidebars: 16 | '**': 17 | - 'pagenav.html' 18 | ... -------------------------------------------------------------------------------- /giza/docs/config/integration.yaml: -------------------------------------------------------------------------------- 1 | fr: 2 | inherit: base 3 | es: 4 | inherit: base 5 | ja: 6 | inherit: base 7 | zh: 8 | inherit: base 9 | it: 10 | inherit: base 11 | base: 12 | links: [] 13 | targets: 14 | - 'latex' 15 | - 'json' 16 | - 'singlehtml' 17 | - 'html' 18 | - 'man' 19 | - 'epub' 20 | - 'dirhtml' 21 | doc-root: 22 | - 'sitemap.xml' 23 | - 'osd.xml' 24 | branch-root: null 25 | -------------------------------------------------------------------------------- /themes/mms/mms-resources.html: -------------------------------------------------------------------------------- 1 |

MongoDB Resources

2 | 9 | -------------------------------------------------------------------------------- /giza/giza/quickstart/config/integration.yaml: -------------------------------------------------------------------------------- 1 | fr: 2 | inherit: base 3 | es: 4 | inherit: base 5 | ja: 6 | inherit: base 7 | zh: 8 | inherit: base 9 | it: 10 | inherit: base 11 | base: 12 | links: [] 13 | targets: 14 | - 'latex' 15 | - 'json' 16 | - 'singlehtml' 17 | - 'html' 18 | - 'man' 19 | - 'epub' 20 | - 'dirhtml' 21 | doc-root: 22 | - 'sitemap.xml' 23 | - 'osd.xml' 24 | branch-root: null 25 | -------------------------------------------------------------------------------- /themes/training/mms-resources.html: -------------------------------------------------------------------------------- 1 |

MongoDB Resources

2 | 9 | -------------------------------------------------------------------------------- /data/build_config.yaml: -------------------------------------------------------------------------------- 1 | git: 2 | remote: 3 | upstream: 'mongodb/docs-tools' 4 | tools: 'mongodb/docs-tools' 5 | project: 6 | name: 'tools' 7 | tag: 'tools' 8 | url: 'http://docs.mongodb.org/giza/' 9 | title: 'MongoDB Docs Tools' 10 | siteroot: true 11 | version: 12 | release: '0.4.9' 13 | branch: 'master' 14 | system: 15 | files: [] 16 | assets: [] 17 | paths: 18 | output: 'build' 19 | builddata: 'data' 20 | buildsystem: './' 21 | ... -------------------------------------------------------------------------------- /themes/mms/page.html: -------------------------------------------------------------------------------- 1 | {%- extends "layout.html" -%} 2 | 3 | {%- block header %} 4 | 5 | {%- endblock %} 6 | -------------------------------------------------------------------------------- /themes/mongodb/resources.html: -------------------------------------------------------------------------------- 1 |

MongoDB Resources

2 | 8 | -------------------------------------------------------------------------------- /data/mms-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'upcoming' 4 | - '7.0' 5 | - '6.0' 6 | active: 7 | - 'upcoming' 8 | - '7.0' 9 | - '6.0' 10 | stable: '7.0' 11 | upcoming: '8.0' 12 | git: 13 | branches: 14 | manual: 'v7.0' 15 | published: 16 | - 'master' 17 | - 'v7.0' 18 | - 'v6.0' 19 | # the branches/published list **must** be ordered from most to 20 | # least recent release. 21 | ... 22 | -------------------------------------------------------------------------------- /themes/mms-managed/pagenav.html: -------------------------------------------------------------------------------- 1 | Close × 2 | 3 | 4 |

5 | {{ shorttitle }} 6 | {% for v in theme_version_selector %} 7 | {% if v.current %} 8 | {{ v.text }} 9 | {% endif %} 10 | {% endfor %} 11 |

12 | 13 | {{ toctree( collapse=false, titles_only=1) }} 14 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/config-table.css: -------------------------------------------------------------------------------- 1 | /* Custom CSS for configuration tables in Stitch Docs */ 2 | /* Useful for multi-interface configuration tables */ 3 | .config-table { 4 | width: 100%; 5 | 6 | & td { 7 | & .line-block { 8 | margin: 0; 9 | } 10 | & p.first, p.last { 11 | margin-bottom: 0; 12 | } 13 | & div.tabs p:nth-child(1) { 14 | margin: 0 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /giza/test/data/extracts-two.yaml: -------------------------------------------------------------------------------- 1 | ref: wt-fsync-lock-compatibility 2 | source: 3 | file: extracts-one.yaml 4 | ref: _wt-fsync-lock-compatibility 5 | replacement: 6 | operation: ":method:`db.fsyncLock()` and :method:`db.fsyncUnlock()` operations" 7 | --- 8 | ref: wt-fsync-lock-compatibility-command 9 | source: 10 | file: extracts-one.yaml 11 | ref: _wt-fsync-lock-compatibility 12 | replacement: 13 | operation: ":dbcommand:`fsync` command with the ``lock`` option" 14 | ... -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner { 2 | width: 60px; 3 | height: 60px; 4 | margin: 50px auto; 5 | background-color: #333; 6 | 7 | border-radius: 100%; 8 | animation: spinner-scale 1.0s infinite ease-in-out; 9 | 10 | &--hidden { 11 | display: none; 12 | } 13 | } 14 | 15 | @keyframes spinner-scale { 16 | 0% { 17 | transform: scale(0); 18 | } 100% { 19 | transform: scale(1.0); 20 | opacity: 0; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /data/charts-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'Cloud' 4 | - '19.12 (On-Prem)' 5 | - '19.09 (On-Prem)' 6 | active: 7 | - 'Cloud' 8 | - '19.12 (On-Prem)' 9 | - '19.09 (On-Prem)' 10 | stable: '' 11 | git: 12 | branches: 13 | manual: 'master' 14 | published: 15 | - 'master' 16 | - '19.12' 17 | - '19.09' 18 | 19 | # the branches/published list **must** be ordered from most to 20 | # least recent release. 21 | ... 22 | -------------------------------------------------------------------------------- /giza/docs/config/push.yaml: -------------------------------------------------------------------------------- 1 | target: push 2 | paths: 3 | remote: /data/sites/docs 4 | local: public 5 | static: [ 'manual', '.htaccess', 'sitemap.xml.gz' ] 6 | options: [ 'branched', 'recursive' ] 7 | env: publication 8 | dependency: push-if-up-to-date 9 | --- 10 | target: stage 11 | paths: 12 | remote: /srv/public/test 13 | local: public 14 | static: [ 'manual', 'sitemap.xml.gz' ] 15 | options: [ 'branched', 'recursive' ] 16 | env: staging 17 | dependency: stage-if-up-to-date 18 | ... 19 | -------------------------------------------------------------------------------- /giza/docs/config/intersphinx.yaml: -------------------------------------------------------------------------------- 1 | name: pymongo 2 | url: http://api.mongodb.org/python/current/ 3 | path: pymongo.inv 4 | --- 5 | name: metadriver 6 | url: https://docs.mongodb.org/meta-driver/latest/ 7 | path: metadriver.inv 8 | --- 9 | name: python 10 | url: https://docs.python.org/2/ 11 | path: python2.inv 12 | --- 13 | name: mongodb 14 | url: https://docs.mongodb.org/manual/ 15 | path: mongodb.inv 16 | --- 17 | name: argh 18 | url: https://argh.readthedocs.org/en/latest/ 19 | path: argh.inv 20 | ... 21 | -------------------------------------------------------------------------------- /data/mongoid-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'master' 4 | - '8.1' 5 | - '8.0' 6 | - '7.5' 7 | - '7.4' 8 | - '7.3' 9 | stable: '8.1' 10 | upcoming: master 11 | git: 12 | branches: 13 | manual: 'master' 14 | published: 15 | - 'master' 16 | - '8.1' 17 | - '8.0' 18 | - '7.5' 19 | - '7.4' 20 | - '7.3' 21 | # the branches/published list **must** be ordered from most to 22 | # least recent release. 23 | ... 24 | -------------------------------------------------------------------------------- /giza/giza/quickstart/config/push.yaml: -------------------------------------------------------------------------------- 1 | target: push 2 | paths: 3 | remote: /data/sites/docs 4 | local: public 5 | static: [ 'manual', '.htaccess', 'sitemap.xml.gz' ] 6 | options: [ 'branched', 'recursive' ] 7 | env: publication 8 | dependency: push-if-up-to-date 9 | --- 10 | target: stage 11 | paths: 12 | remote: /srv/public/test 13 | local: public 14 | static: [ 'manual', 'sitemap.xml.gz' ] 15 | options: [ 'branched', 'recursive' ] 16 | env: staging 17 | dependency: stage-if-up-to-date 18 | ... 19 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/navbar-download.css: -------------------------------------------------------------------------------- 1 | .navbar-download { 2 | align-items: center; 3 | display: inline-flex; 4 | padding-right: 40px; 5 | 6 | &__text { 7 | color: var(--mongodb-green); 8 | display: inline-block; 9 | font-family: sans-serif; 10 | font-size: 12px; 11 | font-weight: bold; 12 | letter-spacing: .3px; 13 | margin-left: auto; 14 | margin-right: 5px; 15 | } 16 | 17 | &__icon { 18 | /* TODO: Is this class necessary? */ 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /themes/mms-cloud/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mms 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | manual_path = PATH 9 | google_analytics = GACODE 10 | version = VERSION 11 | version_selector = VERSION_SELECTOR 12 | stable = STABLE 13 | has_mdb_agent = 14 | backup_monitoring_eol = 15 | edition = EDITION 16 | nav_excluded = NAV 17 | automation_eol = 18 | backup_monitoring_eol_past = 19 | managed_sharded_collection_eol = 20 | base_url = https://www.mongodb.com/docs 21 | -------------------------------------------------------------------------------- /themes/mongodb/src/css/navbar/bem-components/tutorial-search.css: -------------------------------------------------------------------------------- 1 | .tutorial-search { 2 | background-image: url('../images/icon-search.png'); 3 | background-position: 14px 18px; 4 | background-repeat: no-repeat; 5 | background-size: 25px 25px; 6 | border: 1px solid var(--grey-primary); 7 | border-radius: 3px; 8 | font-size: 20px; 9 | outline: none; 10 | padding: 20px 20px 20px 50px; 11 | width: 100%; 12 | -webkit-appearance: none; 13 | 14 | &__wrapper { 15 | margin: 40px 40px 10px; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /giza/docs/source/.static/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://docs.mongodb.org/manual/sitemap.xml.gz 5 | 6 | 7 | http://docs.mongodb.org/v2.4/sitemap.xml.gz 8 | 9 | 10 | http://docs.mongodb.org/v2.2/sitemap.xml.gz 11 | 12 | 13 | http://docs.mongodb.org/ecosystem/sitemap.xml.gz 14 | 15 | 16 | -------------------------------------------------------------------------------- /themes/drivers/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | base_url = https://www.mongodb.com/docs 22 | -------------------------------------------------------------------------------- /themes/primer/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | base_url = https://www.mongodb.com/docs 22 | -------------------------------------------------------------------------------- /giza/docs/source/api/nav/operations.txt: -------------------------------------------------------------------------------- 1 | =============== 2 | Giza Operations 3 | =============== 4 | 5 | .. toctree:: 6 | 7 | /api/operations/clean 8 | /api/operations/configuration 9 | /api/operations/deploy 10 | /api/operations/generate 11 | /api/operations/git 12 | /api/operations/http_serve 13 | /api/operations/includes 14 | /api/operations/make 15 | /api/operations/packaging 16 | /api/operations/quickstart 17 | /api/operations/sphinx_cmds 18 | /api/operations/translate 19 | /api/operations/tx 20 | -------------------------------------------------------------------------------- /data/spark-connector-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - '3.0' 4 | - '2.4' 5 | - '2.3' 6 | - '2.2' 7 | - '2.1' 8 | - '2.0' 9 | - '1.1' 10 | stable: '' 11 | upcoming: '' 12 | git: 13 | branches: 14 | manual: 'master' 15 | published: 16 | - 'master' 17 | - 'v2.4' 18 | - 'v2.3' 19 | - 'v2.2' 20 | - 'v2.1' 21 | - 'v2.0' 22 | - 'v1.1' 23 | # the branches/published list **must** be ordered from most to 24 | # least recent release. 25 | ... 26 | -------------------------------------------------------------------------------- /themes/mms/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | manual_path = PATH 9 | pdfpath = PDFPATH 10 | epubpath = EPUBPATH 11 | manual_branch = MANUAL_BRANCH 12 | google_analytics = GACODE 13 | version = VERSION 14 | version_selector = VERSION_SELECTOR 15 | stable = STABLE 16 | edition = EDITION 17 | project = PROJECT 18 | sitename = MMS 19 | nav_excluded = NAV 20 | saas_base = SAAS 21 | basepath = BASEPATH 22 | base_url = https://www.mongodb.com/docs 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *pyc 4 | .DS_Store 5 | .#* 6 | *.bak 7 | fabsrc/docs_meta.py 8 | fabsrc/utils.py 9 | fabsrc/utils 10 | makecloth/utils 11 | bin/utils 12 | *#* 13 | bin/docs_meta.yaml 14 | meta.yaml 15 | TAGS 16 | utils/docs_meta.py 17 | config 18 | !giza/giza/config 19 | !giza/giza/quickstart/config 20 | fabsrc/giza 21 | *.egg-info 22 | !giza/docs/config 23 | node_modules/ 24 | src/build/ 25 | 26 | /world-builder/source 27 | /world-builder/build 28 | /world-builder/.ninja* 29 | 30 | .vscode 31 | 32 | tools/screenshot-tool/.properties.ini 33 | -------------------------------------------------------------------------------- /themes/mongodb/static/images/minus-square-regular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_giza.py: -------------------------------------------------------------------------------- 1 | import giza.configuration 2 | 3 | from unittest import TestCase 4 | 5 | class TestGiza(TestCase): 6 | @classmethod 7 | def setUp(self): 8 | self.conf = giza.configuration.Configuration() 9 | 10 | self.result = [ 1, 1, 2, 3, 5, 8 ] 11 | 12 | def test_baseline(self): 13 | self.conf.baseline = [ 1, 1, 2, 3, 5, 8 ] 14 | 15 | self.assertEqual(self.result, self.conf.baseline) 16 | 17 | def test_subdoc_type(self): 18 | self.conf.base = 1 19 | 20 | self.assertEqual(self.conf.base, 1) 21 | -------------------------------------------------------------------------------- /pharaoh/test/test_files/files.json: -------------------------------------------------------------------------------- 1 | {"files": [{ 2 | "_id" : "f1", 3 | "source_language" : "en", 4 | "priority" : 0, 5 | "file_path" : "LC_MESSAGES/about", 6 | "target_language" : "es" 7 | }, 8 | { 9 | "_id" : "f2", 10 | "source_language" : "en", 11 | "priority" : 0, 12 | "file_path" : "LC_MESSAGES/installation", 13 | "target_language" : "es" 14 | }, 15 | { 16 | "_id" : "f3", 17 | "source_language" : "en", 18 | "priority" : 0, 19 | "file_path" : "LC_MESSAGES/contents", 20 | "target_language" : "es" 21 | } 22 | ]} -------------------------------------------------------------------------------- /themes/manual/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | base_url = https://www.mongodb.com/docs 24 | -------------------------------------------------------------------------------- /data/kubernetes-operator-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - '1.22' 4 | - '1.21' 5 | - '1.20' 6 | - '1.19' 7 | 8 | active: 9 | - '1.22' 10 | - '1.21' 11 | - '1.20' 12 | - '1.19' 13 | 14 | stable: '1.22' 15 | upcoming: '1.23' 16 | git: 17 | branches: 18 | manual: 'v1.23' 19 | published: 20 | - 'master' 21 | - 'v1.22' 22 | - 'v1.21' 23 | - 'v1.20' 24 | - 'v1.19' 25 | 26 | # the branches/published list **must** be ordered from most to 27 | # least recent release. 28 | ... 29 | -------------------------------------------------------------------------------- /themes/mongodb/static/images/minus-square-regular-active.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /data/bi-connector-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - '2.14' 4 | - '2.13' 5 | - '2.12' 6 | - '2.11' 7 | - '2.10' 8 | active: 9 | - '2.14' 10 | - '2.13' 11 | - '2.12' 12 | - '2.11' 13 | - '2.10' 14 | stable: '' 15 | upcoming: '' 16 | git: 17 | branches: 18 | manual: 'master' 19 | published: 20 | - 'master' 21 | - 'v2.13' 22 | - 'v2.12' 23 | - 'v2.11' 24 | - 'v2.10' 25 | # the branches/published list **must** be ordered from most to 26 | # least recent release. 27 | ... 28 | -------------------------------------------------------------------------------- /tools/atlas-api-automation/README.md: -------------------------------------------------------------------------------- 1 | 2 | Atlas API Automation Scripts 3 | ================= 4 | The `differ.py` script outputs the differences between the endpoints currently in the Atlas source code vs. what currently exists in cloud-docs. 5 | 6 | 7 | How to use 8 | --------------- 9 | 10 | This script takes in as a parameter the path to your local cloud-docs directory and it also requires that `mms.api.json` exists which is a JSON file of current Atlas endpoints. Ask for this file :) 11 | 12 | ### Example 13 | ``` 14 | python3 differ.py /Users/Daniel/Documents/Sites/cloud-docs 15 | ``` -------------------------------------------------------------------------------- /giza/docs/source/index.txt: -------------------------------------------------------------------------------- 1 | ===================================== 2 | Giza -- Documentation Build Framework 3 | ===================================== 4 | 5 | Giza is a collection of tools built around `Sphinx 6 | `_, that coordinates assembling, building, and 7 | deploying documentation. Giza primarily addresses the MongoDB 8 | documentation project; however, its design is sufficiently generic to 9 | be able to facilitate the builds of multiple documentation resources 10 | produced at MongoDB. 11 | 12 | .. toctree:: 13 | 14 | /core 15 | /tutorial 16 | /api 17 | -------------------------------------------------------------------------------- /giza/giza/libgiza/test/data-inheritance/example-add-one.yaml: -------------------------------------------------------------------------------- 1 | ref: one-first 2 | pre: | 3 | Grouping the documents by the ``item`` field, the following operation 4 | uses the :group:`$first` accumulator to compute the first sales date for 5 | each item: 6 | post: "The operation returns the following results:" 7 | --- 8 | ref: one-second 9 | pre: | 10 | Grouping the documents by the ``item`` field, the following operation 11 | uses the :group:`$first` accumulator to compute the first sales date for 12 | each item: 13 | post: "The operation returns the following results:" 14 | ... 15 | -------------------------------------------------------------------------------- /giza/giza/libgiza/test/data-inheritance/example-add-two.yaml: -------------------------------------------------------------------------------- 1 | ref: two-first 2 | pre: | 3 | Grouping the documents by the ``item`` field, the following operation 4 | uses the :group:`$first` accumulator to compute the first sales date for 5 | each item: 6 | post: "The operation returns the following results:" 7 | --- 8 | ref: two-second 9 | pre: | 10 | Grouping the documents by the ``item`` field, the following operation 11 | uses the :group:`$first` accumulator to compute the first sales date for 12 | each item: 13 | post: "The operation returns the following results:" 14 | ... 15 | -------------------------------------------------------------------------------- /pharaoh/test/configs_test/one_corpus.yaml: -------------------------------------------------------------------------------- 1 | container_path: temp_files 2 | source_language: en 3 | target_language: es 4 | sources: 5 | - name: small 6 | source_file_path: test_files/small.en 7 | target_file_path: test_files/small.es 8 | percent_train: 100 9 | percent_test: 0 10 | percent_tune: 0 11 | source_contributions: 12 | train: 13 | - name: small 14 | percent_of_corpus: 100 15 | test: 16 | - name: small 17 | percent_of_corpus: 100 18 | tune: 19 | - name: small 20 | percent_of_corpus: 100 21 | -------------------------------------------------------------------------------- /themes/realm/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = stitch.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /themes/stitch/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = stitch.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /data/kafka-connector-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'master' 4 | - 'v1.3' 5 | - 'v1.2' 6 | - 'v1.1' 7 | - 'v1.0' 8 | active: 9 | - 'master' 10 | - 'v1.3' 11 | - 'v1.2' 12 | - 'v1.1' 13 | - 'v1.0' 14 | stable: 'v1.3' 15 | upcoming: 'master' 16 | git: 17 | branches: 18 | manual: 'master' 19 | published: 20 | - 'master' 21 | - 'v1.3' 22 | - 'v1.2' 23 | - 'v1.1' 24 | - 'v1.0' 25 | # the branches/published list **must** be ordered from most to 26 | # least recent release. 27 | ... 28 | -------------------------------------------------------------------------------- /data/ruby-driver-published-branches.yaml: -------------------------------------------------------------------------------- 1 | version: 2 | published: 3 | - 'master' 4 | - '2.19' 5 | - '2.18' 6 | - '2.17' 7 | - '2.16' 8 | active: 9 | - 'master' 10 | - '2.19' 11 | - '2.18' 12 | - '2.17' 13 | - '2.16' 14 | stable: '2.19' 15 | upcoming: master 16 | git: 17 | branches: 18 | manual: 'master' 19 | published: 20 | - 'master' 21 | - 'v2.19' 22 | - 'v2.18' 23 | - 'v2.17' 24 | - 'v2.16' 25 | # the branches/published list **must** be ordered from most to 26 | # least recent release. 27 | ... 28 | -------------------------------------------------------------------------------- /themes/compass/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /themes/wip/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /themes/bi-connector/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /themes/mms-onprem/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mms 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | manual_path = PATH 9 | google_analytics = GACODE 10 | version = VERSION 11 | version_selector = VERSION_SELECTOR 12 | stable = STABLE 13 | has_mdb_agent = 14 | backup_monitoring_eol = 15 | edition = EDITION 16 | nav_excluded = NAV 17 | eol_date = EOL_DATE 18 | eol_remove = EOL_REMOVE 19 | backup_monitoring_eol_past = 20 | managed_sharded_collection_eol = 21 | base_url = https://www.mongodb.com/docs 22 | 5_0_eol = 23 | 4_4_eol = 24 | 25 | 26 | -------------------------------------------------------------------------------- /themes/database-tools/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /themes/spark-connector/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = mongodb 3 | stylesheet = mongodb-docs.css 4 | pygments_style = sphinx 5 | 6 | [options] 7 | branch = BRANCH 8 | pdfpath = PDFPATH 9 | epubpath = EPUBPATH 10 | manual_path = PATH 11 | repo_name = REPONAME 12 | jira_project = JIRA 13 | google_analytics = GACODE 14 | project = PROJECT 15 | translations = LANGUAGES 16 | language = LANGUAGE 17 | version = VERSION 18 | version_selector = VERSION_SELECTOR 19 | latest = LATEST 20 | stable = STABLE 21 | sitename = MongoDB 22 | nav_excluded = NAV 23 | is_upcoming = 24 | base_url = https://www.mongodb.com/docs 25 | -------------------------------------------------------------------------------- /themes/charts/footer.html: -------------------------------------------------------------------------------- 1 |