Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
6e5d4aa
Create basic unified TOC
branberry Dec 4, 2024
86e0642
Update sidenav stuff
branberry Dec 4, 2024
b221ad9
Remove commented code
branberry Dec 4, 2024
aaaeeeb
Update unified nav
branberry Dec 12, 2024
0d9f744
Add unified sidenav logic for nested components
branberry Dec 13, 2024
15b4f6a
Fix hidden overflow
branberry Dec 13, 2024
e625f03
Add nesting
branberry Dec 13, 2024
dd0ad5e
Add temp sidenav
branberry Dec 17, 2024
64b1dda
Merge branch 'main' into feat/unified-nav
branberry Dec 17, 2024
fee8250
Update log statements
branberry Dec 17, 2024
b00fed8
Refactor feature flags
branberry Dec 17, 2024
73cb1db
Add basic tab selection
branberry Dec 18, 2024
b1e8156
Add ability to select collapsible nav item
branberry Dec 18, 2024
7c8e285
Add netlify preview for unified toc
branberry Dec 18, 2024
6f51b8c
Add netlify preview for unified toc
branberry Dec 18, 2024
032debb
Remove env variables
branberry Dec 18, 2024
bf0a752
Add env variable for unified toc
branberry Dec 18, 2024
fea9fdc
Add env variable for unified toc
branberry Dec 18, 2024
01d3bf8
Check window
branberry Dec 18, 2024
92fd575
Merge branch 'main' into feat/unified-nav
branberry Jan 2, 2025
b0090b1
Add formatting
branberry Jan 9, 2025
5794543
Respond to PR comments
branberry Jan 13, 2025
5b0a365
double panned sidenav
biancalaube Jan 14, 2025
ccda8bb
double panned sidenav
biancalaube Jan 14, 2025
35b4f2f
style
biancalaube Jan 14, 2025
f7cac54
Remove unused imports
branberry Jan 15, 2025
893954b
changes
biancalaube Jan 16, 2025
8033561
Merge branch 'feat/unified-nav' of github.com:mongodb/snooty into fea…
biancalaube Jan 16, 2025
f323fea
update toc
biancalaube Jan 16, 2025
4c9b868
updated toc
biancalaube Jan 17, 2025
a2683d8
cleaning up
biancalaube Jan 17, 2025
13e3310
merge with seungs code
biancalaube Jan 21, 2025
27acd9a
cleaning up comments
biancalaube Jan 21, 2025
3fe5e4d
getting rid of files
biancalaube Jan 21, 2025
c9eaf13
some of seungs changes
biancalaube Jan 27, 2025
6cb3608
fixes
biancalaube Jan 27, 2025
8105b3c
fixing chevron item
biancalaube Jan 29, 2025
83f0b60
fixed sidenav active select
biancalaube Feb 6, 2025
22dba51
throwing error
biancalaube Feb 7, 2025
1cc9cf4
DOP-5356: Adding versioning functionality to the Unified TOC using ve…
biancalaube Feb 27, 2025
334d887
DOP-5370: Adding Accordion View to Unified TOC (#1360)
biancalaube Mar 10, 2025
270e477
DOP-5343: Unified TOC staging link with TOC that links to different s…
biancalaube Mar 24, 2025
55fe368
adding toc.ts
biancalaube Apr 2, 2025
51b179c
Dop 5534 (#1388)
zdw001 Apr 3, 2025
d9ec712
linting
zdw001 Apr 17, 2025
30d95a0
prettier
zdw001 Apr 17, 2025
3f9cafd
update netlify.toml
zdw001 Apr 17, 2025
dcef2ef
string
zdw001 Apr 17, 2025
ecb56a1
build.sh builds with prefix
anabellabuckvar Apr 18, 2025
07d9963
saving changes before switching branch
zdw001 Apr 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed AWSCLIV2.pkg
Binary file not shown.
8 changes: 6 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ fi

echo "======================================================================================================================================================================="
echo "========================================================================== Running parser... =========================================================================="
./snooty-parser/snooty/snooty build $(pwd)/${TESTING_REPO_NAME} --output=./bundle.zip
./snooty-parser/snooty/snooty build $(pwd)/${TESTING_REPO_NAME} --no-caching --output=./bundle.zip
echo "========================================================================== Parser complete ============================================================================"
echo "======================================================================================================================================================================="

# putting set conent-repo as the path
echo GATSBY_MANIFEST_PATH=$(pwd)/bundle.zip
export GATSBY_MANIFEST_PATH=$(pwd)/bundle.zip

if [ -d "docs-worker-pool" ]; then
node --unhandled-rejections=strict docs-worker-pool/modules/persistence/dist/index.js --path bundle.zip --githubUser netlify
fi

# run the site
npm run build:no-prefix
npm run build
2 changes: 1 addition & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ const plugins = [

module.exports = {
plugins,
pathPrefix,
// pathPrefix,
siteMetadata,
};
7 changes: 4 additions & 3 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ publish = "public"
command = ". ./build.sh $REPO_NAME $PARSER_VERSION"

[build.environment]
ORG_NAME = "mongodb"
REPO_NAME = "docs-landing"
ORG_NAME = "10gen"
REPO_NAME = "cloud-docs"
BRANCH_NAME = "master"
PARSER_VERSION = "0.18.9"
PARSER_VERSION = "0.18.11"
PATH_PREFIX="docs/atlas"
181 changes: 178 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
"html-screen-capture-js": "^1.0.50",
"https-browserify": "^1.0.0",
"immer": "^9.0.6",
"js-toml": "^1.0.1",
"json-schema": "^0.4.0",
"lodash": "^4.6.0",
"minimist": "^1.2.6",
Expand Down
Loading