Uh oh!
There was an error while loading. Please reload this page.
Relative doc links - #178
Closed
ryanseys wants to merge 1 commit into
Closed
Conversation
silvolu
commented
Sep 5, 2014
Contributor
Can we keep at least the landing page at https://googlecloudplatform.github.io/gcloud-node/#/ ? |
stephenplusplus
commented
Sep 5, 2014
Contributor
My original configuration was quite similar to this, then didn't work live. I must have missed something simple. If this works, then yay! Much better 👍 |
stephenplusplus
commented
Sep 6, 2014
Contributor
Closed via 794a7af -- worked awesome locally. Let's see how gh-pages handles it :) |
stephenplusplus
commented
Sep 6, 2014
Contributor
It's perfect! Thanks for cleaning this up. |
ryanseys
commented
Sep 6, 2014
ContributorAuthor
Sweet! 💃 |
sofisl pushed a commit
that referenced
this pull request
Sep 27, 2022
4 tasks
4 tasks
sofisl pushed a commit
that referenced
this pull request
Oct 11, 2022
* build: add Kokoro configs for autorelease * build: add Kokoro configs for autorelease * chore: remove CircleCI config
4 tasks
sofisl pushed a commit
that referenced
this pull request
Oct 12, 2022
This was referenced Oct 12, 2022
sofisl added a commit
that referenced
this pull request
Oct 13, 2022
This new generator will bring some changes to the generated code across all libraries, but the behavior will only change for nodejs-logging and nodejs-pubsub (those two libraries that use request batching). For other libraries, the changes should be minor (the createApiCall call is simplified) and it should be safe to merge them. Please talk to @alexander-fenster if you have any questions. PiperOrigin-RevId: 325949033 Source-Author: Google APIs <noreply@google.com> Source-Date: Mon Aug 10 21:11:13 2020 -0700 Source-Repo: googleapis/googleapis Source-Sha: 94006b3cb8d2fb44703cf535da15608eed6bf7db Source-Link: googleapis/googleapis@94006b3 Co-authored-by: sofisl <55454395+sofisl@users.noreply.github.com>
4 tasks
sofisl pushed a commit
that referenced
this pull request
Oct 13, 2022
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
sofisl pushed a commit
that referenced
this pull request
Oct 13, 2022
This was referenced Oct 13, 2022
sofisl pushed a commit
that referenced
this pull request
Oct 13, 2022
sofisl pushed a commit
that referenced
this pull request
Oct 13, 2022
* build: add Kokoro configs for autorelease * build: add Kokoro configs for autorelease * chore: remove CircleCI config
sofisl pushed a commit
that referenced
this pull request
Nov 9, 2022
This was referenced Nov 9, 2022
sofisl pushed a commit
that referenced
this pull request
Nov 10, 2022
4 tasks
GautamSharda pushed a commit
that referenced
this pull request
Feb 3, 2026
4 tasks
sofisl pushed a commit
that referenced
this pull request
Feb 4, 2026
chore: update new issue template
This was referenced Feb 4, 2026
sofisl pushed a commit
that referenced
this pull request
Feb 5, 2026
GautamSharda pushed a commit
that referenced
this pull request
Feb 5, 2026
4 tasks
sofisl pushed a commit
that referenced
this pull request
Feb 17, 2026
4 tasks
sofisl pushed a commit
that referenced
this pull request
Feb 24, 2026
sofisl pushed a commit
that referenced
this pull request
Feb 25, 2026
* test fix: There are 3 files in a directory, not 2 * rm only
GautamSharda pushed a commit
that referenced
this pull request
Feb 25, 2026
Source-Link: googleapis/synthtool@41ccd8c Post-Processor: gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:c9c7828c165b1985579098978877935ee52dda2b1b538087514fd24fa2443e7a
4 tasks
sofisl pushed a commit
that referenced
this pull request
Feb 26, 2026
This was referenced Feb 26, 2026
4 tasks
sofisl pushed a commit
that referenced
this pull request
Mar 5, 2026
sofisl pushed a commit
that referenced
this pull request
Mar 5, 2026
…secrets.sh (#178) Co-authored-by: Benjamin E. Coe <bencoe@google.com> Source-Author: BenWhitehead <BenWhitehead@users.noreply.github.com> Source-Date: Wed Jun 10 22:24:28 2020 -0400 Source-Repo: googleapis/synthtool Source-Sha: e7034945fbdc0e79d3c57f6e299e5c90b0f11469 Source-Link: googleapis/synthtool@e703494
4 tasks
GautamSharda pushed a commit
that referenced
this pull request
Mar 12, 2026
4 tasks
GautamSharda pushed a commit
that referenced
this pull request
Mar 12, 2026
GautamSharda pushed a commit
that referenced
this pull request
Mar 12, 2026
4 tasks
thiyaguk09 pushed a commit
to thiyaguk09/google-cloud-node-fork
that referenced
this pull request
Mar 18, 2026
* test fix: There are 3 files in a directory, not 2 * rm only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I wanted to be able to generate the docs and view them locally using a tool like
node-staticand all the links were relative to/gcloud-node/because we assume this is being served from github pages at that relative url. This change makes them relative to whatever folder they're already in, so you can do something like:Open browser to http://127.0.0.1:8080 and view them there.
This also means I can just git push the whole repo to my
gh-pagesbranch and my docs are served up at:http://ryanseys.com/gcloud-node/docs/#/
Note: the
/docs/in the url now because the whole repo is served so we have to navigate to that sub folder for the docs but this is not neccesary, we can still do the sub-module magic to serve at the plain/gcloud-nodefor our repo if we want and with this PR we should be able to switch between them effortlessly.