Skip to content

Commit

Permalink
update Google tag ID for Google Analytics
Browse files Browse the repository at this point in the history
Done manually with:
```
find . -iname "*.html" | xargs sed -i '' 's/UA-7301842-14/G-56KD6L3MDX/'
```

Future releases are expected to have the new tag ID due to changes in CXX-2975
  • Loading branch information
kevinAlbs committed Jun 28, 2024
1 parent e3a4197 commit 98ba8cc
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions categories/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -698,13 +698,13 @@ <h1> Categories </h1>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -698,13 +698,13 @@ <h1 id="mongodb-c-driver">MongoDB C++ Driver</h1>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions legacy-v1/breaking-changes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -849,13 +849,13 @@ <h1 id="improvements">Improvements</h1>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions legacy-v1/configuration/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -885,13 +885,13 @@ <h2 id="caveats">Caveats</h2>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions legacy-v1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -746,13 +746,13 @@ <h1> The Legacy C&#43;&#43; Driver </h1>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions legacy-v1/installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -974,13 +974,13 @@ <h5 id="linking-with-the-static-client-library">Linking with the static client l
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions legacy-v1/tutorial/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -895,13 +895,13 @@ <h3 id="further-reading">Further Reading</h3>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down
4 changes: 2 additions & 2 deletions legacy-v1/working-with-bson/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -734,13 +734,13 @@ <h3 id="bson-helper-functions">BSON Helper Functions</h3>
</script>


<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7301842-14"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56KD6L3MDX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-7301842-14');
gtag('config', 'G-56KD6L3MDX');
</script>


Expand Down

0 comments on commit 98ba8cc

Please sign in to comment.