Fabian Iwand

Results 288 comments of Fabian Iwand

I see, looks like prefix redirects are the wrong choice here. Can you try an Exact Redirect from `/assets/$rest` to `/en/stable/assets/`?

We need a few more redirects for /css and /js. In summary, these Exact Redirects are required: - `/assets/$rest` -> `/en/stable/assets/` - `/css/$rest` -> `/en/stable/css/` - `/js/$rest` -> `/en/stable/js/` Testing...

Yeah, I'm still seeing some 404s. The most important ones can likely be fixed with: - `/readthedocs-data.js` -> `/en/stable/readthedocs-data.js` - `/search/$rest` -> `/en/stable/search/` This workaround is getting increasingly ugly, so...

@rfay I follow the related issues, and afair there wasn't any movement. But since I've already set up a readthedocs version of the docs for #3232 I might take a...

We may be able to use [readthedocs-custom-steps](https://github.com/NiklasRosenstein/readthedocs-custom-steps), as described in https://github.com/readthedocs/readthedocs.org/issues/6662#issuecomment-653675848. However I'd first wait a few days for a response in https://github.com/readthedocs/readthedocs.org/issues/8260.

@rfay I guess? The layout problem has been sufficiently mitigated, and content redirects should probably be tracked a separate issue. Btw, some of the related RTD issues have become more...

Found the culprit. The initial cached value gets [set to the `pkgPath`](https://github.com/node-base/base-cwd/blob/43a567e9725f070d13a813ebd3c5b7580d0cb807/index.js#L62-L69), [triggered by `base-cli-process/lib/fields/cwd.js`](https://github.com/node-base/base-cli-process/blob/d485850c0e9f979a22d77f83780f74618f645fa8/lib/fields/cwd.js#L17-L18) when assemble enables the `cli` plugin.

Hi, thanks for the insanely quick response! 😄 I'm adding the templates using the following line: ```javascript this.app.partials(pathLib.join(__dirname, 'templates/partials/**/*.hbs')); ``` (Source: https://github.com/mootari/Documentation/blob/aae6df5755fffa4b4f48caed53dfa7b8acf24270/theme/theme.js#L18) I noticed the issue after I added two...

Unfortunately I had to overwrite renameKey on the collection itself: ```javascript this.app.partials().options.renameKey = p => pathLib.basename(p, '.hbs'); ``` because just passing it to the collection like this: ```javascript this.app.partials(pathLib.join(__dirname, 'templates/partials/**/*.hbs'),...